/* ========================================
   リセット・基本スタイル
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'YuGothic', 'Yu Gothic', 'Segoe UI', sans-serif;
    color: #564A4A;
    background-color: #F7F1EC;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

p {
    line-height: 1.9;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ヘッダー
   ======================================== */

.header {
    position: sticky;
    top: 0;
    background-color: transparent; /* 修正: 背景色を削除 */
    z-index: 100;
    box-shadow: none !important;
}

.header__container {
    width: 100%; /* 修正: 幅100% */
    margin: 0 auto;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__left-group {
    display: flex;
    align-items: center;
}

.header__divider {
    width: 1px;
    height: 40px;
    background: #A4A4A4;
    margin: 0 20px;
}

.header__recruit-text {
    font-size: 18px;
    font-family: "GFS Didot", serif;
    font-weight: 700;
    color: #c1b7b7;
}

.header__right-group {
    display: flex;
    align-items: center;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__nav {
    display: none; /* 修正: PCでもナビゲーションを非表示 */
}

.header__btn {
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    border: 1px solid #E18C9E;
    color: #FFF;
    padding: 18px 30px;
    border-radius: 0; /* 修正: 角丸を0pxに */
    font-size: 20px;
    flex-shrink: 0;
    display: block; /* 修正: ボタンを表示 */
    height: 70px;
    font-family: 'Shippori Mincho', serif;
}
.header__btn:hover {
    border: 1px solid #E18C9E;
    background: #fff;
    color: #E18C9E;
}

.header__menu-toggle.active .header__menu-toggle-inner span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__menu-toggle.active .header__menu-toggle-inner span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active .header__menu-toggle-inner span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header__menu-toggle-inner span {
    width: 100%;
    height: 2px;
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%); /* 修正: グラデーションを適用 */
    transition: all 0.3s ease;
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    background: #FFF;
    width: 70px;
    height: 70px;
    z-index: 200;
    text-align: center; /* MENUテキストの中央寄せ用 */
    position: relative; /* MENUテキストの配置用 */
}

.header__menu-toggle-inner {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 35px;
    height: 25px;
    margin-top: 19px;
}

.header__menu-toggle-text {
    font-size: 12px;
    color: #564A4A;
    font-weight: 500;
    font-family: "GFS Didot", serif;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0; /* 修正: ヘッダーの高さ分下にずらす */
    right: 0;
    width: 240px; /* サイドメニューの幅 */
    height: calc(100vh - 70px); /* 修正: ヘッダーの高さを引く */
    background-color: #FFF;
    z-index: 99;
    transform: translateX(100%); /* 修正: 初期状態では右に隠す */
    transition: transform 0.5s ease-in-out; /* 修正: ゆっくり表示 */
    overflow-y: auto; /* メニューが長い場合にスクロール可能に */
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__list {
    list-style: none;
    padding: 90px 30px 30px; /* ヘッダーの高さ分を考慮 */
}

.mobile-menu__list li {
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.mobile-menu__list a {
    display: block;
    color: #564A4A;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu__list a:hover {
    color: #DA738A;
}

.mobile-menu__btn {
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    color: #FFF;
    padding: 12px 30px;
    border-radius: 0; /* 修正: 角丸を0pxに */
    font-size: 14px;
    font-weight: 600;
    display: block;
    width: 80%;
    margin: 30px auto 0;
    text-align: center;
}

/* ========================================
   ヒーロー（TOPセクション）
   ======================================== */

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0 auto;
    margin-top: -70px; /* 修正: ヘッダーを被せる */
    padding: 80px 20px 80px 104px;
    gap: 20px;
    position: relative;
    overflow: visible; /* 修正: 画像の見切れを解消 */
    min-height: 900px; /* 修正: 画像の高さに対応 */
    padding-top: 150px; /* 修正: コンテンツを下げる */
    z-index: 5; /* 修正: ヘッダーより手前に */
}

.hero__content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10; /* 修正: コンテンツを画像より手前に */
}

.hero__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    font-weight: 400; /* 修正: font-weightを普通に */
    line-height: 1.4;
    margin-bottom: 20px;
    color: #564A4A;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__title-line {
    color: #FFF;
    display: inline-flex;
    padding: 6px 0;
    align-items: center;
    gap: 10px;
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    width: fit-content;
    padding: 6px 12px;
    font-weight: 400; /* 修正: font-weightを普通に */
}

