/* ------------------------------------------
    headerPage
------------------------------------------ */
.headerPage {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}

.headerPage.is-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.headerPage__inner {
    align-items: center;
    background: var(--colorWhite);
    display: flex;
    height: 90px;
    justify-content: space-between;
    padding: 0 2.5vw;
    transition: background 0.3s ease;
}

/* TOPページは透明背景 */
.headerPage--top .headerPage__inner {
    background: transparent;
}

/* TOPページ：スクロール後は白背景 */
.headerPage--top.is-scrolled .headerPage__inner {
    background: var(--colorWhite);
}

.headerPage__logo {
    flex-shrink: 0;
}

.headerPage__logo img {
    display: block;
    width: clamp(120px, 8.4vw, 162px);
}

/* ------------------------------------------
    headerPageNav
------------------------------------------ */
.headerPageNav {
    align-items: center;
    column-gap: clamp(16px, 3.3vw, 56px);
    display: flex;
}

.headerPageNav__list {
    align-items: center;
    column-gap: clamp(12px, 2.2vw, 40px);
    display: flex;
    font-family: var(--fontZenMaru);
    font-size: clamp(12px, 0.97vw, 15px);
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding: 0;
}

.headerPageNav__list a {
    color: var(--colorBlack);
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.headerPageNav__list a:hover {
    opacity: 0.6;
}

.headerPageNav__cta {
    align-items: center;
    column-gap: clamp(6px, 0.55vw, 10px);
    display: flex;
    flex-shrink: 0;
}

/* ------------------------------------------
    ハンバーガーボタン
------------------------------------------ */
.headerHamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    height: 44px;
    justify-content: center;
    padding: 8px;
    width: 44px;
}

.headerHamburger__line {
    background: var(--colorBlack);
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 24px;
}

.headerHamburger.is-open .headerHamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.headerHamburger.is-open .headerHamburger__line:nth-child(2) {
    opacity: 0;
}

.headerHamburger.is-open .headerHamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ------------------------------------------
    ドロワーオーバーレイ
------------------------------------------ */
.drawerOverlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100dvh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.35s ease;
    width: 100%;
    z-index: 1000;
}

.drawerOverlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ------------------------------------------
    ドロワーメニュー
------------------------------------------ */
.drawer {
    background: var(--colorWhite);
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 280px;
    z-index: 1001;
}

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

.drawer__inner {
    display: flex;
    flex-direction: column;
    padding: 24px 28px calc(40px + env(safe-area-inset-bottom));
}

/* 閉じるボタン */
.drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    height: 36px;
    padding: 6px;
    position: relative;
    width: 36px;
}

.drawer__close span {
    background: var(--colorBlack);
    border-radius: 2px;
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 20px;
}

.drawer__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ロゴ */
.drawer__logo {
    margin-bottom: 32px;
    margin-top: 12px;
}

.drawer__logo img {
    width: 120px;
}

/* ナビリスト */
.drawer__list {
    border-top: 1px solid #eee;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.drawer__list li {
    border-bottom: 1px solid #eee;
}

.drawer__list a {
    align-items: center;
    color: var(--colorBlack);
    display: flex;
    font-family: var(--fontZenMaru);
    font-size: 15px;
    font-weight: 500;
    justify-content: space-between;
    letter-spacing: 0.05em;
    padding: 16px 4px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer__list a::after {
    border-right: 2px solid var(--colorBlue);
    border-top: 2px solid var(--colorBlue);
    content: '';
    display: block;
    flex-shrink: 0;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
}

.drawer__list a:hover {
    color: var(--colorBlue);
}

/* CTAボタン */
.drawer__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.drawer__ctaBtn {
    align-items: center;
    border: none;
    border-radius: 100vh;
    color: var(--colorWhite);
    cursor: pointer;
    display: flex;
    font-family: var(--fontZenMaru);
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    height: 52px;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.drawer__ctaBtn:hover {
    opacity: 0.85;
}

.drawer__ctaBtn img {
    width: 24px;
}

.drawer__ctaBtn--line {
    background: var(--colorGreen);
    box-shadow: 0 3px 0 0 var(--colorGreen500);
}

.drawer__ctaBtn--web {
    background: var(--colorOrange);
    box-shadow: 0 3px 0 0 var(--colorOrangeDark);
}

/* body スクロールロック */
body.is-drawer-open {
    overflow: hidden;
}

/* ------------------------------------------
    @media: タブレット以下
------------------------------------------ */
@media screen and (width <= 1024px) {
    .headerPage__inner {
        height: 64px;
        padding: 0 4vw;
    }

    .headerPage__logo img {
        width: 100px;
    }

    .headerPageNav__list {
        display: none;
    }

    .headerPageNav__cta {
        display: none;
    }

    .headerHamburger {
        display: flex;
    }
}


/* margin
------------------------------------------- */
.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}


/* Display
------------------------------------------- */
.for-sp {
    display: none;
}

@media screen and (width <= 1024px) {
    .for-sp {
        display: block;
    }
}


/* ボタン
------------------------------------------- */
.button {
    background: var(--color-blue);
    border-radius: 16px;
    color: var(--color-white);
    display: inline-block;
    position: relative;
    transition: .4s;
}

.button:hover {
    opacity: .8;
}

.button.--blog {
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-blue);
    border-radius: 10px;
    color: var(--color-blue);
    display: flex;
    font-size: 16px;
    font-weight: 500;
    height: 70px;
    max-width: calc(300px - 30px);
    padding-left: 30px;
    position: relative;
    width: 100%;
}

