@charset "UTF-8";

/* Device
-------------------------------------- */
/* PC */
@media (min-width:901px) {
    .tb:not(.pc) {
        display: none;
    }

    .sp:not(.pc) {
        display: none;
    }
}

/* TB */
@media (min-width:576px) and (max-width:900px) {
    .pc:not(.tb) {
        display: none;
    }

    .sp:not(.tb) {
        display: none;
    }
}

/* SP */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }

    .tb:not(.sp) {
        display: none;
    }
}


/* Variable
-------------------------------------- */
:root {
    --keyColorA: #59BE9E;
    --keyColorB: #CF9343;
    --keyColorC: #D57E57;
    --lsWideA: 0.08em;
    --lsWideB: 0.1em;
    --lineHeightA: 2.2;
    --lineHeightB: 1.8;
    --minchoText: "Shippori Mincho", serif;
    --weightR: 400;
    --weightM: 500;
    --weightSB: 600;
    --weightB: 700;
    --shadow: 2px 3px 15px 0px rgba(141, 122, 87, 0.16);
    --roundL: 20px;
    --roundM: 10px;
    --roundS: 8px;
}


/* Animation
-------------------------------------- */
/* Fade in */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Rayout
-------------------------------------- */
html {
    overflow: auto;
}

body {
    color: #242424;
    font-size: 1.6rem;
    font-weight: var(--weightR);
    line-height: 1.8;
    letter-spacing: 0.08em;
    background-color: #FAF7EC;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}


/* Contents
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - 128px);
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 1023px) {
    .contents {
        width: calc(100% - 80px);
    }
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 56px);
    }
}


/* Header
-------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 32px;
    width: 100%;
    height: 100px;
    z-index: 9997;
    transition: all 0.3s;
}

.header.navi_bg::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s;
}

.header.hide_navi {
    transform: translateY(-100%);
}

.header__logo {
    width: 260px;
}

.header__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.header__navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    font-size: 1.4rem;
    font-weight: var(--weightM);
}

.header__navi a {
    display: inline-block;
}

.header__navi a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--keyColorB);
    transition: all 0.3s;
}

.header__button {
    position: relative;
    display: block;
    padding: 0 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: var(--weightB);
    text-align: center;
    line-height: 60px;
    z-index: 0;
    background: linear-gradient(45deg, #C6A242, #EFD782);
}

.header__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(-45deg, #C6A242, #EFD782);
    opacity: 0;
    transition: opacity 0.5s;
}

@media (hover: hover) and (pointer: fine) {
    .header:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .header__navi a:hover::after {
        width: 100%;
    }

    .header__button:hover::before {
        opacity: 1;
    }
}

@media (max-width: 1170px) {
    .header__inner {
        gap: 24px;
    }

    .header__navi {
        gap: 20px;
        font-size: 1.3rem;
    }

    .header__button {
        padding: 0 16px;
        font-size: 1.3rem;
    }
}

@media (max-width: 1090px) {
    .header__inner {
        display: none;
    }
}

@media (max-width: 575px) {
    .header {
        top: 16px;
        display: block;
        padding-left: 20px;
        height: 48px;
    }

    .header__logo {
        width: 180px;
    }
}


/* SP NAVI
-------------------------------------- */
@media (min-width: 1091px) {
    .hamburger {
        display: none;
    }
}

.hamburger {
    height: 30px;
    width: 30px;
    position: fixed;
    top: min(calc(7vw + 2px), 50px);
    right: min(7vw, 50px);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s;
}

.hamburger::after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% + -2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: -1;
    background-color: var(--keyColorA);
    border-radius: 100vh;
}

.hamburger div {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: top 0.4s 0.2s, transform 0.4s 0s;
}

.hamburger div:nth-of-type(1) {
    top: calc(35% - 0px);
}

.hamburger div:nth-of-type(2) {
    top: calc(35% - 10px);
}

.hamburger div:nth-of-type(3) {
    top: calc(35% + 10px);
}

.hamburger.on div {
    top: calc(35% - 0px);
    transform-origin: center center;
    background: var(--keyColorA);
    transition: top 0.4s 0s, transform 0.4s 0.2s;
}

.hamburger.on div:nth-of-type(1) {
    transform: rotate(45deg);
}

.hamburger.on div:nth-of-type(2) {
    opacity: 0;
}

.hamburger.on div:nth-of-type(3) {
    transform: rotate(135deg);
}

.hamburger.on::after {
    background-color: #fff;
}

.menuBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    color: #fff;
    background-color: var(--keyColorA);
    z-index: 9998;
    overflow-y: auto;
    transition: all 0.3s;
}

.menuBox.on {
    visibility: visible;
    opacity: 1;
}

.header__spnavi {
    font-size: 1.8rem;
    text-align: center;
}

.header__spnavi li:not(:first-of-type) {
    margin-top: 16px;
}

.header__buttonSp {
    display: block;
    margin-top: 32px;
    padding: 0 20px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: var(--weightB);
    text-align: center;
    line-height: 50px;
    z-index: 0;
    background: linear-gradient(45deg, #C6A242, #EFD782);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .hamburger {
        transform: scale(0.8);
        transform-origin: top right;
    }
}


/* Floating
-------------------------------------- */
.floatingOrder {
    position: fixed;
    top: 0;
    right: 0;
}

.floatingSns {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 24px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: var(--weightB);
    line-height: 55px;
    z-index: 9996;
    transition: all 0.3s;
}

