@charset "utf-8";

/* ========================================================================
Variables
   ======================================================================== */
:root {
    --primary-white: #FFF;
    --primary-black: #292421;
    --primary-lightPink: #EAE1E1;
    --primary-pink: #B64362;
    --contentPadding-sp: 6.6%;
    --contentPadding-pc: 8.3%;
}

/* ========================================================================
Reset & Base
   ======================================================================== */
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:"Montserrat",
                "Zen Kaku Gothic New",
                sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-image: url(../images/bg.png);
    background-attachment: fixed;
    line-height: 1.6;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.32px;
    margin: 0;
    padding: 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: -1;
}

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

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


/* ========================================================================
Typography
   ======================================================================== */
.topic {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    margin-top: 8px;
}

.subTopic {
    color: var(--primary-pink);
    font-weight: 500;
    letter-spacing: 0;
}

.topic__box {
    text-align: left;
}

/* ========================================================================
Display Utilities
   ======================================================================== */
.only-pc {
    display: none;
}

.only-sp {
    display: block;
}

/* ========================================================================
Loading Screen
   ======================================================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background-image: url('../images/bg.png');
    background-size: calc(100% + 1px) calc(100% + 1px);
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
}

.loading__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading__text {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.loading__text.show {
    opacity: 1;
}

#loading-logo {
    margin-top: 48px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 204px;
    height: 48px;
    padding-right: 8px;
}

#loading-logo.show {
    opacity: 1;
}

/* ========================================================================
Reset & Base - Typography - Loading Screen PC
   ======================================================================== */

@media screen and (min-width: 769px) {
    body {
        line-height: 1.6;
    }

    .topic {
        font-size: 3.2rem;
        margin-top: 24px;
    }

    .subTopic {
        font-size: 1.6rem;
    }

    .only-pc {
        display: block;
    }

    .only-sp {
        display: none !important;
    }

    /* Loading Screen */
    #loading-logo {
        margin-top: 80px;
        width: 253px;
        height: 60px;
        padding-right: 16px;
    }

    .loading__text {
        font-size: 1.8rem;
    }
}

/* ========================================================================
Fade In Animation
   ======================================================================== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================
Header
   ======================================================================== */
