@charset "UTF-8";

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: #333333;
    background: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

button {
    cursor: pointer;
    background: none;
    border: 0;
}

.pc-only {
    display: block;
}

.section-white {
    background: #fff;
}

.section-gray {
    background: #fff;
}

:root {
    --black: #333333;
    --white: #fff;
    --gray: #F3F6F8;
    --gray2: #FFF6E8;
    --text: #333333;
    --muted: #F39800;
    --line: #123B63;
    --green: #3D7B55;
    --header-bg: #FFFFFF;
    --pale: #FFF6E8;
    --circle: #DCE6ED;
    --section-space: 96px;
    --container: 1200px;
    --header-height: 68px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--header-bg);
    color: var(--black);
    z-index: 1000;
    border-bottom: 3px solid var(--muted);
    box-shadow: 0 2px 12px rgba(51, 51, 51, .06);
}

.site-header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.global-nav a {
    transition: .2s;
}

.global-nav a:hover {
    opacity: .65;
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--black);
    margin: 7px 0;
    transition: .25s;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

main {
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero {
    position: relative;
    background: url("../images/traffic-control-scene.webp") center center / cover no-repeat;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(14, 40, 65, .82), rgba(18, 59, 99, .54), rgba(243, 152, 0, .16));
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 76px 20px 90px;
}

.hero-copy {
    max-width: 760px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 22px;
    color: #fff;
    background: rgba(243, 152, 0, .95);
    font-size: 16px;
    font-weight: 700;
    text-shadow: none;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: .02em;
    white-space: normal;
}

.hero-lead {
    font-size: 28px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 36px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    margin-bottom: 42px;
}

.hero-text p + p {
    margin-top: 12px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.black-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    min-width: 280px;
    min-height: 64px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    transition: .25s;
}

.black-button {
    background: var(--line);
    color: #fff;
}

.outline-button {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.black-button:hover,
.outline-button:hover {
    transform: translateY(-2px);
    opacity: .82;
}

.menu-section {
    background: var(--line);
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 20px;
}

.menu-box {
    width: 180px;
    font-size: 16px;
}

.menu-box h2 {
    font-size: 16px;
    margin: 0 0 18px;
}

.menu-icon {
    font-size: 20px;
    margin-right: 8px;
}

.menu-box ol {
    padding-left: 28px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.menu-box li {
    padding: 2px 0;
}

.menu-box a {
    color: #fff;
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 0 20px;
    text-align: center;
}

.section-en {
    display: block;
    color: var(--line);
    font-size: 90px;
    font-weight: 400;
    line-height: .9;
    letter-spacing: .02em;
}

.section-heading h2 {
    position: relative;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 8px;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--muted);
}

.section-lead {
    max-width: 920px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: left;
    font-size: 20px;
    line-height: 2;
    font-weight: 700;
}

.section-lead p + p {
    margin-top: 28px;
}

#service,
#case,
#profile,
#recruit,
#gallery,
#contact,
#company,
#access {
    padding-top: 100px;
    scroll-margin-top: 78px;
}

#service,
#case,
#profile,
#recruit,
#gallery {
    position: relative;
    overflow: hidden;
}

#service > *,
#case > *,
#profile > *,
#recruit > *,
#gallery > * {
    position: relative;
    z-index: 1;
}

#service::before,
#case::before,
#profile::before,
#recruit::before,
#gallery::before {
    content: "";
    position: absolute;
    top: 150px;
    z-index: 0;
    width: 68%;
    height: calc(100% - 190px);
    min-height: 360px;
    background: var(--gray);
}

#recruit::before {
    right: 0;
}

#service::before,
#case::before,
#profile::before,
#gallery::before {
    left: 0;
}

.problem {
    position: relative;
    z-index: 0;
    padding-bottom: 100px;
    overflow: hidden;
}

.problem::before {
    content: "";
    position: absolute;
    top: 130px;
    right: 38px;
    z-index: 0;
    width: 1131.2px;
    height: 1131.2px;
    border: solid 80px var(--circle);
    border-radius: 50%;
    opacity: .52;
    pointer-events: none;
    transform: translateX(50%);
}

