@charset "UTF-8";
/* =========================================================
   Design Tokens (Figma 変数より)
   ========================================================= */ :root {
    --cream-yellow: #FCF9F0;
    --orange2: #FEB68D;
    --corporate-color: #2B2B93;
    --orange: #FF8251;
    --orange-dark: #ED6428;
    --dark-gray: #4A4A4A;
    --black: #222222;
    --white: #FFFFFF;
    --green: #79BF57;
    --light-orange: #FEEBB7;
    --drop-shadow: 3px 3px 10px 1px rgba(186, 186, 186, 0.24);
    --font-rounded: "M PLUS Rounded 1c", "M PLUS 1p", sans-serif;
    --font-base: "Noto Sans JP", "M PLUS 1p", sans-serif;
    --font-en: "Montserrat", sans-serif;
    --container: 1340px;
    --content: 1000px;
    --header-h: 128px;
    --transition: 0.2s ease;
    --radius-section: 80px;
}
/* =========================================================
   Base / Reset
   ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--dark-gray);
    background: var(--cream-yellow);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: var(--header-h); /* fixed header の高さ分 */
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition);
}
h1, h2, h3, p, ul {
    margin: 0;
}
ul {
    list-style: none;
    padding: 0;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
/* ホバー時 0.2秒で色が変化 */
a:hover, button:hover {
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition);
}
[id] {
    scroll-margin-top: calc(var(--header-h) + 20px);
}
/* =========================================================
   Layout helpers
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 60px;
}
/* 各セクションは白背景 + 角丸80px のカード（クリーム地の上） */
.section {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-section);
    width: min(1480px, calc(100% - 40px));
    margin: 80px auto;
    padding-block: 80px;
    overflow: hidden;
	margin-bottom: 170px;
}
/* 白背景 */
.bg-white {
    background: var(--white);
}
.clip-path-ellipse {
    clip-path: ellipse(120% 100% at 50% 0%);
}
/* 見出し */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title .h2 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.h2--left {
    align-items: flex-start !important;
}
.title {
    font-family: var(--font-rounded);
    font-weight: 800;
    color: var(--corporate-color);
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0.08em;
}
.title--left {
    text-align: left;
}
.title--white {
    color: var(--white);
}
.section-title .description {
    margin-top: 20px;
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.9;
}

.description-sub {
	font-size: 16px;
	margin-top: 10px;
}

.section-title--left {
    text-align: left;
}
.section-title--left .h2 {
    align-items: flex-start;
}
.description--white {
    color: var(--white);
}

.bg-top {
	background-image: url("../images/bg-top.svg");
	background-repeat: no-repeat;
	    background-position: center center;
    background-size: auto;
}

.bg-bottom {
	background-image: url("../images/bg-bottom.svg");
	background-repeat: no-repeat;
	 background-position: center center;
    background-size: auto;
}

h2.title::after {
    content: "";
    display: block;
    width: 10rem;
    margin-top: 1.875rem;
    background-image: url("../images/dots.svg");
    background-size: 100%;
    aspect-ratio: 78 / 6;
    margin-left: auto;
    margin-right: auto;
}
h2.title--left::after {
    content: "";
    display: block;
    width: 10rem;
    margin-top: 1.875rem;
    background-image: url("../images/dots.svg");
    background-size: 100%;
    aspect-ratio: 78 / 6;
    margin-left: 0;
    /*margin-left: auto;
    margin-right: auto;*/
}

