@charset "utf-8";
/*
============================
ページ表示
============================
*/

body {
    display: none;
    font-family: "Noto Serif JP", serif;
    color: #554241;
}
@media (min-width: 769px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }
}
@media (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}
/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeUpTrigger {
    opacity: 0;
}
/*
============================
header
============================
*/
.header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 95vw;
    height: 80px;
    z-index: 10;
    background-color: #ffffff;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
}
.header_inner {
    position: relative;
    padding: 20px 15px;
}
.logo {
    position: absolute;
    top: 6%;
    left: 0;
    padding: 15px 15px;
    width: 260px;
}
.title {
    font-size: 2rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}
/* header固定のため余白をつける。メニューのCSSには関係ない */
.main {
    margin-top: 60px;
}
.entry-button {
    font-family: "Noto Sans JP", sans-serif!important;
    background-color: #6aa4a4;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    text-align: center !important;
    line-height: 14px;
}
.entry-button:hover {
    background-color: #589393;
}
.nav_item small {
    font-size: 11px;
    color: #999;
}
@media only screen and (max-width: 1200px) {
    header {
        background-color: #fff;
        transition: background-color 0.3s ease;
    }
    body.nav-open header {
        background-color: transparent;
    }
    .nav {
        position: fixed;
        right: -101vw; /* 右から出てくる */
        top: 0;
        width: 101vw; /* スマホに収まるサイズ */
        height: auto;
        padding-top: 60px;
        background-color: rgba(255, 255, 255, 0.85);
        transition: all .6s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        border-radius: 0 0 30px 30px;
    }
    .header_inner {
        line-height: 57px;
    }
    .hamburger {
        position: absolute;
        right: 20px;
        top: 14px;
        width: 40px; /* クリックしやすい幅 */
        height: 40px; /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
    }
    .nav_list {
        margin: 0;
        padding: 0 40px;
        list-style: none;
    }
    .nav_item {
        padding: 0;
        position: relative;
        border-bottom: 2px solid #aaa1a0;
    }
    .nav_item:last-child {
        border-bottom: 0px solid #aaa1a0
    }
    .nav_item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 5px;
        text-decoration: none;
        color: #554241;
        font-family: 'Noto Serif JP', serif;
        font-size: 16px;
        font-weight: 500;
        position: relative;
    }
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 20%;
        height: 2px;
        background-color: #554241;
        z-index: 2;
        border-radius: 1px;
    }
    /* タイトル+smallを縦に並べる */
    .nav-text {
        display: flex;
        flex-direction: column;
        line-height: 1.4;
    }
    /* small を下に */
    .nav-text small {
        font-size: 12px;
        color: #554241;
        font-weight: 400;
        margin-top: 4px;
    }
    /* 矢印 */
    .nav_item a::after {
        content: url("../../images/arrow.svg");
        width: 18px;
        color: #64989F;
        margin-left: 8px;
    }
    .nav_item:last-child a.entry-button {
        background: #64989F;
        color: #fff;
        border-radius: 30px;
        margin: 20px auto 0;
        width: 80%;
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
    }
    .nav_item:last-child a.entry-button::after {
        content: none;
    }
    .nav-btn {
        text-align: center;
        width: 200px;
        margin: 10px auto;
    }
    .nav-btn a {
        font-family: "Noto Sans JP", sans-serif;
        width: 100%;
        display: block;
    }
    .white-btn {
        background-color: #FFFFFF;
        border: 1px solid;
        color: #554241 !important;
    }
    .nav-pp {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 12px;
        padding: 40px;
        padding-bottom: 0px;
    }
    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #64989F;
        transition: all .6s;
    }
    .hamburger_border_top {
        top: 14px;
    }
    .hamburger_border_center {
        top: 20px;
    }
    .hamburger_border_bottom {
        top: 26px;
    }
    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 101vw;
        height: 100vh;
        z-index: 100;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }
    .nav-open .black_bg {
        visibility: visible;
        height: 90vh;
    }
    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
        background-color: #64989F;
    }
    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
        background-color: #64989F;
    }
    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
        background-color: #64989F;
    }
} /* sp */
@media only screen and (min-width: 1201px) {
    .header_inner {
        max-width: 1800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .title {
        width: 12vw;
    }
    .logo {
        padding: 15px 0 15px 60px;
        color: #000;
    }
    .nav_list {
        text-align: right;
    }
    .nav_list li {
        display: inline-block;
        text-align: right;
        padding-right: 1.5%;
    }
    .nav_list li a {
        color: #000;
        font-family: 'Noto Serif JP', serif;
        position: relative;
        font-size: 14px;
        display: inline-block;
        width: 6.5vw;
        text-align: left;
        padding-bottom: 5px
    }
    .nav_list li:nth-child(2) a {
        width: 10vw;
    }
    .nav_list li:nth-child(4) a {
        width: 12vw;
    }
	
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #554241;
        z-index: 1;
    }
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #aaa1a0;
        z-index: 1;
        border-radius: 1px;
    }
    .nav_list li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20%;
        height: 2px;
        background-color: #554241;
        transition: width 0.4s ease;
        z-index: 2;
        border-radius: 1px;
    }
    /* hoverで濃い線が全体に伸びる */
    .nav_list li a:hover::after {
        width: 100%;
    }
}
.nav_item:last-child a::after, .nav_item:last-child a::before {
    content: none;
}
.nav_item a.entry-button {
    transform: translateY(-6px);
}
/* pc */
@media only screen and (max-width: 768px) {
    .header {
        width: 100vw;
        height: 70px;
    }
    .logo {
        width: 140px;
        top: -10px;
        left: 33px;
        padding: 0;
        z-index: 300;
    }
}
@media (max-width: 1520px) and (min-width: 1201px) {
    .nav_list li a {
        font-size: 12px;
    }
    .nav_list li a {
        width: 7vw;
    }
    .nav_list li:nth-child(2) a {
        width: 10vw;
    }
	  .nav_list li:nth-child(4) a {
        width: 13vw;
    }
}
@media (max-width: 1200px) and (min-width: 769px) {
    .logo {
        top: 18%;
        left: 50px;
        padding: 0;
    }
    .nav {
        right: -104vw;
    }
    .nav-open .nav {
        right: -3vw;
    }
    .nav_list {
        padding: 0 120px;
    }
    .nav_item:last-child a.entry-button {
        display: block;
    }
}
/*
============================
MV
============================
*/
h1{
	 position: absolute;
    bottom: 5px;
    right: 5px;
    color: #eee;
	font-size: 0.6em;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
.slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 1s ease;
    opacity: 0;
}
.slideshow img:first-child {
    opacity: 1;
}
.text-overlay {
    position: absolute;
    z-index: 2;
    top: 80%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 7vw;
    font-weight: bold;
}
.text-overlay span {
    display: block;
}
.text-overlay .recruit {
 display: inline-block;
  line-height: 1;
  padding: 0;
  margin: 0;
  transform: translateY(2px); /* 下に微調整（1〜2px程度） */
  opacity: 0.5;
}
.text-overlay .recruit::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.5vw;
  width: 100%;
  height: 2px;
  background: #fff;
	 transform: translateY(100%); 
}

