@charset "utf-8";
.header {
    position: sticky;
    top: 0;
    /* background-color: #FFF; */
    z-index: 1000;
}

.skip-link {
    position: absolute;
    top: -100px;
    font-size: 10px;
    width: 10em;
}

.skip-link:focus {
    top: 0px;
}

.footer {
    padding-top: 40px;
    margin-top: 40px;
    background-color: #EEE;
}

.footer h3 {
    margin: 0;
    font-size: var(--fs-20);
    text-align: center;
}

.footer-container {
    width: var(--container);
    max-width: 100%;
    margin: auto;
}

body {
    font-size: var(--fs-18);
    letter-spacing: 1px;
}

/* ハンバーガーボタン */
.hamburger {
    width: var(--burg-btn-size);
    height: var(--burg-btn-size);
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.burg-line-tc {
    display: block;
}

.burg-line-tc::before {
    content: "";
    display: block;
    background-color: #9B7C35;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 5px;
    left: 1px;
}

.burg-line-tc::after {
    content: "";
    display: block;
    background-color: #9B7C35;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 18px;
    left: 1px;
}

.burg-line-b {
    display: block;
    background-color: #9B7C35;
    width: var(--burg-size);
    height: var(--burg-line-thick);
    border-radius: var(--burg-border-radius);
    position: absolute;
    top: 32px;
    left: 1px;
}

.burg-text {
    display: none;
}

.burg-text::before {
    content: "menu";
    position: absolute;
    top: 27px;
    left: 4px;
    font-size: 12px;
}

/* ハンバーガーボタン クリック後 */
.js-open .burg-line-tc::before {
    transform: rotate(45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-tc::after {
    transform: rotate(-45deg);
    transform-origin: 50%;
    width: 32px;
    top: 15px;
}

.js-open .burg-line-b {
    width: 0px;
}

.js-open .burg-text::before {
    content: "close";
}

/* グローバルナビゲーション */

.header-container {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow-y: visible;
}

.toggle-menu {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: visible;
}

.toggle-menu a {
    display: block;
    padding: 5px;
    color: var(--color-text);
}

.toggle-menu a:hover {
    background-color: var(--color-lightgray);
}

.hamburger {
    display: none;
}

.toggle-menu {
    display: flex;
    position: relative;
}

.toggle-menu .sub-menu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFF;
}

.toggle-menu :where(.menu-item:hover)>.sub-menu {
    height: auto;
}


.page_item {
    display: inline-block;
}

.page_item a {
    display: block;
    width: 100%;
    /* padding: 0.5em; */
    color: var(--color-text);
}

.page_item_has_children {}

.gnav {}

/* breadcrumb パンくずリスト */
.breadcrumb {
    padding: 10px 0;
    width: 100%;
    max-width: var(--container);
    margin: auto;
    padding: 0 10px;
}

:where(.breadcrumb) ul {
    list-style: none;
    padding: 0;
}

:where(.breadcrumb) li {
    display: inline-block;
    margin-right: 1em;
}

:where(.breadcrumb) li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5em;
}

:where(.breadcrumb) a:link,
:where(.breadcrumb) a:visited {
    color: var(--color-text);
}

:where(.breadcrumb) a:hover,
:where(.breadcrumb) a:active {
    color: var(--color-link-text);
}



/* ボタン */
.button {}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    border: 1px solid var(--color-accent);
    background-color: #FFF;
    color: var(--color-accent);
    font-family: var(--font-sanserif);
    min-width: 200px;
}

.button-link-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--color-accent);
    color: var(--color-text-reverse);
}

/* ページ送り　pagenation ページネーション */

