

/*######################################################################
共通設定
######################################################################*/

:root {
    /* --width__main-content: min(35%, 375px); */
    /* --width__main-content: min(100%, 1440px);
    --color__accent: #FF7BAC; */
}

body {
    font-family: "yu-gothic-pr6n", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100%;
    container-type: inline-size;
    color: #260518;
    background-color: #fff;
}
body {
    &::before {
        content: "";
        display: block;
        width: 100%;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url(../images/bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

h1 {
    margin: 0;
}

p, a, ul, ol, table {
    /* 400-768 */
    font-size: clamp(0.875rem, 0.739rem + 0.543vw, 1rem);
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
    margin-top: -1px;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;

    }
 }


/* 折り返し */
/* PC版でのみ表示 */
.pc {
    display: inline; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp {
        display: inline; /* SPでは表示 */
    }
}

span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}




.pc_only {
    display: block; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc_only {
        display: none; /* SPでは非表示 */
    }
}
.sp_only {
    display: none; /* PCでは非表示 */
}
@media (max-width: 767px) {
    .sp_only {
        display: block; /* SPでは表示 */
    }
}


/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadein-scrollin {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;


    &.scrollin-left {
        transform: translate(-30px, 0);
    }

    &.scrollin-right {
        transform: translate(30px, 0);
    }

    &.scrollin-bottom {
        transform: translate(0, 30px);
    }

    &.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*######################################################################
コンテンツ
######################################################################*/
/*------------------------------------------------------------
column
------------------------------------------------------------*/
.site {
    display: grid;
    grid-template-columns: 55% 39% 6%;
}
@media (max-width: 767px) {
    .site {
        grid-template-columns: 1fr;
    }
}
.column__left,
.column__right {
    order: 1;
}
@media (max-width: 767px) {
    .column__left,
    .column__right {
        display: none;
    }
}
.column__center {
    order: 2;
    width: min(100%, 750px);
    margin-inline: auto;
    background-color: #fff;
}
@media (max-width: 767px) {
    .column__center {
        width: 100%;
    }
}
.column__right {
    order: 3;
}

/*------------------------------------------------------------
column left
------------------------------------------------------------*/
.column__left__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 50%;
    translate: 0 -50%;
}
.column__left__logo {
    width: 62%;
}
figure {
    margin: 0;
}
.column__left__cta {
    position: relative;
    width: 50%;
    margin-top: -29%;
    margin-left: 1%;
}

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
.column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 45%;
}
.column__right__cta {
    position: relative;
    width: min(80%, 536px);
}



/*------------------------------------------------------------
header
------------------------------------------------------------*/
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.header__logo {
  flex: 0 0 12%;
}
.btn__header {
  flex: 0 0 65%;
  position: relative;
}

/*------------------------------------------------------------
cta__area
------------------------------------------------------------*/
.cta {
    position: relative;
}

/* FV */
.cta__btn {
    position: absolute;
    width: 95%;
    top: 82%;
    left: 50%;
    transform: translateX(-50%);
}

/* reason */
.cta__btn01 {
    position: absolute;
    width: 95%;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
}

/* voice */
.cta__btn02 {
    position: absolute;
    width: 95%;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
}

/* access */
.cta__btn03 {
    position: absolute;
    width: 95%;
    top: 73%;
    left: 50%;
    transform: translateX(-50%);
}

/* PC背景 */
.cta__btn04 {
    position: absolute;
    width: 89%;
    top: 63%;
    left: 50%;
    transform: translateX(-50%);
}

/* 価格 */
.btn__price {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff338;
    text-shadow: 0 2px 4px rgba(51, 106, 0, 0.53);
}
.btn__price01 {
    position: absolute;
    top: 60%;
    left: 47%;
    transform: translateX(-50%);
    font-size: clamp(15px, 2vw, 38px);
}
@media (max-width: 767px) {
    .btn__price01 {
        font-size: clamp(15px, 5vw, 38px);
    }
}
.btn__price02 {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translateX(-50%);
    font-size: clamp(23px, 3vw, 57px);
    white-space: nowrap;   /* 折り返しなし */
}
@media (max-width: 767px) {
.btn__price02 {
    font-size: clamp(23px, 8vw, 57px);
}
}

