

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 1000px);
    --color__accent: #FF7BAC;
}

/* 特有フォント読み込み */
/* @font-face {
    font-family: 'Didot';
    src: url('../fonts/didot.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  } */

/* コンテンツ全体の調整 */
body {
    width: min(100%, 1440px);
    margin-inline: auto;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    color: #1A1A1A;
    background-color: #fff;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}


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%;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;

    }
 }


/* PC版でのみ表示 */
.pc_only {
    display: block; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc_only {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp_only {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp_only {
        display: block; /* SPでは表示 */
    }
}




span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}

/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.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);
    }
}

/*######################################################################
コンテンツ
######################################################################*/

/*------------------------------------------------------------
fv
------------------------------------------------------------*/
.fv {
    position: relative;
    margin-inline: auto;
}
.fv-cta {
    position: absolute;
    display: flex;
    width: min(43%, 627px);
    height: auto;
    top: 82.5%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .fv-cta {
        width: min(83%, 313px);
        top: 82.5%;
    }
}
.fv-price {
    position: absolute;
    top: 67.5%;
    right: 31.5%;
    color: #e73d2d;
    /* 76px-43px */
    font-size: clamp(2.688rem, 0.039rem + 5.518vw, 4.75rem);
    font-weight: 700;
    text-shadow: 4.24px 4.24px 0 #fffb8c; /* 135°方向、距離6pxの影 */
    letter-spacing: -1px;
}
@media (max-width: 767px) {
    .fv-price {
    top: 66.3%;
    right: 21%;
    font-size: 38px;
    font-weight: 600;
    text-shadow: 2px 2px 0 #fffb8c;
    letter-spacing: -1px;
}
 }

/*------------------------------------------------------------
voice
------------------------------------------------------------*/
.voice {
    width: min(93%, 1348px);
    height: auto;
    margin-top: 6.5%;
    margin-left: 2%;
}
@media (max-width: 767px) {
    .voice {
        width: 100%;
        height: auto;
        margin-top: 8%;
        margin-left: 0;
    }
}

/*------------------------------------------------------------
worry
------------------------------------------------------------*/
.worry {
    margin-top: 3%;
}
@media (max-width: 767px) {
    .worry {
        margin-top: 9%;
    }
}