.pagenation {
    width: 100%;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    min-height: 40px;
    min-width: 40px;
    line-height: 1;
    border-radius: 2em;
    background: linear-gradient(-45deg, #EEE 0%, #F5F5F5 100%);
    box-shadow: 2px 2px 10px #CCC;
    margin: 0 4px;
    border-top: #FFF 1px solid;
    border-left: #FFF 1px solid;
}

.page-numbers:hover {
    border-bottom: none;
}

.current {
    background-color: #EEE;
    box-shadow: none;
}
.archive-main .post-title {
    text-align: center;
    color: #876726;
    font-size: 2.1rem;
}
/* カードレイアウト */
.card {
    position: relative;
    padding: 0 0 60px 0;
    /* box-shadow: var(--box-shadow); */
    border: solid 1px #b99959;
    border-radius: 15px;
    overflow: hidden;
}

.card-post-title {
    font-size: 1rem;
    margin: 10px;
}
.card-post-title a {
    color: #000;
}
.card a.card-more-btn {
    color: #876726;
    font-size: 1rem;
    border: solid 1px #876726;
    border-radius: 30px;
    padding: .8rem 2rem;
    line-height: 1;
    position: relative;
    margin-top: 1.6rem;
    display: inline-block;
    background: none;
    box-shadow: none;
}
.card a.card-more-btn::after {
    content: '〉';
    display: block;
    position: absolute;
    top: 33%;
    right: 5%;
}
.card-post-excerpt {
    font-size: var(--fs-14);
    margin: 10px;
}

.no-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    justify-content: center;
    align-items: center;
    background-color: #DDD;
}

.small-img {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    text-align: center;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

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

.card-more {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
    text-align: center;
}

.card-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding: 0.5em 0.75em;
    min-width: 8em;
    border-radius: 2px;
    background-color: var(--color-theme);
    color: var(--color-theme-text);
    box-shadow: var(--box-shadow);

}

/* セクションレイアウト */
article {
    margin: 0 auto 40px;
}

.page {
    h2 {
        /* text-align: left; */
    }
}

.shorts-faq {
    padding: 80px 0;
}

.faq {
    line-height: 1.8;
    dt {
        margin-top: 1.5em;
        font-size: 1.2em;
        font-weight: bold;
        color: var(--color-pink);
    }
    dt::before {
        content: "Q. ";
    }
    dd {

        font-family: var(--font-sanserif);
    }
    dd::before {
        content: "A.";
        margin-inline: -1.2em 0.5em;
        font-weight: bold;
    }
}

.voice {
    padding: 80px 0;
    line-height: 2;
    h2 {
        color: var(--color-pink);
    }
}

.voice-box {
    width: 800px;
    max-width: 100%;
    border: 2px solid var(--color-pink);
    border-radius: 1em;
    background-color: #FFF;
    margin: 30px auto;
    padding: 1em 2em;
}
/* --2カラム構成の設定 ここまで-- */

/* トップページ */
.top-kv {
    width: 100%;
}

.top-kv img {
    width: 100%;
}

/* お知らせ　コーナー */
.post-list {}

.post-list-item {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    align-items: flex-start;
}

.post-list-img {
    max-height: 150px;
    max-width: 150px;
    overflow: hidden;
}

.post-list-info {}

.post-list-title {}

.post-list-heading {
    font-size: var(--fs-16);
    margin: 0;
}

.post-date {
    font-weight: normal;
}

.post-list-excerpt {
    padding-left: 1em;
}

/* サイドバーメニュー */
.side-nav ul {
    padding-left: 0.5em;
}