.floatingSns.hide_floating {
    transform: translateY(100%);
}

.floatingSns__line,
.floatingSns__instagram {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.floatingSns__line {
    border-radius: 10px 0 0 0;
    background-color: #1cbe5e;
}

.floatingSns__line::before {
    content: '';
    display: block;
    width: 32px;
    height: 31px;
    background: url(../img/Icon-line.png ) no-repeat center center / contain;
}

.floatingSns__instagram {
    border-radius: 10px 10px 0 0;
    background-color: #BF65A3;
}

.floatingSns__instagram::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/icon-instagram.png ) no-repeat center center / contain;
}

.floatingSns__order {
    display: block;
    padding: 0 16px;
    background: linear-gradient(45deg, #C6A242, #EFD782);
    border-radius: 10px 0 0 0;
}

@media (hover: hover) and (pointer: fine) {

    .floatingSns__line:hover,
    .floatingSns__instagram:hover {
        padding: 0 16px 8px;
    }
}

@media (min-width: 1091px) {
    .floatingSns__order {
        display: none;
    }
}

@media (max-width: 1090px) {
    .floatingSns__line {
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 767px) {
    .floatingSns {
        align-items: stretch;
        gap: 8px;
        line-height: 48px;
    }

    .floatingSns__line {
        border-radius: 6px 6px 0 0;
    }

    .floatingSns__instagram {
        border-radius: 6px 6px 0 0;
    }

    .floatingSns__order {
        border-radius: 6px 0 0 0;
    }

    .floatingSns__line,
    .floatingSns__instagram {
        padding: 0 10px;
    }

    .floatingSns__line span,
    .floatingSns__instagram span {
        display: none;
    }
}


/* Common Parts
-------------------------------------- */
.comTitle1 {
    margin-bottom: 32px;
    padding-top: 24px;
    width: 100%;
    max-width: 600px;
    color: var(--keyColorB);
    font-family: var(--minchoText);
    border-top: 1px solid var(--keyColorB);
}

.comTitle1 span:first-child {
    margin-right: 24px;
    font-size: 5.3rem;
    font-weight: var(--weightB);
    line-height: 1.3;
}

.comTitle1 span:last-child {
    position: relative;
    bottom: 3px;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: var(--weightSB);
    line-height: 2.2;
}

.comTitle2 {
    color: var(--keyColorB);
    font-size: 2.2rem;
    font-weight: var(--weightB);
}

.comText {
    line-height: var(--lineHeightA);
}

.comButton1 {
    position: relative;
    display: block;
    width: 240px;
    line-height: 60px;
    color: #fff;
    font-weight: var(--weightB);
    text-align: center;
    background-color: var(--keyColorA);
    border-radius: 100vh;
    transition: all 0.3s;
}

.comButton1::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: block;
    width: 8px;
    height: 14px;
    background: url(../img/button-arrow1.png ) no-repeat center center / contain;
    transition: all 0.3s;
}

.comButton2 {
    position: relative;
    display: block;
    width: 240px;
    line-height: 50px;
    color: #fff;
    font-weight: var(--weightM);
    text-align: center;
    background-color: var(--keyColorB);
    border-radius: 100vh;
    transition: all 0.3s;
}

.comButton2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 11px;
    background: url(../img/button-arrow2.png ) no-repeat center center / contain;
    transition: all 0.3s;
}