.button.--blog::before {
    background: var(--color-blue);
    content: '';
    height: 40px;
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.button.--blog::after {
    background: url('../images/top/icon_arrow_right_blue.svg');
    background-position: center;
    background-size: cover;
    content: '';
    height: 12px;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%) translateX(0) translateY(0);
    transition: transform 0.3s ease;
    width: 15px;
}

.button.--blog:hover::after {
    transform: translateY(-50%) translateX(8px);
}

.button.--recruit {
    padding: 30px 155px 30px 30px;
}

.button.--recruit::before {
    background: var(--color-white);
    content: '';
    height: 70px;
    position: absolute;
    right: 96px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.button.--recruit::after {
    background: url('../images/top/buttonBlue__arrow.svg');
    background-position: center;
    background-size: cover;
    content: '';
    height: 24px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(0) translateY(0);
    transition: transform 0.3s ease;
    width: 24px;
}

.button.--recruit:hover::after {
    transform: translateY(-50%) translateX(8px) translateY(-8px);
}

.button.--line {
    align-items: center;
    background: var(--color-green);
    border-radius: 100vw;
    box-shadow: 0 5px 0 #03A344;
    color: var(--color-white);
    display: flex;
    font-size: 24px;
    font-weight: 500;
    justify-content: center;
    padding: 20px 0;
}

.button.--line:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.button.--line img {
    height: auto;
    margin-right: 12px;
    position: relative;
    top: 2px;
    width: 40px;
}

.button.--line span {
    font-size: 22px;
}

.button.--web {
    align-items: center;
    background: #FF8000;
    border-radius: 100vw;
    box-shadow: 0 5px 0 #C96808;
    color: var(--color-white);
    display: flex;
    font-size: 24px;
    font-weight: 500;
    justify-content: center;
    padding: 20px 0;
}

.button.--web:hover {
    box-shadow: none;
    transform: translateY(5px);
}

.button.--web img {
    height: auto;
    margin-right: 12px;
    position: relative;
    top: 0;
    width: 31px;
}

.button.--web span {
    font-size: 22px;
}

.button__text {
    font-size: 16px;
}

.button__word {
    font-size: 24px;
    font-weight: 500;
    margin-top: 16px;
}

@media screen and (width <= 1024px) {
    .button {
        border-radius: 10px;
    }

    .button.--recruit {
        padding: 24px 110px 24px 24px;
    }

    .button.--recruit::before {
        height: 56px;
        right: 72px;
    }

    .button.--recruit::after {
        height: 20px;
        right: 24px;
        width: 20px;
    }

    .button.--line {
        font-size: 20px;
        padding: 14px 0;
    }

    .button.--line img {
        margin-right: 10px;
        width: 30px;
    }

    .button.--line span {
        font-size: 18px;
    }

    .button.--web {
        font-size: 20px;
        padding: 14px 0;
    }

    .button.--web img {
        margin-right: 10px;
        width: 24px;
    }

    .button.--web span {
        font-size: 18px;
    }

    .button__text {
        font-size: 15px;
    }

    .button__word {
        font-size: 18px;
        margin-top: 10px;
    }
}


/* ヘッダー（ページ用）
------------------------------------------- */
.pageHeader {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.pageHeader__inner {
    align-items: center;
    background: #fff;
    display: flex;
    height: 90px;
    justify-content: space-between;
    padding: 0 2.4vw;
}

.pageHeader__logo img {
    width: 120px;
}

.pageHeaderNav {
    align-items: center;
    column-gap: 32px;
    display: flex;
}

.pageHeaderNav__list {
    align-items: center;
    column-gap: 32px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
}

.pageHeaderNav__button {
    align-items: center;
    column-gap: 10px;
    display: flex;
}

.pageHeaderNav__button .button.--line {
    box-shadow: 0 3px 0 #03A344;
    font-size: 18px;
    padding: 10px 0;
    width: 170px;
}

.pageHeaderNav__button .button.--line:hover {
    opacity: 1;
    transform: translateY(0);
}

.pageHeaderNav__button .button.--line img {
    width: 29px;
}

.pageHeaderNav__button .button.--line span {
    font-size: 18px;
}

.pageHeaderNav__button .button.--web {
    box-shadow: 0 3px 0 #C96808;
    font-size: 18px;
    padding: 10px 0;
    width: 170px;
}

.pageHeaderNav__button .button.--web:hover {
    opacity: 1;
    transform: translateY(0);
}

.pageHeaderNav__button .button.--web img {
    width: 23px;
}

.pageHeaderNav__button .button.--web span {
    font-size: 18px;
}

.spHeaderToggle,
.spHeaderMenu {
    display: none;
}

@media screen and (width <= 767px) {
    .pageHeader {
        z-index: 1000;
    }

    .pageHeader__inner {
        height: 60px;
        padding: 0 0 0 10px;
        position: relative;
        z-index: 1010;
    }

    .pageHeader__logo img {
        height: 48px;
        width: auto;
    }

    .pageHeaderNav {
        display: none;
    }

    .spHeaderToggle {
        align-items: center;
        background: #F6F0E5;
        border-radius: 50vw 0 0 50vw;
        cursor: pointer;
        display: flex;
        flex-shrink: 0;
        height: 60px;
        justify-content: center;
        position: relative;
        width: 80px;
        z-index: 1100;
    }

    .spHeaderToggle span {
        background: #333;
        height: 1px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translateX(-50%);
        width: 30px;
    }

    .spHeaderToggle span:nth-of-type(1) {
        top: 36%;
    }

    .spHeaderToggle span:nth-of-type(3) {
        top: 64%;
    }

    .spHeaderMenu {
        background: #FCF9F3;
        display: none;
        height: 100vh;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .spHeaderMenu__inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        padding: 0 40px;
    }

    .spHeaderMenu__list {
        font-size: 18px;
        font-weight: 500;
    }

    .spHeaderMenu__list li:nth-child(n+2) {
        margin-top: 32px;
    }

    .spHeaderMenu__list li a {
        color: #333;
    }
}


/* アクセス
------------------------------------------- */
.access {
    background: var(--color-white-100);
    padding: 102px 0 96px;
}

.access__column {
    column-gap: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
}

.itemAccess {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 3px 6px 10px 0 rgb(0, 0, 0, 0.1);
    padding: 35px 35px 40px;
}

.itemAccess__img img {
    display: block;
    height: auto;
    width: 100%;
}

.itemAccessName {
    align-items: center;
    column-gap: 20px;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.itemAccessName__title {
    font-size: 36px;
    font-weight: 500;
}

.itemAccessName__lead {
    border-radius: 8px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    padding: 8px 16px 10px;
}

.itemAccessName__lead.--blue {
    background: var(--color-blue-700);
}

.itemAccessName__lead.--light-blue {
    background: #5AAFDC;
}

.itemAccessAddress {
    margin-top: 32px;
}

.itemAccessAddressItem {
    align-items: center;
    border-top: 1px dashed var(--color-gray-500);
    display: grid;
    font-family: var(--font-noto-sans);
    font-size: 16px;
    grid-template-columns: 110px auto;
    line-height: 1.6;
    padding: 16px 8px;
}

.itemAccessAddressItem:last-of-type {
    border-bottom: 1px dashed var(--color-gray-500);
}

.itemAccessAddressItem__title a {
    color: var(--color-black);
}

.itemAccessMap {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 32px;
    text-align: center;
}

.itemAccessMap__link {
    column-gap: 8px;
    display: flex;
    justify-content: center;
}

.itemAccessMap__link.--blue {
    color: var(--color-blue);
}

.itemAccessMap__link.--light-blue {
    color: #5AAFDC;
}

.itemAccessMap__link img {
    height: 18px;
    position: relative;
    top: 0;
    width: 18px;
}

.itemAccessTable {
    background: var(--color-white-200);
    border-radius: 10px;
    margin-top: 48px;
    padding: 24px;
}

.itemAccessTableUnit {
    border-bottom: 1px solid var(--color-black);
    display: grid;
    grid-template-columns: 110px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 10px 0;
}

.itemAccessTableUnit__title,
.itemAccessTableUnit__text {
    font-size: 16px;
}

.itemAccessTableUnit__title {
    font-weight: bold;
}

.itemAccessTableUnit__title img {
    height: 20px;
    margin-right: 8px;
    position: relative;
    top: 2px;
    width: 20px;
}

.itemAccessTableUnit:nth-of-type(n + 2) .itemAccessTableUnit__title {
    font-weight: 400;
}

.itemAccessTableUnit__text {
    text-align: center;
}

.itemAccessTable__notes {
    font-family: var(--font-noto-sans);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
}

.itemAccess__button {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    row-gap: 24px;
}

.access__more {
    margin-top: 80px;
}

.access__moreText {
    font-family: var(--fontZenMaru);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.access__moreText span {
    display: inline-block;
    position: relative;
}

.access__moreText span::before {
    background: var(--color-black);
    content: '';
    display: inline-block;
    height: 27px;
    left: -16px;
    position: absolute;
    top: -4px;
    transform: rotate(-25deg);
    width: 1px;
}

.access__moreText span::after {
    background: var(--color-black);
    content: '';
    display: inline-block;
    height: 27px;
    position: absolute;
    right: -16px;
    top: -4px;
    transform: rotate(25deg);
    width: 1px;
}

.access__moreButton {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media screen and (width <= 1024px) {
    .access {
        padding: 48px 0 64px;
    }

    .access__column {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .itemAccess {
        border-radius: 10px;
        padding: 24px 20px 32px;
    }

    .itemAccessName {
        flex-direction: column;
        margin-top: 24px;
        row-gap: 16px;
    }

    .itemAccessName__title {
        font-size: 24px;
    }

    .itemAccessName__lead {
        border-radius: 5px;
        font-size: 18px;
        padding: 4px 10px 6px;
    }

    .itemAccessAddress {
        margin-top: 24px;
    }

    .itemAccessAddressItem {
        font-size: 15px;
        grid-template-columns: 80px auto;
        padding: 16px 0;
    }

    .itemAccessMap {
        font-size: 15px;
        margin-top: 32px;
    }

    .itemAccessMap__link {
        column-gap: 6px;
    }

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

    .itemAccessTable {
        border-radius: 6px;
        margin-top: 32px;
        padding: 16px;
    }

    .itemAccessTableUnit {
        grid-template-columns: 90px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        padding: 10px 0;
    }

    .itemAccessTableUnit__title,
    .itemAccessTableUnit__text {
        font-size: 15px;
    }

    .itemAccessTableUnit__title img {
        height: 14px;
        margin-right: 6px;
        top: 0;
        width: 14px;
    }

    .itemAccessTable__notes {
        font-size: 13px;
    }

    .itemAccess__button {
        row-gap: 16px;
    }
}


/* 詳しいアクセス
------------------------------------------- */
.detailsAceess {
    background: var(--color-white-100);
    padding: 0 0 100px;
}

.detailsAceessHeading {
    display: flex;
    justify-content: center;
}

.detailsAceessHeading__title {
    font-size: 32px;
    font-weight: 500;
}

.detailsAceessHeading__title img {
    height: auto;
    margin-right: 8px;
    position: relative;
    top: 2px;
    width: 27px;
}

.detailsAceess__wrap {
    border-radius: 16px;
    box-shadow: 3px 6px 10px 0 rgb(0, 0, 0, 0.1);
}

.detailsAceessTab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
}

.detailsAceessTab__button {
    background: #3780BE;
    border-radius: 16px 16px 0 0;
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    font-weight: 500;
    padding: 24px 0;
    text-align: center;
}

.detailsAceessTab__button.--light-blue {
    background: #5AAFDC;
    color: #fff;
}

.detailsAceessTab__button.--active {
    background: #fff;
    color: #3780BE;
}

.detailsAceessTab__button.--light-blue.--active {
    background: #fff;
    color: #3780BE;
}

.detailsAceessTab__button br {
    display: none;
}

.blockAceess {
    background: #fff;
    border-radius: 0 0 16px 16px;
    max-height: 0;
    overflow: hidden;
}

.blockAceess.--active {
    max-height: 9999px;
    overflow: visible;
    padding: 54px 72px 64px;
}

.blockAceess__title {
    border-bottom: 1px dashed #A7A7A7;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 16px;
}

.blockAceess__text {
    font-family: var(--font-noto-sans);
    font-size: 18px;
    line-height: 1.5;
    padding-top: 16px;
}

.blockAceess__movie {
    margin: 32px 0 80px;
    text-align: center;
}

.blockAceess__movie iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 740px;
}

.blockAccess__column {
    column-gap: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
}

.blockAccess__title {
    font-family: var(--font-noto-sans);
    font-size: 20px;
    font-weight: 500;
}

.blockAccess__text {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 24px;
}

.blockAccess__word {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 24px;
}

.blockAccess__notes {
    font-family: var(--font-noto-sans);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 16px;
}

.blockAceessPhoto {
    margin-top: 16px;
}

.blockAceessPhoto img {
    width: 270px;
}

.blockAceessPhoto__column {
    column-gap: 8px;
    display: flex;
    margin-top: 8px;
}

.blockAceessPhoto__column img {
    width: 160px;
}

.blockAceessProfile {
    column-gap: 16px;
    display: grid;
    grid-template-columns: 170px auto;
    margin-top: 32px;
}

.--yokosuka .blockAceessProfile {
    grid-template-columns: 1fr;
}

.blockAceessProfile__text {
    font-size: 16px;
    line-height: 1.5;
}

.blockAccess__map {
    margin-top: 24px;
}

.blockAccess__map iframe {
    height: 480px;
    width: 480px;
}

@media screen and (width <= 1024px) {
    .detailsAceess {
        padding: 0 0 48px;
    }

    .detailsAceessHeading__title {
        font-size: 20px;
    }

    .detailsAceessHeading__title img {
        margin-right: 6px;
        width: 16px;
    }

    .detailsAceess__wrap {
        border-radius: 10px;
    }

    .detailsAceessTab__button {
        border-radius: 10px 10px 0 0;
        font-size: 15px;
        line-height: 1.5;
        padding: 16px 0;
    }

    .detailsAceessTab__button br {
        display: block;
    }

    .blockAceess.--active {
        border-radius: 0 0 10px 10px;
        padding: 32px 20px 40px;
    }

    .blockAceess__title {
        font-size: 18px;
    }

    .blockAceess__text {
        font-size: 15px;
    }

    .blockAceess__movie {
        margin: 16px 0 40px;
    }

    .blockAceess__movie iframe {
        width: 100%;
    }

    .blockAccess__column {
        grid-template-columns: 1fr;
        margin-top: 32px;
        row-gap: 32px;
    }

    .blockAccess__title {
        font-size: 16px;
    }

    .blockAccess__text {
        font-size: 15px;
        margin-top: 16px;
    }

    .blockAccess__word {
        font-size: 15px;
        margin-top: 16px;
    }

    .blockAccess__notes {
        margin-top: 8px;
    }

    .blockAceessPhoto {
        margin-top: 16px;
    }

    .blockAceessPhoto img {
        width: 100%;
    }

    .blockAceessPhoto__column {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .blockAceessPhoto__column img {
        width: 100%;
    }

    .blockAceessProfile {
        grid-template-columns: 100%;
        margin-top: 24px;
        row-gap: 16px;
    }

    .blockAceessProfile__text {
        font-size: 15px;
    }

    .blockAccess__map {
        margin-top: 16px;
    }

    .blockAccess__map iframe {
        height: 100%;
        width: 100%;
    }
}


/* ブログ
------------------------------------------- */
.blog {
    background: #fff;
    padding: 64px 0 48px;
}

.blog__column {
    column-gap: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 64px;
}

.blogCard {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blogCard:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.blogCard__link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.blogCard__thumbnail {
    position: relative;
}

.blogCard__img {
    display: block;
    height: auto;
    width: 100%;
}

.blogCard__noImage {
    aspect-ratio: 16 / 7;
    background-color: #d9d9d9;
    border-radius: 4px 4px 0 0;
    width: 100%;
}

.blogCard__slug {
    background: var(--color-blue);
    color: #fff;
    display: inline-block;
    font-size: 12px;
    right: 0;
    padding: 8px 10px;
    position: absolute;
    top: 0;
    z-index: 10;
}

.blogCard__body {
    padding: 16px 20px;
}

.blogCard__date {
    color: var(--color-blue);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.blogCard__title {
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-top: 8px;
}

.blog__more {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

@media screen and (width <= 1024px) {
    .blog {
        padding: 48px 0 32px;
    }

    .blog__column {
        grid-template-columns: 100%;
        margin-top: 40px;
        row-gap: 24px;
    }

    .blog__more {
        margin-top: 48px;
    }
}


/* フッター
------------------------------------------- */
.footer {
    background: #9AC5CA;
    margin-top: 300px;
    padding: 0 0 64px;
    position: relative;
}

.footer::before {
    background: var(--colorWhite) url(../images/top/footer_wave.svg) no-repeat center top;
    background-size: 100% 100%;
    content: "";
    height: 300px;
    left: 0;
    position: absolute;
    top: -299px;
    width: 100%;
}

.footer__column {
    display: grid;
    grid-template-columns: auto 480px;
}

.footerBlock__title {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.footerAccessUnit {
    align-items: center;
    border-top: 1px dashed #fff;
    color: #fff;
    column-gap: 72px;
    display: grid;
    font-family: var(--font-noto-sans);
    font-size: 15px;
    grid-template-columns: 35px auto;
    line-height: 1.5;
    padding: 24px 8px;
}

.footerAccessUnit:last-of-type {
    border-bottom: 1px dashed #fff;
}

.footerAccessUnit a {
    color: #fff;
}

.footerBlock__button {
    margin-top: 32px;
}

.footerBanner {
    column-gap: 32px;
    display: flex;
    margin-top: 72px;
}

.footerBanner li img {
    width: 280px;
}

.footerLink {
    color: #fff;
    font-size: 12px;
    margin-top: 40px;
}

.footerLink li:nth-child(n+2) {
    margin-top: 16px;
}

.footerLink li a {
    color: #fff;
}

@media screen and (width <= 1024px) {
    .footer {
        margin-top: 110px;
        padding: 0 0 48px;
    }

    .footer::before {
        height: 110px;
        top: -109px;
    }

    .footer__column {
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .footerBlock__title {
        font-size: 24px;
        text-align: center;
    }

    .footerAccessUnit {
        column-gap: 48px;
        padding: 16px 8px;
    }

    .footerBlock__button {
        margin-top: 24px;
    }

    .footerBanner {
        align-items: center;
        flex-direction: column;
        margin-top: 40px;
        row-gap: 16px;
    }

    .footerBanner li img {
        width: 200px;
    }

    .footerLink {
        text-align: center;
    }
}


/* ===============================================
    reserveModal（LINE / WEB予約モーダル）
================================================= */
.reserveModal {
    display: none;
}

.reserveModal.is-open {
    display: block;
}

.reserveModal__overlay {
    background: rgb(0, 0, 0, 0.5);
    inset: 0;
    position: fixed;
    z-index: 1000;
}

.reserveModal__inner {
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: 380px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    z-index: 1001;
}

.reserveModal__body {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px 24px 28px;
    position: relative;
}

.reserveModal__close {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    font-size: 18px;
    height: 36px;
    line-height: 1;
    position: absolute;
    right: -12px;
    top: -16px;
    width: 36px;
}

.reserveModal__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 8px;
    text-align: center;
}

.reserveModal__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.reserveModal__item {
    align-items: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
}

.reserveModal__item--line {
    background: #06c755;
}

.reserveModal__item--web {
    background: var(--colorOrange);
}

.reserveModal__icon {
    filter: brightness(0) invert(1);
    height: 28px;
    width: 28px;
}

.reserveModal__storeName {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
}

.reserveModal__badge {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: var(--color-white);
    font-size: 11px;
    padding: 2px 12px;
}

.reserveModal__closeBtn {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 16px;
    padding: 14px;
    width: 100%;
}

/* ===============================================
    telModal（電話番号モーダル）
================================================= */
.telModal {
    display: none;
}

.telModal.is-open {
    display: block;
}

.telModal__overlay {
    background: rgb(0, 0, 0, 0.5);
    inset: 0;
    position: fixed;
    z-index: 1000;
}

.telModal__inner {
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: 340px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    z-index: 1001;
}

.telModal__body {
    background: var(--color-white);
    border-radius: 12px;
    max-width: 340px;
    padding: 32px 24px 42px;
}

.telModal__close {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    font-size: 18px;
    height: 36px;
    line-height: 1;
    position: absolute;
    right: -16px;
    top: -20px;
    width: 36px;
}

.telModal__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 12px;
    text-align: center;
}

.telModal__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.telModal__item {
    border-radius: 16px;
    display: block;
    padding: 0 20px 8px;
    text-align: center;
    text-decoration: none;
}

.telModal__item:nth-child(1) {
    background: var(--color-blue-700);
}

.telModal__item:nth-child(2) {
    background: var(--color-blue-300);
}

.telModal__storeName {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05%;
    line-height: 32px;
}

.telModal__badge {
    background: var(--color-white);
    border-radius: 999px;
    box-sizing: border-box;
    color: var(--color-black);
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05%;
    line-height: 1.5;
    padding: 2px 12px;
    width: 100%;
}

.telModal__tel {
    align-items: center;
    color: var(--color-white);
    display: flex;
    font-size: 22px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.telModal__tel img {
    filter: brightness(0) invert(1);
    height: 22px;
    width: 16px;
}

.telModal__closeBtn {
    appearance: none;
    background: var(--color-black);
    border: none;
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    padding: 16px;
    width: 100%;
}


/* ===========================================
    faq（全ページ共通）
============================================ */
.faq {
    background: var(--colorWhite);
    padding: 140px 0;
}

.faq__area {
    margin-top: 64px;
}

.faq__item {
    background: var(--colorBlue100);
    border-radius: 16px;
}

.faq__item:nth-of-type(n+2) {
    margin-top: 32px;
}

.faq__itemQuestion {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 32px 48px;
    transition: background 0.2s ease;
    width: 100%;
}

.faq__itemQuestionHead {
    color: var(--colorBlue);
    flex-shrink: 0;
    font-size: 40px;
    font-weight: 500;
}

.faq__itemQuestionWord {
    flex: 1;
    font-family: var(--fontZenMaru);
    font-size: 24px;
    font-weight: 500;
    text-align: left;
}

.faq__itemQuestionToggle {
    flex-shrink: 0;
    height: 30px;
    position: relative;
    width: 30px;
}

.faq__itemQuestionToggle::before,
.faq__itemQuestionToggle::after {
    background: var(--colorBlue);
    border-radius: 2px;
    content: '';
    position: absolute;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.faq__itemQuestionToggle::before {
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.faq__itemQuestionToggle::after {
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
}

.faq__item.is-open .faq__itemQuestionToggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__itemAnswer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__itemAnswer {
    grid-template-rows: 1fr;
}

.faq__itemAnswerInner {
    overflow: hidden;
    padding: 0 48px;
}

.faq__itemAnswerArea {
    align-items: center;
    border-top: 1px solid var(--colorGray100);
    display: flex;
    gap: 0.75rem;
    padding: 32px 0;
}

.faq__itemAnswerHead {
    color: var(--colorGold);
    flex-shrink: 0;
    font-size: 40px;
    font-weight: 500;
    padding-top: 1px;
    position: relative;
    top: -4px;
}

.faq__itemAnswerWord {
    font-size: 16px;
    line-height: 1.75;
}

.faq__itemAnswerWord p {
    line-height: 1.75;
    margin-top: 0.75em;
}

.faq__itemAnswerWord p:first-child {
    margin-top: 0;
}

.itemFaq-hidden {
    display: none;
}

.faq__more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.faq__more.is-hidden {
    display: none;
}

.faq__moreButton {
    align-items: center;
    background: transparent;
    border: 2px solid var(--colorBlue);
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    justify-content: center;
    padding: 16px 0;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.js-accordion-hidden {
    display: none;
}

@media screen and (width <= 1024px) {
    .faq {
        padding: 64px 0;
    }

    .faq__area {
        margin-top: 40px;
    }

    .faq__item {
        border-radius: 8px;
    }

    .faq__item:nth-of-type(n+2) {
        margin-top: 16px;
    }

    .faq__itemQuestion {
        padding: 24px;
    }

    .faq__itemQuestionHead {
        font-size: 32px;
    }

    .faq__itemQuestionWord {
        font-size: 18px;
    }

    .faq__itemQuestionToggle {
        height: 16px;
        width: 16px;
    }

    .faq__itemQuestionToggle::before {
        height: 1px;
        width: 16px;
    }

    .faq__itemQuestionToggle::after {
        height: 16px;
        width: 1px;
    }

    .faq__itemAnswerInner {
        padding: 0 24px;
    }

    .faq__itemAnswerArea {
        padding: 24px 0;
    }

    .faq__itemAnswerHead {
        font-size: 32px;
        top: -2px;
    }

    .faq__itemAnswerWord {
        font-size: 15px;
    }

    .faq__itemAnswerWord p {
        font-size: 15px;
        line-height: 1.75;
    }

    .faq__more {
        margin-top: 32px;
    }

    .faq__moreButton {
        border: 1px solid var(--colorBlue);
        border-radius: 8px;
        font-size: 15px;
    }
}


/* ==============================================
    sectionImg（カスタムブロック共通）
============================================== */
.sectionImg {
    padding: 80px 0;
}

.sectionImg.is-orange {
    background: #F6F0E5;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 80px calc(50vw - 50%);
}

.sectionImg h2 {
    text-align: center;
}

.sectionImg__textarea {
    font-size: 16px;
    line-height: 2;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.sectionImg__textarea p {
    margin-top: 16px;
}

.sectionImg__textarea p:first-child {
    margin-top: 0;
}

.sectionImg__textarea ul,
.sectionImg__textarea ol {
    margin-top: 16px;
    padding-left: 1.5em;
}

.sectionImg__textarea ul {
    list-style: disc;
}

.sectionImg__textarea ol {
    list-style: decimal;
}

.sectionImg__textarea li {
    margin-top: 8px;
}

.sectionImg__textarea li:first-child {
    margin-top: 0;
}

.sectionImg__textarea strong {
    font-weight: 700;
}

.sectionImg__textarea a {
    color: #034387;
    text-decoration: underline;
}

.sectionImg__textarea a:hover {
    opacity: 0.75;
}

.sectionImg__imgs {
    margin: 32px auto;
    max-width: 1000px;
    width: 100%;
}

.sectionImg__img + .sectionImg__img {
    margin-top: 16px;
}

@media screen and (width <= 1024px) {
    .sectionImg {
        padding: 48px 0;
    }

    .sectionImg.is-orange {
        padding: 48px calc(50vw - 50%);
    }

    .sectionImg__textarea {
        font-size: 14px;
    }
}


/* ==============================================
    singlePost__content（投稿本文）
============================================== */
.singlePost__content {
    font-family: var(--fontNotoSans);
    font-size: 16px;
    line-height: 2;
    padding: 40px 48px 48px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.singlePost__content > *:first-child { margin-top: 0; }
.singlePost__content > *:last-child  { margin-bottom: 0; }

.singlePost__content h2 {
    border-left: 4px solid var(--colorBlue);
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 16px;
    padding: 4px 0 4px 12px;
}

.singlePost__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.singlePost__content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0 8px;
}

.singlePost__content p {
    line-height: 2;
    margin-bottom: 1.4em !important;
    margin-top: 0 !important;
}

.singlePost__content img {
    height: auto;
    max-width: 100%;
}

.singlePost__content ul {
    list-style: disc !important;
    margin: 0 0 1.4em 1.5em !important;
}

.singlePost__content ol {
    list-style: decimal !important;
    margin: 0 0 1.4em 1.5em !important;
}

.singlePost__content li {
    margin-bottom: 0.4em !important;
}

.singlePost__content a {
    color: var(--colorBlue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.singlePost__content blockquote {
    background: var(--colorBlue50);
    border-left: 4px solid var(--colorBlue300);
    border-radius: 0 4px 4px 0;
    margin: 24px 0;
    padding: 16px 20px;
}

.singlePost__content table {
    border-collapse: collapse;
    margin-bottom: 1.4em;
    overflow-x: auto;
    display: block;
    width: 100%;
}

.singlePost__content th,
.singlePost__content td {
    border: 1px solid var(--colorGray100);
    font-size: 14px;
    padding: 8px 12px;
    text-align: left;
    white-space: normal;
}

.singlePost__content th {
    background: var(--colorBlue50);
    font-weight: 700;
}

.singlePost__content iframe {
    max-width: 100%;
}

@media screen and (width <= 1024px) {
    .singlePost__content {
        font-size: 15px;
        line-height: 1.9;
        padding: 24px 20px 32px;
    }

    .singlePost__content h2 {
        font-size: 17px;
    }

    .singlePost__content h3 {
        font-size: 16px;
    }
}