/* 固定ページ */
.page-kv {
    width: auto;
    max-width: 100%;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-kv img {
    width: 100%;
    height: auto;
}
.page-main {
    padding-bottom: 40px;
}


:where(.page-main) > section,
:where(.page-main > .container) > section {
    padding-block: 40px;
}
.bg-lightpink {
    background-color: var(--color-theme-light);
}

.bg-pink {
    h1,h2,h3,h4,h5,h6,p,ul,ol,dl {
        color: #FFF;
    }
}

.lead {
    max-width: var(--container-nallow);
    margin: 1em auto;
    font-size: var(--fs-18);
    letter-spacing: 1px;
    color: var(--color-accent);
    padding: 10px;
}
.big {
    font-size: 1.5em;
}
.small {
    font-size: 0.85em;
}
.tokucho-box {
    margin: 1em auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: center;
    align-items: stretch;
    > * {
        width: 48%;
        padding: 1em 1em 1em 2em;
        border: 2px solid var(--color-accent);
        border-radius: 1em;
    }
    > *::before {
        content: "▶";
        margin-left: -1em;
        margin-right: 0.3em;
        color: var(--color-accent);
    }
}
.gold-box {
    margin: 1em auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    > * {
        width: 48%;
        padding: 1em 1em 1em 2em;
        border: 2px solid var(--color-accent);
        border-radius: 1em;
        background-color: #FFF;
    }
    h3:first-child,h4:first-child {
        margin-top: 0;
        border: none;
        background-color: transparent;
        text-align: center;
    }
}

.gold-section {
    padding: 1em;
    border: 2px solid var(--color-accent);
    border-radius: 1em;
    background-color: #FFF;
    margin: 30px auto;
    h3:first-child,h4:first-child {
        margin-top: 0;
        border: none;
        background-color: transparent;
        text-align: center;
    }
}

.pink-box {
    margin: 1em auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    > * {
        width: 48%;
        padding: 1em 1em 1em 2em;
        border: 2px solid var(--color-pink);
        border-radius: 1em;
        background-color: #FFF;
    }
    h3:first-child,h4:first-child {
        margin-top: 0;
        border: none;
        background-color: transparent;
        text-align: center;
    }
}
.pink-section {
    padding: 1em 1em 1em 2em;
    border: 2px solid var(--color-pink);
    border-radius: 1em;
    background-color: #FFF;
    h3:first-child,h4:first-child {
        margin-top: 0;
        border: none;
        background-color: transparent;
        text-align: center;
    }
}
.list-check {
    li {
        list-style: none;
    }
    >li {
        margin-bottom: 0.5em;
    }
    > li::before {
        content: "✔";
        margin-left: -1.2em;
        margin-right: 0.2em;
    }
    > li li::before {
        content: "➣";
        margin-left: -1.2em;
        margin-right: 0.2em;
    }
}
.kaisetsu-list dt {
    font-weight: bold;
    font-size: 1.15em;
    clear: both;
    margin-top: 1em;
}
/* archiveページ */

/* 投稿ページ */
.post-kv {
    height: auto;
    text-align: center;
}

.post-kv img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 550px;
}

.post-title {
    text-align: center;
    padding: 0.5em;
    color: var(--color-accent);
        background-color: var(--color-theme-light);
}

:where(.post-main) {
    h2 {
        margin: 1.5em 0 0.5em;
        color: var(--color-accent);
        text-align: center;
    }
    h3 {
        background-color: var(--color-theme-light);
        border-left: 4px solid var(--color-theme);
        padding: 0.2em 0.5em 0.3em;
        margin: 1.5em 0 0.5em;
        font-size: var(--fs-20);
    }
    h4 {
        font-size: var(--fs-20);
        margin: 1em 0 0;
        color: var(--color-theme-heavy);
    }
    .lead {
        font-size: 1.3rem;
        width: fit-content;
        margin: auto;
        letter-spacing: 1px;
        color: var(--color-theme-heavy);
        text-align: center;
    }
    .price {
        font-size: 1.2em;
    }
    .volume {
        font-size: 1.2em;
    }
}
strong {
    font-family: var(--font-sanserif);
}
em {
    color: var(--color-theme-heavy);
    font-style: normal;
    font-weight: bold;
}
.seibun {
    margin: 2rem auto;
    padding: 1em;
    border: 1px solid var(--color-theme);
    background-color: var(--color-theme-light);
    border-radius: 1rem;
    text-align: center;
    h2 {
        margin-top: 0;
        text-align: center;
    }
}