body.is-windows .text-overlay .recruit::after {
  bottom: 0.4vw; /* Windows用に調整 */
}
.text-overlay .sub {
    font-size: 1.6vw;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
    .slideshow img:nth-child(1) {
        object-position: 90% top;
    }
    .slideshow img:nth-child(2) {
        object-position: 60% top;
    }
    .slideshow img:nth-child(3) {
        object-position: 60% top;
    }
    .slideshow img:nth-child(4) {
        object-position: 100% top;
    }
    .slideshow img:nth-child(5) {
        object-position: 80% top;
    }
    .slideshow img:nth-child(6) {
        object-position: 40% top;
    }
    .slideshow img:nth-child(7) {
        object-position: 60% top;
    }
    .slideshow img:nth-child(8) {
        object-position: 40% top;
    }
    .text-overlay {
        font-size: 18vw;
        left: 4%;
    }
    .text-overlay .sub {
        font-size: 4vw;
    }
	
	.text-overlay .recruit::after {
  bottom: 1.5vw;
}
	
	body.is-windows .text-overlay .recruit::after {
  bottom: 1vw; 
}


}
/*
============================
hero-section
============================
*/
#hero-section {
    position: relative;
    height: auto; /* または 600px など任意 */
    background: url('../../images/bg_wave.png') no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 40px;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #554241;
    max-width: 1080px;
    padding: 20px 0;
}
h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #64989F;
}
#hero-section p {
    font-size: 16px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    position: relative;
    padding: 0px 34px 0px 34px; /* 右に余白を取る */
    background-color: #64989F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    width: 200px;
    height: 50px;
    line-height: 50px;
}
/* 矢印アイコン（疑似要素） */
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    width: 44px;
    height: 16px;
    background: url("../../images/btn-arrow.svg") no-repeat center center / contain;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
