

/*######################################################################
共通設定
######################################################################*/

: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: #302a24;
    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 {
    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版でのみ表示 */
.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では表示 */
    }
}
/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.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;
}
@media (max-width: 767px) {
    .cta-btnFv {
        position: absolute;
        width: min(92%, 690px);
        top: 88%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
    display: flex;
    width: min(100%, 1440px);
    margin-inline: auto;
}
.cta-btn {
    position: absolute;
    width: min(44%, 628px);
    height: auto;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .cta-btn {
        width: min(92%, 690px);
        top: 50%;
    }
 }
.cta-btn02 {
    position: absolute;
    width: min(44%, 628px);
    height: auto;
    top: 43%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .cta-btn02 {
        width: min(92%, 690px);
        top: 45%;
    }
 }
/*------------------------------------------------------------
menu
------------------------------------------------------------*/
.menu {
    position: relative;
}
.plan-area {
    position: absolute;
    display: flex;
    width: min(71%, 1028px);
    top: 71%;
    left: 50.5%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .plan-area {
        position: absolute;
        width: 240px;
        height: 450px;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
    }
}
.plan01, .plan02, .plan03 {
    position: absolute;
    top: 0%;
    color: #e7756b;
    font-family: "shippori-mincho", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* 72px-39px */
    font-size: clamp(2.438rem, 0.08rem + 4.911vw, 4.5rem);
    letter-spacing: -3px;
}
@media (max-width: 767px) {
    .plan01, .plan02, .plan03 {
        font-size: 50px;
    }
}
.plan01 {
    left: 10%;
}
.plan02 {
    left: 43.5%;
}
.plan03 {
    left: 76.5%;
}
@media (max-width: 767px) {
    .plan01 {
        top: 3%;
        left: 35%;
    }
    .plan02 {
        top: 42.5%;
        left: 35%;
    }
    .plan03 {
        top: 83%;
        left: 32%;
    }
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;
    display: flex;
    margin-inline: auto;
}
.access__container {
    position: absolute;
    width: min(69%, 1000px);
    top: 21%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .access__container {
        width: min(92%, 688px);
        top: 12.5%;
    }
 }

.access__box {
    display: flex;
    width: 100%;
    justify-content: left;
    margin-top: 7%;
}
@media (max-width: 767px) {
    .access__box {
        display: block;
        margin-top: 13%;
    }
 }

.access__box-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
}
@media (max-width: 767px) {
    .access__box-table {

    }
}

.access__box-table th,
.access__box-table td {
  line-height: 1.5;
}
@media (max-width: 767px) {
    .access__box-table th {
    padding: 0.4rem 0;
    }
    .access__box-table td {
    padding: 1rem 0 1.8rem;
    }
}
.access__box-table th {
    width: 25%;
    background-color: #b9a591;
    /* 40px-22px */
    font-size: clamp(1.375rem, 0.089rem + 2.679vw, 2.5rem);
    color: #fff;
    border: 5px #fff solid;
    text-align: center;
}
@media (max-width: 767px) {
    .access__box-table th {
        display: block;
        width: 100%;
        border: none;
        font-size: 17px;
    }
}
.access__box-table td {
    /* 180px-90px */
    height: clamp(5.625rem, -0.804rem + 13.393vw, 11.25rem);
    /* 40px-23px */
    font-size: clamp(1.438rem, 0.223rem + 2.53vw, 2.5rem);
    text-align: left;
    padding-left: 5%;
    padding-right: 0;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .access__box-table td {
        display: block;
        width: 100%;
        border: none;
        text-align: center;
        font-size: 20px;
        padding-left: 0;
        height: auto;

    }
}
.access__box-table td .text {
    /* 28px-15px */
    font-size: clamp(0.938rem, 0.009rem + 1.935vw, 1.75rem);
    text-align: left;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .access__box-table td .text {
        text-align: left;
        font-size: 14px;
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 4rem 0;
    background-color: #362b20;
    color: #ffffff;
}
@media (max-width: 767px) {
    .footer {
        padding: 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;
        /* 30px-13px */
        font-size: clamp(0.813rem, -0.402rem + 2.53vw, 1.875rem);

        &:hover {
            color: lightgray;
        }
    }
}
@media (max-width: 767px) {
    .footer__nav a {
        font-size: 10px!important;
    }
 }

.copyright__p {
    text-align: center;
    /* font-weight: 700; */
    letter-spacing: 0.6px;
    /* 35px-13px */
    font-size: clamp(0.813rem, -0.402rem + 2.53vw, 1.875rem);
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 1rem;
        font-size: 10px;
    }
 }