

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(35%, 375px);
    /* --width__main-content: min(100%, 1440px); */
    --color__accent: #FF7BAC;
}

/* コンテンツ全体の調整 */
body {
    width: 35%;
    margin-inline: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    font-optical-sizing: auto;
    color: #1f2632;
    background-color: #fff;

    /* background-image: url(../images/bg.webp);
    background-size: contain;
    background-attachment: fixed; */

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}

/* スマホ向け */
@media (max-width: 767px) {
  body {
    width: 100%;
  }
}


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_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: minmax(0, 1fr) 40% minmax(0, 1fr);
}
@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: 30%;
    translate: 0 -50%;
}
.column__left__logo {
    width: 35%;
}
figure {
    margin: 0;
} */

/*------------------------------------------------------------
column right
------------------------------------------------------------*/
/* .column__right__content {
    display: grid;
    place-items: center;
    position: sticky;
    top: 55%;
    translate: 0 -50%;
}
.column__right__cta {
    position: relative;
    width: min(80%, 464px);
} */



/*------------------------------------------------------------
header
------------------------------------------------------------*/
/* .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1% 5% 2%;
  box-sizing: border-box;
}
.header__logo {
  flex: 0 0 12%;
}
.btn__header {
  flex: 0 0 65%;
  position: relative;
} */


/*------------------------------------------------------------
cta
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta__btn {
    position: absolute;
    width: 98%;
    top: 83%;
    left: 51%;
    transform: translateX(-50%);
}
.cta__btn01 {
    position: absolute;
    width: 98%;
    top: 64%;
    left: 51%;
    transform: translateX(-50%);
}
.cta__btn03 {
    position: absolute;
    width: 98%;
    top: 67%;
    left: 51%;
    transform: translateX(-50%);
}

/*------------------------------------------------------------
monitor
------------------------------------------------------------*/
.monitor {
    position: relative;
}
.monitor-price {
    position: absolute;
    top: 56.5%;
    left: 42%;
    color: #df2e48;
    /* 80-45px */
    font-size: clamp(2.813rem, 0.313rem + 5.208vw, 5rem);
    font-family: "shippori-mincho", sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -3px;
}
@media (max-width: 767px) {
    .monitor-price {
        /* 120-53px */
        font-size: clamp(3.313rem, 0.315rem + 14.989vw, 7.5rem);
    }
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access__title {
    width: 39%;
    padding-top: 10%;
    margin: 0 auto;

}
.access__photo {
    width: 92%;
    padding-top: 5%;
    margin: 0 auto;
}

.access__map {
    width: 92%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    padding-top: 5%;
    margin: 0 auto;
}
.map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.access__inner {
    width: 92%;
    padding: 2% 0 13% 0;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: -0.7px;
}
.access__list {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-bottom: dotted 1px #1f2632;
    padding-bottom: 3%;
}
.access__term {
    width: 24%;
    padding-top: 5%;
    /* 19-11px */
    font-size: clamp(0.688rem, 0.116rem + 1.19vw, 1.188rem);
    font-weight: 700;
    color: #3684cb;
}
.access__desc {
    padding-top: 5%;
    margin: 0;
    /* 19-11px */
    font-size: clamp(0.688rem, 0.116rem + 1.19vw, 1.188rem);
    font-weight: 400;
    line-height: 1.4;
}
.access__tel {
    color: inherit;
    text-decoration: none;
    /* 19-11px */
    font-size: clamp(0.688rem, 0.116rem + 1.19vw, 1.188rem);
}


@media (max-width: 767px) {
    .access__term {
        /* 27-12px */
        font-size: clamp(0.75rem, 0.079rem + 3.356vw, 1.688rem);
    }
    .access__desc {
        /* 27-12px */
        font-size: clamp(0.75rem, 0.079rem + 3.356vw, 1.688rem);
    }
    .access__tel {
        /* 27-12px */
        font-size: clamp(0.75rem, 0.079rem + 3.356vw, 1.688rem);
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.4rem 0 0.2em;
    background: linear-gradient(to bottom, #51a1ff, #15c1de);
    color: #ffffff;
    font-style: normal;
}

.footer__nav {

    font-size: clamp(0.688rem, 0.616rem + 0.357vw, 0.938rem);
    /* letter-spacing: 0.8px; */
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 1em 0 0em;
        padding: 0;

        li:not(:last-child)::after {
            content: "　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        /* 10px */
        font-size: 10px;
        font-weight: 500;

        &:hover {
            color: lightgray;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin: -2% 0 6% 0;
    /* 10px */
    font-size: 10px;
}
@media (max-width: 767px) {
    .footer {
        padding: 0.7rem 0 1rem;
    }

    .footer__nav {
        a {
            /* 10px */
            font-size: 10px;
        }
    }
    .copyright__p {
        /* 10px */
        font-size: 10px;
    }
}

.follow__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