/* hoverで矢印を右にスライド */
.btn:hover::after {
    transform: translate(4px, -50%);
}
/* 背景も変える */
.btn:hover {
    background-color: #78a9ae;
}

.btn.coming-soon {
  background-color: #999;
  color: #fff;
  cursor: default;
  pointer-events: none;
  position: relative;
  text-align: center;
	display: block;
	padding: 0;
}

.btn.coming-soon::after {
  content: none;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}
.text-block {
    flex: 1;
    min-width: 280px;
}
.image-block {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 50px;
    flex: 1;
    min-width: 280px;
}
.image-block img {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.text-block {
    text-align: left;
}




/* SP用スタイル */
@media screen and (max-width: 900px) {
    #hero-section {
        padding: 40px 0 10px;
    }
    h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .intro-section .text-block h2 span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.85);
        padding: 2px;
        margin-bottom: 3px;
    }
    #hero-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .content {
        flex-direction: column;
        padding: 20px;
        gap: 24px;
    }
    .content2 {
        padding: 20px;
    }
    .intro-section .image-block {
        order: 1;
    }
    .intro-section .text-block {
        order: 2;
    }
    .action-section .image-block {
        order: 1;
    }
    .action-section .text-block {
        order: 2;
    }
}
@media screen and (min-width: 769px) {
    .intro-section .content {
        position: relative;
    }
    .intro-section .text-block {
        flex: 1;
        min-width: 280px;
        position: relative;
    }
    .intro-section .text-block h2 {
        margin-right: -60px;
        z-index: 2;
        position: relative;
        max-width: 520px;
    }
    .intro-section .text-block h2 span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.85);
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    .intro-section .text-block h2 .nowrap {
        white-space: nowrap;
    }
    .hero-content {
        padding: 0px;
    }
}
@media screen and (max-width: 1200px) {
    #hero-section {
        background-size: cover;
    }
}
/*
============================
What we do
============================
*/
#what-we-do {
    background: linear-gradient(142deg, #ffffff 0%, #FAE2E1 100%);
    padding: 100px 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* タイトル・説明文とボタンを横並びに */
.intro-and-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}
.intro-text {
    flex: 1;
    min-width: 0;
}

.en-title {
    font-size: 57px;
    color: #b1cbce;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.en-title .tag {
    background: #ffffff;
    color: #554241;
    border-radius: 50px;
    padding: 10px 32px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #554241;
    text-align: center;
}

.en-title .kome {
    color: #554241;
    font-size: 16px;
	padding-left: 20px;
}

.non-flex{
	display: block;
}


