@charset "utf-8";

html {
    interpolate-size: allow-keywords;
}

img {
    max-width: 100%;
    height: auto;
}

.m-plus-rounded-1c {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-style: normal;
}

/* *****
 inner
 - 幅 */

.section>.inner {
    max-width: calc(1104px + 40px);
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}


#vtuberApp {
    color: #333;
    background: linear-gradient(0deg, #D5DDFF 0%, #DAFFF9 100%);
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

.link_btn {
    color: #FFF;
    font-weight: 700;
    border-radius: 30em;
    background: #074B84;
    padding: 8px 16px;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    width: fit-content;
    transition: background-color 300ms ease-out;
}

.link_btn:hover {
    background: #140D77;
}

.link_btn-btmarrow-r:after {
    content: url(../images/icon_btmarrow.svg);
    display: block;
    width: 6px;
    height: 4px;
    line-height: 0;
}

/* ==========================================================================
   MV
   ========================================================================== */
.mv {
    background: url(../images/mv_bg_pc.webp) no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 56px 24px 120px;
    font-weight: 700;
}

.mv__inner {
    display: flex;
    flex-direction: column;
}

.mv__catch {
    order: -1;
    display: flex;
    flex-direction: column;
    color: #FFF;
    text-shadow: 0 2px 6px #211D05;
    font-weight: 700;
    margin-bottom: 32px;
}

.mv__catch-sub {
    order: -1;
    font-size: 20px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 4px;
}

.mv__catch-main {
    font-size: 40px;
    line-height: 150%;
    font-weight: 700;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .mv {
        background: url(../images/mv_bg_sp.webp) no-repeat;
        background-size: cover;
    }

    .mv__catch-sub {
        font-size: 16px;
    }

    .mv__catch-main {
        font-size: 24px;
    }

}

.search__btn {
    width: 128px;
    position: fixed;
    right: 32px;
    bottom: 20vh;
    display: block;
    z-index: 999;
    transition: opacity 300ms ease-out;
}

.search__btn:hover {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .search__btn {
        width: 90px;
        height: 90px;
        right: 8px;
        bottom: 10vh;
    }
}

/* ==========================================================================
   導入（lead）
   ========================================================================== */
.lead {
    padding: 96px 0 0;
    background: #fff url(../images/shop_bg.webp) no-repeat;
    background-size: cover;
}

.lead__img {
    text-align: center;
}

.lead__inner {
    text-align: center;
    margin-bottom: 24px;
}

.lead__icon {
    margin-bottom: 32px;
}

.lead__title-sub {
    font-size: 26px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead__title {
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 64px;
}

.lead__text {
    font-size: 20px;
    margin-bottom: 32px;
}

.lead__text p {
    line-height: 180%;
    font-weight: 700;
}

.lead__text p+p {
    margin-top: 2em;
}

.lead__anchor {
    text-align: center;
    margin-bottom: 32px;
}

.lead__anchor-link {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin: auto;
    padding: 20px 24px 20px 32px;
    font-size: 20px;
    border: 2px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%) border-box;
}

.lead__anchor-link:hover {
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%) border-box;
}

/* 白面だけを擬似要素で重ねてフェード */
.lead__anchor-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    opacity: 0;
    transition: opacity 300ms ease-out;
    z-index: -1;
}

.lead__anchor-link:hover::before {
    opacity: 1;
}

.lead__anchor-link::after {
    content: "";
    flex-shrink: 0;
    width: 13px;
    height: 7px;
    background: url(../images/icon_btmarrow-big.svg) no-repeat center / contain;
}

.lead__anchor-link:hover::after {
    background-image: url(../images/icon_btmarrow-big_gradient.svg);
}