h2.title.title--white::after {
    content: "";
    display: block;
    width: 10rem;
    margin-top: 1.875rem;
    background-image: url("../images/dots-white.svg");
    background-size: 100%;
    aspect-ratio: 78 / 6;
	margin-left: 0;
    /*margin-left: auto;
    margin-right: auto;*/
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 20px;
    border-radius: 999px;
    padding: 24px 40px;
    position: relative;
    color: var(--white);
}
.btn__arrow, .btn__icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    display: inline-block;
	background-image: url("../images/right-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn__arrow-orange {
	background-image: url("../images/right-orange.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn__arrow {
    border-radius: 50%;
}
.btn--white {
    background: var(--white);
    color: var(--corporate-color);
}
.btn--filled {
    background: var(--orange-dark);
}
.btn--filled:hover {
    background: var(--orange);
}
.btn--blue {
    background: var(--corporate-color);
}
.btn--blue:hover {
    opacity: .85;
}

/*.btn--filled .btn__arrow {
    background: var(--white);
}*/

/*.btn--filled .btn__arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--orange-dark);
    border-right: 2px solid var(--orange-dark);
    transform: translateX(-2px) rotate(45deg);
}*/


/* pen / mail アイコン（白・簡易） */
/*.btn__icon--pen, .btn__icon--mail {
    border: 2.5px solid var(--white);
    border-radius: 7px;
}*/
.btn__icon--pen {
    /*position: absolute;
    right: 5px;
    top: 4px;*/
    width: 32px;
    height: 32px;
    /*background: var(--white);
    transform: rotate(45deg);
    border-radius: 1px;*/
	
	background-image: url("../images/btn-icon-pen.svg");
    background-size: contain;
    background-repeat: no-repeat;
	
}

.btn__icon--mail {
    width: 32px;
    height: 32px;	
	background-image: url("../images/btn-icon-mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/*.btn__icon--mail::after {
    content: "";
    position: absolute;
    inset: 6px 4px auto 4px;
    height: 9px;
    border: 2px solid var(--white);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
}*/
/* =========================================================
   bg-vector（背景装飾 / position: absolute）
   ========================================================= */
main {
    position: relative;
    z-index: 0;
}
.bg-decoration {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-vector {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    /*opacity: 0.5;*/
    background: var(--light-orange);
}
.bg-vector--a {
   /* width: 360px;
    height: 360px;*/
    left: -4%;
    top: 12%;
   /* background: var(--orange2);*/
    /*opacity: .28;*/
}
.bg-vector--b {
    /*width: 280px;
    height: 280px;*/
    right: -3%;
    top: 26%;
   /* background: var(--light-orange);*/
}
.bg-vector--c {
    /*width: 320px;
    height: 320px;*/
    left: 2%;
    top: 48%;
    /*background: var(--orange2);*/
    /*opacity: .25;*/
}
.bg-vector--d {
    width: 240px;
    height: 240px;
    right: 1%;
    top: 60%;
    background: var(--light-orange);
}
.bg-vector--e {
    width: 300px;
    height: 300px;
    left: -3%;
    top: 78%;
    background: var(--orange2);
    opacity: .25;
}
.bg-vector--f {
    width: 260px;
    height: 260px;
    right: -2%;
    top: 88%;
    background: var(--light-orange);
}
/* main-visual 内の装飾は .mv-bg / .mv-img で個別配置 */
/* =========================================================
   header（sticky）
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--white);
    width: 100%;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 70px 20px 60px;
    max-width: 1920px;
    margin-inline: auto;
    min-height: var(--header-h);
}
.pc-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sp-logo {
	display: none;
}

.pc-logo__img {
    display: block;
    width: 226px;
    height: 38px;
    background: var(--corporate-color);
    border-radius: 4px; /* 画像差し替え: ロゴ */
}
.pc-logo__label {
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
    white-space: nowrap;
}
.menu-pc-btn {
    display: block;
}
.menu-pc-btn__circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background-color var(--transition);
}
.menu-pc-btn:hover .menu-pc-btn__circle {
    background: var(--orange-dark);
}
.menu-pc-btn__bars {
    position: relative;
    width: 36px;
    height: 18px;
}
.menu-pc-btn__bars::before, .menu-pc-btn__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 36px;
    height: 5px;
    border-radius: 40px;
    background: var(--white);
    transition: transform var(--transition), top var(--transition);
}
.menu-pc-btn__bars::before {
    top: 0;
}
.menu-pc-btn__bars::after {
    top: 13px;
}
.menu-pc-btn__text {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--white);
}
.menu-pc-btn.is-open .menu-pc-btn__bars::before {
    top: 6px;
    transform: rotate(45deg);
}
.menu-pc-btn.is-open .menu-pc-btn__bars::after {
    top: 6px;
    transform: rotate(-45deg);
}
/* =========================================================
   MENU overlay（MENU/PC・MENU/SP）
   ========================================================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: none;
}
.menu-overlay.is-open {
    display: block;
}
.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(61, 61, 61, 0.5);
}
.menu-panel {
    position: relative;
    margin-top: var(--header-h);
    background: var(--cream-yellow);
    padding: 60px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
	background-image: url("../images/pc-menu-bg.svg");
	    background-position: center;
}

/*.menu-bg {
	background-image: url("../images/pc-menu-bg.svg");
	    background-position: top;
    background-size: inherit;
}*/