/*------------------------------------------------------------
chance
------------------------------------------------------------*/
.chance {
    position: relative;
    margin-inline: auto;
    margin-top: 1.5%;
}
@media (max-width: 767px) {
    .chance {
        margin-top: 4%;
    }
}
.chance__price01, .chance__price02 {
    position: absolute;
    color: #FF9D32;
    text-align: center;
    text-shadow: 0px 4px 4.5px rgba(0, 0, 0, 0.13);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    font-family: Roboto;
    /* 90px-50px */
    font-size: clamp(3.125rem, 0.268rem + 5.952vw, 5.625rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -3px;
}
.chance__price01 span, .chance__price02 span {
    /* 50px-30px */
    font-size: clamp(1.875rem, 0.446rem + 2.976vw, 3.125rem);
}
.chance__price01 {
    top: 52%;
    right: 40%;
}
@media (max-width: 767px) {
    .chance__price01 {
        top: 48%;
        right: 20%;
        font-size: 70px;
    }
    .chance__price01 span {
        font-size: 50px;
    }
}
.chance__price02 {
    top: 81.5%;
    right: 35%;
}
@media (max-width: 767px) {
    .chance__price02 {
        top: 73%;
        right: 21%;
        font-size: 90px;
        letter-spacing: -5px;
    }
    .chance__price02 span {
        font-size: 50px;
    }
}

/*------------------------------------------------------------
message
------------------------------------------------------------*/
.message {
    margin-top: 3%;
}
@media (max-width: 767px) {
    .message {
        margin-top: 10%;
    }
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
    margin-inline: auto;
}
.fv-cta__price {
    position: absolute;
    top: 18%;
    right: 33%;
    color: #FF9D32;
    text-align: center;
    text-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    font-family: Roboto;
    /* 70px-38px */
    font-size: clamp(2.375rem, 0.089rem + 4.762vw, 4.375rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -2px;
}
.fv-cta__price span {
    /* 40px-20px */
    font-size: clamp(1.25rem, -0.179rem + 2.976vw, 2.5rem);
}
@media (max-width: 767px) {
    .fv-cta__price {
        top: 11%;
        right: 17%;
        font-size: 40px;
        font-weight: 900;
        -webkit-text-stroke-width: 1.5px;
    }
    .fv-cta__price span {
        font-size: 30px;
    }
}
.cta__price {
    position: absolute;
    top: 4%;
    right: 33%;
    color: #FF9D32;
    text-align: center;
    text-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    font-family: Roboto;
    /* 130px-70px */
    font-size: clamp(4.375rem, 0.089rem + 8.929vw, 8.125rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -4px;
}
.cta__price span {
    /* 70px-35px */
    font-size: clamp(2.188rem, -0.313rem + 5.208vw, 4.375rem);
}
@media (max-width: 767px) {
    .cta__price {
        top: 4%;
        right: 11%;
        font-size: 70px;
        font-weight: 700;
    }
}
.btn__area {
    position: absolute;
    display: flex;
    gap: 0.5%;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 62%;
}
@media (max-width: 767px) {
    .btn__area {
        top: 50%;
        left: 0;
        transform: none;
        justify-content: none;
        align-items: center; /* 横方向中央寄せ */
        flex-direction: column; /* 横並び→縦並び */
        width: 100%;
    }
}
.fv-btn__area {
    position: absolute;
    display: flex;
    gap: 0.5%;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 62%;
}
@media (max-width: 767px) {
    .fv-btn__area {
        top: 34%;
        left: 0;
        transform: none;
        justify-content: none;
        align-items: center; /* 横方向中央寄せ */
        flex-direction: column; /* 横並び→縦並び */
        width: 100%;
    }
}
.area__tel {
    width: 450px;
    height: auto;
}
.area__line {
    width: 450px;
    height: auto;
}
@media (max-width: 767px) {
    .area__tel {
        width: min(94%, 329px);
        height: auto;
    }
    .area__line {
        width: min(94%, 329px);
        height: auto;
    }
    .area__line {
        margin-top: 3%;
    }
}

.cta02 {
    position: relative;
    margin-inline: auto;
}
.cta02__price {
    position: absolute;
    top: 73.5%;
    right: 33%;
    color: #FF9D32;
    text-align: center;
    text-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    font-family: Roboto;
    /* 130px- */
    font-size: clamp(4.375rem, 0.089rem + 8.929vw, 8.125rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -7px;
}
.cta02__price span {
    /* 70px-35px */
    font-size: clamp(2.188rem, -0.313rem + 5.208vw, 4.375rem);
}
@media (max-width: 767px) {
    .cta02__price {
        top: 69.5%;
        right: 13%;
        font-size: 70px;
        font-weight: 700;
        letter-spacing: -4px;
    }
}
.btn__area02 {
    position: absolute;
    display: flex;
    gap: 0.5%;
    top: 89.5%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 62%;
}
@media (max-width: 767px) {
    .btn__area02 {
        top: 84%;
         left: 0;
        transform: none;
        justify-content: none;
        align-items: center; /* 横方向中央寄せ */
        flex-direction: column; /* 横並び→縦並び */
        width: 100%;
    }
}

.cta03__price {
    position: absolute;
    top: 6%;
    right: 33%;
    color: #FF9D32;
    text-align: center;
    text-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFF;
    font-family: Roboto;
    /* 130px-70px */
    font-size: clamp(4.375rem, 0.089rem + 8.929vw, 8.125rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -4px;
}
.cta03__price span {
    /* 70px-35px */
    font-size: clamp(2.188rem, -0.313rem + 5.208vw, 4.375rem);
}
@media (max-width: 767px) {
    .cta03__price {
        top: 4%;
        right: 11%;
        font-size: 70px;
        font-weight: 700;
    }
}
.btn__area03 {
    position: absolute;
    display: flex;
    gap: 0.5%;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 62%;
}
@media (max-width: 767px) {
    .btn__area03 {
        top: 40%;
        left: 0;
        transform: none;
        justify-content: none;
        align-items: center; /* 横方向中央寄せ */
        flex-direction: column; /* 横並び→縦並び */
        width: 100%;
    }
}

/*------------------------------------------------------------
reason
------------------------------------------------------------*/
.reason {
    margin-top: 5%;
}
@media (max-width: 767px) {
    .reason {
        margin-top: 13%;
    }

}

/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access__title {
    color: #1A1A1A;
    text-align: center;
    font-family: "Noto Sans JP";
    /* 35px-20px */
    font-size: clamp(1.25rem, 0.179rem + 2.232vw, 2.188rem);
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 85.714% */
    letter-spacing: 0.7px;
    margin-top: 4%;
}
@media (max-width: 767px) {
    .access__title {
        margin-top: 10%;
    }
}

.access__Area {
    width: min(70%, 1002px);
    margin-inline: auto;
    display: flex;
    gap: 5%;
    padding-top: 3%;
    align-items: top;
}
@media (max-width: 767px) {
    .access__Area {
        display: block;
        width: 85%;
        padding-top: 3%;
        align-items: top;
    }
}
.access__mapArea {
    width: min(50%, 500px);
    margin-inline: auto;
    /* 380px-200px */
    height: clamp(12.5rem, -0.357rem + 26.786vw, 23.75rem);
    padding-top: 3%;
    overflow: hidden;
}
@media (max-width: 767px) {
    .access__mapArea {
        width: 100%;
        margin-inline: auto;
        height: 220px;
        padding-top: 5%;
        margin-bottom: 5%;
        overflow: hidden;
    }
}
.access__box {
    width: min(45%, 455px);
}
@media (max-width: 767px) {
    .access__box {
        width: 100%;
    }
}
.access__box-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}
.access__box-table th,
.access__box-table td {
    padding-top: 5.5%;
    text-align: left;
    line-height: 1.5;
    vertical-align: top;
}
.access__box-table th {
    width: 25%;
    color: #FF9D32;
    /* 17px-9px */
    font-size: clamp(0.563rem, -0.009rem + 1.19vw, 1.063rem);
    font-weight: 700;
}
@media (max-width: 767px) {
    .access__box-table th {
        width: 35%;
        font-size: 16px;
        padding-left: 5%;
    }
}

.access__box-table td,
.access__box-table td a
 {
    color: #1A1A1A;
    /* 16px-8px */
    font-size: clamp(0.5rem, -0.071rem + 1.19vw, 1rem);
    font-weight: 400;
    text-decoration: none;
}
@media (max-width: 767px) {
    .access__box-table td,
    .access__box-table td a
    {
        font-size: 15px;
    }
}




/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 1rem 0;
    background-color: #FF9D32;
    color: #fff;
}
@media (max-width: 767px) {
    .footer {
        padding: 1.2rem 0;
    }
 }



.footer__nav {
    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;
        /* 16px-13px */
        font-size: clamp(0.813rem, 0.572rem + 0.502vw, 1rem);

        &:hover {
            color: lightgray;
        }
    }
}
@media (max-width: 767px) {
    .footer__nav a {
        font-size: 12px!important;
    }
 }

.copyright__p {
    text-align: center;
    /* font-weight: 700; */
    letter-spacing: 0.6px;
    /* 16px-13px */
    font-size: clamp(0.813rem, 0.572rem + 0.502vw, 1rem);
    margin-top: 0;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 0;
        font-size: 12px;
    }
 }