.header {
    padding: 0 var(--contentPadding-sp);
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__list--pc {
    display: none;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    padding: 0 5.8%;
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

.header__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    opacity: 0.7;
    background-repeat: repeat;
    border-radius: 30px;
    z-index: -998;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__logo {
    margin: 0;
    z-index: 999;
}

.header__logo img {
    height: 32px;
    width: auto;
    transition: filter 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    position: relative;
    width: 25px;
    height: 13px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger::after {
    content: '';
    position: absolute;
    background-color: var(--primary-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: -1;
}

.hamburger__bar {
    position: absolute;
    left: 0;
    width: 25px;
    height: 1px;
    background: var(--primary-white);
    transition: all 0.3s ease, background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger__bar:nth-child(1) {
    top: 0;
}

.hamburger__bar:nth-child(2) {
    top: 6px;
}

.hamburger__bar:nth-child(3) {
    top: 12px;
}

.hamburger.active .hamburger__bar:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.hamburger.active .hamburger__bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__bar:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* Navigation */
.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: repeat;
    padding: 100px var(--contentPadding-sp) 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background-color 0.3s ease;
    /* z-index: 998; */
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__list {
    background-color: var(--primary-white);
    border-radius: 10px;
    padding: 24px var(--contentPadding-sp);
    line-height: 1;
    display: flex;
    width: fit-content;
    justify-content: left;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 999;
}

.link--category {
    display: block;
    font-weight: 500;
    text-align: left;
}

.link--categoryTop {
    margin-top: 0;
}

.link--category--item {
    display: block;
    margin-top: 16px;
}

.link--item {
    display: block;
    margin-top: 16px;
    position: relative;
    padding-left: 24px;
}

.link--item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: var(--primary-pink);
    border-radius: 50%;
}

.header__nav--bottom {
    margin: 24px var(--contentPadding-sp) 48px;
}

.header__listOutbound {
    margin-left: 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.header__listOutbound--item {
    display: block;
}

.header__listOutbound--item .link--item {
    margin-top: 0;
    font-weight: 500;
}

.header__listOutbound--item a {
    position: relative;
    display: inline-flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    transition: color 0.3s ease;
}

.header__listOutbound--item a::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../images/link_icon_b.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.header__listOutbound--item a:hover::after {
    filter: invert(37%) sepia(45%) saturate(1342%) hue-rotate(314deg) brightness(92%) contrast(89%);
}

.header__list--pc--item--list {
    display: none;
}

.header__listOutbound--item a:hover {
    color: var(--primary-pink);
}

.header__listOutbound--item a:hover::after {
    filter: invert(37%) sepia(45%) saturate(1342%) hue-rotate(314deg) brightness(92%) contrast(89%);
}

/* ========================================================================
Header PC
   ======================================================================== */
@media screen and (min-width: 1119px) {
    .header {
        padding: 0 3.3%;
        height: 128px;
    }

    .header__inner {
        width: 100%;
        height: 80px;
        padding: 0 2.9%;
        border-radius: 50px;
    }

    .header__inner::before {
        border-radius: 50px;
    }

    .header__logo img {
        height: 43px;
    }

    .hamburger {
        display: none;
    }

    .header__nav {
        display: none;
    }

    .header__list--pc {
        display: block;
    }

    .header__list--pc--item {
        display: flex;
        gap: 1.4vw;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .header__list--pc--item--category {
        position: relative;
    }

    .header__list--pc--item--category a {
        position: relative;
        display: inline-flex;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
        transition: color 0.3s ease;
    }

    .header__list--pc--item--category a::after {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        background-image: url(../images/link_icon_b.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .link--category--pc,
    .header__list--pc--item--category > a {
        font-weight: 500;
        cursor: pointer;
        padding: 26px 0;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .link--category--pc:hover {
        color: var(--primary-pink);
    }

    .link--item--pc:hover {
        color: var(--primary-pink);
    }

    .tel--pc {
        padding: 14px 24px;
        border-radius: 30px;
        transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
        background-color: var(--primary-pink);
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
        color: var(--primary-white);
    }

    .tel__icon--pc {
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(../images/tel_icon_white.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: filter 0.3s ease;
    }

    .tel__txt--pc {
        display: inline-block;
        line-height: 1;
    }

    .dropdown-icon {
        display: inline-block;
        width: 12px;
        height: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .dropdown-icon::before,
    .dropdown-icon::after {
        content: '';
        position: absolute;
        background: currentColor;
        transition: all 0.3s ease;
    }

    .dropdown-icon::before {
        width: 12px;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .dropdown-icon::after {
        width: 1px;
        height: 12px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .link--category--pc:hover .dropdown-icon::after,
    .link--category--pc.active .dropdown-icon::after {
        transform: translateX(-50%) rotate(90deg);
        opacity: 0;
    }

    .header__list--pc--item--list {
        position: fixed;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
        min-width: 160px;
        padding: 16px 0;
        list-style: none;
        z-index: 1001;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(12px);
        display: block;
    }

    .header__list--pc--item--list::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/bg.png');
        opacity: 0.7;
        background-repeat: repeat;
        background-size: calc(100% + 1px) calc(100% + 1px);
        border-radius: 8px;
        z-index: -1;
        pointer-events: none;
        transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .link--item--pc {
        font-weight: 500;
    }

    .header__list--pc--item--list.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__list--pc--item--list li {
        margin: 0;
    }

    .header__list--pc--item--list a {
        display: block;
        padding: 6px 16px;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    .header__list--pc--item--category > a:hover {
        color: var(--primary-pink);
    }

    .header__list--pc--item--category > a:hover::after {
        filter: invert(37%) sepia(45%) saturate(1342%) hue-rotate(314deg) brightness(92%) contrast(45%);
    }
}

/* ========================================================================
Fixed Tel Button
   ======================================================================== */
.tel {
    position: fixed;
    text-align: center;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    border-radius: 30px;
    z-index: 990;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    background-color: var(--primary-pink);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    white-space: nowrap;
}

.tel__icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/tel_icon_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter 0.3s ease;
}

.tel__txt {
    display: inline-block;
    line-height: 1;
}

.tel.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media screen and (min-width: 1119px) {
    .tel-link-wrapper {
        display: none;
    }
}

/* ========================================================================
Key Visual
   ======================================================================== */
.kv__frame {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.kv__inner {
    position: relative;
    margin: 0 auto;
    width: calc(100% - var(--contentPadding-sp) * 2);
    height: calc(100vh - 128px);
    overflow: hidden;
    border-radius: 20px;
}

.kv__inner:nth-child(2) {
    position: absolute;
    top: 0;
    right: 50%;
    translate: calc(-50% - 10px) 0;
}

.kv__inner:nth-child(3) {
    position: absolute;
    top: 0;
    left: 50%;
    translate: calc(50% + 10px) 0;
}

.kv__item {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 50%;
    translate: 50%;
    top: 0;
    margin: 0 auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.kv__item.active,
.kv__item.sliding,
.kv__item.sliding-out,
.kv__item.next {
    opacity: 1;
    visibility: visible;
}

.kv__item.active {
    z-index: 2;
}

.kv__item.sliding {
    animation: slideIn 1.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    z-index: 3;
}

.kv__item.sliding-out {
    animation: slideOut 1.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    z-index: 2;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.kv__item.next {
    opacity: 1;
    visibility: visible;
    z-index: 3;
    transform: translateX(100%);
}

.kv__item .img {
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 1.6s cubic-bezier(0.33, 1, 0.68, 1);
    transform-origin: 0 0;
    border-radius: 20px;
}

.kv__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-position: center;
}

.kv__item .img span {
    display: block;
    z-index: 1;
    translate: 0px 0px;
    transition: all 0.1s linear;
    width: 100%;
    height: calc(100svh - 72px);
    aspect-ratio: auto;
}

.kv__titleBox {
    position: absolute;
    writing-mode: vertical-rl;
    align-items: flex-end;
    z-index: 10;
    top: 10%;
    left: 1.8%;
    color: var(--primary-white);
}

.kv__title--txt {
    display: block;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1;
    margin-right: 12px;
    white-space: nowrap;
    letter-spacing: 0.06em;
}

/* ========================================================================
Key Visual PC
   ======================================================================== */

@media screen and (min-width: 769px) {
    .kv__inner {
        width: calc(100% - 3.3% * 2);
        height: calc(100vh - 168px);
        border-radius: 30px;
    }

    .kv__inner:nth-child(2) {
        right: 51%;
        translate: calc(-50% - 10px) 0;
    }

    .kv__inner:nth-child(3) {
        left: 51%;
        translate: calc(50% + 10px) 0;
    }

    .kv__item .img {
        border-radius: 30px;
    }

    .kv__item img {
        border-radius: 30px;
    }

    .kv__item .img span {
        height: calc(100svh - 128px);
    }

    .kv__titleBox {
        top: 50%;
        transform: translateY(-50%);
        left: 5.3%;
    }

    .kv__title--txt {
        font-size: 4.4rem;
        line-height: 1;
        margin-right: 24px;
        letter-spacing: 0.08em;
    }
}

/* ========================================================================
News Section
   ======================================================================== */
.section--news {
    padding: 64px var(--contentPadding-sp);
}

.news__content {
    margin-top: 24px;
}

.news__content--item {
    border-bottom: 1px solid rgba(41, 36, 33, 0.3);
    transition: background-color 0.3s ease;
}

.news__link {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news__content--item:hover {
    background-color: var(--primary-lightPink);
}

.news__meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.news__content--item--date {
    line-height: 1;
    flex-shrink: 0;
    color: rgba(41, 36, 33, 0.5);
    font-size: 1.4rem;
}

.news__loading,
.news__error {
    text-align: center;
    padding: 40px 0;
    color: rgba(41, 36, 33, 0.5);
}

/* ========================================================================
News Section PC
   ======================================================================== */

@media screen and (min-width: 769px) {
    /* News Section */
    .section--news {
        padding: 120px var(--contentPadding-pc) 120px;
        position: relative;
    }

    .section--news .news__title_content {
        position: absolute;
        top: 120px;
        left: var(--contentPadding-pc);
    }

    .news__content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-top: 0;
    }

    .news__link {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 24px 0;
    }

    .news__content--item {
        width: 56.3%;
        display: flex;
    }

    .news__meta {
        margin-bottom: 0;
        width: 105px;
        flex-shrink: 0;
    }

    .news__content--item--date {
        font-size: 1.6rem;
    }

    .news__content--item--title {
        flex-grow: 1;
    }
}

/* ========================================================================
Feature Section
   ======================================================================== */
.section--feature {
    padding: 64px var(--contentPadding-sp) 64px;
    background-color: var(--primary-white);
    border-radius: 30px;
}

.topic__box--feature {
    align-items: center;
    text-align: center;
}

.topic--feature {
    margin-left: 16px;
}

.feature__contentBox {
    margin-top: 48px;
}

.feature__content {
    margin-top: 48px;
}

.feature__content:first-of-type {
    margin-top: 0;
}

.feature__content--imgBox {
    position: relative;
    width: calc(100% + var(--contentPadding-sp));
    margin-left: calc(-1.2 * var(--contentPadding-sp));
    margin-right: 0;
}

.feature__content:nth-child(1) .feature__content--imgBox,
.feature__content:nth-child(3) .feature__content--imgBox {
    width: calc(101% + var(--contentPadding-sp));
    margin-left: 0;
    margin-right: calc(-1 * var(--contentPadding-sp));
}

.feature__content--img {
    width: 100%;
    height: 32.9vh;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
}

.feature__content:nth-child(1) .feature__content--img,
.feature__content:nth-child(3) .feature__content--img {
    border-radius: 16px 0 0 16px;
}

.feature__content--num {
    position: absolute;
    bottom: 10px;
    right: var(--contentPadding-sp);
    z-index: 100;
    width: 60px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--primary-pink);
}

.feature__content--num::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/sakura_icon.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.feature__content--titleBox {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.feature__content--title {
    font-size: 2rem;
    font-weight: 500;
}

.feature__content--txt {
    margin-top: 16px;
}

/* ========================================================================
Feature Section - PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    /* Feature Section */
    .section--feature {
        padding: 120px var(--contentPadding-pc) 120px;
        background-color: transparent;
        position: relative;
    }

    .section--feature::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: var(--contentPadding-pc);
        right: var(--contentPadding-pc);
        width: auto;
        height: 100%;
        border-radius: 30px;
        background-color: var(--primary-white);
        z-index: -1;
    }

    .section--feature .topic__box {
        text-align: center;
    }

    .topic--feature .num {
        font-size: 5.4rem;
    }

    /* コンテンツボックス */
    .feature__contentBox {
        margin-top: 64px;
        padding: 0 7.2vw 0;
    }

    .feature__content {
        margin-top: 56px;
        display: flex;
        align-items: center;
        gap: 4.1vw;
        justify-content: space-between;
        align-self: stretch;
    }

    .feature__content:first-of-type {
        margin-top: 0;
    }

    /* 2番目・4番目（デフォルト）の画像 */
    .feature__content--imgBox {
        width: 31.9vw;
        margin-left: 0;
        margin-right: 0;
    }

    /* 1番目・3番目の画像を小さく */
    .feature__content:nth-child(1) .feature__content--imgBox,
    .feature__content:nth-child(3) .feature__content--imgBox {
        width: 31vw;
        padding-right: 4.1vw;
    }

    /* 画像スタイル */
    .feature__content--img {
        height: 240px;
        width: 31.9vw;
        object-fit: cover;
        border-radius: 16px;
    }

    .feature__content:nth-child(1) .feature__content--img,
    .feature__content:nth-child(3) .feature__content--img {
        width: 31.9vw;
        border-radius: 16px;
    }

    /* 2番目・4番目（デフォルト）のテキストボックス */
    .feature__content--txtBox {
        width: 50.5vw;
    }

    /* 1番目・3番目のテキストボックスも同じサイズに調整 */
    .feature__content:nth-child(1) .feature__content--txtBox,
    .feature__content:nth-child(3) .feature__content--txtBox {
        width: 43vw;
    }

    .feature__content:nth-child(1) .feature__content--num,
    .feature__content:nth-child(3) .feature__content--num {
        right: calc(3.6vw + var(--contentPadding-sp));
    }

    /* 逆順レイアウト（2番目・4番目） */
    .feature__content--reverse {
        flex-direction: row-reverse;
    }

    .feature__content--titleBox {
        margin-top: 0;
    }

    .feature__content--title {
        font-size: 2.4rem;
    }

    .feature__content--txt {
        margin-top: 24px;
    }
}

/* ========================================================================
Product Section
   ======================================================================== */
.section--product {
    padding: 64px var(--contentPadding-sp);
}

.product__tab--list {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 20px;
    line-height: 1;
}

.product__tab {
    display: inline-block;
    min-width: 66px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.product__container {
    margin-top: 48px;
    position: static;
    min-height: auto;
}

.product__item {
    opacity: 1;
    visibility: visible;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    transition: none;
    pointer-events: auto;
    margin-top: 8px;
    background-color: var(--primary-white);
    border-radius: 14px;
    padding: 16px;
}

.product__item:first-of-type {
    margin-top: 0;
}

.product__imgBox {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 30vh;
    min-height: 200px;
    border-radius: 10px;
    position: relative;
}

.product__imgBox span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.product__imgBox span.current {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
}

.product__imgBox span.sliding,
.product__imgBox span.sliding-out,
.product__imgBox span.next {
    opacity: 1;
    visibility: visible;
}

.product__imgBox span.sliding {
    animation: slideIn 1.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    z-index: 3;
}

.product__imgBox span.sliding-out {
    z-index: 2;
}

.product__imgBox span.next {
    opacity: 1;
    visibility: visible;
    z-index: 3;
    transform: translateX(100%);
}

.product__imgBox img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__txtContainer {
    margin-top: 24px;
}

.product__accordion {
    position: relative;
}

.product__accordion summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.product__accordion summary::-webkit-details-marker {
    display: none;
}

.product__titleBox {
    display: flex;
    align-items: baseline;
    position: relative;
    padding-right: 30px;
}

.product__title {
    font-size: 2rem;
    font-weight: 500;
}

.product__subTitle {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-pink);
}

.product__icon {
    position: absolute;
    width: 36px;
    height: 36px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: var(--primary-lightPink);
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.product__icon::before,
.product__icon::after {
    content: '';
    position: absolute;
    background: var(--primary-black);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product__icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product__icon::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product__accordion[open] .product__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.product__content {
    padding-top: 16px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.product__accordion[open] .product__content {
    grid-template-rows: 1fr;
}

.product__content__inner {
    overflow: hidden;
}

.product__txtBox {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.product__txtBox::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: rgba(41, 36, 33, 0.3);
    opacity: 0.5;
}

.product__accordion[open] .product__txtBox {
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
}

.product__menu {
    display: flex;
    font-weight: 500;
}

.product__menu .line {
    flex-grow: 1;
    height: 1px;
    margin: 0 4px;
    padding-top: 0.9em;
    border-bottom: 1px dotted var(--primary-pink);
}

.product__price {
    display: inline-block;
    margin-left: 4px;
    width: 72.6%;
}

.product__detail {
    margin-top: 16px;
}

.product__detailTxt {
    display: block;
    position: relative;
    padding-left: 1.4em;
    margin-top: 8px;
}

.product__detailTxt::before {
    content: "";
    position: absolute;
    left: 0.4em;
    top: 0.7em;
    width: 4px;
    height: 4px;
    background-color: var(--primary-pink);
    border-radius: 50%;
}

/* ========================================================================
Product Section PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    .section--product {
        position: relative;
        padding: 120px var(--contentPadding-pc);
        display: flex;
        gap: 21.8vw;
    }

    .section--product > .topic__box {
        position: absolute;
        top: 120px;
        left: var(--contentPadding-pc);
        width: 25vw;
    }

    .product__tab--list {
        display: block;
        flex-wrap: nowrap;
        width: 7.2vw;
        flex-shrink: 0;
        flex-grow: 0;
        margin-top: 222px;
        position: sticky;  /* 既にstickyになっているはず */
        top: 148px;        /* ← この行を追加！ヘッダーの高さ分下げる */
        height: fit-content;
    }

    .product__tab {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin-bottom: 12px;
        border-bottom: none;
        font-weight: 500;
    }
    .product__tab::after {
        margin-bottom: 0;
    }
    

    .product__tab:hover {
        color: var(--primary-pink);
    }

    .product__container {
        width: auto;
        flex-grow: 1;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.1vw;
    }

    .product__item {
        margin-top: 0;
        padding: 24px;
    }

    .product__imgBox {
        height: 30vh;
        min-height: auto;
        border-radius: 14px;
    }

    .product__imgBox img {
        border-radius: 14px;
    }

    .product__accordion {
        pointer-events: none;
    }

    .product__accordion summary {
        cursor: default;
        pointer-events: none;
    }

    .product__icon {
        display: none;
    }

    .product__titleBox {
        padding-right: 0;
    }

    .product__content {
        display: block;
        grid-template-rows: 1fr;
        padding-top: 0;
        overflow: visible;
        margin-top: 24px;
    }

    .product__content__inner {
        overflow: visible;
    }

    .product__txtBox {
        position: relative;
        margin-top: 32px;
        opacity: 1;
        transform: translateY(0);
    }

    /* Work Section */
    .section--work {
        margin: 0;
        padding: 0 var(--contentPadding-pc);
        height: 100vh;
        min-height: 720px;
    }

    .work__content {
        flex-direction: row;
        gap: 0;
        height: 100%;
        min-width: 0;
        padding-left: 11.3vw;
    }
}
/* ========================================================================
Work Section
   ======================================================================== */
.section--work {
    position: relative;
    margin: 0;
    padding: 0 0 64px;
    overflow: hidden;
}

.work__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    z-index: 1;
}

.work__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work__textArea {
    padding: 64px var(--contentPadding-sp) 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--primary-white);
}

.work__textArea .topic__box {
    text-align: center;
}

.btn__work {
    display: inline-block;
    margin-top: 48px;
    position: relative;
    padding: 14px 48px 14px 32px;
    border-radius: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid var(--primary-white);
}

.btn__work::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 16px;
    top: 46%;
    transform: translateY(-50%);
    background-image: url(../images/link_icon_w.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 8px;
    transition: filter 0.3s ease;
}

.work__slideshow {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.work__slideshow--track {
    display: flex;
    gap: 16px;
    animation: scrollHorizontal 30s linear infinite;
    will-change: transform;
}

.work__slideshow--item {
    flex-shrink: 0;
    width: 259px;
    height: 46vh;
    border-radius: 8px;
    overflow: hidden;
}

.work__slideshow--item:first-child {
    margin-left: var(--contentPadding-sp);
}

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

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * ((259px + 16px) * 6)));
    }
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-1 * ((42vh + 40px) * 6)));
    }
}

/* ========================================================================
Work Section　PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    .work__textArea {
        position: absolute;
        order: 2;
        height: 100%;
        justify-content: center;
        padding: 0;
        text-align: left;
        align-items: flex-start;
        flex-grow: 1;
        min-width: 0;
        margin-left: 47.9vw;
        margin-right: 10.6vw;
    }

    .work__textArea .topic__box {
        text-align: left;
    }

    .work__slideshow {
        order: 1;
        width: 33.9vw;
        height: 100%;
        overflow: visible;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        min-width: 33.9vw;
        flex-shrink: 0;
    }

    .work__slideshow--track {
        flex-shrink: 0;
        width: 33.9vw;
        flex-direction: column;
        gap: 40px;
        animation: scrollVertical 60s linear infinite;
    }

    .work__slideshow--item {
        flex-shrink: 0;
        width: 33.9vw;
        height: 42vh;
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
    }

    .work__slideshow--item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 14px;
    }

    .work__slideshow--item:first-child {
        margin-left: 0;
        margin-top: 40px;
    }

    .btn__work {
        position: relative;
        display: inline-block;
        margin-top: 48px;
        padding: 14px 56px 14px 40px;
        border-radius: 40px;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        border: 1px solid var(--primary-white);
    }

    .btn__work--text {
        position: relative;
        display: inline-block;
        overflow: hidden;
        color: transparent;
        top: 4px;
    }

    .btn__work--text::before {
        content: '実績一覧を見る';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: var(--primary-white);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
        white-space: nowrap;
    }

    .btn__work--text::after {
        content: '実績一覧を見る';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(100%);
        white-space: nowrap;
        color: var(--primary-white);
    }

    .btn__work:hover .btn__work--text::before {
        transform: translateY(-100%);
    }

    .btn__work:hover .btn__work--text::after {
        transform: translateY(0);
    }

    .btn__work::after {
        content: '';
        position: absolute;
        display: inline-block;
        width: 16px;
        height: 16px;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
        background-image: url(../images/link_icon_w.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: filter 0.3s ease;
    }
}

/* ========================================================================
Flow Section
   ======================================================================== */
.section--flow {
    padding: 64px var(--contentPadding-sp);
}

.flow__box {
    margin-top: 48px;
}

.flow__box--item {
    display: flex;
    gap: 6.1%;
    margin-top: 40px;
    position: relative;
}

.flow__box--item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 33px;
    top: 54px;
    width: 2px;
    height: calc(100% + 40px);
    background-color: var(--primary-white);
}

.flow__box--itemNum {
    flex-shrink: 0;
    width: 66px;
    position: relative;
    min-height: calc(66px + 66px / 2 + 10px);
}

.flow__box--itemNum span {
    display: block;
    position: absolute;
    z-index: 10;
    top: calc(66px / 2 + 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.flow__box--itemNum::before {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: var(--primary-white);
    top: 0;
    left: 0;
}

.flow__box--itemIcon {
    position: absolute;
    width: 38px;
    height: 38px;
    z-index: 20;
    right: -10px;
    top: 40px;
}

.flow__box--itemTitle {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.flow__box--itemDetail {
    display: block;
    font-size: 1.4rem;
    margin-top: 16px;
}

/* ========================================================================
Flow Section PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    .section--flow {
        padding: 120px var(--contentPadding-pc);
        display: flex;
        gap: 7.2vw;
    }

    .topic__box--flow {
        width: 24.5vw;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .flow__box {
        margin-top: 0;
    }

    .flow__box--item {
        display: flex;
        gap: 4.1vw;
        margin-top: 80px;
    }

    .flow__box--item:first-of-type {
        margin-top: 0;
    }

    .flow__box--item:not(:last-child)::after {
        left: 52px;
        top: 92px;
        height: calc(100% + 80px);
    }

    .flow__box--itemNum {
        width: 135px;
        position: relative;
    }

    .flow__box--itemNum span {
        top: calc(103px / 2 + 2px);
        left: 40px;
        transform: translate(0, -50%);
        font-size: 2rem;
        line-height: 1;
    }

    .flow__box--itemNum::before {
        width: 105px;
        height: 103px;
    }

    .flow__box--itemIcon {
        width: 63px;
        height: 68px;
        z-index: 20;
        right: 0;
        top: 48px;
    }

    .flow__box--itemTitle {
        font-size: 2.4rem;
    }

    .flow__box--itemDetail {
        font-size: 1.6rem;
        margin-top: 24px;
    }
}

/* ========================================================================
Detail Section
   ======================================================================== */
.section--detail {
    padding: 32px var(--contentPadding-sp) 64px;
    position: relative;
}

.section--detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

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

.detail__box {
    margin-top: 48px;
}

.detail__box--item {
    padding: 24px 0;
    position: relative;
    border-bottom: 1px solid rgba(41, 36, 33, 0.3);
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail__box--item:first-of-type {
    padding-top: 0;
}

.detail__box--itemTitle {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail__box--itemTxt {
    display: block;
    font-size: 1.4rem;
    margin-top: 16px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================================
Detail Section PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    .section--detail {
        padding: 40px var(--contentPadding-pc) 120px;
        display: flex;
        gap: 7.2vw;
    }

    .section--detail .topic__box {
        width: 21.8vw;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .detail__box {
        margin-top: 0;
    }

    .detail__box--item {
        padding: 32px 0;
    }

    .detail__box--item:first-of-type {
        margin-top: 0;
    }

    .detail__box--itemTitle {
        font-size: 2.4rem;
    }

    .detail__box--itemTxt {
        font-size: 1.6rem;
        margin-top: 24px;
    }
}

/* ========================================================================
Message Section
   ======================================================================== */
.section--message {
    padding: 64px var(--contentPadding-sp) 104px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--primary-lightPink);
    border-radius: 30px 30px 0 0;
}

.section--message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

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

.message__people {
    text-align: right;
    margin-top: 24px;
}

.message__people p {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message__people .sign__img {
    width: 80px;
    height: 20px;
    object-fit: cover;
    margin-top: 16px;
}

.message__txtBox {
    display: block;
    text-align: left;
}

.message__txt {
    display: block;
    margin-top: 48px;
    line-height: 1.8;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.people__img {
    margin-top: 48px;
    border-radius: 16px;
    height: 240px;
    width: 100%;
    object-fit: cover;
}

/* ========================================================================
   Message Section - PC版修正（右側の空間を解消）
   ======================================================================== */

@media screen and (min-width: 769px) {
    /* Message Section */
    .section--message {
        padding: 0 3.3vw 0;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 4.1vw;
        background-color: transparent;
    }

    /* 背景要素の修正 */
    .message_Box {
        padding: 120px 5vw;
        width: 100%;
        height: 100%;
        background-color: var(--primary-lightPink);
        pointer-events: none;
        z-index: 0;
        border-radius: 30px;
        display: flex;
        gap: 4.4vw;
    }

    .section--message .topic__box {
        text-align: left;
    }

    /* テキストボックス */
    .message__txtBox {
        order: 2;
        width: 39.5vw;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 0;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .message__txtBox.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 画像 */
    .people__img {
        order: 1;
        margin-top: 0;
        width: 39.5vw;
        flex-shrink: 0;
        height: 64vh;
        margin-left: 0;
        border-radius: 16px;
        object-fit: cover;
    }

    .message__people {
        margin-top: 64px;
    }

    .message__txt {
        margin-top: 56px;
        line-height: 2.2;
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}


/* ========================================================================
FAQ Section
   ======================================================================== */
.section--faq {
    padding: 64px var(--contentPadding-sp) 48px;
    background-color: var(--primary-white);
    position: relative;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

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

.faq__list--box {
    margin-top: 32px;
}

.faq__right > .faq__list--box:first-of-type {
    margin-top: 24px;
}

.faq__right {
    width: 100%;
}

.c-accordion__details {
    border-bottom: 1px solid rgba(41, 36, 33, 0.3);
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-accordion__summary {
    display: flex;
    align-items: baseline;
    padding: 24px 36px 24px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-accordion__summary p {
    display: inline-block;
}

.c-accordion__summary .Q {
    color: var(--primary-pink);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    width: 28px;
}

.c-accordion__summary::-webkit-details-marker {
    display: none;
}

.c-accordion__summary .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-lightPink);
    transition: filter 0.3s ease;
}

.c-accordion__summary .icon::before,
.c-accordion__summary .icon::after {
    content: '';
    position: absolute;
    background: var(--primary-black);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-accordion__summary .icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c-accordion__summary .icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c-accordion__details[open] .c-accordion__summary .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.c-accordion {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.c-accordion__details[open] .c-accordion {
    grid-template-rows: 1fr;
}

.c-accordion__inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-accordion__details[open] .c-accordion__inner {
    padding: 0 0 24px 32px;
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================
FAQ Section PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    /* FAQ Section */
    .section--faq {
        padding: 120px 15.6vw 120px 21.8vw;
        margin-left: var(--contentPadding-pc);
        display: block;
        gap: 7.2vw;
        position: static;
        border-radius: 30px 0 0 30px;
    }

    .section--faq::before {
        display: none;
    }

    .section--faq > .topic__box {
        width: 21.8vw;
        flex-shrink: 0;
        flex-grow: 0;
        position: static;
        top: auto;
        left: auto;
    }

    .topic--faq {
        white-space: nowrap;
    }

    .faq__right {
        width: auto;
        flex-grow: 1;
        margin-top: 64px;
    }

    .faq__list--box {
        margin-top: 80px;
    }

    .faq__right > .faq__list--box:first-of-type {
        margin-top: 0;
    }

    .c-accordion__summary {
        padding: 32px 30px 32px 0;
    }

    .c-accordion__summary1 {
        padding-top: 0;
    }

    .c-accordion__summary .Q {
        font-size: 2.4rem;
        width: 32px;
    }

    .c-accordion__details[open] .c-accordion__inner {
        padding: 0 0 32px 32px;
    }

    .c-accordion__summary .icon {
        width: 36px;
        height: 36px;
    }

    .c-accordion__summary .icon::before {
        width: 12px;
    }

    .c-accordion__summary .icon::after {
        height: 12px;
    }
}
/* ========================================================================
Contact Section
   ======================================================================== */
.section--contact {
    padding: 0 var(--contentPadding-sp) 48px;
    background-color: var(--primary-white);
}

.contact__bg {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: var(--primary-lightPink);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.10);
    padding: 24px var(--contentPadding-sp);
}

.subTopic--contact {
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
    padding-left: 44px;
}

.subTopic--contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-pink);
}

.subTopic--contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url(../images/tel_icon_white.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.contact--txtBox {
    margin-top: 8px;
    z-index: 10;
}

.contact__tel--link {
    font-size: 3.4rem;
    font-weight: 500;
}

.contact__tel--txt {
    margin-top: 8px;
    text-align: left;
}

.contact__store {
    margin-top: 24px;
    width: auto;
}

.footer__logo {
    width: 169px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.contact__store--Box {
    margin-top: 24px;
}

.contact__store--item {
    font-size: 1.2rem;
}

/* ========================================================================
Contact Section PC
   ======================================================================== */
@media screen and (min-width: 769px) {
    /* Contact Section */
    .section--contact {
        text-align: left;
        padding: 120px 0 80px var(--contentPadding-pc);
        margin-top: 64px;
        border-radius: 0 30px 0 0;
        display: flex;
        gap: 4.4vw;
    }

    .contact__bg {
        width: 40vw;
        height: auto;
        padding: 32px 3.1vw;
        border-radius: 16px;
    }

    .subTopic--contact {
        font-size: 1.6rem;
    }

    .contact__bg::before {
        background-image: url(../images/gifu_pc.png);
        width: 57.8vw;
        height: 100%;
        z-index: -1;
    }

    .topic--contact {
        font-size: 2.4rem;
    }

    .section--contact .topic__box {
        text-align: left;
    }

    .contact__tel--linkBox {
        margin-left: 0px;
    }

    .contact__tel--link {
        padding: 0;
    }

    .contact__tel--link {
        font-size: 4.4rem;
    }

    .contact__tel--txt {
        font-size: 1.6rem;
    }

    .contact__store {
        align-items: flex-end;
    }

    .contact__store--item {
        font-size: 1.4rem;
    }
}

/* ========================================================================
Footer
   ======================================================================== */
.section--footer {
    line-height: 1;
    padding: 0 var(--contentPadding-sp) 24px;
    background-color: var(--primary-white);
}

.footer__listBox {
    display: none;
}

.footer__link--item:hover {
    opacity: 0.8;
}

small {
    position: relative;
    display: block;
    color: rgba(41, 36, 33, 0.5);;
    font-size: 1rem;
}

small::after {
    content: "";
    position:  absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(41, 36, 33, 0.3);
}

/* ========================================================================
Keyframes
   ======================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================================
   Footer - PC版外部リンクアイコン修正
   ======================================================================== */

@media screen and (min-width: 769px) {
    footer {
        background-color: var(--primary-white);
        margin-right: 15.6vw;
        border-radius: 0 30px 0 0;
    }
    
    /* Footer */
    .section--footer {
        padding: 0 var(--contentPadding-pc) 40px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer__listBox {
        display: block;
        width: 100%;
        margin-top: 1;
    }

    .footer__list {
        display: flex;
        gap: 4.1vw;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer__list--item {
        width: 14.5vw;
        flex-shrink: 0;
    }

    .section--footer .link--category {
        display: block;
        font-size: 1.4rem;
        color: var(--primary-black);
        margin: 0 0 24px;
        font-weight: 500;
    }

    .link--itemBox {
        display: grid;
        grid-template-columns: 7.2vw 7.2vw;
        gap: 24px 0;
    }

    .footer__list--item:nth-child(2) .link--itemBox,
    .footer__list--item:nth-child(3) .link--itemBox {
        grid-template-columns: 1fr;
    }

    .footer__list--item:nth-child(2) .link--itemBox .footer__link--item,
    .footer__list--item:nth-child(3) .link--itemBox .footer__link--item {
        width: 100%;
    }

    .link--itemBox .footer__link--item {
        display: block;
        font-size: 1.4rem;
        padding-bottom: 4px;
        width: fit-content;
        position: relative;
        padding-left: 16px;
    }

    .footer__link--item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 8px;
        height: 1px;
        background-color: var(--primary-black);
        border-radius: 50%;
    }

    .footer__list--item > .footer__link--item {
        display: block;
        font-size: 1.4rem;
        border: none;
        padding: 8px 0;
        width: fit-content;
        padding-left: 0; /* ::afterを削除するため */
    }

    .footer__list--item > .footer__link--item::after {
        display: none; /* 通常の::afterを非表示 */
    }

    .footer__list--item > .link--item:first-child {
        padding-top: 0;
    }

    small {
        margin-top: 48px;
        font-size: 1.2rem;
    }
}

    /* ========================================================================
       3. 電話ボタン「電話で無料相談」
       ======================================================================== */
@media screen and (min-width: 769px) {    
    .tel__txt--pc {
        position: relative;
        display: inline-block;
        overflow: hidden;
        height: 1.6em;
        line-height: 1.6;
        color: transparent;
    }

    .tel__txt--pc::before {
        content: '電話で無料相談';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: var(--primary-white);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
    }

    .tel__txt--pc::after {
        content: '電話で無料相談';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: var(--primary-white);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(100%);
        opacity: 0.8;
    }

    .tel--pc:hover .tel__txt--pc::before {
        transform: translateY(-100%);
    }

    .tel--pc:hover .tel__txt--pc::after {
        transform: translateY(0);
    }


    /* ========================================================================
       4. Contact電話番号「058-251-7045」
       .contact__bg をホバーした時に動作
       ======================================================================== */
    
    .contact__tel--link {
        position: relative;
        display: inline-block;
        overflow: hidden;
        height: 1.6em;
        line-height: 1.6;
        font-size: 4.4rem;
        font-weight: 500;
        color: transparent;
    }

    .contact__tel--link::before {
        content: '058-251-7045';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: var(--primary-black);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
    }

    .contact__tel--link::after {
        content: '058-251-7045';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: var(--primary-pink);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(100%);
    }

    /* .contact__bg をホバーした時に .contact__tel--link のアニメーションを発火 */
    .contact__bg:hover .contact__tel--link::before {
        transform: translateY(-100%);
    }

    .contact__bg:hover .contact__tel--link::after {
        transform: translateY(0);
    }
}