.lity {
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

@media (hover: hover) and (pointer: fine) {
    .comButton1:hover {
        background-color: #27B487;
    }

    .comButton1:hover::after {
        right: 18px;
    }

    .comButton2:hover {
        background-color: #BE771A;
    }

    .comButton2:hover::after {
        right: 18px;
    }
}

@media (max-width: 575px) {
    .comTitle1 {
        margin-bottom: 24px;
        padding-top: 24px;
        width: 100%;
        max-width: 600px;
        color: var(--keyColorB);
        font-family: var(--minchoText);
        border-top: 1px solid var(--keyColorB);
    }

    .comTitle1 span:first-child {
        font-size: 3.6rem;
    }

    .comTitle1 span:last-child {
        bottom: 0;
        display: block;
        font-size: 1.7rem;
    }

    .comTitle2 {
        font-size: 1.8rem;
    }

    .comText {
        font-size: 1.4rem;
        line-height: var(--lineHeightB);
    }
}


/* MV
-------------------------------------- */
/* Official */
.mv {
    position: relative;
    width: 100%;
    min-height: 100svh;
    background: url(../img/mv-bg.jpg ) no-repeat 65% center / cover;
}

.mv__inner {
    position: absolute;
    position: absolute;
    top: calc(50% - 5%);
    transform: translateY(-50%);
    /* top: 20vh; */
    right: 15vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 400px;
}

.mv__tagline {
    width: 400px;
}

.mv__text1 {
    margin-top: 48px;
    font-size: 1.75rem;
    font-weight: var(--weightM);
}

.mv__text2 {
    margin-top: 24px;
    font-size: 1.5rem;
    line-height: var(--lineHeightA);
}

.mv__text2 strong {
    color: var(--keyColorA);
    font-weight: var(--weightB);
}

@media (max-width: 1090px) {
    .mv__inner {
        right: max(8vw, 28px);
    }
}

@media (min-width: 768px) {
    .mv__text1 br {
        display: none;
    }
}

@media (max-width: 767px) {
    .mv__inner {
        /* top: 20vh; */
    }

    .mv__tagline {
        width: max(52vw, 230px);
    }

    .mv__text1 {
        text-align: right;
    }

    .mv__text2 {
        width: max(52vw, 200px);
    }
}

@media (max-width: 575px) and (min-height: 701px) {
    .mv {
        min-height: 70svh;
        background: url(../img/mv-bg-sp.jpg ) no-repeat center top 40% / cover;
    }

    .mv__inner {
        top: calc(50% - -2%);
    }

    .mv__text1 {
        margin-top: 24px;
        font-size: 1.5rem;
    }

    .mv__text2 {
        margin-top: 16px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) and (max-height: 700px) {
    .mv {
        min-height: 100svh;
        background: url(../img/mv-bg-sp.jpg ) no-repeat center top 40% / cover;
    }

    .mv__inner {
        top: calc(50% - -1%);
    }

    .mv__text1 {
        margin-top: 16px;
        font-size: 1.5rem;
    }

    .mv__text2 {
        font-size: 1.3rem;
        line-height: var(--lineHeightB);
    }
}


/* Coming */
.coming {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: url(../img/coming-bg.jpg ) no-repeat 85% center / cover;
}

.coming__inner {
    text-align: right;
}

.title img {
    width: 300px;
}

.text1 {
    font-size: 1.4rem;
}

.text2 {
    margin-top: 8px;
    font-size: 1.8rem;
    font-weight: var(--weightM);
}

.title {
    margin: 20px 0 60px;
}

.text3 {
    display: inline-block;
    padding: 5px 12px;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    background-color: var(--keyColorB);
    border-radius: 100vh;
}

.text4 {
    margin-top: 20px;
    font-size: 1.4rem;
}


@media (max-width: 800px) {
    .coming {
        background: url(../img/coming-bg.jpg ) no-repeat 55% center / cover;
    }
}

@media (max-width: 575px) {
    .title img {
        width: 190px;
    }

    .text1 {
        font-size: 1.2rem;
    }

    .text2 {
        margin-top: 8px;
        font-size: 1.4rem;
    }

    .title {
        margin: 20px 0 40px;
    }

    .text3 {
        padding: 5px 12px;
        font-size: 1.2rem;
    }

    .text4 {
        margin-top: 20px;
        font-size: 1.2rem;
    }
}


/* Tagline
-------------------------------------- */
.tagline {
    margin-top: 136px;
}

.tagline__title {
    margin: auto;
    width: 500px;
}

.tagline__text {
    margin-top: 48px;
    font-family: var(--minchoText);
    font-size: 2.5rem;
    font-weight: var(--weightSB);
    text-align: center;
}

@media (max-width: 767px) {
    .tagline__title {
        width: max(65vw, 310px);
    }

    .tagline__text {
        margin-top: 32px;
        font-size: max(3.26vw, 1.6rem);
    }
}

@media (max-width: 575px) {
    .tagline {
        margin-top: 80px;
    }
}


/* About
-------------------------------------- */
.about {
    position: relative;
    margin-top: 120px;
    background: url(../img/about-image.png ) no-repeat 50vw top / 700px 729px;
}

.about__inner {
    width: 600px;
}

.about__list {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 40px;
    transform: scale(1.08);
}

.about__list li {
    width: 150px;
    height: 150px;
}

.about__list li img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.about__movie {
    display: flex;
    justify-content: space-between;
    gap: min(3.43vw, 48px);
    margin-top: 80px;
}

.about__movie li {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.about__movie li iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 950px) {
    .about {
        background: url(../img/about-image.png ) no-repeat 45vw top / 700px 729px;
    }

    .about::after {
        right: 8vw;
    }

    .about__inner {
        width: 63.16vw;
    }

    .about__list li {
        width: 15.79vw;
        height: 15.79vw;
    }

    .about__list li img {
        width: 18.95vw;
        height: 18.95vw;
    }
}

@media (max-width: 767px) {
    .about {
        background: none;
    }

    .about::after {
        content: '';
        display: block;
        position: absolute;
        top: -40px;
        right: -96px;
        width: 400px;
        height: 417px;
        z-index: -1;
        background: url(../img/about-image.png ) no-repeat center center / contain;
    }

    .about__inner {
        width: 100%;
    }

    .about__list li {
        width: 21.5vw;
        height: 21.5vw;
    }

    .about__list li img {
        width: 26vw;
        height: 26vw;
    }
}

@media (max-width: 575px) {
    .about {
        margin-top: 80px;
    }

    .about::after {
        right: -130px;
    }

    .about__list li {
        width: 21.2vw;
        height: 21.2vw;
    }

    .about__movie {
        flex-direction: column;
        gap: 32px;
        margin-top: 32px;
    }
}


/* Box
-------------------------------------- */
.box {
    margin-top: 120px;
}

.box__photo {
    width: 100%;
    height: 560px;
}

.box__photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.box__inner {
    margin: -80px auto 0;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 5.71vw, 80px);
    max-width: 960px;
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--roundL);
}

.box__title1 {
    margin-bottom: 32px;
    color: var(--keyColorB);
    text-align: center;
}

.box__title1 span:first-child {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
    font-family: var(--minchoText);
    font-size: 2rem;
    font-weight: var(--weightSB);
}

.box__title1 span:first-child::before,
.box__title1 span:first-child::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--keyColorB);
}