.ja-title {
    font-size: 57px;
    color: #64989F;
    margin-bottom: 24px;
    text-align: left;
}
.description {
    font-size: 16px;
    line-height: 2;
    color: #554241;
    width: 90%;
	font-size: 16px;
}
/* ボタン（横並び用） */
.more-button {
    display: inline-flex;
    color: #fff;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    gap: 8px;
    font-weight: 500;
    align-items: center;
    flex-shrink: 0;
    align-self: flex-end;
    width: 258px;
}
/* カードレイアウト */
.card-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.staff-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: transparent;
    overflow: visible;
}
/* 上部カード（画像＋ラベル） */
.card-inner {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2; /* ← これで画像部分を前面に */
}
.card-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50px 50px 0 0;
}
.card-label {
    background: #fff;
    padding: 16px 16px 16px 30px;
    text-align: center;
}
.card-label h4 {
    font-size: 31px;
    font-weight: bold;
    color: #4b3f3d;
    margin: 0;
    text-align: left;
}
.card-description {
    background: #fff;
    border-radius: 0 0 50px 50px;
    padding: 60px 32px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    height: 250px;
}
.card-description p {
    font-size: 16px;
    color: #554241;
    line-height: 1.8;
    margin: 0;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
    #what-we-do {
        background: linear-gradient(90deg, #ffffff 0%, #FAE2E1 100%);
        padding: 50px 15px;
    }
    .en-title {
        font-size: 40px;
        color: #b1cbce;
        display: block;
        margin-bottom: 20px;
    }
    .en-title .tag {
        display: block;
        width: 110px;
        padding: 2px 10px;
        font-size: 12px;
        margin-top: 5px;
    }
    .tag-long {
        width: 160px !important;
    }
    .tag-long2 {
        width: 260px !important;
    }
	
    .ja-title {
        font-size: 31px;
    }
    .intro-and-button {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .more-button {
        margin-top: 20px;
    }
    .card-container {
        flex-direction: column;
    }
    .staff-card {
        max-width: 100%;
        width: 100%;
    }
    .card-description {
        height: auto;
        padding: 55px 15px 15px;
    }
	
	#what-we-do .card-image{
		height: 340px;
	}
	.description{
        width: 100%;;
	}
	.card-description p {
    font-size: 16px;
	}
	
	.en-title .kome {
		padding-left: 0px;
		display: inline-block;
	}
}
/*
============================
system
============================
*/
h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.training span {
    font-size: 50%;
    color: #FFAAAA;
    vertical-align: middle;
    margin-right: 5px;
}
.benefit span {
    font-size: 50%;
    color: #64989F;
    vertical-align: middle;
    margin-right: 5px;
}
.accordion {
    width: 100%;
    max-width: 560px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
    font-size: 20px;;
}
.accordion-title:hover {
    background-color: #f0f0f0;
}
.accordion-icon {
    font-size: 20px;
    color: #888;
}
.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fafafa;
}
.accordion-content ul {
    list-style: none;
    padding: 0;
}
.accordion-content li {
    padding: 5px 0;
    color: #555;
}
#system {
    padding: 80px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.accordion-content {
    display: none;
}
/* モバイル対応 */
@media screen and (max-width: 768px) {
    #system {
        display: block;
        padding: 50px 15px;
    }
    .accordion {
        margin-bottom: 30px;
    }
}
/*
============================
Interview
============================
*/
#interview {
    padding: 80px 20px;
    background-color: #F9FCED;
    overflow-x: hidden;
}
.interview-container {
    margin: 0 auto;
    overflow: visible;
}
.scroll-wrapper {
    width: 100vw; /* ← containerの幅の中で */
    overflow-x: auto; /* ← 横スクロール可 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    cursor: grab; /* ドラッグ感出す */
}
.scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.scroll-wrapper, .scroll-wrapper * {
    user-select: none; /* テキスト選択を防ぐ */
    -webkit-user-drag: none; /* 画像のドラッグを防ぐ */
}
.scroll-inner {
    display: flex;
    gap: 40px;
    width: max-content;
    padding-right: 500px; /* ← 最後のカードが完全に見えるように */
}
.card {
    flex-shrink: 0;
    width: 400px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-snap-align: start;
}
#interview .card-inner {
    position: relative;
    display: inline-block;
}
#interview .staff-card {
    max-width: 400px
}
.card-overlay-text {
    position: absolute;
    bottom: 6%;
    left: 6%;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    pointer-events: none; /* クリック無効にしたいなら */
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card-body {
    padding: 16px;
}
.card-title {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}
#interview .card-description {
    height: auto;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-right: 20px;
    padding-left: 30px;
}
#interview .card-description::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-10%);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
}
#interview .card-description.arrow-a::after {
    background-image: url('../../images/card-arrow-a.svg');
}
#interview .card-description.arrow-b::after {
    background-image: url('../../images/card-arrow-b.svg');
}
#interview .card-description.arrow-c::after {
    background-image: url('../../images/card-arrow-c.svg');
}
#interview .card-description p {
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
}
/* オフセット（交互にずらす） */
#interview .staff-card:nth-child(2n) {
    margin-top: 130px;
}
@media (max-width: 768px) {
    #interview {
        padding: 50px 15px;
    }
    .scroll-wrapper {
        margin-left: 0;
        width: 100%;
    }
    .scroll-inner {
        flex-direction: column;
        gap: 16px; /* カードの縦の間隔、好きな値でOK */
        width: 100%; /* 親に合わせる */
        padding: 0;
    }
    .card {
        width: 100%; /* 画面幅いっぱい */
    }
    #interview .card-description::after {
        width: 36px;
        height: 36px;
    }
    #interview .staff-card:nth-child(2n) {
        margin-top: 0px;
    }
    .card-overlay-text {
        font-size: 24px;
    }
}
.scroll-wrapper {
    scrollbar-width: none; /* Firefox */
}
.scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome系 */
}

