:root {
    --pink: #EB69AA;
    --light-pink: #FAF0F3;
    --light-yellow: #FFFCF8;
    --light-brown: #EDE2D7;
    --light-gray: #EDEDED;
    --white: #fff;
    --black: #333;

    --font-gochic: "Noto Sans JP", sans-serif;
    --font-min: "Shippori Mincho", serif;
    --font-en: "Quicksand", "Noto Sans JP", sans-serif;
}

/* rem設定
1920~   1rem = 10px
1920 - 430   1rem = vwに連動〜下限あり
430以下   1rem = 10px で連動
 */

html {
    /* エラーメッセージが出ないためスムーススクロールはJSで */
    /* scroll-behavior: smooth; */
    color: var(--black);
    font-size: 10px;
}

/* 暫定で1000 */
@media screen and (max-width: 1920px) {

    /* vwと連動 */
    /* 1.8rem = 実質最小値14.4px */
    html {
        font-size: max(8px, calc(100vw * 10 / 1920));
    }
}

/* @media screen and (max-width: 640px) {
    html {
        font-size: 8px;
    }
} */

@media screen and (max-width: 430px) {
    html {
        font-size: calc(100vw * 10 / 430);
    }
}


body {
    font-family: var(--font-gochic);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.8;
    background: var(--white);
}

@media screen and (max-width: 640px) {
    body {
        font-size: 14px;
    }
}


img {
    vertical-align: middle;
}

figcaption {
    line-height: 1.5;
    margin-top: 0.4em;
}

a {
    color: var(--pink);
    text-decoration: underline;
}

::placeholder {
    color: #b5b5b5;
}

@media (hover: hover) and (pointer: fine) {

    /* PCのみホバー */
    .hoverable {
        transition: opacity 0.3s ease-out;
    }

    .hoverable:hover {
        opacity: 0.7;
        cursor: pointer;
        text-decoration: none;
    }
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.bg-white {
    background-color: var(--white);
}

.bg-light-pink {
    background-color: var(--light-pink);
}

.bg-light-yellow {
    background-color: var(--light-yellow);
}

.bg-light-brown {
    background-color: var(--light-brown);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-indent {
    padding-left: 1em;
    text-indent: -1em;
}

.no-wrap {
    white-space: nowrap;
}

.underline {
    text-decoration: underline;
    text-underline-offset: .2em;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

a.tap-tel {
    text-decoration: none;
    color: #333;
}

.d-none {
    display: none !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

@media screen and (min-width: 640px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media (width < 1366px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }
}

@media (width < 1024px) {

    .d-md-none {
        display: none !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }

}

@media (width < 640px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }
}

.container-fluid {
    padding-inline: 6vw;
    margin-inline: auto;
    overflow-x: clip;
}

.container-sm {
    width: min(88vw, 1270px);
    margin-inline: auto;
}

.container-md {
    width: min(88vw, 1440px);
    margin-inline: auto;
}

.container-lg {
    width: min(88vw, 1520px);
    margin-inline: auto;
}

.container {
    width: min(88vw, 1720px);
    margin-inline: auto;
}


.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-small {
    font-size: 80%;
}

.text-big {
    font-size: 130%;
}

.weight-400 {
    font-weight: 400  !important;
}

.text-pink {
    color: var(--pink);
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.radius {
    border-radius: 3rem;
}

.w80p {
    width: 80%;
    
}

@media (width < 640px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-left {
        text-align: left !important;
    }
}

@media (width < 1024px) {

    .text-md-left {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-right {
        text-align: right !important;
    }

}

@media (width < 1366px) {

    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

}

.no-pt {
    padding-top: 0 !important;
}

.no-pb {
    padding-bottom: 0 !important;
}





/* typography
----------------------- */

.font-min {
    font-family: var(--font-min);
}

.section-title {
    font-family: var(--font-en);
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.6em;
    display: inline-block;
    position: relative;
}

.section-title::before {
    content: '';
    display: block;
    width: 100vw;
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: 1px solid #333;
}

.subsection-title {
    font-size: 4rem;
    padding-bottom: 0.2em;
    border-bottom: 1px solid #333;
}

@media screen and (max-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }

    .subsection-title {
        font-size: 2rem;
    }

}


/* ボタン */

.main-btn-wrap {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
}

.main-btn-wrap__left {
    justify-content: flex-start;
}

.main-btn-wrap__right {
    justify-content: flex-end;
}

.main-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    position: relative;
    min-width: 10em;
    letter-spacing: 0;
    color: var(--white);
    background-color: var(--pink);
    border: none;
    cursor: pointer;
    border-radius: 1em;
    font-size: 2.4rem;
    position: relative;
	padding: 0.5em 1.6em;
}

.main-btn.external::after {
  content: '';
  display: inline-block;
  width: .8em; 
  height: .8em;
  background: url(../images/icon-external.svg) no-repeat center / contain;
}


.btn-top-text {
    margin-top: 3em;
    color: var(--pink);
    text-align: center;
    font-size: 2rem;
    display: block;
}

.btn-top-text+.main-btn-wrap {
    margin-top: 1em;
}

@media screen and (max-width: 640px) {
    .main-btn {
        font-size: 1.8rem;
    }

    .btn-top-text {
        font-size: 15px;
    }
}



/* layout
----------------------- */

.page-section {
    padding-block: 12rem;
    position: relative;
}

.page-section + .page-section:not(.border-top) {
    padding-top: 0;
}

.page-section.border-top {
    border-top: 1px solid #707070;
}

@media screen and (max-width: 640px) {
    .page-section {
        padding-block: 6rem;
    }

}


.row-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
}

.row-2col.gap-s {
    gap: 3rem;
}

@media screen and (max-width: 640px) {
    .row-2col,
        .row-2col.gap-s {
        grid-template-columns: 1fr;
        gap: 8vw;
    }
}


/* .row-2col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6%;
}
.row-2col > * {
    width: calc(50% - 3%);
}

@media screen and (max-width: 640px) {
.row-2col {
    gap: 3rem;
}
    .row-2col > * {
        width: 100%;
    }
} */




/* other parts
----------------------- */

.column-box {
    background: #fff;
    border-radius: 2em;
    padding: 2em;
    margin-top: 1em;
}

.number-list {
    color: var(--pink);
    list-style: none;
}

.number-list li+li {
    margin-top: .6em;
}


/* animation
----------------------- */

.animation--curtain.is-show:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background: var(--pink);
}

.animation--curtain {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    position: relative;
}

.animation--curtain:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background: var(--pink);
    height: 100%;
}

.js-animation.animation--fadein.is-show {
    opacity: 1;
    transform: translateY(0);
}

.js-animation.animation--fadein {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
    transform: translateY(20px);
}

.js-animation.animation--scale.is-show {
    opacity: 1;
    animation: scale-anime .3s linear;
}

.js-animation.animation--scale {
    opacity: 0;
}

@keyframes scale-anime {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.js-animation.animation--slidein.is-show>* {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.js-animation.animation--slidein>* {
    position: relative;
    opacity: 0;
    clip-path: polygon(0% 0%, 1% 0%, 0% 100%, 1% 100%);
    transition: clip-path 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}