.lead__anchor-link:hover .lead__anchor-link__txt {
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.lead__subtitle {
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 16px;
}

.lead__list {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 16px;
}

.lead__list-item:not(:last-child) {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .lead {
        padding: 64px 0 0;
    }

    .lead__img {
        overflow: hidden;
        width: 100%;
    }

    .lead__img-building {

        width: 120vw;
        margin-left: -10vw;
    }

    .lead__title-sub {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .lead__title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .lead__text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .lead__anchor {
        margin-bottom: 24px;
    }

    .lead__anchor-link {
        font-size: 16px;
        padding: 20px 18px 20px 32px;
    }

    .lead__subtitle {
        font-size: 18px;
    }

    .lead__list {
        font-size: 14px;
    }

}

/* ==========================================================================
   3ステップ楽しみ方ガイド
   ========================================================================== */
.guide {
    padding: 96px 0;
}

.guide__title {
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
}

.guide__step {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 8px;
    border: 8px solid rgba(189, 227, 255, 0.80);
    background: #FFF;
    box-sizing: border-box;
}

.guide__step:not(:last-child) {
    margin-bottom: 40px;
}

.guide__step-image {
    width: 205px;
    text-align: center;
}

.guide__step-body {
    width: calc(100% - 205px + 24px);
}

.guide__step-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 16px;
}

.guide__step-number {
    color: #074B84;
}

.guide__step-text {
    font-weight: 700;
}

@media (max-width: 768px) {

    .guide__title {
        font-size: 28px;
    }

    .guide__step {
        padding: 24px 20px;
        flex-direction: column;
    }

    .guide__step-image {
        max-width: 100%;
        margin: auto;
    }

    .guide__step-body {
        width: 100%;
    }

    .guide__step-title {
        font-size: 16px;
    }

    .guide__step-text {
        font-size: 14px;
    }
}


/* ==========================================================================
   アプリのご案内
   ========================================================================== */
.app {
    padding: 40px 0;
    background: #fff url(../images/shop_bg.webp) no-repeat;
    background-size: cover;
}

.app__inner {}

.app__title {
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
}

.app__image {
    max-width: 800px;
    text-align: center;
    padding: 24px;
    margin: auto;
}

@media (max-width: 768px) {

    .app__title {
        font-size: 28px;
    }

    .app__image {
        padding: 20px;
    }
}


/* ==========================================================================
   参加店舗一覧（stores）
   ========================================================================== */
.stores {
    padding-top: 96px;
    padding-bottom: 96px;
}

.stores__inner {}

.stores__title {
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
}

.stores__nav {
    margin-bottom: 40px;
}

.stores__area-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stores__area-link {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    width: 100%;
    background-color: var(--area-color, #9C5AB1);
    border-color: var(--area-color, #9C5AB1);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    text-align: center;
    transition: opacity 300ms ease-out;
}

.stores__area-link:hover {
    opacity: 0.7;
}

.stores__area-link::after {
    content: url(../images/icon_btmarrow-big.svg);
    line-height: 0;
    display: block;
    width: 13px;
    height: 7px;
    line-height: 0;
}

/* 2つ目以降の前に「・」を挿入 */
.stores__area-part+.stores__area-part::before {
    content: "・";
}

@media (max-width: 768px) {
    .stores {}

    .stores__inner {}

    .stores__title {
        font-size: 28px;
    }

    .stores__nav {
        margin: 0 -20px;
    }

    .stores__area-list {
        margin-bottom: 40px;
        gap: 0;
    }

    .stores__area-item {
        width: calc(100% / 4);
    }

    .stores__area-link {
        flex-direction: column;
        gap: 0;
        padding: 16px;
        width: 100%;
        height: 100%;
    }

    .stores__area-link::after {
        margin-top: 8px;
    }

    .stores__area-part {
        display: block;
    }

    .stores__area-part+.stores__area-part::before {
        content: none;
    }

}

/* ==========================================================================
   地方セクション（area）
   ========================================================================== */

.area__title {
    text-align: center;
    font-size: 32px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 8px;
    position: relative;
}

.area__title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 8em;
    height: 4px;
    border-radius: 8px;
    background-color: var(--area-color, #333);
}

.area__store-list {
    margin-bottom: 40px;
}

.area__store {}

@media (max-width: 768px) {
    .area__title {
        font-size: 24px;
    }

    .area__title::after {
        width: 10em;
    }

}

/* ==========================================================================
   店舗カード（store-card）
   ========================================================================== */
.store-card {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
    background: #FFF;
    border: 3px solid rgba(189, 227, 255, 0.80);
    transition: opacity 300ms ease-out;
}

.store-card:has(.store-card__link:hover) {
    opacity: 0.7;
}

.store-card__inner {
    border-right: 24px solid var(--area-color);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    padding: 16px 16px 16px 16px;
    position: relative;
}

.store-card__inner::before {
    content: url(../images/icon_rightarrow.svg);
    display: block;
    width: 6px;
    height: 11px;
    line-height: 0;
    position: absolute;
    right: -14px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.store-card__link {
    width: 100%;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    display: grid;
    grid-template-columns: 4fr 2fr;
    align-items: center;
    gap: 16px;
}


.store-card__link::after {
    content: "";
    position: absolute;
    inset: 0;
}

.store-card__vtuber-link {
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.store-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    margin-bottom: 4px;
}

.store-card__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}

.store-card__address {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
}


.store-card__vtuber-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.store-card__vtuber-image {
    width: 60px;
}


@media (max-width: 768px) {

    .store-card {}

    .store-card__link {
        grid-template-columns: 1fr;
    }

    .store-card__inner {
        border: none;
        padding: 10px;
    }

    .store-card__inner::before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        line-height: 0;
        position: absolute;
        right: 4px;
        top: auto;
        bottom: 4px;
        margin: auto;
        background: var(--area-color);
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }

    .store-card__head {
        gap: 8px;
    }

    .store-card__vtuber-list {
        justify-content: flex-start;
    }

    .store-card__vtuber-item {
        width: calc(100% / 5);
    }


    .store-card__vtuber-image {
        width: 100%;
    }

    .store-card__vtuber-face {
        width: 100%;
    }
}


/* ============================================================
 * store-modal ─ 店舗詳細モーダル
 * ========================================================== */

body.is-modal-open {
    position: fixed;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.store-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overscroll-behavior: contain;
}

.store-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 42, 41, 0.45);
}