@media (max-width: 768px) {
  .scroll-wrapper {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    touch-action: auto;
    user-select: auto;
    -webkit-user-drag: auto;
    cursor: auto;
  }

  .scroll-wrapper * {
    user-select: auto;
    -webkit-user-drag: auto;
  }

  .scroll-inner {
    padding-bottom: 0 !important;
  }
}
/*
============================
Job Schedule
============================
*/
#job-schedule {
    padding: 80px 20px;
}
.timeline-pc-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    aspect-ratio: 128 / 7; /* SVGの比率に合わせて調整 */
    margin: 0 auto;
}
.timeline-pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: 150px;
}
/* 吹き出し共通 */
.bubble {
    position: absolute;
    max-width: 250px;
    background: #64989F;
    border-radius: 20px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    font-weight: 300;
    font-family: "Noto Sans JP", sans-serif;
}
/* 表示時 */
.bubble.animate {
    opacity: 1;
    transform: translateX(0);
}
/* 画像上の位置に合わせて手動調整 */
.bubble1 {
    top: -140%;
    left: 19%;
}
.bubble2 {
    top: 130%;
    left: 23%;
}
.bubble3 {
    top: -140%;
    left: 43%;
}
.bubble4 {
    top: 130%;
    left: 48%;
}
.bubble5 {
    top: -140%;
    left: 75%;
}
.bubble6 {
    top: 130%;
    left: 80%;
}
.bubble::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}
/* 上にある吹き出しは下に向けた三角 */
.bubble1::after, .bubble3::after, .bubble5::after {
    top: 100%;
    left: 30px;
    border-top-color: #64989F;
    border-bottom: none;
}
/* 下にある吹き出しは上に向けた三角 */
.bubble2::after, .bubble4::after, .bubble6::after {
    bottom: 100%;
    left: 30px;
    border-bottom-color: #64989F;
    border-top: none;
}
@media (max-width: 768px) {
    #job-schedule {
        padding: 50px 15px;
    }
    .timeline-sp-fixed {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
    }
    /* 左側画像 */
    .sp-image {
        flex-shrink: 0;
        width: 100px;
    }
    .sp-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    /* 吹き出し：右側に絶対配置 */
    .bubble-sp {
        position: absolute;
        left: 120px; /* 画像の右に固定 */
        max-width: 220px;
        background: #64989F;
        padding: 1rem;
        border-radius: 10px;
        font-size: 0.85rem;
        color: #ffffff;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.5s ease;
        z-index: 1;
    }
    /* 表示アニメーション */
    .bubble-sp.animate {
        opacity: 1;
        transform: translateX(0);
    }
    /* 吹き出しの三角（←方向） */
    .bubble-sp::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
        border: 10px solid transparent;
        border-right-color: #64989F;
    }
    /* 各吹き出しの位置（画像に対応） */
    .bubble1 {
        top: 290px;
    }
    .bubble2 {
        top: 470px;
    }
    .bubble3 {
        top: 640px;
    }
    .bubble4 {
        top: 820px;
    }
    .bubble5 {
        top: 970px;
    }
    .bubble6 {
        top: 1160px;
    }
}
.slider {
    margin-inline: auto;
    width: 100%;
    margin-top: 180px;
}
.slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
}
.slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-width: 0; /* wrap防止 */
}
.slider-img {
    width: 300px !important;
    height: 400px !important;
    object-fit: cover;
}
.slider-img img {
    height: 100%;
    width: 100%;
} /* 段差バリエーション */
.img-style-1 {
    margin: 30px 15px 10px;
}
.img-style-2 {
    margin: 10px 15px 30px;
}
@media (max-width: 768px) {
    .slider {
        margin-top: 0;
    }
    .slider-img {
        width: 250px !important;
        height: auto !important;
    }
}
/*
============================
New Employee Schedule
============================
*/
#employee-schedule {
    padding: 80px 20px;
}
.flow_design05 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 80px auto 0;
}
.flow05 {
    padding-left: 0;
}
.flow05 > li {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
}
.flow05 > li:not(:last-child) {
    padding-bottom: 110px;
    height: 220px;
}
.flow05 > li .icon05 {
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #64989F;
    color: #fff;
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 18px;
    flex-direction: column; /* ← これが重要：改行を縦並びにする */
}
.dashed-line {
    position: absolute;
    top: 110px;
    left: 50px;
    width: 1px;
    height: 0; /* 最初は0から始める */
    background-image: repeating-linear-gradient(to bottom, #64989F, #64989F 3px, transparent 6px, transparent 9px);
    transition: height 1s ease-out;
}
.dashed-line {
    transition: height 1s ease-out;
}
.flow05 > li dl dt {
    font-size: 31px;
    font-weight: 600;
    color: #64989F;
    margin-left: 80px;
}
.flow05 > li dl dd {
    margin-left: 80px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    #employee-schedule {
        padding: 50px 15px;
    }
    .employee-schedule {
        padding: 0 5px 30px;
    }
	
	.flow_design05{
		margin-top: 50px;
	}
    .flow05 > li:not(:last-child) {
        height: auto;
        padding-bottom: 50px;
    }
    .flow05 > li .icon05 {
        width: 80px;
        height: 80px;
    }
    .flow05 > li dl dt {
        font-size: 25px;
        margin-left: 40px;
    }
    .flow05 > li dl dd {
        margin-left: 40px;
        margin-top: 20px;
        font-size: 15px;
    }
    .dashed-line {
        top: 76px;
        left: 40px;
    }
}
.bg-images {
    width: 100%;
}
/*
============================
Faq
============================
*/
#faq {
    padding: 80px 20px;
    background: linear-gradient(to right, #ffffff 0%, #FAE2E1 100%);
}
#faq .ja-title {
    font-size: 38px;
}
.faq-container {
    margin: 0 auto;
    border-radius: 20px;
}
.faq-item {
    margin-bottom: 25px;
}
.faq-item:nth-of-type(2) {
    margin-bottom: 60px;
}
.faq-item + .faq-item {
    margin-top: 20px;
}
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    text-align: left;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.q-icon {
    background: #ffffff;
    color: #64989F;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 999px;
    margin-right: 10px;
    font-size: 14px;
    border: 1px solid #64989F;
    flex-shrink: 0;
}
.a-icon {
    background: #64989F;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 999px;
    margin-right: 10px;
    font-size: 14px;
    border: 1px solid #64989F;
    flex-shrink: 0;
}
.toggle-icon {
    font-size: 24px;
    color: #64989F;
    margin-left: 10px;
    flex-shrink: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    border-radius: 0 0 15px 15px;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: -13px;
    font-size: 18px;
}
.faq-row {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 30px;
}
.faq-rowA {
    display: flex;
    align-items: flex-start;
    padding: 30px 20px 20px;
    gap: 30px;
}
.q-text {
    font-weight: bold;
}
.q-text, .a-text {
    flex: 1;
    margin-top: 5px;
}
@media (max-width: 768px) {
    #faq {
        padding: 50px 15px;
    }
    #faq .ja-title{
        font-size: 24px;
    }
    .faq-question, .faq-answer {
        padding: 0 10px;
        border-radius: 10px;
        font-size: 16px;
    }
    .faq-row {
        padding: 10px 0 10px 10px;
        gap: 0;
    }
    .faq-rowA {
        padding: 30px 0px 10px 10px;
        gap: 0;
    }
    .q-icon, .a-icon {
        font-size: 10px;
        padding: 5px 9px;
    }
    .q-text, .a-text {
    margin-top: 2px;
}

}
/*
============================
Job Description
============================
*/
#job-description {
    padding: 80px 20px;
}
.note {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000000;
}
.job-table {
    max-width: 1000px;
    margin: 0 auto;
}
.job-table div {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    gap: 250px;
}
.job-table div:last-child {
    border-bottom: 0px;
}
.job-table dt {
    width: 180px;
    font-weight: bold;
    flex-shrink: 0;
}
.job-table dd {
    margin: 0;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    #job-description {
        padding: 50px 15px;
    }
    .job-table div {
        flex-direction: column;
        padding: 16px 0;
        gap: 0;
    }
    .job-table dt {
        width: 100%;
        margin-bottom: 8px;
        font-size: 15px;
    }
    .job-table dd {
        font-size: 15px;
    }
    .title {
        font-size: 28px;
    }
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .job-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/*
============================
Rcruit
============================
*/
#recruit-section {
    position: relative;
    border-radius: 50px 50px 0 0;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}
