@charset "utf-8";

:root {
    --main-color: #F5F5F2;
    --sub-color: #FFF0E6;
    --accent-color: #FFF;
    --pale-text-color: rgba(129, 108, 74, 0.1);
    --normal-text-color: #816C4A;
    --hb-back-color: #F5F5F2;
    --hp-gray-color: #;
    /* --back-gradient-color: linear-gradient(#A60000, #C20000); */
}

/* SP基本ここから */

/* リセットここから */
.container figure {
    margin: 0;
}

.container .wp-block-columns {
    margin-bottom: 0;
}

/* リセットここまで */

*::after,
::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 10px;
    line-height: 1.5;
}

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: var(--hb-back-color);
}

h1 {
    margin: 0;
    color: var(--normal-text-color);
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(4rem, 8.6vw, 14.8rem);
    letter-spacing: clamp(.4rem, 1.6vw, 2.4rem);
    text-align: center;
    color: var(--accent-color);
}

h2,
h3,
p,
dt,
dd,
th,
td,
li,
button {
    color: var(--normal-text-color);
    letter-spacing: normal;
    font-weight: 500;
}

a {
    color: var(--normal-text-color);
    text-decoration: none;
}

h2 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 2.4rem;
    letter-spacing: .3rem;
    margin: 0 auto 4.2rem;
    width: fit-content;
    color: var(--normal-text-color);
    position: relative;
    text-align: center;
}

h2::before {
    content: "";
    width: 2rem;
    height: .1rem;
    border-bottom: 1px solid var(--normal-text-color);
    position: absolute;
    bottom: calc(50% - 1px);
    left: -3.5rem;
}

h2::after {
    content: "";
    width: 2rem;
    height: .1rem;
    border-bottom: 1px solid var(--normal-text-color);
    position: absolute;
    bottom: calc(50% - 1px);
    right: -3.5rem;
}
h3 {
    margin: 0;
}

p {
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: .1rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
    vertical-align: middle;
}

.f-ss {
    font-size: 1.2rem;
}

.f-s {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
}

.f-m {
    font-size: 1.8rem;
    margin-bottom: 3.6rem;
    letter-spacing: .3rem;
}

.f-l {
    font-size: 2.4rem;
    margin-bottom: 4.2rem;
    letter-spacing: .3rem;
}

.f-ll {
    font-size: 2.8rem;
}

.text-center {
    text-align: center;
}
.container .pb-0 {
    padding-bottom: 0;
}

/* SPボタンcssここから */
.button-more {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: var(--main-color);
    color: var(--normal-text-color);
    padding: 1.2rem 0;
    margin: 1.6rem auto 0;
    display: block;
    width: 100%;
    border-radius: 4rem;
    font-size: 1.6rem;
    border: 1px solid var(--normal-text-color);
    overflow: hidden;
    z-index: 1;
    text-align: center;
    max-width: 36rem;
}

a.button-more::after {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    border-right: 1px solid var(--normal-text-color);
    border-bottom: 1px solid var(--normal-text-color);
}

/* SPボタンcssここまで */

.post-password-form {
    margin: 20vh auto;
}

/* SP基本ここまで */

/* SPヘッダーここから */
.hamburger {
    display: block;
    height: 3.75rem;
    position: relative;
    right: 1rem;
    z-index: 101;
    width: 60px;
    border: none;
    background-color: transparent;
}

.hamburger.-active .hamburger__line {
    background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(10deg);
}

.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-10deg);
}

.hamburger__line {
    display: block;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3.8rem;
    background-color: var(--normal-text-color);
    transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: var(--normal-text-color);
    transition: inherit;
}

.change-color .hamburger__line:before,
.change-color .hamburger__line:after {
    background-color: var(--normal-text-color);
}

.hamburger__line:before {
    top: -6px;
}

.hamburger__line:after {
    top: 6px;
}

.header {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 4.8rem;
    background: #D8C9B2;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0 auto;
    height: 100%;
}

.header__inner.change-color {
    border-bottom: .5px solid var(--normal-text-color);
}