.store-modal__window {
    position: relative;
    width: 1104px;
    max-width: calc(100vw - 80px);
    height: 600px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    clip-path: inset(0 round 8px);
    overflow-y: auto;
    background: #D9F2FB;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

    .store-modal {
        padding: 24px;
    }

    .store-modal__window {
        padding: 32px 16px;
        height: auto;
        max-width: 100%;
    }
}

.store-modal-enter-active,
.store-modal-leave-active {
    transition: opacity 300ms ease;
}

.store-modal-enter-from,
.store-modal-leave-to {
    opacity: 0;
}

/* ***** 閉じるボタン ***** */
.store-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: transparent;
}

.store-modal__close::before,
.store-modal__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #697180;
}

.store-modal__closeBottom::before,
.store-modal__closeBottom::after {
    content: '';
    width: 16px;
    height: 2px;
    background: #697180;
    position: absolute;
    top: 50%;
    left: -8px;
}

.store-modal__close::before,
.store-modal__closeBottom::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.store-modal__close::after,
.store-modal__closeBottom::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.store-modal__close-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.store-modal__closeBottom-wrap {
    margin-top: 16px;
    text-align: center;
}

.store-modal__closeBottom {
    background: none;
    border: none;
    position: relative;
    text-decoration: underline;
    color: #140D77;
    font-size: 14px;
}

.store-modal__closeBottom:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .store-modal__close {
        top: 4px;
        right: 4px;
    }
}

/* ***** 店舗情報 ***** */
.store-modal__body {
    max-width: 700px;
    margin: auto;
}