#recruit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(100, 152, 159, 0.45), rgba(100, 152, 159, 0.45)), url("../../images/bg_recruit.jpg") center 38% / cover no-repeat;
    z-index: 0;
}
#recruit-section .intro-text {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
#recruit-section .en-title {
    color: #ffffff;
}
#recruit-section .en-title .tag {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}
.recruit-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.recruit-lead {
    font-size: 30px;
    margin-bottom: 20px;
}
.recruit-sub {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.recruit-btn-wrapper {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.recruit-btn {
    width: 550px;
    height: 100px;
    line-height: 100px;
    font-size: 30px;
	border: 1px solid #ffffff;
}
.btn.recruit-btn::after {
    right: 90px;
}
/* SP Responsive */
@media screen and (max-width: 768px) {
    #recruit-section {
        padding: 50px 15px;
    }
    #recruit-section::before {
        transform: scale(1.2);
    }
    #recruit-section .en-title {
        margin-bottom: 40px;
    }
    .recruit-lead {
        font-size: 28px;
    }
    .recruit-sub {
        font-size: 16px;
    }
    .recruit-btn {
        width: 300px;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }
    .btn.recruit-btn::after {
        right: 20px;
    }
}
@media screen and (min-width: 1200px) {
	.recruit-lead {
		white-space: nowrap;
	}
}