.hero__subtitle {
    font-size: 20px;
    font-family: 'Shippori Mincho', serif;
    color: #564A4A;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero__btn {
    display: flex;
    width: 174px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 7px 24px;
    flex-wrap: wrap;
    font-family: 'Shippori Mincho', serif;
    border-bottom: 2px solid;
    border-image: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%) 1;
    background: transparent;
    color: #564A4A;
    padding: 4px 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.hero__btn img {
    width: 16px;
    height: 16px;
}

.hero__btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.hero__image {
    position: absolute;
    top: -70px; /* 修正: 画像を上を設定してヘッダーを被せる */
    right: 0; /* 修正: 画像を右に設定して見切れを解消 */
    max-width: 1075.745px;
    height: auto;
    margin-left: 80px;
    overflow: visible;
    z-index: 1; /* 修正: 画像を背景として配置 */
    aspect-ratio: 1075.745 / 880.364;
}

.hero__image-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 修正: 画像全体を表示 */
    display: block;
    object-position: right top; /* 画像を右上を基準に配置 */
}

/* ========================================
   セクション共通スタイル
   ======================================== */

section {
    padding: 100px 20px 120px;
}

.section-title {
    border-bottom: 1px solid #CDC1AA;
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    font-weight: 400; /* 修正: font-weightを普通に */
    line-height: 2;
    text-align: left;
    margin-bottom: 60px;
    color: #564A4A;
}

.section-title span {
    font-size: 18px;
    font-family: 'Work Sans', sans-serif;
    color: #E4AE9B;
    padding-left: 40px;
}

.section-description {
    margin-bottom: 40px;
}

/* ========================================
   私たちの想いセクション
   ======================================== */

.about {
    padding-top: 0;
    padding-bottom: 120px;
    position: relative;
    background-image: url(../images/img/img_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
}

.about::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 60%;
    background-image: url(../images/img/img_bg2.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -30%;
    z-index: -1;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about__content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about .section-title {
    border-bottom: none;
    margin-bottom: 0;
}

.about__copy {
     font-family: "GFS Didot", serif;
    font-size: 72px;
    font-weight: 400;
    background: var(--_, linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about__text {
    flex: 1;
}

.about__text p {
    font-size: 20px;
    font-family: 'Shippori Mincho', serif;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #564A4A;
}

.about__image {
    flex: 1;
}

.about__content2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.about__omoi__inner {
    /* オレンジ_ドロップシャドウ */
    box-shadow: 0 2px 30px 0 rgba(180, 139, 105, 0.06);
    max-width: 709px;
    background: #FFF;
    padding: 30px 60px 48px;
}

.about__omoi._antei {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.about__omoi h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 2;
    background: var(--_, linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid #C5C5C5;
    margin-bottom: 20px;
}

.about__image img {
    width: 100%;
}

/* ========================================
   働く場所セクション
   ======================================== */

.workplace {
    background-color: #fff;
}

.workplace__container {
    max-width: 1200px;
    margin: 0 auto;
}

.workplace__grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
}

.workplace__item {
    background-color: #FFF;
    transition: transform 0.3s ease;
    display: flex;
}
.workplace__item img {
    padding: 20px 0 0 20px;
    object-fit: cover;
    width: 97%;
    height: 400px;
}

.workplace__item-left {
    width: 50%;
    position: relative;
}

.workplace__item-right{
    width: 50%;
}

.workplace__name {
    position: absolute;
    font-family: 'Shippori Mincho', serif;
}

.workplace__name p {
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    width: fit-content;
    margin-bottom: 4px;
    color: #fff;
    font-size: 24px;
    padding: 4px 16px !important;
}

.workplace__item h3 {
    color: #DA738A;
    font-family: 'Shippori Mincho', serif;
    font-weight: 400; /* 修正: font-weightを普通に */
    padding: 0px 20px;
}

.workplace__theme {
    color: #DA738A;
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    padding-bottom: 0 !important;
}
.workplace__info span {
    border: 1px solid #DA738A;
    color: #DA738A;
    /* padding: 8px 16px;
    margin-right: 16px; */
    min-width: 100px;
    height: fit-content;
    display: flex;
    justify-content: center;
    margin-right: 20px;
}

.workplace__item p {
    padding: 0 20px 20px;
    display: flex;
}

.workplace__info-address {
    display: flex;
    padding: 0 20px 20px;
}

.workplace__info-address p {
    padding: 0;
}

/* .workplace__info-address {
    padding-left: 7.4em !important;
    text-indent: -6.15em;
}

.workplace__info-access {
    padding-left: 8.4em !important;
    text-indent: -7.15em;
} */

/* .workplace__info-feature {
    padding-left: 6.4em !important;
    text-indent: -5.15em;
} */




/* ========================================
   スタッフインタビューセクション
   ======================================== */

.interview {
    background-color: #F5ECE4;
    overflow: hidden;
}

.interview__container {
    max-width: 1200px;
    margin: 0 auto;
}

.interview__grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 80px;
}

.interview__card {
    border-radius: 8px;
    display: flex;
    z-index: 1;
    position: relative;
    justify-content: center;
}
.interview__name {
    position: absolute;
    z-index: 3;
    margin-top: -80px;
    margin-left: -15px;
}

.interview__name p {
    font-family: 'Shippori Mincho', serif;
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    width: fit-content;
    margin-bottom: 4px;
    color: #fff;
    font-size: 18px;
    padding: 4px 16px !important;
}

.staff-name {
    font-size: 24px !important;
}

.interview__img {
    width: 46%;
    object-fit: contain;
    z-index: 2;
    padding-left: 10px;
    margin-top: 60px;
}

.interview__content {
    padding: 60px 30px;
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 50%;
}

.interview__card.staff-2 .interview__content::after {
    left: -40%;
}

.interview__content::after {
    content: "";
    display: inline-block;
    background: #fff;
    height: 100%;
    width: 150%;
    position: absolute;
    top: 0;
    right: -40%;
    z-index: -1;
}


.interview__card h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 400; /* 修正: font-weightを普通に */
    margin-bottom: 20px;
    color: #564A4A;
    border-bottom: 1px solid #DA738A;
    line-height: 2;
}

.interview__q {
    font-size: 20px;
    font-family: 'Shippori Mincho', serif;
    color: #DA738A;
    line-height: 2;
}

.interview__position {
    font-size: 14px;
    color: #DA738A;
    margin-bottom: 15px;
    font-weight: 600;
}


/* ========================================
   仕事内容セクション
   ======================================== */

.job {
    background-color: #fff;
    background-image: url(../images/img/img_bg3.svg), url(b../images/img/img_bg3.svg);
    background-position: right top, left bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 50%, 25%;
}

.job__container {
    max-width: 1200px;
    margin: 0 auto;
}

.job__grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 60px;
}

.job__item {
    border-radius: 8px;
    display: flex;
}

.job__item.job-2 {
    justify-content: center;
}

.job__item.job-3 {
    justify-content: right;
}

.job__item-inner {
    display: flex;
    max-width: 960px;
    align-items: center;
    gap: 4%;
}

.job__item img {
    width: 40%;
    object-fit: cover;
}

.job__item h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400; /* 修正: font-weightを普通に */
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    width: fit-content;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    padding: 4px 16px;
}