.box__title1 span:first-child::before {
    margin-right: 2rem;
}

.box__title1 span:first-child:after {
    margin-left: 2rem;
}

.box__title1 span:last-child {
    font-size: 2.6rem;
    font-weight: var(--weightB);
}

.box__title2 {
    margin: 32px 0 8px;
    clear: both;
}

.tamakawa__image {
    margin-left: 16px;
    float: right;
    width: 180px;
}

@media (max-width: 767px) {
    .box__title1 span:first-child {
        font-size: 1.6rem;
    }

    .box__title1 span:first-child::before {
        margin-right: 1rem;
    }

    .box__title1 span:first-child:after {
        margin-left: 1rem;
    }

    .box__title1 span:last-child {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .box {
        margin-top: 80px;
    }

    .box__title1 {
        margin-bottom: 16px;
    }

    .box__photo {
        height: 320px;
    }

    .tamakawa__image {
        width: 120px;
    }
}


/* Product
-------------------------------------- */
.product {
    margin-top: 120px;
}

.product__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid var(--keyColorB);
}

.product__container:first-of-type {
    margin-top: 40px;
}

.product__container:last-child {
    border-bottom: 1px solid var(--keyColorB);
}

.product__photo {
    width: 400px;
}

.product__info {
    flex: 1;
}

.product__head {
    position: relative;
    margin-bottom: 24px;
}

.product__name {
    width: calc(100% - 280px);
    font-weight: var(--weightB);
}

.product__name span:first-child {
    display: block;
}

.product__name span:first-child strong {
    color: var(--keyColorC);
    letter-spacing: 0.05em;
}

.product__name span:last-child {
    font-size: 2rem;
}

.product__price {
    font-weight: var(--weightB);
}

.product__text {
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.product__caption {
    margin-top: 24px;
    padding: 12px 16px;
    font-size: 1.3rem;
    background-color: #f4eed9;
}

.product__caption span {
    font-weight: var(--weightB);
}

.product__button1 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1230px) {
    .product__name {
        width: 100%;
    }

    .product__button1 {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 900px) {
    .product__container {
        display: block;
    }

    .product__photo {
        margin: auto;
    }

    .product__info {
        flex: 1;
    }

    .product__name {
        text-align: center;
    }

    .product__name span:first-child {
        display: block;
    }

    .product__price {
        text-align: center;
    }

    .product__button1 {
        margin: 20px auto 0;
    }

    .product__button2 {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .product {
        margin-top: 80px;
    }

    .product__photo {
        width: auto;
        max-width: 400px;
    }

    .product__name span:first-child strong {
        display: block;
    }

    .product__name span:first-child {
        font-size: 1.5rem;
    }

    .product__name span:last-child {
        font-size: 1.8rem;
        letter-spacing: normal;
    }

    .product__price {
        font-size: 1.4rem;
    }

    .product__text {
        margin-bottom: 24px;
        font-size: 1.4rem;
    }

    .product__caption {
        margin-top: 24px;
        padding: 12px 16px;
        font-size: 1.3rem;
        background-color: #f4eed9;
        line-height: var(--lineHeightB);
    }
}


/* Pet
-------------------------------------- */
.pet__inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.pet__image {
    width: 100%;
    max-width: 300px;
}

.pet__image img:first-child {
    position: relative;
    left: 10px;
}

.pet__image img:last-child {
    border-radius: var(--roundM);
}

.pet__info {
    flex: 1;
}

.pet__name {
    font-weight: var(--weightB);
}

.pet__name span:last-child {
    font-size: 2.2rem;
}

.pet__price {
    font-weight: var(--weightB);
}

.pet__text {
    margin: 24px 0;
    font-size: 1.4rem;
}

.pet__caption {
    margin-top: 24px;
    padding: 12px 16px;
    font-size: 1.3rem;
    background-color: #f4eed9;
}

.pet__caption span {
    font-weight: var(--weightB);
}

.pet__button {
    margin: 24px auto 0;
}

@media (max-width: 1023px) {}

@media (max-width: 767px) {
    .pet__inner {
        display: block;
    }

    .pet__image {
        margin: auto;
        max-width: 360px;
    }

    .pet__info {
        margin-top: 32px;
    }

    .pet__price {
        text-align: center;
    }

    .pet__name {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .pet__name span:first-child {
        font-size: 1.5rem;
    }

    .pet__name span:last-child {
        font-size: 1.8rem;
    }

    .pet__price {
        font-size: 1.4rem;
    }

    .pet__text {
        margin: 24px 0;
        font-size: 1.4rem;
    }
}


/* Section
-------------------------------------- */
.section__head {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: min(5.71vw, 80px);
    margin-right: calc(50% - 50vw);
}

.section__intro {
    width: 600px;
}

.section__photo {
    flex: 1;
    max-height: 300px;
    border-radius: var(--roundL) 0 0 var(--roundL);
    overflow: hidden;
}

.section__photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .section__head {
        display: block;
        padding-right: calc(50vw - 50%);
    }

    .section__intro {
        width: 100%;
    }

    .section__photo {
        margin-top: 32px;
        border-radius: var(--roundL);
    }
}

@media (max-width: 575px) {
    .section__photo {
        margin-top: 24px;
        border-radius: var(--roundM);
    }
}


/* Reason
-------------------------------------- */
.reason {
    margin-top: 120px;
}

.reason__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 3.5vw 0;
    margin-top: 64px;
}

.reason__list li {
    width: 48%;
    overflow: hidden;
    background-color: #fff;
    border-radius: var(--roundM);
    box-shadow: var(--shadow);
}

.reason__title1 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    color: var(--keyColorA);
    font-weight: var(--weightB);
    line-height: 1;
    background-color: #faebc8;
}