/* 左カラムボタン用 */
.btn__price01-l {
    position: absolute;
    top: 59%;
    left: 47%;
    transform: translateX(-50%);
    font-size: clamp(11px, 1.5vw, 28px);
}
.btn__price02-l {
    position: absolute;
    top: 49%;
    left: 75%;
    transform: translateX(-50%);
    font-size: clamp(16px, 2.2vw, 42px);
    white-space: nowrap;   /* 折り返しなし */
}

.btn__price span.comma {
    font-size: 0.6em;
}
.btn__price span.yen {
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.6em;

}


/*------------------------------------------------------------
coupon
------------------------------------------------------------*/
.coupon {
    position: relative;
    font-family: "futura-pt", sans-serif;
    font-style: normal;
}


.coupon__price01 {
    position: absolute;
    top: 45%;
    left: 67%;
    transform: translateX(-50%);
    color: #260518;
    font-size: clamp(13px, 1.7vw, 32px);
}
@media (max-width: 767px) {
    .coupon__price01 {
        font-size: clamp(13px, 4.5vw, 32px);
    }
}

.coupon__price02 {
    position: absolute;
    top: 46.5%;
    left: 69%;
    transform: translateX(-50%);
    color: #da7879;
    font-size: clamp(14px, 5.3vw, 100px);
    letter-spacing: -2px;
}
@media (max-width: 767px) {
    .coupon__price02 {
        font-size: clamp(14px, 14vw, 100px);
    }
}

.coupon span.yen {
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 0.7em;
    font-weight: bold;
}
.coupon span.comma {
    font-size: 0.7em;
}


/*------------------------------------------------------------
menu
------------------------------------------------------------*/
.menu {
    position: relative;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-style: normal;
    color: #260518;
    font-weight: bold;
    font-size: clamp(15px, 2vw, 37px);
}
@media (max-width: 767px) {
    .menu {
        font-size: clamp(15px, 5vw, 37px);
    }
}

.menu__price01 {
    position: absolute;
    top: 44%;
    left: 25%;
    transform: translateX(-50%);
}
.menu__price02 {
    position: absolute;
    top: 44%;
    left: 54%;
    transform: translateX(-50%);
}
.menu__price03 {
    position: absolute;
    top: 44%;
    left: 83%;
    transform: translateX(-50%);
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
    background-color: #fff;
    padding: 0;
}
.access__inner {
    width: 92%;
    margin: 0 auto;
    padding-top: 10%;
}

.access__container {
    width: 100%;
    margin: 5% auto 5%;
    font-size: clamp(10px, 1.4vw, 27px);
    line-height: 1.3;
    border-top: #551238 3px dotted;
}
@media (max-width: 767px) {
    .access__container {
        font-size: clamp(11px, 3.6vw, 27px);
    }
}
.access__container dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    padding: 0 0 1em;
    border-bottom: #551238 3px dotted;
}
.access__container dl.no-border {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.1em;
    padding: 2% 0 6%;
    border-bottom: none;
}
.access__container div {
  display: flex;
  flex-wrap: nowrap;
  
}
.access__container dt {
    width: 7em;
    text-align: left;
    flex-shrink: 0;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-style: normal;
    color: #551238;
    font-weight: bold;
}
.access__container dd {
    font-family: "yu-gothic-pr6n", sans-serif;
    font-style: normal;
    color: #260518;
    font-weight: bold;
    flex: 1;
    margin: 0;
}
.access__container dd a {
    font-size: clamp(11px, 1.4vw, 27px);
    text-decoration: none;
}
@media (max-width: 767px) {
    .access__container dd a {
        font-size: clamp(11px, 3.6vw, 27px);
    }
}

/* 地図 */
.access__map {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    margin: 0 auto;
}
.map__inner {
    width: 100%;
    height: 100%;
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 3em 0;
    background-image: url(../images/footer.webp);
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-style: normal;
    margin-top: -1px;
}

.footer__nav {

    font-size: clamp(11px, 1vw, 22px);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;

        li:not(:last-child)::after {
            content: "　　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: clamp(11px, 1vw, 22px);
        font-weight: 300;

        &:hover {
            color: lightgray;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin: 1em 0 0 0;
    font-size: clamp(11px, 1vw, 22px);
}
@media (max-width: 767px) {
    .footer__nav {
        font-size: clamp(11px, 2.6vw, 22px);
        a {
            font-size: clamp(11px, 2.6vw, 22px);
        }
    }
    .copyright__p {
        font-size: clamp(11px, 2vw, 22px);
        margin: 0;
    }
}