.job__item-text {
    margin-top: -60px;
}

.job__item p {
    color: #564A4A;
}

/* ========================================
   評価制度セクション
   ======================================== */


.evaluation__container {
    max-width: 1200px;
    margin: 0 auto;
}

.evaluation__content {
    text-align: center;
}

.evaluation__content > p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #564A4A;
}

.evaluation__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.evaluation__icon {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
}

.evaluation__icon h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    font-size: 24px;
    color: #E18C9E;
    margin-bottom: 4%;
}

.evaluation__icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.evaluation__icon p {
    color: #564A4A;
}

/* ========================================
   研修制度セクション
   ======================================== */

.training {
    background-color: #F7F1EC;
    padding-top: 0;
}

.training__container {
    max-width: 1200px;
    margin: 0 auto;
}

.training__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.training__image {
    flex: 0.7;
}

.training__image p {
    text-align: center;
    margin-top: 10px;
}

.training__image img {
    width: 100%;
}

.training__text {
    flex: 1;
    display: grid;
    gap: 30px;
}

.training__text-wrap {
    background: #fff;
    padding: 20px 32px;
}

.training__text h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CDAAB4;

}

.training__text p {
    color: #564A4A;
}

/* ========================================
   成長の道筋セクション
   ======================================== */

.growth {
    padding-top: 0;
}

.growth .section-title {
    margin-bottom: 80px;
}

.growth__container {
    max-width: 1200px;
    margin: 0 auto;
}

.growth__steps {
    /* display: grid;
    gap: 40px; */
    margin: 0 auto;
    width: fit-content;
}

.growth__step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.growth__step-icon {
    margin-right: 88px;
    margin-top: 10px;
}

.growth__step-icon::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 150px;
    background-image: url('../images/img/img_step-arrow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 20px;
}

.growth__step:last-child .growth__step-icon::after {
    display: none;
}