.reason__title1 span:first-child {
    display: block;
    margin-bottom: 4px;
    font-family: var(--minchoText);
    font-size: 4rem;
}

.reason__title1 span:last-child {
    display: block;
    font-size: 2rem;
}

.reason__container1 {
    padding: 20px 32px 32px;
}

.reason__text1 strong {
    color: var(--keyColorA);
}

.reason__text1 span {
    display: block;
    font-size: 1.2rem;
}

.reason__text1 em {
    display: block;
    font-style: normal;
    font-weight: var(--weightB);
}

.reason__image1 {
    margin-left: 12px;
    float: right;
    width: 180px;
    text-align: center;
}

.reason__radiation {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--keyColorB);
}

.reason__title2 {
    margin-bottom: 8px;
    font-size: 2rem;
}

.reason__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.reason__container2 {
    flex: 1;
    margin-top: 40px;
}

.reason__container2:nth-child(1) {
    padding-right: 2.86vw;
    border-right: 1px solid var(--keyColorB);
}

.reason__container2:nth-child(2) {
    padding: 0 2.86vw;
    border-right: 1px solid var(--keyColorB);
}

.reason__container2:nth-child(3) {
    padding-left: 2.86vw;
}

.reason__image2 {
    margin-top: 32px;
}

.reason__image2 img {
    filter: drop-shadow(2px 3px 10px rgba(141, 122, 87, 0.16));
}

@media (max-width: 950px) {
    .reason__container1 {
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        align-items: center;
        height: calc(100% - 72px);
    }

    .reason__image1 {
        margin: 16px 0 0 0;
        float: none;
        width: 240px;
    }
}

@media (max-width: 1023px) {
    .reason__title2 {
        font-size: 1.8rem;
    }

    .reason__inner {
        flex-direction: column;
    }

    .reason__container2:nth-child(1) {
        padding-right: 0;
        border-right: none;
    }

    .reason__container2:nth-child(2) {
        padding: 0;
        border-right: none;
    }

    .reason__container2:nth-child(3) {
        padding-left: 0;
    }

    .reason__image2 {
        margin: 32px auto 0;
        width: max(50vw, 400px);
    }
}