/*
============================
Footer
============================
*/
.site-footer {
    background: #fafaf5;
    padding: 40px 20px 20px;
    font-family: sans-serif;
    color: #444;
}
.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.footer-logo img {
    width: 250px;
    height: auto;
}
footer nav {
    width: 100%;
}
.footer-btn {
    max-width: 1500px;
    margin: 80px auto;
    text-align: right;
}
.corporate-link {
    width: 250px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #554241;
    padding: 0px 24px;
    font-size: 14px;
    color: #554241;
    font-weight: normal;
}
.btn.corporate-link::after {
    background: url("../../images/btn-arrow2.svg") no-repeat center center / contain;
}
.corporate-link:hover {
    background: #eee;
}
.footer-bottom {
    width: 100%;
    max-width: 1500px;
    margin: 30px auto 0;
    font-size: 12px;
    padding-top: 10px;
    color: #554241;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom .privacy-link-bottom {
    text-decoration: none;
    color: #554241;
    font-size: 13px;
}
.footer-bottom small {
    font-size: 12px;
}
footer .nav_item:last-child a::after, footer .nav_item:last-child a::before {
    content: '';
}
/* SP対応 */
@media screen and (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 12px;
    }
    .footer-btn {
        text-align: center;
        margin: 20px auto;
    }
    .privacy-link {
        margin-bottom: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
    }
}
@media only screen and (max-width: 1200px) {
    .footer-nav .nav_list {
        padding: 0;
        margin-bottom: 15px;
    }
    .footer-nav .nav_item a::after {
        content: none;
    }
    .footer-nav .nav_item {
        margin-bottom: 15px;
    }
    .footer-nav .nav_item:last-child {
        margin-bottom: 0px;
        border-bottom: 2px solid #aaa1a0;
    }
    .privacy-link {
        font-size: 0.8em;
    }
}