.menu-nav {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 50px 100px;
    justify-content: center;
}
.menu-nav__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-gray);
}
.menu-nav__item:hover {
    color: var(--orange-dark);
}
.menu-nav__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.menu-cta {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}
.menu-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    padding: 40px;
    border-radius: 90px;
    position: relative;
}
.menu-cta__btn--orange {
    background: var(--orange-dark);
}
.menu-cta__btn--orange:hover {
    background: var(--orange);
}
.menu-cta__btn--blue {
    background: var(--corporate-color);
}
.menu-cta__btn--blue:hover {
    opacity: .85;
}
.menu-cta__icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    /*border: 2.5px solid var(--white);*/
    border-radius: 7px;
}
.menu-cta__icon--pen {
     width: 32px;
    height: 32px;	
	background-image: url("../images/btn-icon-pen.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.menu-cta__icon--mail {
     width: 32px;
    height: 32px;	
	background-image: url("../images/btn-icon-mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
/* =========================================================
   main-visual（デザイン座標どおりの絶対配置ステージ）
   ========================================================= */
.main-visual {
    position: relative;
    background: #fff;
    overflow: hidden;
    height: 748px;
    clip-path: ellipse(120% 100% at 50% 0%);
    display: flex;
    justify-content: center;
}
.mv-stage {
    position: absolute;
    top: -30px;
    /*top: 0;*/
    left: 50%;
    transform: translateX(-50%);
    /*width: 1920px;*/
    max-width: 1920px;
    height: 708px;
    width: 100%;
    aspect-ratio: 1920 / 708;
}
/* 共通：絶対配置の装飾／写真。left/top/width は % 指定、高さは aspect-ratio から算出 */
.mv-bg, .mv-pro, .mv-c, .mv-character {
    position: absolute;
}
.mv-bg {
    position: absolute;
    border-radius: 50%;
}
.mv-bg--o {
    background: var(--orange2);
    opacity: .35;
}
.mv-bg--l {
    background: var(--light-orange);
    opacity: .9;
}
.mv-img {
    position: absolute;
    box-shadow: var(--drop-shadow);
}
.mv-img--circle {
    border-radius: 50%;
}
.mv-img--rect {
    border-radius: 24px;
}
/* mv-pro（工程写真・角丸） */
.mv-pro {
    border-radius: clamp(10px, 1.1vw, 24px);
    /* background: var(--light-orange);
    box-shadow: var(--drop-shadow);*/
}
.mv-pro-01 {
    left: 2.65%;
    top: 47.72%;
    width: 13.83%;
    aspect-ratio: 208 / 132;
    /* background: var(--green);*/
}
.mv-pro-02 {
    left: 2.06%;
    top: 78.93%;
    width: 13.68%;
    aspect-ratio: 205 / 137;
    /*background: var(--orange2);*/
}
.mv-pro-03 {
    left: 86.51%;
    top: 26.47%;
    width: 10.89%;
    aspect-ratio: 209 / 225;
    /* background: var(--light-orange);*/
}
.mv-pro-04 {
    left: 83.98%;
    top: 78.19%;
    width: 10.83%;
    aspect-ratio: 208 / 134;
    /*background: var(--orange2);*/
}
/* mv-c（丸い写真・正円） */
.mv-c {
    border-radius: 50%;
    /*box-shadow: var(--drop-shadow);*/
    /*background: var(--orange2);*/
}
.mv-c1 {
    left: 11.2%;
    top: 6.75%;
    width: 20.2%;
    aspect-ratio: 1;
    /*background: var(--orange2);*/
}
.mv-c2 {
    left: 17.02%;
    top: 59.2%;
    width: 16.71%;
    aspect-ratio: 1;
    /*background: var(--green);*/
}
.mv-c3 {
    left: 67.19%;
    top: 4.55%;
    width: 20.2%;
    aspect-ratio: 1;
    /*background: var(--green);*/
}
.mv-c4 {
    left: 63.59%;
    top: 52.67%;
    width: 17.7%;
    aspect-ratio: 1;
    /*background: var(--orange2);*/
}
.mv-c1 {
    /*background: var(--orange2);*/
}
.mv-c2 {
    /*background: var(--green);*/
}
.mv-c3 {
    /*background: var(--light-orange);*/
}
.mv-character {
    position: absolute;
    border-radius: 50%;
    background: var(--corporate-color);
    opacity: .85;
}
.mv-copy {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 647px;
    text-align: center;*/
    width: 33.7%;
    z-index: 2;
}
.mv-copy__lead {
    display: inline-block;
    background: var(--orange-dark);
    color: var(--white);
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.05em;
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.mv-copy__title {
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 78px;
    line-height: 1.35;
    letter-spacing: 0.12em;
}
.mv-copy__title .line {
    display: block;
    position: relative;
}
.mv-copy__title .c-blue {
    color: var(--corporate-color);
}
.mv-copy__title .c-orange {
    color: var(--orange);
}
.mv-copy__title .c-gray {
    color: var(--dark-gray);
}
.mv-copy__title .line:nth-child(1)::after, .mv-copy__title .line:nth-child(2)::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    width: 60%;
    height: 8px;
    background-image: radial-gradient(circle, var(--orange) 50%, transparent 51%);
    background-size: 12px 8px;
    background-repeat: repeat-x;
    opacity: .9;
}

/* =========================================================
   main-visual (TAB専用) — 通常は非表示、1200px以下で表示
   1200×800基準。コンテナ幅に追従して伸縮（位置はすべて%指定）
   ========================================================= */

.main-visual-tab {
    display: none;
}

/* =========================================================
   main-visual (SP専用) — 通常は非表示、767px以下で表示
   400×741基準。コンテナ幅に追従して伸縮（位置はすべて%指定）
   ========================================================= */
.main-visual-sp {
    display: none;
}
.mvsp-stage {
    position: relative;
    width: 100%;
    /*max-width: 480px;*/
    margin-inline: auto;
    aspect-ratio: 400 / 741;
    container-type: inline-size;
    /*overflow: hidden;*/
    background: var(--white);
}

.mv-sp-image {
	margin-top: -40px;
}

/* 共通：絶対配置（left/top/width は%、高さは aspect-ratio から算出） */
.mvsp-blob, .mvsp-photo, .mvsp-food, .mvsp-character {
    position: absolute;
}
/* 装飾blob */
.mvsp-blob {
    border-radius: 50%;
}
.mvsp-blob-1 {
    left: 0%;
    top: 14.17%;
    width: 25.25%;
    aspect-ratio: 101 / 112;
    background: var(--orange2);
    opacity: .35;
}
.mvsp-blob-2 {
    left: 69.5%;
    top: 24.70%;
    width: 29.25%;
    aspect-ratio: 117 / 136;
    background: var(--light-orange);
}
.mvsp-blob-3 {
    left: 7.5%;
    top: 33.47%;
    width: 47%;
    aspect-ratio: 1;
    background: var(--orange2);
    opacity: .30;
}
/* 写真（円形・ダミー） */
.mvsp-photo {
    border-radius: 50%;
    box-shadow: var(--drop-shadow);
    background: var(--light-orange);
}
.mvsp-photo-tl {
    left: 9.5%;
    top: 1.08%;
    width: 28.75%;
    aspect-ratio: 1;
    background: var(--orange2);
}
.mvsp-photo-tr {
    left: 59.75%;
    top: 1.08%;
    width: 34.25%;
    aspect-ratio: 1;
    background: var(--light-orange);
}
.mvsp-photo-l {
    left: 5%;
    top: 44.81%;
    width: 31%;
    aspect-ratio: 1;
    background: var(--green);
}
.mvsp-photo-r {
    left: 59.5%;
    top: 45.61%;
    width: 36.13%;
    aspect-ratio: 1;
    background: var(--orange2);
}
/* 食材カットイメージ（ダミー） */
/*.mvsp-food {
    border-radius: 18%;
    box-shadow: var(--drop-shadow);
}*/
.mvsp-food-1 {
    left: 36%;
    top: 62.89%;
    width: 26.25%;
    aspect-ratio: 105 / 99;
    /*background: var(--orange);*/
}
.mvsp-food-2 {
    left: 3.75%;
    top: 73.64%;
    width: 33.75%;
    aspect-ratio: 135 / 132;
    /*background: var(--green);*/
}
.mvsp-food-3 {
    left: 62%;
    top: 75.99%;
    width: 30.25%;
    aspect-ratio: 121 / 123;
    /*background: var(--orange2);*/
}
.mvsp-food-4 {
    left: 30.75%;
    top: 92.19%;
    width: 29.25%;
    aspect-ratio: 117 / 84;
    /*background: var(--light-orange);*/
}
/* character（トレーマン・ダミー） */
.mvsp-character {
    left: 8%;
    top: 9.5%;
    width: 16%;
    aspect-ratio: 68 / 71;
    border-radius: 42% 42% 46% 46%;
    background: var(--corporate-color);
    opacity: .85;
    transform: rotate(-12deg);
    z-index: 4;
}
/* badge */
.mvsp-badge {
    position: absolute;
    left: 50%;
    top: 14.84%;
    transform: translateX(-50%);
    z-index: 5;
    background: var(--orange-dark);
    color: var(--white);
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: clamp(13px, 4cqw, 19px);
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0.6em 1.4em;
    border-radius: 50px;
}
/* headline */
.mvsp-title {
    position: absolute;
    left: 50%;
    top: 20.2%;
    transform: translateX(-50%);
    z-index: 5;
    width: 78%;
    text-align: center;
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: clamp(28px, 8.75cqw, 42px);
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.mvsp-title .line {
    display: block;
    position: relative;
}
.mvsp-title .c-blue {
    color: var(--corporate-color);
}
.mvsp-title .c-orange {
    color: var(--orange);
}
.mvsp-title .c-gray {
    color: var(--dark-gray);
}
.mvsp-title .line:nth-child(1)::after, .mvsp-title .line:nth-child(2)::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.05em;
    width: 64%;
    height: 6px;
    background-image: radial-gradient(circle, var(--orange) 50%, transparent 51%);
    background-size: 10px 6px;
    background-repeat: repeat-x;
    opacity: .9;
}
/* =========================================================
   top-message
   ========================================================= */
.top-message__head {
    display: flex;
    /* gap: 160px;*/
    align-items: center;
    margin-bottom: 130px;
}
.top-message .text-box {
    flex: 1;
}
.top-message .h2 {
    margin-bottom: 40px;
    display: inline-flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.top-message .title {
    font-size: 40px;
    line-height: 1.8;
}
.top-message .description {
    font-size: 20px;
    line-height: 2.5;
    font-weight: 700;
}
.top-message__img {
    /*width: 502px;
    height: 467px;
    border-radius: 70px;
    background: var(--light-orange);*/
    flex-shrink: 0;
    /*box-shadow: var(--drop-shadow);*/
}
.features-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.h3-support-sp {
	display: none;
}

.features-head__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--orange-dark);
    flex-shrink: 0;
}
.features-head__title {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 28px;
    color: var(--corporate-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: var(--content);
    margin-inline: auto;
}
.feature-card {
    background: var(--cream-yellow);
    border-radius: 60px;
    overflow: hidden;
}
.feature-card__img {
    aspect-ratio: 480 / 260;
    background: var(--light-orange);
}
.feature-card__body {
    padding: 30px;
}
.feature-card__title {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 24px;
    color: var(--corporate-color);
    margin-bottom: 16px;
}
.feature-card__text {
    font-size: 18px;
    line-height: 1.9;
}
.feature-card--wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
}
.feature-card--wide .feature-card__img {
    width: 461px;
    aspect-ratio: 461 / 358;
    flex-shrink: 0;
}
.feature-card--wide .feature-card__body {
    display: flex;
    flex-direction: column;
    padding: 40px;
}
/* =========================================================
   works
   ========================================================= */
.works__jobs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: var(--content);
    margin: 0 auto 80px;
}
.works__jobs .job-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: start;
}
.job-card {
    text-align: center;
    background: var(--cream-yellow);
    padding: 38px;
    border-radius: 40px;
}
/*.job-card__img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--light-orange);
    margin: 0 auto 24px;
    box-shadow: var(--drop-shadow);
}*/
.job-card__img img {
    margin: auto;
}
.job-card__title {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 21px;
    color: var(--corporate-color);
    margin-bottom: 12px;
}
.job-card__text {
    font-size: 18px;
}
.job-card__flex {
    display: flex;
    flex-direction: column;
    width: 50%;
	padding-left: 60px;
}
.work-flow {
    max-width: var(--content);
    margin: 0 auto 80px;
}
.work-flow__head {
    text-align: center;
    margin-bottom: 40px;
}
.work-flow__title {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 28px;
    color: var(--corporate-color);
    margin-bottom: 24px;
    letter-spacing: .05em;
}
.work-flow__lead {
    font-size: 18px;
    line-height: 1.9;
}
.work-flow__note {
    font-size: 16px;
    color: var(--corporate-color);
    margin-top: 12px;
}
.work-flow__note-mark {
    color: var(--orange);
    font-weight: 700;
}
.work-btn-list__sp {
    display: none;
}
.work-btn-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /*margin-bottom: 40px;*/
}
.work-btn__link {
    display: block;
    text-align: center;
    width: 100%;
}
.work-btn__img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 230px;
    margin: 0 auto;
    /*border-radius: 16px;*/
    /*background: var(--orange2);*/
    /* box-shadow: var(--drop-shadow);*/
    transition: transform var(--transition);
}
.work-btn__link:hover .work-btn__img {
    transform: translateY(-4px);
}
.work-btn__label {
    display: block;
    margin-top: 12px;
    font-family: var(--font-rounded);
    font-weight: 700;
    color: var(--corporate-color);
}
.work-flow__illust {
    height: 225px;
    /* border-radius: 16px;
    background: var(--cream-yellow);
    border: 2px dashed var(--orange2);*/
}
.works__person {
    max-width: var(--content);
    margin-inline: auto;
    background: var(--cream-yellow);
    padding: 48px;
    border-radius: 60px;
}
.person-head {
    text-align: center;
    margin-bottom: 40px;
}
.person-head__title {
    display: inline-block;
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 34px;
    color: var(--white);
    background: var(--orange-dark);
    border-radius: 60px;
    padding: 12px 40px;
    letter-spacing: .08em;
}