@media (max-width: 767px) {
    .reason__list {
        gap: 32px;
        margin-top: 48px;
    }

    .reason__list li {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .reason {
        margin-top: 80px;
    }

    .reason__container1 {
        justify-content: flex-start;
        padding: 16px 24px 24px;
        height: auto;
    }

    .reason__image1 {
        width: 85%;
    }

    .reason__title1 {
        padding: 12px 24px;
    }

    .reason__title1 span:first-child {
        font-size: 3rem;
    }

    .reason__title1 span:last-child {
        font-size: 1.8rem;
    }

    .reason__image2 {
        margin: 24px auto 0;
        width: 100%;
    }
}


/* Voice
-------------------------------------- */
.voice {
    margin-top: 120px;
}

.voice__movie {
    display: flex;
    justify-content: space-between;
    gap: min(5.71vw, 80px);
    margin-top: 64px;
}

.voice__movie li {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.voice__movie li iframe {
    width: 100%;
    height: 100%;
}

.voice__title1 {
    margin-top: 48px;
}

.voice__inner {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.voice__beaf {
    margin-right: 48px;
    width: 60%;
}

.voice__beaf li {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}

.voice__beaf li:not(:first-of-type) {
    margin-top: 64px;
}

.voice__befor {
    position: relative;
}

.voice__befor::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15.5%;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 40px;
    background: url(../img/voice-arrow.png ) no-repeat center center / contain;
}

.voice__photo {
    overflow: hidden;
    border-radius: var(--roundM) var(--roundM) 0 0;
}

.voice__caption {
    color: #fff;
    font-size: 1.8rem;
    font-weight: var(--weightB);
    text-align: center;
    line-height: 50px;
    border-radius: 0 0 var(--roundM) var(--roundM);
}

.voice__caption._befor {
    background-color: #5F8EBC;
}

.voice__caption._after {
    background-color: #d57e57;
}

.voice__info {
    flex: 1;
}

.voice__text1 {
    font-size: clamp(1.2rem, 1.13vw, 1.5rem);
    line-height: var(--lineHeightA);
}

.voice__title2 {
    margin-top: 32px;
    font-size: clamp(1.4rem, 1.36vw, 1.8rem);
    font-weight: var(--weightB);
}

.voice__text2 {
    margin-top: 24px;
    padding: 16px 20px;
    font-size: clamp(1.2rem, 1.13vw, 1.5rem);
    background-color: #f4eed9;
    border-radius: var(--roundS);
}

.voice__text2 em {
    display: block;
    margin-top: 8px;
    font-weight: var(--weightB);
    font-style: normal;
}

.voice__list {
    margin-top: 48px;
}

.voice__list li {
    overflow: hidden;
    border-radius: var(--roundM);
    box-shadow: var(--shadow);
}

.voice__list li:not(:first-of-type) {
    margin-top: 40px;
}

.voice__name {
    padding: 16px 32px;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--weightB);
    background-color: var(--keyColorB);
}

.voice__article {
    padding: 18px 32px;
    background-color: #fff;
}

.voice__button {
    margin: 64px auto 0;
    cursor: pointer;
}

.voice__button.off {
    display: none;
}

.voice__more {
    display: none;
}

@media (max-width: 940px) {
    .voice__inner {
        display: block;
    }

    .voice__beaf {
        margin: 0 auto;
        width: 80%;
    }

    .voice__info {
        margin-top: 48px;
    }

    .voice__text1 {
        font-size: 1.5rem;
    }

    .voice__title2 {
        font-size: 1.8rem;
    }

    .voice__text2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .voice__beaf {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .voice {
        margin-top: 80px;
    }

    .voice__movie {
        flex-direction: column;
        gap: 32px;
        margin-top: 48px;
    }

    .voice__inner {
        margin-top: 32px;
    }

    .voice__beaf li:not(:first-of-type) {
        margin-top: 32px;
    }

    .voice__befor::after {
        right: -16.5%;
        width: 15px;
        height: 30px;
    }

    .voice__caption {
        font-size: 1.6rem;
        line-height: 40px;
    }

    .voice__info {
        margin-top: 32px;
    }

    .voice__text1 {
        font-size: 1.4rem;
        line-height: var(--lineHeightB);
    }

    .voice__title2 {
        font-size: 1.6rem;
    }

    .voice__text2 {
        font-size: 1.3rem;
        line-height: var(--lineHeightB);
    }

    .voice__list {
        margin-top: 32px;
    }

    .voice__list li:not(:first-of-type) {
        margin-top: 32px;
    }

    .voice__name {
        padding: 10px 20px;
        font-size: 1.7rem;
    }

    .voice__article {
        padding: 12px 20px;
    }

    .voice__button {
        margin: 64px auto 0;
        cursor: pointer;
    }
}


/* Rental
-------------------------------------- */
.rental {
    margin-top: 120px;
}

.rental__course {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.5%;
    margin-top: 64px;
    text-align: center;
}

.rental__course li {
    flex: 1;
    overflow: hidden;
    background-color: #fff;
    border-radius: var(--roundM);
    box-shadow: var(--shadow);
}

.rental__title1 {
    padding: 12px 16px;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--weightB);
    background-color: var(--keyColorA);
}

.rental__title1 span {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.7rem;
}

.rental__price {
    font-weight: var(--weightB);
    padding: 12px 16px 16px;
}

.rental__price span {
    font-size: 2rem;
}

.rental__text1 {
    margin-top: 24px;
}

.rental__title2 {
    margin-top: 48px;
    text-align: center;
}

.rental__flow {
    display: flex;
    justify-content: space-between;
    gap: 3.5%;
    margin-top: 32px;
    text-align: center;
}

.rental__flow li {
    position: relative;
    flex: 1;
    padding-bottom: 32px;
    background-color: #fff;
    border-radius: 0 0 var(--roundM) var(--roundM);
    box-shadow: var(--shadow);
}

.rental__flow li:not(:last-of-type)::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -25px;
    width: 25px;
    height: 60px;
    background: url(../img/rental-arrow.png ) no-repeat center center / contain;
}

.rental__step {
    color: #fff;
    font-size: 2.2rem;
    font-weight: var(--weightB);
    line-height: 60px;
    background-color: var(--keyColorB);
    border-radius: var(--roundM) 0 0 0;
}

.rental__flow li:last-child .rental__step {
    border-radius: var(--roundM) var(--roundM) 0 0;
}

.rental__title3 {
    padding: 24px 8px 0;
    color: var(--keyColorB);
    font-size: 1.7rem;
    font-weight: var(--weightB);
}

.rental__text2 {
    padding: 8px 8px 0;
    font-size: 1.5rem;
}

.rental__button {
    margin: 48px auto 0;
}

@media (max-width: 1120px) {
    .rental__price {
        font-size: min(1.35vw, 1.6rem);
    }

    .rental__price span {
        padding: 12px 10px 16px;
        font-size: min(1.7vw, 2rem);
    }

    .rental__text2 br {
        display: none;
    }
}

@media (max-width: 970px) {
    .rental__course {
        flex-direction: column;
        gap: 32px;
    }

    .rental__course li {
        flex: none;
        width: 100%;
    }

    .rental__price {
        font-size: 1.6rem;
    }

    .rental__price span {
        padding: 12px 12px 16px;
        font-size: 2rem;
    }

    .rental__flow {
        flex-direction: column;
        gap: 32px;
    }

    .rental__flow li {
        flex: none;
        width: 100%;
        padding-bottom: 32px;
    }

    .rental__flow li:not(:last-of-type)::after {
        content: none;
    }

    .rental__step {
        border-radius: var(--roundM) var(--roundM) 0 0;
    }
}

@media (max-width: 575px) {
    .rental {
        margin-top: 80px;
    }

    .rental__course {
        margin-top: 48px;
    }

    .rental__title1 {
        padding: 10px 16px;
        font-size: 1.8rem;
    }

    .rental__title1 span {
        font-size: 1.5rem;
    }

    .rental__price {
        font-size: 1.4rem;
    }

    .rental__price span {
        font-size: 1.8rem;
    }

    .rental__flow li {
        padding-bottom: 20px;
    }

    .rental__step {
        font-size: 2rem;
        line-height: 50px;
    }

    .rental__title3 {
        padding: 16px 8px 0;
    }

    .rental__text2 {
        padding: 8px 8px 0;
        font-size: 1.4rem;
    }
}