.problem > * {
    position: relative;
    z-index: 1;
}

.problem-wrap {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.problem-wrap h3 {
    font-size: 36px;
    line-height: 1.45;
    margin-bottom: 28px;
}

.problem-text {
    text-align: left;
    font-weight: 700;
}

.problem-text p + p {
    margin-top: 18px;
}

.problem-list {
    display: inline-grid;
    gap: 14px;
    margin: 42px auto 0;
    text-align: left;
    font-weight: 700;
}

.problem-list li {
    position: relative;
    padding-left: 26px;
}

.problem-list li:nth-child(1) {
    transition-delay: .05s;
}

.problem-list li:nth-child(2) {
    transition-delay: .12s;
}

.problem-list li:nth-child(3) {
    transition-delay: .19s;
}

.problem-list li:nth-child(4) {
    transition-delay: .26s;
}

.problem-list li:nth-child(5) {
    transition-delay: .33s;
}

.problem-list li:nth-child(6) {
    transition-delay: .40s;
}

.problem-list li:nth-child(7) {
    transition-delay: .47s;
}

.problem-list li:nth-child(8) {
    transition-delay: .54s;
}

.problem-list li:nth-child(9) {
    transition-delay: .61s;
}

.problem-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--muted);
}

.problem-arrow {
    width: 84px;
    height: 46px;
    margin: 38px auto 28px;
    background: var(--muted);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.problem-message {
    font-size: 24px;
    line-height: 1.65;
    font-weight: 700;
    text-align: left;
}

.service,
.case,
.profile,
.recruit,
.gallery,
.company,
.access {
    padding-bottom: 80px;
}

.stagger-wrap,
.three-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 42px;
    min-height: 0;
    padding: 110px 0 90px;
}

.stagger-bg {
    display: none;
}

.stagger-card {
    position: relative;
    z-index: 1;
    width: auto;
}

.stagger-card .num {
    color: var(--line);
    font-size: 70px;
    line-height: .9;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.stagger-card .num span {
    font-size: 17px;
    margin-right: 4px;
    vertical-align: middle;
}

.card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: transparent;
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stagger-card .card-image {
    width: 100%;
    margin-bottom: 20px;
}

.stagger-card h3 {
    font-size: 20px;
    line-height: 1.55;
    margin: 0 0 13px;
}

.stagger-card p:not(.num) {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
}

.stagger-card p:not(.num) + p:not(.num) {
    margin-top: 10px;
}

.case .section-en,
.gallery .section-en {
    color: var(--line);
}

.voice-wrap {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
}

.voice-wrap article {
    padding: 34px 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(52, 64, 53, .08);
}

.voice-wrap h3 {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.voice-wrap p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}

.voice-wrap p + p {
    margin-top: 10px;
}

.profile-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: start;
}

.profile-image {
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 4 / 3;
}

.profile-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 22%;
}

.profile-title {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    margin-bottom: 24px;
}

.profile-body h3 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 28px;
}

.profile-body > p {
    font-size: 16px;
    line-height: 1.85;
    font-weight: 700;
}

.profile-body > p + p {
    margin-top: 18px;
}

.profile-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.profile-points article {
    padding: 28px 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(52, 64, 53, .08);
}

.profile-points h4 {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 12px;
}

.profile-points p {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
}

.recruit-layout {
    max-width: 1200px;
    margin: 0 auto 42px;
    padding: 42px 20px 0;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 54px;
    align-items: start;
}

.recruit-image {
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 4 / 3;
}

.recruit-image img {
    aspect-ratio: 4 / 3;
    height: 100%;
    object-fit: cover;
}

.recruit-table,
.info-table {
    background: #fff;
    box-shadow: 0 20px 50px rgba(18, 59, 99, .08);
}

.recruit-table dl,
.info-table dl {
    margin: 0;
}

.recruit-table dl,
.info-table dl {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.recruit-table dt,
.recruit-table dd,
.info-table dt,
.info-table dd {
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid #d8e0e6;
    font-size: 16px;
    line-height: 1.75;
}

.recruit-table dt,
.info-table dt {
    background: #eef3f7;
    color: var(--line);
    font-weight: 700;
}

.recruit-table dd,
.info-table dd {
    font-weight: 700;
}

.center-button {
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
}

.gallery-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 70px;
}