.growth__step-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.growth__step-text {
    background: #fff;
    padding: 30px 20px 20px;
    position: relative;
    width: 85%;
}

.growth__step-text .step {
    color: #E18C9E;
    font-family: "GFS Didot", serif;
    font-size: 42px;
    font-weight: 400;
    position: absolute;
    top: -46px;
}

.growth__step h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    font-weight: 400; /* 修正: font-weightを普通に */
    margin-bottom: 10px;
    color: #564A4A;
}

.growth__step p {
    color: #564A4A;
}

/* ========================================
   募集要項セクション
   ======================================== */

.recruitment {
    background-color: #F5ECE4;
    background-image: url(../images/img/img_bg4.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position-x: right;
}

.recruitment__container {
    max-width: 1200px;
    margin: 0 auto;
}

.recruitment__table {
    background-color: #FFF;
    overflow: hidden;
    padding: 20px;
}

.recruitment__table table {
    width: 100%;
    border-collapse: collapse;
}

.recruitment__table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #564A4A;
    border-bottom: 1px solid #E0E0E0;
    width: 150px;
}

.recruitment__table td {
    padding: 20px;
    color: #564A4A;
    border-bottom: 1px solid #E0E0E0;
}

.recruitment__table tr:last-child th,
.recruitment__table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   よくあるご質問セクション
   ======================================== */

.faq {
    background-color: #FFF;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    overflow: hidden;
}

.faq__question {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #C5C5C5;
    color: #564A4A;
    justify-content: space-between;
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #989898;
    border-radius: 0; /* 修正: 角丸を0pxに */
    /* font-size: 24px; */
    font-weight: 100;
    flex-shrink: 0;
}

/* .faq__item[open] .faq__icon {
    transform: rotate(45deg);
} */

.faq__item.active .faq__answer {
  display: block;
}

.faq__item.active .faq__icon {
  content: "−";
  transform: rotate(180deg);
}