.person-head__title::after {
	content: "";
	width: 32px;
    height: 32px;
    background-image: url("../images/h3-kira-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/*.h3-kira-icon {
	width: 32px;
    height: 32px;
    background-image: url("../images/h3-kira-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 8px;	
}*/

.person-head__small {
    font-size: 28px;
}
/*.person-body {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: center;
}*/
.person-body__icon {
    width: 198px;
    height: 198px;
    border-radius: 50%;
    background: var(--light-orange);
    flex-shrink: 0;
}
.work-desc-sp {
    display: none;
}
.person-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.person-list li {
    position: relative;
    padding-left: 26px;
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 21px;
    color: var(--dark-gray);
}
.person-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--corporate-color);
}
/* =========================================================
   interview
   ========================================================= */
.interview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
    max-width: 1180px;
    margin-inline: auto;
}
.interview-btn {
    display: block;
}
.interview-btn__img {
    display: block;
    width: 100%;
    aspect-ratio: 260 / 318;
    border-radius: 16px;
    background: var(--light-orange);
    box-shadow: var(--drop-shadow);
    transition: transform var(--transition);
}
.interview-btn:hover .interview-btn__img {
    transform: translateY(-4px);
}
/* =========================================================
   career
   ========================================================= */
.career-steps {
    max-width: var(--content);
    margin-inline: auto;
}
.career-step {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--cream-yellow);
    border-radius: 40px;
    padding: 20px 50px;
}
/*.career-step__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}*/
.career-step__body {
    display: flex;
    align-items: center;
    gap: 40px;
}
.career-step__year {
    /*font-family: var(--font-rounded);*/
    font-weight: 700;
    font-size: 20px;
    /*color: var(--corporate-color);*/
    white-space: nowrap;
}
.career-step__year span {
    font-size: 20px;
}
.career-step__text {
    font-size: 16px;
}
.career-step__arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 14px auto;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid var(--orange2);
}
/* =========================================================
   data
   ========================================================= */