.insta-block {
    text-align: center;
    margin: 0 auto 42px;
}

.insta_title {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.insta_p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text);
    font-weight: 600;
}

.insta_p p + p {
    margin-top: 8px;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.gallery-tags li {
    padding: 6px 14px;
    border: 1px solid rgba(18, 59, 99, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--line);
    font-size: 14px;
    font-weight: 700;
}

.mood__swiper {
    max-width: 840px;
    margin: 0 auto;
}

.swiper-main {
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray);
}

.slide {
    margin: 0;
}

.slide-media {
    aspect-ratio: 4 / 3;
}

.slide-media img,
.thumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-thumb {
    margin-top: 10px;
}

.swiper-thumb .swiper-slide {
    opacity: 0.55;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.swiper-thumb .swiper-slide-thumb-active,
.swiper-thumb .swiper-slide:hover {
    opacity: 1;
}

.thumb-media {
    aspect-ratio: 4 / 3;
    border: 3px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gray);
    transition: border-color 0.2s ease;
}

.swiper-slide-thumb-active .thumb-media {
    border-color: var(--muted);
}

.company {
    padding-left: 20px;
    padding-right: 20px;
}

.info-table {
    max-width: 980px;
    margin: 0 auto 70px;
}

.access {
    padding-left: 20px;
    padding-right: 20px;
}