/* Business Partner
-------------------------------------- */
.partner {
    margin-top: 120px;
}

.partner__inner {
    display: flex;
    justify-content: space-between;
    gap: min(5vw, 80px);
    margin-top: 64px;
}

.partner__area1 {
    flex: 1;
}

.partner__title1 {
    margin-bottom: 32px;
}

.partner__text strong {
    color: var(--keyColorA);
}

.partner__area2 {
    width: 100%;
    max-width: 520px;
}

.partner__area2 dl {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    font-weight: var(--weightB);
    border-radius: var(--roundS);
    box-shadow: var(--shadow);
}

.partner__area2 dl dt {
    display: flex;
    align-items: center;
    padding: 12px 10px 12px 18px;
    width: 170px;
    color: #fff;
    background-color: var(--keyColorA);
}

.partner__area2 dl dd {
    flex: 1;
    padding: 12px 8px 12px 16px;
    background-color: #fff;
}

.partner__area2 dl:not(:first-of-type) {
    margin-top: 16px;
}

.partner__container {
    margin-top: 64px;
    padding: 40px min(4.82vw, 64px) min(4.82vw, 64px);
    background-color: #faebc8;
    border-radius: var(--roundL);
}

.partner__title2 {
    font-size: 2rem;
    font-weight: var(--weightB);
    text-align: center;
}

.partner__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: min(3vw, 40px) 0;
    margin-top: 32px;
}

.partner__list li {
    overflow: hidden;
    width: min(31%, 330px);
    border-radius: var(--roundM);
}

.partner__caption {
    padding: 12px 8px;
    color: #fff;
    font-size: min(1.3vw, 1.8rem);
    font-weight: var(--weightB);
    text-align: center;
    background-color: var(--keyColorA);
}

@media (max-width: 1100px) {
    .partner__inner {
        display: block;
    }

    .partner__area2 {
        margin: 32px auto 0;
    }
}

@media (max-width: 768px) {
    .partner__list {
        gap: 5vw 0;
    }

    .partner__list li {
        width: 47%;
    }

    .partner__caption {
        font-size: 2.08vw;
    }
}

@media (max-width: 575px) {
    .partner {
        margin-top: 80px;
    }

    .partner__inner {
        margin-top: 32px;
    }

    .partner__area2 dl {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }

    .partner__area2 dl dt {
        display: block;
        padding: 10px 10px 10px 16px;
        width: 100%;
        text-align: center;
    }

    .partner__area2 dl dd {
        width: 100%;
        padding: 10px 10px 10px 16px;
        text-align: center;
        background-color: #fff;
    }

    .partner__area2 dl:not(:first-of-type) {
        margin-top: 16px;
    }

    .partner__container {
        margin-top: 32px;
        padding: 24px 24px 32px;
    }

    .partner__title2 {
        font-size: 1.6rem;
        text-align: left;
    }

    .partner__list {
        gap: 24px;
    }

    .partner__list li {
        width: 70%;
        margin: auto;
    }

    .partner__caption {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .partner__list li {
        width: 90%;
    }
}


/* Order
-------------------------------------- */
.order {
    margin-top: 120px;
}

form {
    margin: 80px auto 0;
    max-width: 852px;
}

.order__table {
    border-collapse: separate;
    border-spacing: 0 32px;
    margin: auto;
    width: 100%;
}

.order__table th span {
    display: inline-block;
    margin-left: 12px;
    padding: 0 6px;
    color: #fff;
    font-size: 1.3rem;
    background-color: var(--keyColorB);
    border-radius: 100vh;
}

.order__table th,
.order__table td {
    font-weight: var(--weightR);
    vertical-align: middle;
    text-align: left;
}

.order__table th {
    vertical-align: top;
    padding-top: 15px;
    width: 200px;
}

.code,
.prefectures {
    width: 240px !important;
}

.number {
    margin-right: 16px;
    width: 64px !important;
}

.order__title {
    display: flex;
    align-items: center;
    margin: 32px 0;
    color: var(--keyColorB);
    font-size: 1.8rem;
    font-weight: var(--weightB);
    text-align: center;
}

.order__title::before,
.order__title::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: var(--keyColorB);
}

.order__title::before {
    margin-right: 2rem;
}

.order__title::after {
    margin-left: 2rem;
}

.order__privacy {
    margin-top: 32px;
    padding: 16px 24px;
    overflow: scroll;
    height: 200px;
    background-color: #fff;
    border: 1px solid #B1B1B1;
}

.order__privacyTitle1 {
    font-size: 1.4rem;
    font-weight: var(--weightB);
}

.order__privacyTitle2 {
    margin-top: 8px;
    font-size: 1.3rem;
    font-weight: var(--weightB);
}

.order__privacyText {
    font-size: 1.3rem;
}

.order__button {
    margin: 64px auto 0;
}

label {
    display: inline-block;
    margin-right: 32px;
}

label:nth-child(3),
label:nth-child(4) {
    margin-top: 8px;
}

label span::before {
    display: inline-block;
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #B1B1B1;
    margin-right: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
    background-color: #fff;
}

.mfp_checked span::before {
    background: var(--keyColorA) url(../img/order-check.png ) no-repeat center center / 20px;
}