.seibun li {
    list-style: none;
    display: inline-block;
    margin-right: 1em;
    line-height: 1.9;
}

.post-nav {
    width: 100%;
    max-width: var(--container);
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 4em;
    border-top: 1px solid var(--color-bg-gray);
}

.post-nav a {
    padding: 10px 0;
    display: inline-block;
}

.kome li {
    list-style: none;
}
.kome li::before {
    content: "※";
    margin-left: -1em;
}
figure {
    max-width: 100%;
}

figcaption {
    max-width: 100%;
    text-align: center;
}

.centergallery {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 20px auto;
    img {
        margin: 0;
    }
}
.centergallery::after {
    content: "";
    display: block;
    clear: both;
}
.post-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    li {
        display: inline-block;
        margin-right: 1em;
    }
}
.post-tags::before {
    content:"タグ：";
}
/* パララックス設定 */
.imgcontainer {
    min-height: 100vh;
}

.paracontent {
    min-height: 100vh;
}
/* オリジナルCSS */
.zen-mincho {
    font-family: var(--font-serif);
}
.zen-gothic {
    font-family: var(--font-sanserif);
}
/* header */
.header-logo {
    width: 7.8rem;
    margin-left: 2.5rem;
}

.header nav {
    background: #FFF;
    width: fit-content;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 8.6% 100%); */
    /* border-bottom-left-radius: 100px 90px; */
    border-radius: 0 0 0 40px;
    padding-bottom: .5rem;
    padding-top: 0.5rem;
    /* padding-left: 5rem; */
    padding-left: 3rem;
    font-size: 1rem;
    position: relative;
}
.header nav::before {
    content: "";
    display: block;
    height: calc(100% - 18px);
    width: 21px;
    background-color: #FFF;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    top: 0;
    left: -13px;
}
nav li {
    margin-right: 1.6rem;
}

/* header end */
/* main */
/* top-kv */
.top-kv {
    padding-top: 0;
    position: relative;
}
.top-kv img {
    margin: 0 auto;
}
.top-kv .kv-right,
.top-kv .kv-center,
.top-kv .kv-left {
    position: absolute;
    top: 7rem;
}
.top-kv .kv-right {
    left: 33%;
    width: 2.5%;
}
.top-kv .kv-center {
    left: 28%;
    width: 4%;
}
.top-kv .kv-left {
    left: 24%;
    width: 4%;
}
/* top-kv end */
/* infomation */
.top-contents {
    margin: 0 auto;
}
.infomation {
    background: url(../images/pc/info_bg_img.webp) top 58.5% left no-repeat, #69acf7;
    background-size: 45%;
    padding-top: 4rem;
    padding-bottom: 6rem;
    position: relative;
}
.infomation::before {
    display: block;
    content: '';
    background: url(../images/pc/hana_01.png) no-repeat;
    background-size: contain;
    width: 10%;
    height: 40%;
    position: absolute;
    top: -28%;
    right: 15.3%;
    z-index: 2;
}
.infomation::after {
    display: block;
    content: '';
    background: url(../images/pc/hana_02.png) no-repeat;
    background-size: contain;
    width: 6%;
    height: 25%;
    position: absolute;
    top: -3%;
    right: 23.5%;
    z-index: 2;
}
.infomation .post-list-title {
    background: url(../images/pc/Information.png)top center no-repeat;
    background-size: contain;
    padding-top: 3.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #fff;
    font-size: .9rem;
    text-align: center;
    letter-spacing: .2rem;
}
.infomation .post-list-item {
    padding-left: 25%;
    margin-bottom: 1rem;
}
.infomation .post-list-item a {
    color: #fff;
}
.infomation .post-date {
    margin-right: 2.5rem;
}
.infomation .detail-btn {
    margin-right: 2.5rem;
    margin-bottom: 0rem;
    margin-top: 0;
    margin-left: 0;
}
.infomation .detail-btn .button-link-accent {
    background: none;
    border: solid 1px #fff;
    border-radius: 30px;
    box-shadow: none;
    font-size: 1rem;
    position: relative;
    padding: .7rem 2.5rem;
    margin-right: 0.9rem;
    letter-spacing: .2rem;
    margin-top: 0px;
}
.infomation .detail-btn .button-link-accent::after {
    content: '〉';
    display: block;
    position: absolute;
    right: 10%;
    top: 33%;
}
/* infomation end */

