@charset "utf-8";

body.noscroll{
    overflow: hidden;
}

.pagetop{
    cursor: pointer;
}

.pagetop-link {
    position: fixed;
    z-index: 9990;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 75px;
    height: 75px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #329593;
    border: solid 1px #329593;
    border-radius: 50%;
}

.pagetop-link span{
    display: block;
    width: 25px;
    height: 15px;
    clip-path: polygon(50% 0, 100% 100% , 0% 100% );
    background: #329593;
}

/*sp*/
@media screen and (max-width:599px){
    .pagetop-link {
        right: 10px;
        bottom: 10px;
        transform-origin: right bottom;
        transform: scale(0.75);
    }
}

/*=====================================
*フォント指定
=======================================*/
:root {
    --font-family-title: 游明朝, YuMincho, Hiragino Mincho ProN W3, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝, serif;
    --font-family-main: Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    --font-family-title-ja-change-main-en: 游明朝, YuMincho, Hiragino Mincho ProN W3, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, HG明朝E, ＭＳ Ｐ明朝, ＭＳ 明朝, serif;
    --text-color: #141e1e;
}

html,
body {
    font-family: var(--font-family-main);
    font-size: 62.5%;
    color: var(--text-color);
}

.recoleta {
    font-family: "Recoleta";
}

/*=====================================
*見出し
=======================================*/
.hd-area01 h2 {
    font-size: clamp(2.5rem, 2.08vw, 4.0rem);
    font-family: var(--font-family-title);
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0.05em;
}

.hd-area01 p.read-text {
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
}

/*sp*/
@media screen and (max-width:599px) {
    .hd-area01 p.read-text {
        text-align: start;
    }

    .hd-area01 h2 {
        font-size: 2.1rem;
        line-height: 1.5;
    }
}

/*見出し2*/
.hd-area02 {
    font-size: clamp(1.8rem, 1.04vw, 2.0rem);
    margin-bottom: calc((40 / 20) * 1.0em);
}

.hd-area02 h2 {
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.0;
}

.hd-area02 p {
    font-size: calc((45 / 20) * 1.0em);
    font-weight: 600;
    text-align: center;
}

.hd-area02 p.read-text {
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
}

/*sp*/
@media screen and (max-width:599px) {
    .hd-area01 p.read-text {
        text-align: start;
    }
}

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pc用
=======================================*/
@media screen and (max-width: 899px) {
    .pc {
        display: none;
    }
}

/*=====================================
  *pc以外
======================================*/
@media screen and (min-width: 900px) {
    .nopc {
        display: none;
    }
}

/*=====================================
  *sp以外
=======================================*/
@media screen and (max-width: 599px) {
    .nosp {
        display: none;
    }
}

/*=====================================
  *tablet_sp共通
=======================================*/
@media screen and (min-width: 900px) {
    .sp_tb {
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .sp_tb {
        display: inherit;
    }
}

/*=====================================
  *tablet用
=======================================*/
@media screen and (min-width: 900px) {
    .tb {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .tb {
        display: none;
    }
}

/*=====================================
  *sp用
=======================================*/
@media screen and (min-width: 600px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .sp {
        display: inherit;
    }
}