::placeholder {
    color: #B5B5B5;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 16px 20px;
    width: 100%;
    height: 60px;
    letter-spacing: 0.08em;
    background-color: #fff;
    border: 1px solid #B1B1B1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s;
}

textarea {
    height: 240px;
}

textarea:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover {
    border: 1px solid var(--keyColorB);
}

textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border: solid 1px var(--keyColorB);
}

select {
    margin-right: 32px;
    padding-left: 24px;
    width: 320px;
    height: 60px;
    background: #fff url(../img/order-arrow.png ) no-repeat right 24px center / 16px auto;
    border: 1px solid #B1B1B1;
}

/* mail form pro */
.mfp_err {
    color: var(--keyColorA);
    margin-top: 8px;
}

div#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: 0px;
}

@media (max-width: 767px) {
    label {
        display: block;
        margin-right: 0;
    }

    label:not(:first-of-type) {
        margin-top: 8px;
    }

    select {
        margin-right: 24px;
        padding-left: 16px;
        width: 240px;
        background: #fff url(../img/order-arrow.png ) no-repeat right 16px center / 16px auto;
    }
}

@media (max-width: 650px) {
    .order {
        margin-top: 80px;
    }

    form {
        margin: 32px auto 0;
    }

    .order__table {
        border-spacing: 0 24px;
        margin: 0 auto 16px;
    }

    .order__table th,
    .order__table td {
        display: block;
        width: 100%;
    }

    .order__table th {
        margin-bottom: 16px;
        padding-top: 0;
    }

    .order__title {
        margin: 8px 0;
        font-size: 1.7rem;
    }

    select {
        margin-right: 0;
        margin-bottom: 16px;
        width: 100%;
        background: #fff url(../img/order-arrow.png ) no-repeat right 16px center / 16px auto;
    }

    .order__privacy {
        margin-top: 24px;
        padding: 12px 18px;
    }
}


/* Company
-------------------------------------- */
.company {
    margin-top: 120px;
    padding-top: 64px;
    background-color: var(--keyColorB);
}

.company__title1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: var(--weightB);
    text-align: center;
}

.company__name {
    margin-top: 16px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: var(--weightB);
    text-align: center;
}

.company__title2 {
    margin-top: 16px;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--weightB);
    text-align: center;
}

.company__text {
    margin-top: 16px;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.company__button {
    position: relative;
    display: block;
    margin: 32px auto 64px;
    width: 240px;
    line-height: 60px;
    color: var(--keyColorB);
    font-weight: var(--weightB);
    text-align: center;
    background-color: #fff;
    border-radius: 100vh;
    transition: all 0.3s;
}

.company__button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: block;
    width: 8px;
    height: 14px;
    background: url(../img/company-arrow.png ) no-repeat center center / contain;
    transition: all 0.3s;
}

.company__list {
    display: flex;
    justify-content: space-between;
}

.company__list li {
    width: 25%;
}

@media (hover: hover) and (pointer: fine) {
    .company__button:hover:after {
        right: 18px;
    }
}

@media (max-width: 768px) {
    .company__list {
        flex-wrap: wrap;
    }

    .company__list li {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .company {
        margin-top: 80px;
        padding-top: 48px;
    }

    .company__title1 {
        font-size: 2rem;
    }

    .company__name {
        margin-top: 8px;
        font-size: 2rem;
    }

    .company__title2 {
        margin-top: 8px;
        font-size: 1.8rem;
    }

    .company__text {
        margin-top: 8px;
        font-size: 1.4rem;
        text-align: left;
    }
}


/* Footer
-------------------------------------- */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 48px;
    background-color: #f4eed9;
}

.footer__company {
    position: relative;
}

.footer__photo {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
}

.footer__photo span {
    display: inline-block;
    margin-top: -18px;
    padding: 0 5px;
    color: #fff;
    font-size: 1.1rem;
    background-color: var(--keyColorB);
    border-radius: 5px;
}

.footer__logo {
    width: 260px;
}

.footer__logoText {
    margin-bottom: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.footer__sponsor {
    margin-top: 16px;
    font-size: 1.3rem;
}

.footer__url {
    margin: 16px 0;
    font-size: 1.7rem;
    font-weight: var(--weightB);
}

.footer__address {
    font-size: 1.4rem;
}

.footer__tel {
    font-size: 1.8rem;
}

.footer__info {
    position: relative;
    text-align: right;
}

.footer__credit {
    font-size: 1.3rem;
}

.footer__copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.2rem;
}


@media (max-width: 940px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer__info {
        text-align: left;
    }

    .footer__copyright {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
}

@media (max-width: 575px) {
    .footer {
        align-items: stretch;
        padding: 32px 24px;
    }

    .footer__logo {
        width: 190px;
    }

    .footer__credit {
        font-size: 1.2rem;
    }
}


/* Thanks
-------------------------------------- */
.thanks {
    margin: 160px 0 80px;
    text-align: center;
}

.thanks__title {
    color: var(--keyColorB);
    font-size: 2.2rem;
    font-weight: var(--weightB);
}

.thanks__text {
    margin-top: 48px;
    line-height: var(--lineHeightA);
}

.thanks__tel {
    margin-top: 24px;
    font-size: 2rem;
}

@media (max-width: 1023px) {}

@media (max-width: 768px) {}

@media (max-width: 575px) {}