/* desktop minisize end */
/* main end */
/* footer */
.footer {
    background: rgb(199,189,177, 0.5);
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: .5rem;
}
.footer .footer-logo {
    width: 120px;
    margin-top: 0;
    margin-bottom: 0;
}
.footer .footer-logo-txt {
    font-size: .8rem;
    color: #9a7b33;
    margin-top: -2px;
    letter-spacing: .1rem;
    margin-bottom: .8rem;
}
.footer address {
    font-size: .85rem;
    display: flex;
    gap: .5rem;
}
.footer .tel {
    margin: 0 auto;
    line-height: 1.3;
}
.footer .tel a {
    color: #000;
}
.footer .fax {
    margin: 0 auto;
    line-height: 1.3;
}
.footer .business-hours {
    margin: 0.5em auto;
    line-height: 1.3;
}
.footer .business-hours span {
    font-size: 1em;
}
.footer .footer-nav,
.footer .footer-nav2 {
    font-size: 1rem;
}
.footer .fnav,
.footer .fnav2 {
    padding-left: 0;
    margin: 0 1em;
    line-height: 1.3;
}
.footer .fnav li,
.footer .fnav2 li {
    list-style: none;
    margin-bottom: 0.5em;
}
.footer .fnav li a,
.footer .fnav2 li a {
    color: #000;
}
.footer .copyright {
    font-size: .8rem;
    text-align: right;
    letter-spacing: .045rem;
}
@media (min-width: 960.1px) and (max-width: 1250px) {
    .footer .flex {
        flex-direction: column-reverse;
        align-items: center;
    }
    .footer .footer-logo {
        margin: auto;
    }
    .footer .footer-nav,
    .footer .footer-nav2 {
        text-align: center;
    }
    .footer address,
    .footer .fnav {
        justify-content: center;
    }
    .footer .fnav,
    .footer .fnav2 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1.5rem;
        margin-bottom: 1rem;
    }
    .footer .footer-logo-txt,
    .footer .tel,
    .footer .fax,
    .footer .business-hours,
    .footer .copyright {
        text-align: center;
    }
}
/* footer end */
.grid-1 {
    grid-area: grid-1;
}
.grid-2 {
    grid-area: grid-2;
}
.grid-3 {
    grid-area: grid-3;
}
.grid-2 table {
    width: 100%;
}
.grid-3 .gmap {
    max-width: 100%;
    padding-bottom: 30%;
}
/* corporate-profile end */
/* contact */
.contact {
    background: #e3e8ed;
}
.contact .inquiry-details {
    background: #fff;
    padding: 2rem 3.5rem;
    margin-bottom: 3.5rem;
}
.contact h1 {
    text-align: center;
    color: #876726;
    font-size: 2.1rem;
}
.contact h2 {
    color: #b99959;
    font-size: 1.8rem;
    position: relative;
}
.contact h2 span {
    background: #fff;
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    display: inline-block;
    padding-right: 3rem;
    padding-left: 1rem;
}
.contact h2::after {
    display: block;
    content: '';
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.contact input[type="text"],
.contact input[type="email"],
.contact input[type="url"],
.contact input[type="tel"],
.contact input[type="password"],
.contact textarea {
    padding: .5rem 1rem;
    font-size: 1.1rem;
}
.contact .heading {
    display: inline-block;
    margin-bottom: .5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}
[type="submit"] {
    margin: 3rem auto 0;
    display: flex;
    background: none;
    border: 1px solid #876726;
    padding: 1rem 1.5rem 1rem 2.5rem;
    border-radius: 40px;
    letter-spacing: 1rem;
    color: #876726;
}
/* contact end */
/* privacy-policy */
.privacy-policy {
    background: #e3e8ed;
}
.privacy-policy .policy-text {
    /* background: #fff; */
    padding: 2rem 1rem;
    margin-bottom: 3.5rem;
}
.privacy-policy h1 {
    text-align: center;
    color: #876726;
    font-size: 2.1rem;
}
.privacy-policy h2 {
    color: #b99959;
    font-size: 1.5rem;
    position: relative;
    margin-bottom: .5rem;
    margin-top: 2rem;
    text-align: left;
}
.privacy-policy h2 span {
    background: #fff;
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
    display: inline-block;
    padding-right: 4.5rem;
    padding-left: 1rem;
}
.privacy-policy h2::after {
    display: block;
    content: '';
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}
/* privacy-policy end */

/* 固定ページ共通 */
.ib {
    display: inline-block;
}
.page-title {
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    color: var(--color-pink);
}
.div-lead {
    background-color: var(--color-bg-gray);
    padding: 0;
    .lead-img {
        width: 50%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    img {
        margin: 0;
    }
    .lead-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 2;
        font-size: var(--fs-18);
        padding: 20px;
    }
    .lead-title {
        font-size: 24px;
        letter-spacing: 0.1em;
        font-weight: 600;
    }
    p {
        margin: 1em 0;
    }
}
.bg-pink {
    background-color: var(--color-pink);
    color: #FFF;
    margin: 0;
    .super-heading {
        color: #FFF;
    }
}

.right-img {
    float: right;
    margin-left: 2em;
}

.bg-gray {
    background-color: var(--color-bg-gray);
}
.slide-text {
    padding: 20px;
    text-align: center;
    h3 {
        color: var(--color-pink);
    }
}
.slick-arrow::before,
.slick-arrow::after {
    color: #CCC;
    font-size: 40px;
}
.slick-prev {
    left: 0px;
    width: 40px;
    height: 40px;
    z-index: 10;
}
.slick-next {
    right: 0px;
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slide + .button {
    margin-top: 100px;
}

.slide img {
    margin-inline: 5px;
}

.button {
    display: flex;
    margin: 20px auto;
    width: fit-content;
    a {
        padding: 12px 2em;
        border: 2px solid var(--color-pink);
        color: var(--color-pink);
        font-size: var(--fs-18);
        font-weight: bold;
    }
}

.color-pink {
    color: var(--color-pink);
}

.text-pink {
    color: var(--color-pink);
}

/* 運動事業部 */
.table-exercise {
    th {
        width: 13em;
    }
}
.table-exercise-2 {
    th, td {
        width: 50%;
    }
}

/* クーポン */
.coupon-box {
    margin: 0 auto 50px;
    padding: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 2px;
    background-color: #EDFFFF;
    max-width: 600px;
    font-family: var(--font-sanserif);
    font-size: var(--fs-18);
}
.coupon-box h2 {
    margin: 0 auto 1em;
}
.coupon-box::after {
    content: "";
    display: block;
    clear: both;
}
.coupon-logo {
    width: 80px;
    float: left;
    margin: 0 20px 0 0;
}
.coupon-text {
    color: var(--color-theme-heavy);
    font-weight: bold;
    text-shadow: 1px 1px 3px #FFF, -1px -1px 3px #FFF;
}
.coupon-alart {
    color:  hsl(240, 100%, 37%);
    clear: both;
    font-weight: bold;
    margin-left: 1em;
    text-indent: -1em;
}
.coupon-tel {
    margin: 10px auto;
}
.coupon-tel a {
    background-color: #FFF;
    font-size: 1.3em;
}
.coupon-tel-title {
    text-align: center;
    font-size: 1.2em;
    margin: 1.5em auto 0;
}