.header__inner.change-color {
    background-color: #ffffffaa;
    backdrop-filter: blur(.5rem);
}

.header__nav-area {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    height: 100%;
    overflow: auto;
    width: 100vw;
    visibility: hidden;
    background: var(--back-gradient-color);
    transition: 0.5s;
}

.header__nav-area.-active {
    right: 0;
    visibility: visible;
    background: var(--back-gradient-color);
}

.hb-space {
    height: 4.8rem;
    background-color: #D8C9B2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.global-navigation__list {
    /* padding-bottom: 4rem; */
    padding-top: 4.8rem;
    background-color: var(--hb-back-color);
    min-height: 100vh;
}

.global-navigation__list .cta-button-wrap a {
    margin: 4.4rem auto 2.4rem;
}

.global-navigation__link {
    margin: 0 3vw;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--normal-text-color);
    transition: color 0.4s;
    font-size: 1.4rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--pale-text-color);
}

.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* width: 100%; */
    width: calc(100% - 6vw);
    border-bottom: 1px solid var(--hp-gray-color);
    /* background-color: var(--sub-color); */
}

.global-navigation__link.-accordion.-active {
    border: none;
}

.global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 1.2rem;
    position: absolute;
    top: 50%;
    right: .96rem;
    width: 1.5px;
    background-color: var(--normal-text-color);
    transform: translateY(-50%);
    transition: transform 0.4s;
}

.global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 1.5px;
    position: absolute;
    top: 50%;
    right: .5rem;
    width: 1.2rem;
    background-color: var(--normal-text-color);
    transform: translateY(-50%);

}

.global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
}

.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: height 0.3s ease-out, opacity .3s ease-out, visibility 0.3s ease-out;
}

.accordion__list {
    background-color: var(--hp-gray-color);
}

.accordion__list li {
    font-size: 1.2rem;
}

.accordion__list li:last-of-type a {
    border-bottom: none;
}

.accordion__link {
    color: var(--normal-text-color);
    display: block;
    width: calc(100% - 6vw);
    padding: 2rem 0;
    margin: 0 3vw;
    font-family: "Noto Sans Japanese", sans-serif;
    border-bottom: 1px solid var(--hb-back-color);
}

.accordion__link p {
    color: var(--main-color);
}

.arrow-link {
    position: relative;
    background-image: url(img/bn_catarog.png);
    background-size: cover;
    color: var(--main-color);
}

.global-navigation__list li:last-of-type .arrow-link {
    background-image: url(img/bn_info.png);
}

/* ハンバーガーメニューここまで */

/* SPヘッダーここまで */

/* SPコンテンツここから */

/* セクションここから */
section {
    margin: 0 auto;
    /* padding: 2.5rem 0; */
}

.mainInner {
    /* padding: 4.8rem 1.6rem 0; */
    padding: 4.8rem 1.6rem;
}

.impInner {
    padding: 0;
}

.impInnerChild {
    padding: 4.8rem 1.6rem;
}

.home section:first-of-type {
    /* padding-top: 6rem; */
    padding-bottom: 0;
    margin: 0 auto;
}

.impSection {
    width: 100%;
    max-width: none;
}

/* セクションここまで */

/* TOP FVここから */
#FV {
    height: 100vh;
    background-image: url(./img/fv-bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#FV>div {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#FV p {
    font-size: clamp(1.6rem, 1.6vw, 3.2rem);
    letter-spacing: clamp(.1rem, .25vw, 1rem);
    line-height: 1.7;
}

/* TOP FVここまで */

/* TOP Serviceここから */
.topService {
    color: var(--hb-back-color);
}

.topService ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.2rem;
}

.topService ul li {
    width: 100%;
    /* max-width: 44rem; */
}

.service-text-wrap p {
    font-weight: 300;
}

.service-text-box {
    text-align: center;
    margin: 0 auto;
}

.service-text-box .f-l {
    margin-bottom: 1.6rem;
}

.service-text-wrap p:first-of-type {
    font-weight: 500;
}

.topService ul li .serviceimg {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}

