/*====================================================================
common 

こちらには共通パーツのcss記述しています。

=====================================================================*/

:root {
    --main-color: #8cd7ff;
    --bg-color: #EDEDED;
    --zen: "Zen Old Mincho", serif;
    --rubik: "Rubik", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
}

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

.w980 {
    width: 980px;
    margin: 0 auto;
}

.title {
    font-family: var(--rubik);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.2em;
}

.sub-title {
    font-weight: 400;
    letter-spacing: 0.2em;
}

.title-content {
    text-align: center;
    line-height: 1;
}

.svg-title img {
    width: 50%;
}

.about-card .svg-title img {
    width: 200px;
}

.about-card .svg-img__adjust img {
    width: 220px;
}

.terms .svg-title img {
    width: 200px;
}

.policy .svg-title img {
    width: 250px;
}

.company .svg-title img {
    width: 150px;
}

.contact .svg-title img {
    width: 300px;
}

.service .svg-title img {
    width: 250px;
}

.cancel .svg-title img {
    width: 200px;
}

/*====================================================================
パンくずリスト
=====================================================================*/

.breadcrumb {
    display: flex;
    gap: 6px;
    font-size: 14px;
    list-style: none;
    padding: 10px 0 0 10px;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 4px;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    text-decoration: none;
    color: #666;
}

.breadcrumb li:last-child {
    color: #000;
}


/*====================================================================
header
=====================================================================*/
:root {
    --brand: #8cd7ff;
    --text: #111;
}

/* ヘッダー土台 */
/* .header-container {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
} */

.header-container {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 10px 16px; */
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    /* display: none; */
}

/* ロゴ（左の水色帯っぽく） */
.site-logo {
    margin: 0;
}

.logo-area {
    display: block;
    background: var(--brand);
    padding: 15px;
    width: 30vw;
    /* 水色の余白 */
    /* border-radius: 4px; */
}

.logo {
    display: block;
    height: 40px;
    width: auto;
}

/* ナビ（PC） */
.header-nav {
    margin-left: auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin-left: auto;
    padding: 0;
    white-space: nowrap;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
}

.header-nav a {
    color: var(--text);
    text-decoration: none;
    /* transition: opacity .2s; */
    transition: color 0.1s ease;
}

.header-nav a:hover {
    /* opacity: .7; */
    color: var(--main-color);
}

/* 区切り線 */
.header-nav li+li {
    position: relative;
}

.header-nav li+li::before {
    content: "";
    position: relative;
    left: -11px;
    display: inline-block;
    width: 1px;
    height: 1em;
    background: #aaa;
    vertical-align: middle;
}

/* CTA */
.nav-item-cta a {
    color: #fff;
}

.nav-item-cta a:hover {
    color: #fff;
}

.cta {
    /* margin-left: auto; */
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    transition: 0.1s;
}

.cta:hover {
    opacity: 0.7;
}

/* ハンバーガー（SPのみ表示） */
.menu-btn {
    display: none;
    margin-left: 8px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
}

.menu-btn span {
    display: block;
    height: 2px;
    background: #000;
    margin: 7px 6px;
}

/*====================================================================
shop-list
=====================================================================*/

.shop-list {
    margin-top: 100px;
}

.shop-list__content {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    font-weight: 400;
}

.shop-list__content li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
}

.shop-list__img {
    width: 50%;
    height: auto;
}

.shop-list__box {
    width: 45%;
}

.shop-list__box span {
    font-size: 14px;
}

.shop-map {
    color: rgb(62, 62, 255);
    font-size: 14px;
    text-decoration: none;
}

.shop-map:hover {
    opacity: 0.7;
}

.shop-btn a, .contact-btn a {
    max-width: 200px;
}

.shop-btn {
    margin-top: 20px;
}

.shop-btn a {
    display: inline-block;
    padding: 3px 0;
    text-align: center;
    width: 15vw;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 9999px;
    /* 完全な丸み */
    text-decoration: none;
    transition: all 0.3s;
}

