@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@500&display=swap');

*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    --textcolor: hsl(0, 0%, 33%);
    --basecolor: hsl(0, 39%, 94%);
    --accentcolor: hsl(27, 50%, 93%);

}
html{
    font-size: 62.5%;
}
body{
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--textcolor);
    border: 2rem solid #fff;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
}
body::after{
    content: '';
    position: fixed;
    bottom: 0;
    width: 100%;
    border-bottom: 2rem solid #fff;
    z-index: 99;
    transition: z-index .3s;
}
body::before{
    content: '';
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 2rem solid #fff;
    z-index: 99;
    transition: z-index .3s;
}
body.open::before,
body.open::after{
    z-index: 2;
}
small{
    font-size: inherit;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}
.wrap{
    max-width: 100rem;
    margin: auto;
    box-sizing: content-box;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 12rem;
    padding-bottom: 12rem;
}
.sp{
    display: none;
}
@media (max-width: 767px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    body{
        border: none;
        font-size: 1.4rem;
    }
    body::before,
    body::after{
        display: none;
    }
    .wrap{
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

/* title */
.title{
    text-align: center;
    font-size: 3.2rem;
}
.title span{
    background: linear-gradient(0deg, transparent 15%, rgb(244, 226, 225) 0, rgb(244,226,225) 50%, transparent 0);
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (max-width: 767px){
    .title{
        font-size: 2rem;
    }
    .title span{
        padding: 0;
    }
}

/* decoration */
.decoration{
    position: relative;
    font-family: 'Dancing Script', cursive;
    color: #e6bc80;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 500;
}
.decoration.circle{
    text-align: center;
    margin-bottom: 6.4rem;
}
.decoration span{
    position: relative;
    z-index: 3;
}
.decoration.circle::before{
    content: '';
    border: .4rem dotted #f4e6e6;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    width: 8.4rem;
    height: 8.4rem;
}

/* contact-area */
.contact-area.bg--b{
    background: #fafafa;
}
.contact-area .decoration.circle{
    margin-bottom: 0;
}
.contact-area .form,
.contact-area .note-area{
    margin: auto;
    max-width: 70rem;
}
.contact-area .note-area{
    text-align: center;
    font-size: 1.6rem;
}
.contact-area .note-area p + p{
    margin-top: 2em;
}
.contact-area .label,
.contact-area label{
    cursor: pointer;
    display: flex;
    align-items: center;
}
.contact-area .label > div{
    flex: 1;
}
.contact-area .label > div.my_left,
.contact-area label span{
    flex: 0 0 14rem;
}
.contact-area .email{
    width: 100%;
    outline: none;
    font: inherit;
    background: transparent;
    border: none;
    /* border-bottom: 2px solid #d4d4d4; */
    background: #fdd;
    flex: 1;
    padding: 0.8rem 1rem;
}
.contact-area .btn-area{
    margin: 8rem auto 6.4rem;
}
.contact-area .btn-area .btn{
    cursor: pointer;
    border: none;
    /* background: #e5c7c5; */
    background: #c65c84;
    color: #fff;
    align-items: center;
    display: flex;
    margin: auto;
    max-width: 42rem;
    width: 100%;
    padding: 1.2rem .8rem;
    font-size: 2.4rem;
    border-radius: 4rem;
    justify-content: center;
    column-gap: 1.2rem;
    padding-left: 1.6rem;
    font-weight: 700;
    transition: opacity .3s;
}
.contact-area .btn-area .btn:hover{
    opacity: .6;
}
.contact-area .btn-area .btn .md.hydrated{
    font-size: 3.2rem;
}

.contact-area.bg--img1{
    background: url(./img/bg_1.jpg);
    background-position: left bottom;
    background-size: 18vw;
    background-repeat: no-repeat;
}
.contact-area .border{
    border: .2rem solid #e6bc80;
    border-top: none;
    padding-bottom: 6.4rem;
}
.contact-area .adjust{
    margin-top: 1.4rem;
    position: relative;
    top: -1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6.4rem;
    column-gap: 2rem;
    margin-left: -.1rem;
    margin-right: -.1rem;
}
.contact-area .adjust::before,
.contact-area .adjust::after{
    content: '';
    display: block;
    flex: 1;
    border-top: .2rem solid #e6bc80;
}
.contact-area .border > *:not(.adjust){
    padding: 0 2rem;
}
@media(max-width: 767px){
    .contact-area .btn-area .btn{
        font-size: 1.8rem;
    }
    .contact-area .btn-area .btn .md.hydrated {
        font-size: 2.4rem;
    }
    .contact-area .label,
    .contact-area label{
        display: block;
    }
    .contact-area.bg--img1{
        background-size: 18rem;
    }
    .contact-area .note-area{
        font-size: 1.4rem;
    }
}

/* section1 */
.section1{
    background: #f9f4f3;
}
.section1 .decoration.circle::before{
    border-color: #fff;
}
.section1 .section-top-img{
    margin: 8rem auto 12rem;
}
.section1 .section-top-img img{
    margin: auto;
}
.section1 .flex-area{
    counter-reset: number;
}
.section1 .flex-area .item{
    display: flex;
    column-gap: clamp(4rem, 10%, 10rem);
    align-items: center;
    line-height: 2;
}
.section1 .flex-area .item + .item{
    margin-top: 22rem;
}
.section1 .flex-area .item.adjust + .item{
    margin-top: 12rem;
}
.section1 .flex-area .item:nth-of-type(odd) .img-area{
    order: -1;
}
.section1 .flex-area .item .img-area{
    flex: 0 1 50rem;
    position: relative;
}
.section1 .flex-area .item .img-area::after{
    content: '';
    position: absolute;
    display: block;
    padding-bottom: 54.2%;
    width: 100%;
    max-width: clamp(32rem, 94%, 44.8rem);
    background: var(--accentcolor);
}
.section1 .flex-area .item:nth-of-type(even) .img-area::after{
    background: var(--basecolor);
}
.section1 .flex-area .item:nth-of-type(1) .img-area::after{
    right: -20rem;
    bottom: -12rem;
}
.section1 .flex-area .item:nth-of-type(2) .img-area::after{
    left: -6rem;
    bottom: 45%;
    transform: translateY(50%);
}
.section1 .flex-area .item:nth-of-type(3) .img-area::after{
    right: -20rem;
    bottom: -9rem;
}
.section1 .flex-area .item:nth-of-type(4) .img-area::after{
    left: -8rem;
    bottom: -8rem;
}
.section1 .flex-area .item:nth-of-type(5) .img-area::after{
    right: -20rem;
    bottom: -12rem;
}
.section1 .flex-area .item:nth-of-type(6) .img-area::after{
    left: -8em;
    bottom: -8rem;
}
.section1 .flex-area .item:nth-of-type(7) .img-area::after{
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
}
.section1 .flex-area .item .img-area > .inner{
    position: relative;
    z-index: 2;
}
.section1 .flex-area .item .img-area > .inner + .inner{
    margin-top: 2rem;
}
.section1 .flex-area .item .img-area > .inner img{
    margin-left: auto;
    box-shadow: 0 0 0.6rem rgba(0, 0, 0, .25);
}
.section1 .flex-area .item .img-area > .inner img.left{
    margin-left: 0;
}
.section1 .flex-area .item .text-area{
    flex: 0 1 42rem;
    position: relative;
}
.section1 .flex-area .item .text-area > *{
    position: relative;
    z-index: 2;
}
.section1 .flex-area .item .text-area::before{
    counter-increment: number;
    content: '0' counter(number);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(10rem, 14vw, 18rem);
    position: absolute;
    top: -8rem;
    line-height: 1;
    right: 2rem;
    color: var(--accentcolor);
}
.section1 .flex-area .item:nth-of-type(even) .text-area::before{
    color: var(--basecolor);
    opacity: 1;
}
.section1 .flex-area .item .decoration{
    font-size: 2rem;
}
.section1 .flex-area .item .text-area h2{
    margin-bottom: 4.8rem;
    font-size: 2.4rem;
}
.section1 .flex-area .item .text-area p + p{
    margin-top: 2em;
}
@media (max-width: 767px){
    .section1 .flex-area .item{
        display: block;
    }
    .section1 .flex-area .item .img-area::after{
        display: none;
    }
    .section1 .flex-area .item + .item{
        margin-top: 12rem;
    }
    .section1 .flex-area .item .text-area::before{
        top: -2rem;
    }
    .section1 .flex-area .item .text-area h2 {
        margin-bottom: 3.2rem;
    }
    .section1 .flex-area .item .img-area{
        margin-top: 4rem;
    }
    .section1 .flex-area .item .img-area > .inner img{
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .section1 .flex-area .item .img-area img{
        width: 100%;
    }
}

/* section2 */
.section2 .title{
    margin-bottom: 6.4rem;
}
.section2.bg--img2{
    background: url(./img/bg_2.jpg);
    background-position: right top;
    background-size: 18vw;
    background-repeat: no-repeat;
}
section.section2 .sp .img-area {
    max-width: 24rem;
    margin: auto;
}
section.section2 .sp .img-area + .img-area {
    margin-top: 2rem;
}
section.section2 .sp .img-area.person{
    margin-bottom: 3.2rem;
}
section.section2 .sp .img-area:last-of-type{
    margin-bottom: 0 !important;
}
@media(max-width: 767px){
    .section2.bg--img2{
        background-size: 18rem;
    }
}

/* section3 */
.section3{
    background: #f9f4f3;
}
.section3 .decoration.circle::before{
    border-color: #fff;
}
.section3 .title{
    margin-bottom: 6.4rem;
}
.section3 .flex-area{
    display: flex;
    column-gap: 8rem;
    align-items: flex-end;
    position: relative;
}
.section3 .flex-area .text-area{
    position: relative;
    flex: 0 0 27rem;
}
.section3 .flex-area .text-area p,
.section3 .flex-area .img-area{
    position: relative;
    z-index: 3;
}
.section3 .flex-area .text-area::before{
    content: '';
    position: absolute;
    right: 0;
    padding-bottom: 92%;
    width: 44.8rem;
    background: #f5e8e8;
    top: -10rem;
}
.section3 .flex-area .text-area .name{
    font-size: 2.4rem;
}
.section3 .flex-area .left{
    flex: 0 0 27rem;
}
.section3 .profile-flex,
.section3 .text{
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}
.section3 .profile-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12rem;
    margin-bottom: 8rem;
    padding-left: 1.5rem;
}
.section3 .profile-flex .left{
    border-left: 0.2rem solid #e5c7c5;
}
.section3 .profile-flex .left li{
    padding-left: 4rem;
    position: relative;
}
.section3 .profile-flex .left li::before{
    content: '';
    width: 3rem;
    height: 3rem;
    background: #e5c7c5;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.section3 .profile-flex .left li + li{
    margin-top: 4rem;
}
.section3 .profile-flex .right li{
    background: #f6ece4;
    padding: 0.8rem 2rem 0.8rem 4rem;
    position: relative;
}
.section3 .profile-flex .right li::before{
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}
.section3 .profile-flex .right li + li{
    margin-top: 2rem;
}
.section3 .text p + p{
    margin-top: 2em;
}
.section3 .flex-area .text-area .absolute{
    position: absolute;
    right: -3rem;
    font-size: 6rem;
    bottom: -2rem;
    color: #fff;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}
@media(max-width: 767px){
    .section3 .flex-area{
        display: block;
    }
    .section3 .profile-flex{
        display: block;
    }
    .section3 .profile-flex .right{
        margin-left: -2rem;
        margin-top: 4rem;
    }
    .section3 .flex-area .text-area {
        margin-top: 1.2rem;
    }
    .section3 .flex-area .text-area::before{
        padding-bottom: 22rem;
        left: -5%;
        right: auto;
        width: 85%;
    }
    .section3 .flex-area .img-area img{
        margin: auto;
    }
    .section3 .flex-area .text-area .absolute{
        right: 2rem;
    }
}

/* section4 */
.section4.bg--img3{
    background: url(./img/bg_3.jpg);
    background-position: left top;
    background-size: 22vw;
    background-repeat: no-repeat;
}
.section4 .title{
    margin-bottom: 6.4rem;
}
.section4 .img-area img{
    margin: auto;
}
@media(max-width: 767px){
    .section4.bg--img3 {
        background-size: 22rem;   
    }
}
/* footer */
.footer{
    background: #e5c7c5;
    padding: 5.2rem 0;
}
.footer .footer-wrap{
    max-width: 100rem;
    margin: auto;
    box-sizing: content-box;
    padding-left: 5%;
    padding-right: 5%;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
}
.footer .footer-wrap .right{
    display: flex;
    column-gap: 4rem;
}
.footer .footer-wrap .right p{
    cursor: pointer;
}
@media(max-width: 767px){
    .footer .footer-wrap{
        flex-direction: column-reverse;
    }
    .footer .footer-wrap .left{
        margin-top: 2rem;
    }
    .footer .footer-wrap .right{
        display: block;
    }
    .footer .footer-wrap .right > p + p{
        margin-top: .8rem;
    }
}

/* modal */
#modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
    z-index: 99;
}
#modal:not(.loading){
    display: none;
}
#modal.open{
    visibility: visible;
    opacity: 1;
}
#modal #layer{
    background: rgba(0,0,0,.8);
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
}
#modal .modalWrap{
    position: absolute;
    top:0;
    left:0;
    width:100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