.store-modal__head {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    border: 3px solid var(--area-color, #9c5ab1);
    border-radius: 8px;
    background: #fff;
}

.store-modal__icon {
    padding: 8px 0;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 116px;
}

.store-modal__icon-image {
    display: block;
    width: 74px;
    height: 65px;
}

.store-modal__summary {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    gap: 12px;
    background: var(--area-color, #9c5ab1);
    color: #fff;
}

.store-modal__info {
    width: calc(100% - 150px - 12px);
}

.store-modal__name {
    margin-bottom: 4px;
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
}

.store-modal__range {
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
}

.store-modal__range-text {}

.store-modal__btn {
    width: 150px;
    margin: 0;
}

.store-modal__btnlink {
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;

    padding: 8px 28px 8px 36px;
    border: 2px solid transparent;
    border-radius: 999px;
    background: #fff;
    color: var(--area-color, #9c5ab1);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 300ms ease-out,
        border-color 300ms ease-out,
        color 300ms ease-out;
}

.store-modal__btnlink path {
    transition: fill 300ms ease-out;
}

.store-modal__btnlink:hover {
    border-color: #140D77;
    background: #140D77;
    color: #fff;
}

.store-modal__btnlink:hover path {
    fill: #fff;
}

/* ***** VTuber 一覧 ***** */
.store-modal__vtubers {
    margin-top: 20px;
}

.store-modal__vtuber-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-modal__vtuber-item {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    border: 3px solid rgba(189, 227, 255, 0.80);
    background: #FFF;
    padding: 24px;
}

.store-modal__vtuber-image {
    width: 150px;
    margin: 0;
}

.store-modal__vtuber-face {
    display: block;
    object-fit: cover;
}

.store-modal__vtuber-body {
    width: calc(100% - 150px - 24px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.store-modal__vtuber {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 12px;
}

.store-modal__vtuber-sub {
    font-size: 14px;
}

.store-modal__vtuber-link {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    width: fit-content;
    padding: 8px 28px 8px 36px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 16px;
    background: #FFF;
    transition: background-color 300ms ease-out,
        color 300ms ease-out;
}
.store-modal__vtuber-link--youtube{
    border: 1px solid #F03;
    color: #F03;
}
.store-modal__vtuber-link--youtube::after {
    content: url(../images/icon_youtube.svg);
    line-height: 0;
    display: block;
}

.store-modal__vtuber-link--youtube:hover {
    background: #F03;
    color: #fff;
}

.store-modal__vtuber-link--youtube:hover::after {
    content: url(../images/icon_youtube-w.svg);
}

.store-modal__vtuber-link--tiktok{
    border: 1px solid #000;
    color: var(--default-color-black, #000);
    
}
.store-modal__vtuber-link--tiktok::after {
    content: url(../images/icon_arrow-bl.svg);
    line-height: 0;
    display: block;
}

.store-modal__vtuber-link--tiktok:hover {
    border: 1px solid #000;
    background: var(--default-color-black, #000);
    color: #fff;
}

.store-modal__vtuber-link--tiktok:hover::after {
    content: url(../images/icon_arrow-w.svg);
}
@media (max-width: 768px) {

    .store-modal__body {
        /* padding: 32px 16px 16px; */
    }

    .store-modal__head {
        align-items: center;
    }

    .store-modal__icon {
        padding: 16px 10px;
        width: 60px;
    }

    .store-modal__summary {
        width: calc(100% - 60px);
        padding: 8px 16px;
    }

    .store-modal__info {
        width: 100%;
    }

    .store-modal__name {
        font-size: 18px;
    }

    .store-modal__btn,
    .store-modal__btnlink {
        width: 100%;
        text-align: center;
    }

    .store-modal__btnlink {
        justify-content: center;
        width: 100%;
    }

    .store-modal__vtuber-link {
        width: 170px;
        justify-content: center;
        margin: auto;
    }

    .store-modal__vtuber-item {
        flex-direction: column;
        justify-content: center;
    }

    .store-modal__vtuber-body {
        width: auto;
    }
}


/* ==========================================================================
   QA
   ========================================================================== */
.qa {
    padding-bottom: 96px;
}


.qa__title {
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
}

.qa__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa__item {
    border-radius: 8px;
    background: #fff;
    margin-bottom: 24px;
    overflow: hidden;
}

.qa__question {
    background: #074B84;
    position: relative;
    padding: 16px calc(16px + 1.5em) 16px calc(16px + 2em);
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
}

.qa__question::-webkit-details-marker {
    display: none;
}

.qa__details[open] .qa__question {
    border-radius: 8px 8px 0 0;
}

.qa__question::before {
    content: "Q.";
    position: absolute;
    left: 16px;
    top: 16px;
    margin: auto;
    font-size: 20px;
    height: 1em;
    line-height: 1;
}

/* 開閉アイコン */
.qa__question::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.2s;
}

.qa__details[open] .qa__question::after {
    transform: translateY(-25%) rotate(225deg);
}

.qa__answer {
    position: relative;
    border: 5px solid rgba(0, 124, 221, 0.05);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 16px 16px 16px calc(16px + 2em);
    color: #2C2A29;
    line-height: 150%;
}

.qa__answer::before {
    content: "A.";
    position: absolute;
    left: 16px;
    top: 16px;
    margin: auto;
    font-size: 20px;
    height: 1em;
}

.qa__answer p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.qa__answer-link {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    color: #007CDD;
    padding-right: 14px;
}

.qa__answer-linkBlank {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    color: #007CDD;
    padding-right: 20px;
}

.qa__answer-link:hover,
.qa__answer-linkBlank:hover {
    text-decoration: none;
}

.qa__answer-link::after {
    content: url(../images/icon_arrow-b.svg);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 16px;
    width: 16px;

}

.qa__answer-linkBlank::after {
    content: url(../images/icon_open_in_new.svg);
    position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 16px;
    width: 16px;
}

.qa__details::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.3s, content-visibility 0.3s allow-discrete;
}

.qa__details[open]::details-content {
    block-size: auto;
}

@media (max-width: 768px) {

    .qa__title {
        font-size: 28px;
    }

    .qa__question {
        padding-right: calc(16px + 1em);
    }
}

/* ==========================================================================
   お問い合わせ
   ========================================================================== */
.contact {
    padding-bottom: 96px;
}

.contact__inner {}

.contact__title {
    text-align: center;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact__action {
    text-align: center;
    margin-bottom: 40px;
}

.contact__link {
    padding: 12px 36px 12px 44px;
    margin: auto;
}


.contact__link:after {
    content: url(../images/icon_open_in_new-w.svg);
    display: block;
    width: 16px;
    height: 16px;
    line-height: 1;
}

.contact__text {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 96px;
}

.contact__btnlist {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.contact__btnlist-link {
    transition: opacity 300ms ease-out;
}

.contact__btnlist-link:hover {
    opacity: 0.7;
}

.contact__btnlist-item {
    line-height: 150%;
    text-align: center;
    max-width: 50%;
}

.contact__btnlist-text {
    font-weight: 700;
    font-size: 20px;
    color: #2C2A29;
}

.contact__btnlist-img {
    margin: auto;
    margin-bottom: 8px;
}

@media (max-width: 768px) {

    .contact__title {
        font-size: 28px;
    }


    .contact__text {
        font-size: 16px;
    }
}