.shop-btn a:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

.contact-btn {
    margin-top: 10px;
}

.contact-btn a {
    display: inline-block;
    padding: 3px 0;
    width: 15vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 9999px;
    color: #000;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s;
}

.contact-btn a:hover {
    background: #000;
    color: #fff;
}

.banner {
    margin-top: 80px;
}

.banner a {
    transition: all .3s;
}

.banner a:hover {
    opacity: 0.7;
}

/*====================================================================
footer
=====================================================================*/

.footer-container .shop-list {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.footer-content {
    background-color: var(--main-color);
    padding-top: 50px;
    padding-bottom: 10px;
}

.footer-nav {
    text-align: center;
    font-weight: 400;
}

.footer-nav ul {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 14px 36px;
    border-radius: 9999px;
    list-style: none;
    margin: 0;
}

.footer-nav a {
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.1s ease;
}

.footer-nav a:hover {
    color: var(--main-color);
}

.footer-nav li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    background: #aaa;
    margin-left: 24px;
}

.footer-logo {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 150px;
    height: 150px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-links li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0.9em;
    background-color: #333;
    margin-left: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #222;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 10px;
    text-align: center;
}

/*====================================================================








ここからレスポンシブ対応
タブレット、スマホ









=====================================================================*/

@media (max-width: 980px) {

    .w980 {
        width: 100%;
    }

    .title {
        text-align: center;
    }

    .svg-title img {
        width: 75%;
    }

    /*====================================================================
header
=====================================================================*/

    .header-container {
        display: flex;
        padding-right: 10px;
    }

    .logo-area {
        width: 45vw;
    }

    /* PCのnavは消してボタン表示 */
    .menu-btn {
        display: block;
    }

    .header-nav {
        position: fixed;
        inset: 0 0 0 30%;
        background: #fff;
        transform: translateX(100%);
        transition: transform .25s ease;
        box-shadow: -20px 0 40px rgba(0, 0, 0, .12);
        padding: 80px 24px 24px;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .header-nav li+li::before {
        display: none;
    }

    .nav-item-cta a {
        color: var(--text);
    }

    .nav-item-cta a:hover {
        color: var(--main-color);
    }

    .cta {
        font-weight: normal;
        padding: 0;
        background: none;
        /* display: none; */
    }

    /* CTAは中の一番上に移したければnav内へ複製でもOK */
    .header-container.nav-open .header-nav {
        transform: translateX(0);
    }

    .header-container.nav-open .menu-btn span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .header-container.nav-open .menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .header-container.nav-open .menu-btn span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /*====================================================================
shop-list
=====================================================================*/

    .shop-list__content {
        display: block;
    }

    .shop-list__content li {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 50px;
        border-bottom: 1px solid #000;
        align-items: flex-start;
    }

    .shop-list__content li:not(:first-child) {
        margin-top: 50px;
    }

    .shop-btn a {
        width: 50vw;
    }

    .contact-btn a {
        width: 50vw;
    }

    .banner {
        text-align: center;
    }

    .banner img {
        width: 90%;
    }



    /*====================================================================
footer
=====================================================================*/

    .footer-content {
        padding-top: 0;
    }

    .footer-nav ul {
        display: block;
        text-align: left;
        padding: 0;
        border-radius: 0px;
    }

    .footer-nav ul li {
        position: relative;
        padding: 15px;
    }

    .footer-nav li::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100vw;
        /* ← 画面幅いっぱい */
        height: 1px;
        background: #000;
        transform: translateX(-50%);
        /* 中央寄せ補正 */
    }

    .footer-nav li:last-child::before {
        display: none;
    }

    .footer-nav li:not(:last-child)::after {
        display: none;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer-links li:not(:last-child)::after {
        display: none;
    }

}



@media (max-width: 480px) {

    /*====================================================================
shop-list
=====================================================================*/

    .shop-btn a {
        width: 160px;
    }

    .contact-btn a {
        width: 160px;
    }

}