/* TOP Serviceここまで */

/* CTAエリアここから */
.cta-area {
    text-align: center;
    margin-bottom: 1.6rem;
    background-image: url(./img/offer-bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 2.4rem;
}
.cta-area-inner {
    padding: 4.8rem 1.6rem;
}
.cta-area p {
    color: var(--accent-color);
}
.offer-title {
    font-size: 1.8rem;
    margin: 0 auto .8rem;
    position: relative;
    width: fit-content;
}
.offer-title::before {
    position: absolute;
    left: -1rem;
    bottom: 0;
    content: "";
    height: 100%;
    width: 1px;
    border-left: 1px solid var(--accent-color);
    transform: rotate(-25deg);
}
.offer-title::after {
    position: absolute;
    right: -1rem;
    bottom: 0;
    content: "";
    height: 100%;
    width: 1px;
    border-left: 1px solid var(--accent-color);
    transform: rotate(25deg);
}
.offer-limit {
    font-size: 2.1rem;
    background-color: #FB7E05;
    padding: .6rem 0;
}
.offer-img-wrap {
    width: 100%;
    margin: 1.6rem auto;
    display: flex;
    justify-content: space-between;
}

.offer-img-wrap img {
    /* width: 32%; */
    width: 100%;
}
.cta-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.cta-apply,
.cta-line {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 1.2rem 0;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: #543f2836 1px 1px 5px;
    transition: .3s;
    text-align: center;
}
.cta-area .cta-apply,
.cta-area .cta-line {
    box-shadow: #543f28 1px 1px 10px;
}

.cta-apply {
    background-color: #FFCE00;
}
.cta-apply:hover {
    background-color: #FFCE00cc;
    transition: .3s;
}

.cta-line {
    background-color: #02BA26;
    color: var(--accent-color);
}

.cta-line:hover {
    background-color: #02ba27cc;
    transition: .3s;
}

/* CTAエリアここまで */

/* TOPbanner一覧ここから */
.banner-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* TOPbanner一覧ここまで */

/* TOP Aboutここから */
.topAbout h2 {
    transform: translateX(.3rem);
}

.topAbout h2::before {
    left: -3.8rem;
}

.topAbout h2::after {
    right: -3.2rem;
}

.topAbout .f-m .f-s {
    letter-spacing: .1rem;
}

.topAboutleft {
    background-color: var(--accent-color);
}

.topAboutleft img {
    margin-top: 3.6rem;
}

.topAboutleft .f-m {
    text-align: center;
}

.topAboutright {
    background-color: var(--sub-color);
}

.topAboutright .f-s {
    margin: 0;
    letter-spacing: .3rem;
}

/* TOP Aboutここまで */

/* TOP FAQここから */

/* TOP FAQここまで */

/* アコーディオンメニューCSSここから */
.accordion-list {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.accordion-title,
.accordion-list {
    font-size: 1.4rem;
}

.accordion-title {
    padding: 1.4rem 3rem 1.6rem 4rem;
    position: relative;
}

.accordion-title::before {
    content: "Q.";
    font-family: "Noto Serif JP", serif;
    font-weight: 100;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 1.2rem;
    color: var(--normal-text-color);
    left: 0;
}

.accordion-list {
    padding-left: 4rem;
    margin: 0;
    position: relative;
}

.accordion-list::before {
    content: "A.";
    font-family: "Noto Serif JP", serif;
    font-weight: 100;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 1.4rem;
    left: 0;
    color: var(--normal-text-color);
}

.accordion-list p {
    padding: 0 0 1.6rem;
}

.accordion-item>div {
    border-bottom: var(--normal-text-color) 1px solid;
}

/* アコーディオンメニューCSSここまで */

/* SPコンテンツここまで */

/* SPフッターここから */
.footer {
    padding: 4.8rem 0 0 0;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}
.footer>div {
    padding:  0 1.6rem;
}
.footer .f-m {
    margin: 1rem 0 0 0;
    letter-spacing: .1rem;
    line-height: 1;
}
.footerContents-copy {
    padding: 1.6rem 1.6rem 2.4rem 0;
}
/* .m-footer {
    position: relative;
    background-color: var(--hb-back-color);
    z-index: 19;
}

.m-footer a,
.m-footer p {
    color: var(--hb-back-color);
}

.m-officialAccount {
    text-align: center;
    padding: 10px 0 23px 0;
    background-color: var(--hb-back-color);
    border-top: 1px solid var(--hp-gray-color);
}

.m-footer .m-officialAccount_label {
    margin-bottom: 13px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--normal-text-color);
}

.m-officialAccount_list-item {
    display: inline-block;
    vertical-align: middle;
}

.m-officialAccount_list-item a {
    padding: 10px 8px;
}

.m-officialAccount_list-item img {
    width: 40px;
    margin-top: 3px;
}

.m-footerContents {
    text-align: center;
    padding: 10px 0 10px 0;
    color: var(--hb-back-color);
    background-color: var(--main-color);
}

.m-footerContants_navItem {
    display: inline-block;
    border-left: 1px solid var(--hb-back-color);
    padding: 0 6px 0 8px;
    line-height: 1;
    font-size: 1rem;
}

.m-footerContants_navItem:first-child {
    border-left: none;
} */

/* SPフッターここまで */

/* タブレットここから */
@media (min-width:749px) {

    /* tab基本ここから */
    h2 {
        font-size: 2.6rem;
        margin-bottom: 5rem;
    }

    h2::before,
    .topAbout h2::before {
        width: 10rem;
        left: -12.5rem;
    }

    h2::after,
    .topAbout h2::after {
        width: 10rem;
        right: -12.5rem;
    }

    p {
        font-size: 1.6rem;
    }

    .f-s {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .f-m {
        font-size: 2rem;
        margin-bottom: 3.6rem;
        letter-spacing: .3rem;
    }

    .f-l {
        font-size: 2.6rem;
        margin-bottom: 5rem;
    }

    /* ボタンcssここから */
    a.button-more::after {
        transition-duration: .3s;
    }

    a.button-more {
        transition-duration: .3s;
        max-width: 30rem;
        margin: 2rem auto 0;
        font-size: 1.4rem;
    }

    a.button-more:hover {
        /* background: var(--pale-text-color); */
        transition-duration: .3s;
    }

    a.button-more:hover::after {
        right: 2.5rem;
        transition-duration: .3s;
    }

    a.imp-button-more:hover {
        background: var(--main-color);
    }

    /* ボタンcssここまで */

    /* tab基本ここまで */

    /* tabヘッダーここから */
.header__nav-area {
    max-width: 42rem;
}
    /* tabヘッダーここまで */


    /* tabセクションここから */
    .mainInner {
        padding: 6.4rem 7.5rem;
        max-width: 1366px;
    }

    .s-max1200 {
        max-width: 1200px;
        margin: 0 auto;
    }

    .s-max1000 {
        max-width: 1000px;
        margin: 0 auto;
    }

    .s-max860 {
        max-width: 860px;
        margin: 0 auto;
    }

    .s-max750 {
        max-width: 750px;
        margin: 0 auto;
    }

    .impSection {
        width: 100%;
        max-width: none;
    }

    .impInnerChild {
        padding: 6.4rem 7.5rem;
        /* padding: 6.4rem; */
        max-width: calc(1200px - 15rem);
        margin: 0 auto;
    }

    /* tabセクションここまで */

    /* TOP Serviceここから */
    .topService ul {
        gap: 5rem;
    }

    .service-text-box .f-l {
        margin-bottom: 2rem;
    }

    .topService ul li .serviceimg {
        max-width: 30rem;
        margin: 0 auto;
    }

    /* TOP Serviceここまで */


/* CTAエリアここから */
.cta-area {
    background-position: center;
}
.cta-area-inner {
    padding: 6.4rem 0;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.offer-title {
    font-size: 2.4rem;
}
.offer-title::before {
    left: -2rem;
}
.offer-title::after {
    right: -2rem;
}
.offer-limit {
    font-size: 2.4rem;
    padding: 1rem 0;
}

.offer-img-wrap img {
    /* width: 30%; */
    width: 100%;
}
.cta-button-wrap {
    flex-direction: row;
    justify-content: center;
}
.cta-apply,
.cta-line {
    display: block;
    width: 100%;
    font-size: 2.1rem;
    padding: 1.2rem 0;
    margin: 0;
    transition-duration: .3s;
}

.cta-apply:hover,
.cta-line:hover {
    transition-duration: .3s;
    opacity: .9;
}

/* CTAエリアここまで */

    /* TOPbanner一覧ここから */
    .banner-wrap {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .banner-item {
        width: calc(50% - .8rem);
        transition: .3s;
    }
    .banner-item:hover {
        transition: .3s;
        opacity: .8;
    }

    /* TOPbanner一覧ここまで */

/* アコーディオンメニューCSSここから */
.accordion-title,
.accordion-list {
    font-size: 1.6rem;
}
/* アコーディオンメニューCSSここまで */

    /* タブレットフッターここから */

    /* タブレットフッターここまで */

}

/* タブレットここまで */


/* pcここから */
@media (min-width:860px) {

    /* PC基本ここから */

    h2 {
        font-size: clamp(2.4rem, 2.7vw, 3rem);
        margin-bottom: 6rem;
    }

    h2::before,
    .topAbout h2::before {
        width: 16vw;
        left: -22vw;
    }

    h2::after,
    .topAbout h2::after {
        width: 16vw;
        right: -22vw;
    }

    .f-ss {
        font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    }

    .f-s {
        font-size: clamp(1.4rem, 1.6vw, 2.2rem);
        margin-bottom: 2rem;
    }

    .f-m {
        font-size: clamp(2rem, 2vw, 2.4rem);
        margin-bottom: 3.6rem;
        letter-spacing: .3rem;
    }

    .f-l {
        font-size: clamp(2.4rem, 2.7vw, 3rem);
        margin-bottom: 6rem;
    }

    .f-ll {
        font-size: clamp(2.8rem, 3.2vw, 3.4rem);
    }

    /* セクションここから */
    .mainInner {
        padding: 8rem 7.5rem;
    }

    /* セクションここまで */

    /* PCボタンcssここから */

    a.button-more {
        font-size: clamp(1.1rem, 1.2vw, 1.8rem);
    }

    /* PCボタンcssここまで */

    /* PCホバーアクションここから */
    .zoom {
        overflow: hidden;
    }

    .zoom img {
        /* object-fit: cover; */
        transition: all .8s ease-in-out;
        /* vertical-align: top; */
    }


    .zoom:hover img {
        transform: scale(1.05);
        transition: all .8s ease-in-out;
    }

    /* PCホバーアクションここまで */

    /* PC基本ここまで */

    /* PCヘッダーここから */
    .hamburger {
        right: 3.6rem;
    }
    .global-navigation__list {
        background-color: #F0EDE6;
    }

    .global-navigation__link {
        transition-duration: .3s;
    }

    .global-navigation__link:hover {
        color: var(--pale-text-color);
        transition-duration: .3s;
    }

    /* PCヘッダーここまで */

    /* PCコンテンツここから */
    /* PCトップここから */

    /* PCトップここまで */

    /* TOP Serviceここから */

    .topService ul {
        gap: 2rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .topService ul li {
        width: calc((100% - 48px) / 3);
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 0px;
        border-top: none;
    }

    .topService ul li:nth-of-type(2) {
        margin-top: 5rem;
    }

    .topService ul li .serviceimg {
        max-width: none;
    }

    /* TOP Serviceここまで */

/* CTAエリアここから */
.offer-title {
    margin-bottom: 1.2rem;
    font-size: clamp(2.4rem, 2.7vw, 3rem);
}
.offer-title::before {
    left: -2rem;
}
.offer-title::after {
    right: -2rem;
}
.offer-limit {
    padding: 1.2rem 0;
    font-size: clamp(2.4rem, 2.7vw, 3rem);
    margin-bottom: 2rem;
}

.offer-img-wrap img {
    /* width: 30%; */
    width: 100%;
}
.cta-area p.f-s {
    font-size: 2rem;
}
.cta-button-wrap {
    flex-direction: row;
    justify-content: center;
}
.cta-apply,
.cta-line {
    display: block;
    width: 100%;
    font-size: 2.1rem;
    padding: 1.2rem 0;
}

/* CTAエリアここまで */

    /* TOP Aboutここから */
    .topAbout .f-m .f-s {
        font-size: clamp(2rem, 2vw, 2.4rem);
    }
    .topAbout .mainInner {
        max-width: 1050px;
        margin: 0 auto;
    }

    .topAbout-maruterra-wrap {
        display: flex;
        justify-content: space-between;
    }

    .topAboutleft,
    .topAboutright {
        width: 50%;
    }

    .topAboutleft 

    .topAboutleft .f-m {
        text-align: left;
    }

    .topAboutright {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* TOP Aboutここまで */

    /* PCコンテンツここまで */

    /* PCフッターここから */

    .m-officialAccount {
        height: 60px;
        position: relative;
        text-align: center;
        padding: 0;
    }

    .m-footer .m-officialAccount_label {
        position: absolute;
        left: 25px;
        top: 15px;
        margin-bottom: 0;
    }

    .m-officialAccount_list {
        position: absolute;
        top: 7px;
        left: 183px;
    }

    .m-officialAccount_list-item {
        padding: 10px 12px;
    }

    .m-officialAccount_list-item a {
        padding: 0;
    }

    .m-officialAccount_list-item img {
        width: 25px;
        margin-top: 0;
    }

    .m-footerContents {
        height: 60px;
        position: relative;
        padding: 0;
    }

    .m-footerContents_nav {
        position: absolute;
        right: 130px;
        top: 20px;
    }

    .m-footerContants_navItem {
        display: inline-block;
    }

    .m-footerContants_navItem:first-child {
        border-left: none;
    }

    .m-footerContents_copy {
        position: absolute;
        right: 30px;
        top: 17px;
        font-size: 1.2rem;
    }

    /* PCフッターここまで */
}

/* pcここまで */

/* 流れる文字CSSここから */
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    padding-top: 1.4285rem;
    padding-bottom: 1.4285rem;
    background-color: #000;
}

.scroll-infinity__list {
    margin-right: 1.4285rem;
    display: flex;
    list-style: none;
    padding: 0;
    gap: 1.4285rem;
    /* gap: 1rem; */
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 25s infinite linear 0.5s both;
}

.scroll-infinity__item>img {
    width: auto;
    height: 335px;
    filter: brightness(75%);
}

@media (min-width:860px) {
    .scroll-infinity__wrap {
        padding-top: 4.75rem;
        padding-bottom: 4.75rem;
    }

    .scroll-infinity__list {
        margin-right: 2.375rem;
        display: flex;
        list-style: none;
        padding: 0;
        /* gap: 2px; */
        gap: 2.375rem;
    }

    .scroll-infinity__item>img {
        width: auto;
        height: 55rem;
    }
}

/* 流れるCSSここまで */


/* アイテム制御 */
.container .sp-item {
    display: block;
}

.container .tab-item {
    display: none;
}

.container .pc-item {
    display: none;
}

.container .tab-pc-item {
    display: none;
}

.container .btn-before-mb {
    margin-bottom: 24px;
}

@media (min-width:749px) {

    .container .sp-item {
        display: none;
    }

    .container .tab-item {
        display: block;
    }

    .container .pc-item {
        display: none;
    }

    .container .tab-pc-item {
        display: block;
    }
}

@media (min-width:860px) {

    .container .sp-item {
        display: none;
    }

    .container .tab-item {
        display: none;
    }

    .container .sp-tab-item {
        display: none;
    }

    .container .pc-item {
        display: block;
    }

    .container .btn-before-mb {
        margin-bottom: 30px;
    }
}

.container .none {
    display: none;
}