#modal .modalWrap > *{
    z-index: 1000;
}
#modal .modalWrap .inner{
    width: 80vw;
    max-width: 80rem;
    max-height: 50rem;
    background: #e5c7c5;
    margin: auto auto 0;
    height: 100%;
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: 0 0 .5rem rgba(0,0,0,.3);
}
#modal .modalWrap > .inner > div{
    height: 100%;
}
#modal .modalWrap .textArea{
    background: #fff;
    padding: 2rem;
    height: calc(100% - 8rem);
    overflow-y: auto;
    font-size: 1.4rem;
}
#modal .modalWrap h1{
    text-align: center;
    color: #fff;
    padding: 3rem;
    font-size: 2rem;
    line-height: 1;
}
#modal .modalWrap .btn{
    background: #e5c7c5;
    color: #fff;
    width: 25rem;
    padding: 1rem;
    border-radius: .5rem;
    margin: 1.5rem auto auto;
    cursor: pointer;
    text-align: center;
}

#modal .top--paragraph{
    margin-bottom: 3rem;
}
#modal h2{
    line-height: 1;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
#modal h2:not(:first-of-type){
    margin-top: 3rem;
}
#modal .textArea td,
#modal .textArea th{
    padding: 1rem;
}
#modal .textArea tr{
    border: .1rem solid transparent;
}
#modal .textArea th{
    background: #e5c7c5;
    font-weight: 500;
    width: 27%;
    color: #fff;
}

#modal[data-id="modal__privacy"] #modal__law,
#modal[data-id="modal__law"] #modal__privacy{
    display: none;
}
#modal[data-id="modal__privacy"] #modal__privacy,
#modal[data-id="modal__law"] #modal__law{
    display: block
}
@media(max-width: 767px){
    #modal .modalWrap h1{
        font-size: 1.6rem;
        padding: 2rem;
    }
    #modal h2{
        font-size: 1.4rem;
    }
    #modal .modalWrap .textArea{
        height: calc(100% - 5.6rem);
    }
    #modal .modalWrap .inner{
        max-height: 26rem;
        width: 90vw;
    }
    #modal .modalWrap .textArea{
        font-size: 1.2rem;
        padding: 2rem 1rem;
    }
    #modal .modalWrap .btn{
        margin-top: 1rem;
        padding: 1rem;
    }
    #modal .textArea td,
    #modal .textArea th{
        display: block;
    }
    #modal .textArea th{
        width: 100%;
    }
    #modal .textArea td{
        border: none;
    }
}
@media(max-width: 567px){
    #modal .modalWrap .inner{
        max-height: 33rem;
    }
}