.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: var(--container);
    margin-inline: auto;
}
.data-card {
    background: var(--cream-yellow);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
}
.data-card__label {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 22px;
    color: var(--corporate-color);
    margin-bottom: 24px;
}
/*.data-card__img {
    height: 200px;
    border-radius: 12px;
    background: var(--white);
}*/
.data-card__img img {
    width: 100%;
    padding: 15px;
}
/* =========================================================
   benefit
   ========================================================= */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
    max-width: 960px;
    margin-inline: auto;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.benefit-item__icon {
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: var(--light-orange);
}
.benefit-item__label {
    /*font-family: var(--font-rounded);*/
    font-weight: 700;
    font-size: 18px;
    color: var(--corporate-color);
}
/* =========================================================
   production-base
   ========================================================= */
.production-base__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.production-base__head .section-title {
    margin-bottom: 0;
}
.production-base__head .description {
    font-size: 18px;
    line-height: 1.9;
    max-width: 619px;
}
.production-base__body {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}
.base-table-wrap {
    flex: 1;
    background: var(--cream-yellow);
    border-radius: 40px;
    padding: 40px;
}
.base-table {
    border-collapse: collapse;
    width: 100%;
}
.base-table th, .base-table td {
    text-align: left;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 32px;
    vertical-align: middle;
    border-bottom: 2px solid #ddd;
}
.base-table th {
    font-family: var(--font-base);
    font-weight: 700;
    color: var(--corporate-color);
    width: 130px;
    white-space: nowrap;
}
.base-table td {
    font-family: var(--font-base);
    font-weight: 500;
    color: var(--dark-gray);
}
/*.production-base__img {
    width: 356px;
    height: 356px;
    border-radius: 50%;
    background: var(--light-orange);
    flex-shrink: 0;
}*/
/* =========================================================
   faq（accordion）
   ========================================================= */