.access-wrap {
    max-width: 1100px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.access-body,
.map-placeholder {
    background: #fff;
    box-shadow: 0 20px 50px rgba(18, 59, 99, .08);
    padding: 38px 34px;
}

.access-body h3 {
    color: var(--line);
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 22px;
}

.access-body p {
    font-size: 17px;
    line-height: 1.85;
    font-weight: 700;
}

.access-body p + p {
    margin-top: 18px;
}

.map-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid #d8e0e6;
    overflow: hidden;
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.map-placeholder p {
    color: var(--line);
    font-size: 24px;
    font-weight: 700;
}

.map-placeholder small {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.instagram-widget-wrap {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto 44px;
    padding: 0 20px;
}

.instagram-placeholder {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 280px;
    padding: 48px 20px;
    border: 1px solid rgba(140, 198, 63, .55);
    background: #fff;
    text-align: left;
    box-shadow: 0 20px 50px rgba(52, 64, 53, .08);
}

.instagram-placeholder p {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
}

.instagram-placeholder a {
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.news-button {
    margin: 0 auto 20px;
    display: flex;
    width: 80%;
    max-width: 344px;
}

.contact {
    padding: 0 20px 86px;
}

.contact .section-heading {
    padding-top: 100px;
    margin-bottom: 34px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.contact-text {
    max-width: 840px;
    margin: 0 auto 52px;
    text-align: left;
    font-size: 16px;
    line-height: 1.95;
    font-weight: 700;
}

.contact-text p + p {
    margin-top: 18px;
}

.contact-form {
    max-width: 880px;
    margin: 0 auto;
}

.form-hidden-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form dl {
    margin: 0;
}

.contact-form dl:after {
    content: "";
    display: block;
    clear: both;
}

.contact-form dl dt,
.contact-form dl dd {
    border-top: 1px solid #cfc4b1;
    padding: 22px 0;
    margin: 0;
}

.contact-form dl dt {
    width: 34%;
    float: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
    text-align: right;
    gap: 18px;
    clear: both;
}

.contact-form dl dd {
    width: 66%;
    float: right;
    padding-left: 20px;
}

.contact-form dl dt span.required,
.contact-form dl dt span.optional {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    color: #fff;
    background: var(--muted);
    border: 1px solid var(--muted);
    border-radius: 2px;
    font-size: 13px;
    padding: 0;
    line-height: 1;
}

.contact-form dl dt span.optional {
    background: #fff;
    color: var(--black);
}

.contact-form dl dt em {
    font-style: normal;
    font-size: 18px;
    line-height: 1.25;
    color: #3f3a34;
}

.contact-form dl dt small {
    display: block;
    color: #9d9385;
    font-size: 11px;
    margin-top: 4px;
    font-weight: 400;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    max-width: 520px;
    padding: 10px 12px;
    border: 1px solid #c7bba6;
    background: #fff;
    font-size: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    height: 42px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.checks {
    font-size: 16px;
    line-height: 1.7;
}

.checks li {
    margin-bottom: 10px;
}

.checks input {
    margin-right: 10px;
    vertical-align: middle;
}

#form_submit {
    clear: both;
    text-align: center;
    padding-top: 45px;
    margin: 0;
}

.footer {
    background: var(--line);
    color: #fff;
    padding: 82px 20px 78px;
}

.footer nav {
    width: 210px;
    margin: 0 auto 45px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.footer p {
    width: 210px;
    margin: 0 auto;
    font-size: 12px;
    text-align: left;
}

.fixed-contact {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}

.fixed-contact.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fixed-contact a {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .fixed-contact {
        display: grid;
        position: fixed;
        right: 0;
        bottom: 30%;
        z-index: 998;
        grid-template-columns: 120px;
        width: 120px;
        color: #fff;
        font-weight: 700;
        letter-spacing: .02em;
    }

    .fixed-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 120px;
        min-height: 58px;
        padding: 0 5px;
        color: #fff;
        font-size: 12px;
        line-height: 1.2;
        text-align: left;
        border: 1px solid #fff;
    }

    .fixed-contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
    }

    .fixed-contact-icon svg {
        display: block;
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    .fixed-contact-instagram {
        background: var(--line);
    }

    .fixed-contact-mail {
        background: #F39800;
    }
}

.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--line);
    color: #fff;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.page-top.is-show {
    opacity: 1;
    pointer-events: auto;
}

/* Scroll animation｜薬膳カウンセリングKSH準拠 */
.js-fadein {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.js-fadein.u-fadein,
.js-fadein.u-fadeinUp {
    transform: translateY(32px);
}

.js-fadein.u-fadeinLeft {
    transform: translateX(-32px);
}

.js-fadein.u-fadeinRight {
    transform: translateX(32px);
}

.js-fadein.is-active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@media screen and (max-width: 1240px) {
    .site-header-inner,
    .hero-inner,
    .stagger-wrap,
    .three-wrap,
    .profile-wrap {
        max-width: calc(100% - 40px);
    }

    .section-en {
        font-size: 78px;
    }
}

@media screen and (max-width: 980px) {
    .global-nav {
        gap: 9px;
        font-size: 10px;
    }

    .site-logo {
        font-size: 22px;
    }

    .stagger-wrap,
    .three-wrap,
    .voice-wrap,
    .profile-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-wrap {
        grid-template-columns: 1fr;
    }

    .profile-image {
        max-width: 430px;
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }

    :root {
        --header-height: 60px;
        --section-space: 72px;
    }

    body {
        font-size: 15px;
        line-height: 1.75;
    }

    .site-header-inner {
        padding: 0 16px;
    }

    .site-logo {
        font-size: 15px;
        max-width: 240px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: block;
    }

    .global-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(63, 58, 52, .98);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 28px 20px;
        transform: translateX(100%);
        transition: .25s;
        font-size: 16px;
        overflow-y: auto;
    }

    .global-nav.is-open {
        transform: translateX(0);
    }

    .global-nav a {
        width: 100%;
        padding: 14px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .hero {
        background-position: 20% center;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(63, 58, 52, .70), rgba(63, 58, 52, .36));
    }

    .hero-inner {
        min-height: 620px;
        padding: 70px 20px 78px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-copy {
        padding-top: 46px;
    }

    .hero h1 {
        font-size: 31px;
        white-space: normal;
    }

    .hero-lead {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: grid;
        gap: 12px;
    }

    .black-button,
    .outline-button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        font-size: 16px;
    }

    .black-button.news-button {
        width: 80%;
        min-width: 0;
        margin-right: auto;
        margin-left: auto;
    }

    .menu-section {
        min-height: 340px;
        padding: 54px 20px;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-en {
        font-size: 48px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-lead {
        margin-bottom: 42px;
        text-align: left;
    }

    .reason .section-lead {
        text-align: center;
    }

    .voice .section-lead {
        text-align: left;
    }

    #problem,
    #service,
    #case,
    #profile,
    #recruit,
    #gallery,
    #contact,
    #company,
    #access {
        padding-top: 74px;
    }

    .problem::before {
        top: 118px;
        right: -700px;
        width: 920px;
        height: 920px;
        border-width: 66px;
        opacity: .48;
        transform: none;
    }

    .problem-wrap h3 {
        font-size: 28px;
    }

    .problem-message {
        font-size: 20px;
    }

    .problem-arrow {
        width: 72px;
        height: 34px;
        margin: 34px auto 24px;
    }

    .stagger-wrap,
    .three-wrap,
    .voice-wrap,
    .profile-points {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 10px 0 10px;
    }

    .stagger-bg {
        width: 82%;
    }

    #service::before,
    #case::before,
    #profile::before,
    #recruit::before,
    #gallery::before {
        top: 150px;
        width: 78%;
        height: calc(100% - 160px);
        min-height: 280px;
    }

    #recruit::before {
        right: -18%;
    }

    #service::before,
    #case::before,
    #profile::before,
    #gallery::before {
        left: -18%;
    }

    .stagger-card .num {
        font-size: 50px;
    }

    .voice-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .profile-wrap {
        max-width: calc(100% - 40px);
        padding: 0 0 56px;
        gap: 34px;
    }

    .profile-image {
        max-width: none;
    }

    .profile-body h3 {
        font-size: 34px;
    }

    .recruit-layout,
    .access-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .recruit-layout {
        padding: 0px 20px 0;
    }

    .access-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .recruit-table dl,
    .info-table dl {
        grid-template-columns: 1fr;
    }

    .recruit-table dt,
    .recruit-table dd,
    .info-table dt,
    .info-table dd {
        padding: 14px 16px;
    }

    .recruit-table dd,
    .info-table dd {
        border-top: 0;
    }

    .gallery-inner {
        padding: 0 20px 54px;
    }

    .insta-block {
        margin-bottom: 30px;
        padding: 0 4px;
    }

    .insta_title {
        font-size: 18px;
    }

    .insta_p {
        text-align: left;
    }

    .gallery-tags {
        justify-content: flex-start;
        gap: 8px;
    }

    .gallery-tags li {
        font-size: 13px;
        padding: 5px 11px;
    }

    .access-body,
    .map-placeholder {
        padding: 28px 22px;
    }

    .contact {
        padding: 0 20px 68px;
    }

    .contact .section-heading {
        padding-top: 74px;
    }

    .contact-text {
        text-align: left;
        margin-bottom: 34px;
    }

    .contact-form,
    form#mail_form {
        width: 100%;
        max-width: 100%;
    }

    .contact-form dl dt,
    .contact-form dl dd {
        float: none;
        width: 100%;
        padding: 14px 0;
        text-align: left;
    }

    .contact-form dl dt {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        border-top: 1px solid #cfc4b1;
    }

    .contact-form dl dd {
        border-top: 0;
        padding-left: 0;
        padding-top: 0;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        max-width: 100%;
    }

    .checks li {
        margin-bottom: 8px;
    }

    .footer {
        padding: 58px 20px 100px;
    }

    .fixed-contact {
        display: grid;
        position: fixed;
        left: 0;
        bottom: 0;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        height: 58px;
        color: #fff;
        z-index: 998;
        font-weight: 700;
        letter-spacing: .02em;
    }

    .fixed-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 0;
        height: 58px;
        padding: 0 6px;
        color: #fff;
        font-size: 12px;
        line-height: 1.2;
        text-align: left;
    }

    .fixed-contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
    }

    .fixed-contact-icon svg {
        display: block;
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .fixed-contact-instagram {
        background: var(--line);
    }

    .fixed-contact-mail {
        background: #F39800;
    }

    .page-top {
        right: 12px;
        bottom: 70px;
    }
}