.faq__answer {
    padding: 20px;
    color: #564A4A;
    animation: fadein 0.3s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   CTA（行動喚起）セクション
   ======================================== */

.cta {
    padding: 120px 20px;
    text-align: center;
}

.cta__container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    font-weight: 400; /* 修正: font-weightを普通に */
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta__btn-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta__btn {
    background-color: #FFF;
    color: #564A4A;
    padding: 24px 40px;
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    width: 336px;
}

.btn-oubo {
    background: linear-gradient(95deg, #E18C9E 0%, #E5A689 109.79%);
    color: #FFF;
}

.cta__btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* ========================================
   フッター
   ======================================== */

.footer {
    background-color: #564A4A;
    color: #FFF;
    padding:20px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* ========================================
   タブレット対応（768px以下）
   ======================================== */

@media (max-width: 768px) {
    .header__container {
        height: 56px;
        padding: 0 0 0 20px;
    }

    .header__divider {
        height: 30px; /* モバイルでの高さを調整 */
    }

    .header__recruit-text {
        font-size: 14px;
    }

    .mobile-menu {
        top: 60px; /* 修正: ヘッダーの高さに合わせて調整 */
        height: calc(100vh - 60px); /* 修正: ヘッダーの高さを引く */
    }

    /* .header__menu-toggle はすでに表示 */
    .header__menu-toggle {
        width: 56px;
        height: 56px;
    }

    .header__menu-toggle-inner {
        height: 23px;
        margin-top: 13px;
    }

    .header__btn {
        padding: 12px 40px;
        font-size: 18px;
        height: 56px;
    }

    /* .mobile-menu.active はCSSトランジションで制御するため不要 */

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .hero {
        flex-direction: column;
        padding: 10px 0px 60px 0px;
        gap: 0px;
    }

    .hero__image {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
    }

    .hero__image-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1075.745 / 880.364;
    }

    .hero__content {
        justify-content: normal;
        gap: 0;
        padding-left: 20px;
    }

    .hero__title {
        font-size: 32px;
    }

    .about__content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    .about__copy {
        font-size: 48px;
    }

    .about__omoi__inner {
        padding: 10px 20px 20px;
    }

    .workplace__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workplace__name p {
        font-size: 18px;
    }

    .workplace__item {
        flex-direction: column;
    }
    .workplace__item-left, .workplace__item-right {
        width: 100%;
    }

    .interview__grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .interview__card {
        flex-direction: column;
    }

    .interview__card.staff-2 {
        flex-direction: column-reverse;
    }

    .interview__img {
        width: 100%;
        padding: 0 20%;
        margin-bottom: -30px;
        margin-top: 0;
    }

    .interview__name {
        margin-left: -10px;
    }

    .interview__content {
        padding: 80px 30px 60px;
        width: 100%;
    }
    
    .job__item-text {
        margin-top: 0;
    }

    .evaluation__icons {
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
        /* gap: 40px; */
    }

    .training__content {
        flex-direction: column;
        gap: 40px;
    }

    .growth__steps {
        flex-direction: column;
        display: grid;
        gap: 50px;
    }

    .growth__step-icon {
        margin-right: 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta__btn-wrap {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .cta h2 {
        font-size: 32px;
    }
}

/* ========================================
   スマートフォン対応（480px以下）
   ======================================== */

@media (max-width: 480px) {
    
    .header__container {
        padding: 0 0 0 10px;
    }

    .header__left-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__divider {
        display: none;
    }

    .header__logo img {
        height: 32px;
    }

    .header__menu-toggle-inner{
        margin-top: 12px;
    }

    .header__divider {
        margin: 0 10px;
    }

    .header__recruit-text {
        font-size: 12px;
    }

    .header__btn {
        padding: 15px 10px;
        font-size: 16px;
    }

    .mobile-menu__list {
        padding: 50px 30px 30px; /* ヘッダーの高さ分を考慮 */
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }
    .section-title span {
        margin-top: -8px;
        padding-left: 0;
    }

    .section-description {
        margin-bottom: 30px;
    }

    section {
        padding: 50px 15px;
    }

    .hero {
        min-height: 0;
    }

    .hero__content {
        padding-left: 10px;
    }

    .hero__title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero__btn {
        font-size: 16px;
    }

    .about {
        padding-bottom: 70px;
    }

    .about__content{
        margin-bottom: 20px;
    }

    .about__text p {
        font-size: 16px;
    }

    .about__copy {
        font-size: 32px;
    }

    .about__omoi h3  {
        font-size: 24px;
    }
    .workplace__item h3 {
        font-size: 18px;
        padding: 0px;
    }

    .workplace__item p {
        padding: 0 0px 20px;
    }

    .workplace__theme {
        font-size: 20px;
    }

    .workplace__item img {
        padding: 10px 0 0 10px;
        height: 300px;
    }

    .workplace__info-address {
        padding: 0;
        flex-direction: column;
    }

    .workplace__info span {
        max-width: 100px;
        margin-bottom: 4px;
    }

    .workplace__info-access {
        padding-left: 7.4em !important;
    }

    .workplace__info-feature {
        padding-left: 5.4em !important;
    }

    .interview__grid {
        gap: 40px;
    }

    .interview__card h3 {
        margin-bottom: 0;
        font-size: 22px;
    }

    .interview__content {
        padding: 60px 0 40px;
    }

    .interview__name {
        margin-top: -60px;
    }

    .interview__name .staff-name {
        font-size: 20px !important;
    }

    .interview__img {
        padding: 0 10%;
    }

    .interview__name p {
        font-size: 16px;
        padding: 0px 10px !important;
    }

    .job {
        background-size: 90%, 26%;
    }

    .job__item-inner {
        gap: 24px;
        flex-direction: column;
    }

    .job__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .job__item img {
        width: 60%;
    }
    
    .job__item h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .evaluation__icon img {
        width: 80px;
        height: 80px;
    }

    .evaluation__icon h3 {
        font-size: 20px;
    }

    .training__text h3 {
        font-size: 20px;
    }

    .growth__step h3 {
        font-size: 18px;
    }
    
    .growth__step-icon {
        margin-right: 10px;
    }

    .growth__step-icon::after {
        margin-top: 0px;
        height: 120px;
    }

    .growth__step-icon img {
        width: 60px;
    }

    .growth__step-text {
        max-width: 74%;
    }

    .growth__step-text .step {
        font-size: 32px;
        top: -36px;
    }

    .recruitment__table th,
    .recruitment__table td {
        padding: 15px 10px;
        font-size: 16px;
    }

    .recruitment__table th {
        width: 100px;
    }

    .faq__question {
        padding: 15px;
        font-size: 18px;
    }

    .faq__answer {
        padding: 15px;
    }

    .cta {
        padding: 50px 15px;
    }

    .cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta__btn {
        padding: 20px 30px;
        font-size: 16px;
        width: 100%;
    }

    .footer__content {
        gap: 20px;
    }

    .footer__section h4 {
        font-size: 14px;
    }

    .footer__section a {
        font-size: 12px;
    }
}

/* ========================================
   追加: メニューオープン時のスクロールロック
   ======================================== */

body.menu-open {
    overflow: hidden;
}