.faq__head {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
.faq__head .h2 {
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.faq__head-img {
    /* width: 205px;
    height: 205px;
    border-radius: 50%;
    background: var(--light-orange);*/
    /*margin: 30px auto 0;*/
}
.accordion-contents {
    max-width: 960px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.accordion {
    /*border-bottom: 2px solid var(--orange2);*/
    background: var(--cream-yellow);
    /*padding: 15px 30px;*/
    border-radius: 30px;
    box-shadow: var(--drop-shadow);
    overflow: hidden;
}
.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-align: left;
    padding: 20px 40px;
    transition: color var(--transition);
    background: var(--cream-yellow);
    border-radius: 30px;
}
.accordion-header:hover {
    color: var(--orange);
}
.accordion-header__q {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FEEBB7;
    color: var(--orange);
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-header__title {
    flex: 1;
    /*font-family: var(--font-rounded);*/
    font-weight: 500;
    font-size: 20px;
    color: var(--dark-gray);
}
.accordion-header__icon {
    flex-shrink: 0;
    width: 25px;
    height: 14px;
    position: relative;
    transition: transform var(--transition);
}
.accordion-header__icon::before, .accordion-header__icon::after {
    content: "";
    position: absolute;
    top: 4px;
    width: 16px;
    height: 3px;
    border-radius: 2px;
    /*background: var(--corporate-color);*/
    background: var(--orange);
}
.accordion-header__icon::before {
    left: 0;
    transform: rotate(45deg);
}
.accordion-header__icon::after {
    right: 0;
    transform: rotate(-45deg);
}
.accordion_contents {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    border-radius: 0 0 30px 30px;
}
.accordion_contents__inner {
    display: flex;
    gap: 16px;
    /*padding: 8px 0 24px;*/
    padding: 18px 40px 24px;
    background: #fff;
}
.accordion_contents__a {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion_contents__text {
    font-size: 16px;
    padding-top: 3px;
}
/*.accordion_contents__text--placeholder {
    color: #b0b0b0;
}*/
.accordion.is-active .accordion-header__icon {
    transform: rotate(180deg);
}
/* =========================================================
   teacher / recruit
   ========================================================= */
.teacher {
    padding: 0;
    background: var(--orange-dark);
}
.teacher__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 70px;
}
.teacher__text {
    flex: 1;
}
.teacher__img {
    flex: 1;
    /*width: 544px;
    height: 415px;
    border-radius: 16px;
    background: var(--light-orange);
    flex-shrink: 0;*/
}
.recruit__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.recruit__text {
    flex: 1;
}
.recruit__img {
    flex: 1;
    /*width: 562px;
    height: 428px;
    border-radius: 16px;
    background: var(--light-orange);
    flex-shrink: 0;*/
}
.container-head {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.container-head .title {
    font-size: 40px;
}
.container-head .description {
    font-size: 18px;
    line-height: 1.9;
}
.btn-news {
    align-self: flex-start;
}
.btn-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 412px;
}
.btn-list .btn {
    justify-content: center;
}
/* =========================================================
   footer
   ========================================================= */
.footer {
    background: var(--white);
    padding: 40px 60px 30px;
}
.footer__inner {
    max-width: 1920px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__logo-img {
    display: block;
    width: 226px;
    height: 38px;
    background: var(--corporate-color);
    border-radius: 4px; /* 画像差し替え: ロゴ */
}
.footer__logo-label {
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
    white-space: nowrap;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
    margin: 40px 0 60px;
}
.footer__nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-gray);
}
.footer__nav a:hover {
    color: var(--orange);
}
.footer__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.footer__copy {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 14px;
    color: #1E3190;
    text-align: center;
}
/* =========================================================
   go_to_top（初期非表示 → 2pxスクロールで表示）
   ========================================================= */
.go_to_top {
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 90;
   /* width: 80px;
    height: 80px;*/
    border-radius: 50%;
    /*background: var(--orange);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.8;
}

.go_to_top img {
	width: 100%;
}

.go_to_top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.go_to_top:hover {
    /*background: var(--orange-dark);*/
	opacity: 0.8;
}
.go_to_top__arrow {
    width: 14px;
    height: 14px;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    transform: rotate(-45deg);
    margin-top: 6px;
}
.go_to_top__text {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
}
/* =========================================================
   Responsive  (PC>=1200 / Tablet 768-1199 / SP<768)
   ========================================================= */
@media screen and (max-width: 1199px) {
    .title {
        font-size: 38px;
    }
    .mv-copy__title {
        font-size: 56px;
    }
    .top-message__head {
        gap: 40px;
    }
    .top-message .title {
        font-size: 34px;
    }
    .top-message__img {
        width: 360px;
        height: 340px;
    }
    .feature-card--wide {
        flex-direction: column;
        align-items: stretch;
    }
    .feature-card--wide .feature-card__img {
        width: 100%;
        aspect-ratio: 470 / 260;
    }
    .feature-card--wide .feature-card__body {
        display: block;
		padding: 30px;
    }
	
	.feature-card__title {
		font-size: 18px;
	}
	
    .interview__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .container-head .title {
        font-size: 38px;
    }
    .teacher__inner {
        padding: 50px;
        gap: 40px;
    }
    .teacher__img {
        width: 44%;
        height: auto;
        aspect-ratio: 544 / 415;
    }
    .recruit__img {
        width: 46%;
        height: auto;
        aspect-ratio: 562 / 428;
    }
    .menu-nav__item {
        font-size: 26px;
    }
    .menu-cta__btn {
        font-size: 20px;
        min-width: 280px;
        padding: 24px 36px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --header-h: 72px;
    }
    .section {
        /*padding-block: 56px;*/
        padding-block: 50px;
        border-radius: 40px;
        width: calc(100% - 24px);
        /*margin-block: 24px;*/
        margin-block: 50px;
    }
    .container {
        padding-inline: 20px;
    }
	
	.h3-support-pc {
		display: none;
	}
	
	.h3-support-sp {
		display: block;
	}
	
    .title {
        font-size: 26px;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title .description, .top-message .description, .container-head .description, .production-base__head .description, .work-flow__lead {
        font-size: 15px;
    }
	
	.description-sub {
	font-size: 14px;
}
	
    .section-title .description {
        margin-top: 14px;
    }
	
	.top-message .h2　{
		margin-bottom: 10px!important;
	}
	
	.job-card__title {
		font-size: 18px;
	}
	
    /* header */
    .header__inner {
        padding: 12px 16px;
        min-height: var(--header-h);
    }
	
	.pc-logo {
		display: none;
	}
	
    /*.pc-logo__img {
        width: 150px;
        height: 26px;
    }
    .pc-logo__label {
        display: none;
    }*/
	
	.sp-logo {
		display: block;	
	}
	
	.sp-logo img {
		width: 180px;
        height: 56px;
	}
	
    .menu-pc-btn__circle {
        width: 56px;
        height: 56px;
        gap: 4px;
    }
    .menu-pc-btn__bars {
        width: 24px;
        height: 12px;
    }
    .menu-pc-btn__bars::before, .menu-pc-btn__bars::after {
        width: 24px;
        height: 4px;
    }
    .menu-pc-btn__bars::after {
        top: 8px;
    }
    .menu-pc-btn.is-open .menu-pc-btn__bars::before {
        top: 4px;
    }
    .menu-pc-btn.is-open .menu-pc-btn__bars::after {
        top: 4px;
    }
    .menu-pc-btn__text {
        font-size: 9px;
    }
    /* MENU/SP : 1カラム */
    .menu-panel {
        padding: 40px 30px 60px;
		background-image: url("../images/sp-menu-bg.svg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		z-index: 999;
    }
    .menu-nav {
        grid-template-rows: none;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        gap: 24px;
        justify-content: start;
    }
    .menu-nav__item {
        font-size: 16px;
        gap: 10px;
    }
    .menu-nav__dot {
        width: 8px;
        height: 8px;
    }
    .menu-cta {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }
    .menu-cta__btn {
        width: 100%;
        min-width: 0;
        font-size: 16px;
        padding: 24px;
        border-radius: 40px;
    }
    /* main-visual（SPは装飾を非表示にして見出しを中央表示） */
    .main-visual {
        /*height: auto;*/
        display: none;
    }
    .main-visual-sp {
        display: block;
    }
    .mv-stage {
        position: static;
        transform: none;
        width: 100%;
        height: 560px;
        /*height: auto;*/
        padding: 48px 20px;
        display: flex;
        justify-content: center;
    }
    .mv-img, .mv-character, .mv-bg {
        display: none;
    }
    .mv-copy {
        position: static;
        transform: none;
        width: 90%;
        display: flex;
    }
    .mv-copy__lead {
        font-size: 15px;
        padding: 8px 20px;
        margin-bottom: 24px;
    }
    .mv-copy__title {
        font-size: 34px;
        letter-spacing: 0.08em;
    }
    .mv-copy__title .line:nth-child(1)::after, .mv-copy__title .line:nth-child(2)::after {
        width: 70%;
        height: 6px;
        background-size: 9px 6px;
    }
    /* top-message */
    .top-message__head {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 56px;
    }
    .top-message .title {
        font-size: 24px;
    }
    .top-message__img {
        width: 100%;
        max-width: 480px;
        height: auto;
        aspect-ratio: 502 / 467;
        border-radius: 40px;
    }
    .features-head {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .features-head__title {
        font-size: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-card {
        border-radius: 40px;
    }
    .feature-card__body {
        padding: 24px;
    }
    .feature-card__text {
        font-size: 15px;
    }
    /* works */
    .works__jobs {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .works__jobs .job-card:last-child {
        max-width: none;
        flex-direction: column;
		text-align: inherit;
    }
    .job-card__flex {
        width: 100%;
		padding-left: 0;
		text-align: center;
    }
    .job-card__img {
        width: 180px;
        height: 180px;
        margin: auto;
    }
    .work-flow__title {
        font-size: 22px;
    }
    .work-btn-list {
        display: none;
        /*grid-template-columns: repeat(2, 1fr);
        gap: 24px;*/
    }
    .work-flow__illust {
        display: none;
        /*height: 140px;*/
    }
    .person-body {
        flex-direction: column;
        gap: 28px;
    }
    .work-desc-pc {
        display: none;
    }
    .work-desc-sp {
        display: block;
    }
    .person-list li {
        font-size: 16px;
    }
    .person-head__title {
        font-size: 20px;
        padding: 12px 28px;
    }
    .person-head__small {
        font-size: 16px;
    }
    .works__person {
        padding: 20px;
    }
    /* スマホ版生産工程 */
    .work-btn-list__sp {
        display: block;
    }
	
	.sp-work-img {
		margin: 0 auto 48px;
	}
	
    /* interview */
    .interview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    /* career */
    .career-step {
        flex-direction: column;
        /*align-items: flex-start;*/
        gap: 16px;
        padding: 24px;
    }
    .career-step__body {
        flex-direction: column;
        /* align-items: flex-start;*/
        gap: 8px;
    }
    .career-step__year {
        font-size: 22px;
    }
    .career-step__year span {
        font-size: 18px;
    }
    .career-step__text {
        font-size: 15px;
    }
    /* data */
    .data-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .data-card {
        padding: 28px;
        border-radius: 28px;
    }
    /* benefit */
    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 32px;
    }
    .benefit-item__icon {
        width: 120px;
        height: 120px;
    }
    .benefit-item__label {
        font-size: 14px;
        text-align: center;
    }
    .benefit-item {
        /*width: 110px;*/
        gap: 16px;
    }
    /* production-base */
    .production-base__head {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    /*.production-base__head .section-title--left {
        text-align: center;
    }*/
    .production-base__head .section-title--left .h2 {
        align-items: center;
    }
    .production-base__head .h2--left {
        align-items: center !important;
    }
    .btn {
        font-size: 16px;
        padding: 18px 28px;
    }
    .production-base__body {
        flex-direction: column;
        align-items: center;
    }
    .base-table-wrap {
        width: 100%;
        padding: 20px;
        border-radius: 28px;
    }
    .base-table th, .base-table td {
        display: block;
        padding: 4px 8px;
        font-size: 15px;
        line-height: 1.7;
        border-bottom: none;
    }
    .base-table th {
        width: auto;
        padding-top: 12px;
    }
    .base-table td {
        padding-bottom: 12px;
        border-bottom: 2px solid #ddd;
    }
    .production-base__img {
        width: 240px;
        height: 240px;
    }
    /* faq */
    .accordion-header__title {
        font-size: 16px;
    }
    .accordion-header {
        gap: 12px;
        padding: 20px 20px;
    }
    .accordion_contents__text {
        font-size: 15px;
    }
    .accordion_contents__inner {
        padding: 18px 20px 24px;
    }
    .faq__head {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
    .faq__head-img {
        width: 50%;
    }
    /* teacher / recruit */
    .teacher__inner {
        flex-direction: column;
        padding: 36px 24px;
        gap: 32px;
    }
    .recruit__inner {
        flex-direction: column-reverse;
        gap: 32px;
    }
    .container-head {
        align-items: stretch;
    }
    .container-head .title {
        font-size: 24px;
    }
    .teacher__img, .recruit__img {
        width: 100%;
        height: auto;
    }
    .teacher__img {
        aspect-ratio: 544 / 415;
    }
    .recruit__img {
        aspect-ratio: 562 / 428;
    }
    .btn-list {
        max-width: none;
    }
    /* go_to_top */
    .go_to_top {
        right: 16px;
        bottom: 30px;
        width: 100px;
        height: 100px;
    }
    /* footer */
    .footer {
        padding: 32px 20px 24px;
    }
    .footer__brand {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer__logo-img {
        width: 180px;
        height: 30px;
    }
    .footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin: 32px 0 40px;
        width: 100%;
        max-width: 280px;
    }
    .footer__nav a {
        font-size: 16px;
    }
    .footer__copy {
        font-size: 11px;
    }
	
	.footer__logo-label {
		font-size: 16px;
	}
	
    .bg-vector {
        transform: scale(.6);
        opacity: .22;
    }
}
/*@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}*/
/* =========================================================
   Modal（pop-up/PC ・ interview-pop-up/PC）
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
}
.modal.is-open {
    display: block;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 61, 61, 0.5);
}
.modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1340px, calc(100% - 40px));
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 110px;
    padding: 80px 60px;
}
.modal__panel--interview {
    padding: 80px;
}
.modal__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    cursor: pointer;
    z-index: 1;
    transition: background-color var(--transition);
}
.modal__close::before, .modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}
.modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close:hover {
    background: var(--orange);
}
.modal__close:hover::before, .modal__close:hover::after {
    background: var(--white);
}
/* work detail */
.work-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 960px;
    margin-inline: auto;
}
.work-detail__img {
    width: 444px;
    height: 340px;
    border-radius: 40px;
    background: var(--light-orange);
    flex-shrink: 0;
}
.work-detail__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.work-detail__title {
    font-family: var(--font-rounded);
    font-weight: 800;
    font-size: 30px;
    color: var(--corporate-color);
    letter-spacing: .15em;
}
.work-detail__text {
    font-size: 18px;
    line-height: 2;
    color: var(--dark-gray);
}
/* interview detail */
.iv-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 960px;
    margin-inline: auto;
}
.iv-detail__head {
    display: flex;
    align-items: center;
    gap: 36px;
}
.iv-detail__photo {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    background: var(--light-orange);
    flex-shrink: 0;
}
.iv-detail__meta {
    flex: 1;
    background: var(--cream-yellow);
    border-radius: 40px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.iv-detail__tag {
    display: inline-block;
    background: var(--orange-dark);
    color: var(--white);
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    border-radius: 20px;
    padding: 8px 14px;
}
.iv-detail__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-gray);
}
.iv-detail__year {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-gray);
}
.iv-qa {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.iv-qa__q {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 22px;
    color: var(--corporate-color);
    line-height: 1.6;
}
.iv-qa__a {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
}
.iv-qa__divider {
    border: none;
    border-top: 1px solid var(--orange2);
    margin: 0 30px;
    width: auto;
}
.interview-btn {
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .modal__panel {
        border-radius: 40px;
        padding: 56px 20px 32px;
        width: calc(100% - 24px);
        max-height: calc(100vh - 40px);
    }
    .modal__panel--interview {
        padding: 56px 20px 32px;
    }
    .modal__close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .modal__close::before, .modal__close::after {
        width: 20px;
    }
    .work-detail {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .work-detail__img {
        width: 100%;
        height: auto;
        aspect-ratio: 444 / 340;
    }
    .work-detail__title {
        font-size: 24px;
    }
    .work-detail__text {
        font-size: 15px;
    }
	
	.work-detail__body {
		gap:10px;
	}
	
    .iv-detail__head {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .iv-detail__photo {
        width: 160px;
        height: 160px;
    }
    .iv-detail__meta {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .iv-qa {
        padding: 0;
    }
    .iv-qa__q {
        font-size: 17px;
    }
    .iv-qa__a {
        font-size: 15px;
    }
    .iv-qa__divider {
        margin: 0;
    }
}

