@charset "utf-8";

/* =====================================
common
========================================*/
:root {
    --corporateGreen:#22BFA1;
    --darkGreen:#157361;
    --navy:#205072;
    --orange:#FE7A15;
    --yellow:#FBD90F;
    --black:#191919;
    --white:#ffffff;

}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", serif;
    font-style: normal;
    font-size: 1.6rem;
    color: var(--black);
    background-color:var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section--title {
    color: var(--darkGreen);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.section--title::after {
    content: '';
    display: block;
    width: 60px;
    height: 7.5px;
    background: linear-gradient(90deg, #22BFA1 0%, #349583 100%);
    margin: 18px auto 30px;
}

.section--title2 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.section--title2::after {
    content: '';
    display: block;
    width: 60px;
    height: 7.5px;
    background: linear-gradient(90deg, #ffffff 0%, #CFF4D2 100%);
    margin: 18px auto 30px;
}

.contact__btn {
    max-width: 262px;
    aspect-ratio: 262 / 49;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--white);
    text-align: center;
    font-size:min(5.3vw,20px);
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(90deg, #FBD90F 0%, #FE7A15 100%);
}

.send__btn {
    width: 262px;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #22BFA1 0%, #349583 100%);
}

.btn:hover {
    opacity: 0.8;
}

picture {
    display: inline-block;
}

#scales {
    -webkit-appearance: checkbox;
    width: 15px;
    height: 15px;
}

/* pc common */
@media screen and (min-width:769px) {
    .section {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    
    .section--title {
        font-size: 3.2rem;
    }
    
    .section--title::after {
        width: 80px;
        height: 10px;
        margin: 25px auto 30px;
    }

    .section--title2 {
        font-size: 3.2rem;

    }
    
    .section--title2::after {
        width: 80px;
        height: 10px;
        margin: 25px auto 30px;
    }

    .spBr {
        display: none;
    }
    
}
/* pc end */

/* =====================================
header
========================================*/
.header {
    width: 100%;
    display: flex;
    height: 79px;
    padding: 15px 5%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--white);
}

.header__logo img {
    max-width:200px;
    aspect-ratio: 556 / 101;
}


/* nav 初期表示 */
.header__nav {
    display: block;
    background: linear-gradient(180deg, #22BFA1 0%, #349583 128.36%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate(-100%);
    transition: all .5s ease-out;
}

.header__nav.active {
    transform: translateX(0);
}

.header__navlist {
    color: var(--white);
    font-weight: 700;
    width: 265px;
    text-align: center;
    margin: 26% auto 0;
}

.header__item {
    color: var(--white);
    font-weight: 700;
}

.header__item::after{
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--white);
    margin: 24px auto;
}

.contact__btn {
    display: block;
    margin: 0 auto;
}

.menu {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    counter-increment: item;
    z-index: 200;
  }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 27.6px;
  height: 14.8px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.4px;
  background-color: var(--corporateGreen);
  border-radius: 15px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0px;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}



#menu01.closebtn span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
  background-color: var(--white);
}
#menu01.closebtn span:nth-of-type(2) {
  transform: translateY(-5px) rotate(45deg);
  background-color: var(--white);
}


@media screen and (min-width:769px) {
    .header {
        width: 100%;
        display: flex;
        height: 79px;
        padding: 25px 5%;
        justify-content: space-between;
        align-items: center;
    }

    .header__nav {
        transform: translateX(0);
        display: flex;
        background: transparent;
        width: 100%;
        height: 96px;
        position: static;
        align-items: center;
    }

    .header__navlist {
        display: flex;
        gap: 8%;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        justify-content: flex-end;
        align-items: center;
    }

    .header__item {
        color: var(--black);
        font-weight: 400;
    }

    .header__item::after {
        display: none;
    }

    .header__btn {
        margin-left: 4%;
        width: 100%;
    }

    .menu {
        display: none;
    }
}

@media screen and (min-width:769px) and (max-width:1200px) {
    /* nav 初期表示 */
.header__nav {
    display: block;
    background: linear-gradient(180deg, #22BFA1 0%, #349583 128.36%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate(-100%);
    transition: all .5s ease-out;
}

.header__nav.active {
    transform: translateX(0);
}

.header__navlist {
    display: block;
    color: var(--white);
    font-weight: 700;
    width: 265px;
    text-align: center;
    margin: 26% auto 0;
}

.header__item {
    color: var(--white);
    font-weight: 700;
}

.header__item::after{
    display: block;
}

.contact__btn {
    display: block;
    margin: 0 auto;
}

.menu {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    counter-increment: item;
    z-index: 200;
    display: block;
  }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 27.6px;
  height: 14.8px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.4px;
  background-color: var(--corporateGreen);
  border-radius: 15px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0px;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}



#menu01.closebtn span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
  background-color: var(--white);
}
#menu01.closebtn span:nth-of-type(2) {
  transform: translateY(-5px) rotate(45deg);
  background-color: var(--white);
}

}

/* =============================================
main
================================================ */
.mainImg_box {
    position: relative;
}

.mainImg {
    margin-top: 79px;
}

.mainImg__btn-box {
    width: 64%;
    position: absolute;
    bottom: 20.5%;
    left: 4.2%;
}

.mainImg__btn {
    aspect-ratio: 262 / 49;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--white);
    text-align: center;
    font-size: 3.8vw;
    font-weight: 700;
    width: 100%;
    background: linear-gradient(90deg, #FBD90F 0%, #FE7A15 100%);
    position: relative;
}

.mainImg__btn a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translateY(-50%) translateX(-50%);
}

@media screen and (min-width:769px) {
    .mainImg__btn-box {
        width: 28%;
        bottom: 17.5%;
        left: 50%;
        transform: translatex(-50%);
    }

    .mainImg__btn {
        font-size: 2vw;
    }

}



/* =============================================
section--reccomend
================================================ */
.reccomend__item {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.reccomend__list {
    display: block;
    padding: 0 19.8%;
}

.reccomend__txt {
    color: var(--navy);
    font-weight: 700;
    text-align: center;
    margin-top: 5px;
}

@media screen and (min-width:769px ){
    .reccomend__list {
        display: flex;
        padding: 0 3%;
        max-width:1190px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .reccomend__item {
        max-width: 384px;
    }

    .reccomend__txt {
        font-size: 2.2rem;
    }
    
    .reccomend__txt span {
        white-space: pre;
    }
}

/* =============================================
section--point
================================================ */
.point__list {
    padding: 0 5%;
}

.point__item {
    width: 100%;
    max-width: 538px;
    margin: 0 auto;
}

.point__title {
    display: flex;
    gap: 2%;
    margin-bottom: 10px;
}



.title__number {
    position: relative;
    font-size: 3.4rem;
    font-weight: 700;
    line-height:1.16;
    font-family: Montserrat;
    text-align: center;
    text-shadow:2px 2px 2px #D9D9D9;
    
}

.number01::before {
    position: absolute;
    content: "01";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(0,0,0,0);
    background: linear-gradient(180deg, #205072 0%, #329D9C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.number02::before {
    position: absolute;
    content: "02";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(0,0,0,0);
    background: linear-gradient(180deg, #205072 0%, #329D9C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.number03::before {
    position: absolute;
    content: "03";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(0,0,0,0);
    background: linear-gradient(180deg, #205072 0%, #329D9C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.number04::before {
    position: absolute;
    content: "04";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(0,0,0,0);
    background: linear-gradient(180deg, #205072 0%, #329D9C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.title__txt {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.4;
    font-size: 2.1rem;
}

.title__txt span {
    white-space: pre;
}

.point__img {
    width: 100%;
    margin: 20px auto 60px;
}

.point__link {
    color: var(--corporateGreen);
    border-bottom: 1px solid var(--corporateGreen);
}

.conversion__content {
    background-color: #EAFDEC;
    padding: 30px;
}

.conversion__txt {
    color: var(--navy);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn__txt {
    color: var(--navy);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn__txt::before {
    content: '';
    display: inline-block;
    background-color: var(--navy);
    width: 28px;
    height: 2px;
    margin-bottom: 5px;
    transform: rotate(45deg);
}

.btn__txt::after {
    content: '';
    display: inline-block;
    background-color: var(--navy);
    width: 28px;
    height: 2px;
    margin-bottom: 5px;
    transform: rotate(-45deg);
}



.point__img1 {
    width: 100%;
    position: relative;
}

.modal-open {
    font-size: 14px;
    color: var(--corporateGreen);
    border-bottom: 1px solid var(--corporateGreen);
    position: absolute;
    bottom: 21.6%;
    right: 0;
    cursor: pointer;
}

.modal-open::after {
    content: '';
    display: inline-block;
    background-image: url(../image/orange-arrow.png);
    width: 10px;
    height: 10px;
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-92deg);
    margin: 0 5px;

}

.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 700px;
    width: 95%;
}

.modal-content {
    background-color: var(--white);
    text-align: left;
    padding: 30px 40px;
    border-radius: 45px;

}

.detail__title {
    color: var(--darkGreen);
    font-size: max(4.1vw,16px);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}



.detail__title span {
    white-space: pre;
}

.detail__item p {
    font-size: max(14px)
}

.detail__memory span {
    border-bottom: 1px solid var(--black);
}

.detail__item {
    display: flex;
    margin-bottom: 10px;
}





.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10%;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    background: rgba(21, 115, 97, 0.60);
}

.modal-container:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-close img{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -30px;
    width: 30px;
    height: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }

@media screen and (min-width:769px) {
    .point__list {
        display: block;
        margin: 90px auto 0;
    }

    .point__item {
        display: flex;
        gap: 2.6%;
        width: 100%;
        max-width: 1190px;
        justify-content: center;
        margin-bottom: 100px;
    }

    .title__number {
        font-size: min(5.9vw, 86px);
    }

    .title__txt {
        font-size: min(3.7vw, 54px);
    }

    .point__img {
        width: 34%;
    }
    
    .point__contents {
        width: 62%;
    }

    .point__txt {
        margin-left: 14.6%;
        font-size: 1.8rem;
    }

    .reverse {
        flex-flow: row-reverse;
    }

    .conversion__txt {
        font-size: 3.6rem;
    }

    .point__img1 {
        width: 34%;
        position: relative;
    }
    
    .point__img1 img {
        width: 100%;
    }

    .modal-open::after {
        content: '';
        display: inline-block;
        background-image: url(../image/orange-arrow.png);
        width: 10px;
        height: 10px;
        background-size:contain;
        background-position: center;
        background-repeat: no-repeat;
        transform: rotate(-92deg);
        margin: 0 5px;
    
    }

    .detail__title {
        color: var(--darkGreen);
        font-size: min(4.1vw,32px);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

    .modal-open {
        bottom: 22.8%;
    }

    
 
}


/* =============================================
section--plan
================================================ */
.section--plan {
    padding: 60px 5%;
    text-align: center;
    background:linear-gradient(180deg, #329D9C 5.26%, #2C7F8F 70.96%, #265F82 151.83%);
}

.plan__content {
    max-width: 500px;
    margin: 0 auto;
}

.plan__img1 {
    margin: 0 auto;
}

.plan__txt {
    color: var(--white);
    margin-bottom: 30px;
}

.plan__price {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 30px;
}

.plan__price::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../image/orange-arrow.png);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px auto;
}

.graph__txt {
    color:var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.graph__img {
    margin-bottom: 30px;
}

.plan__note {
    color: var(--white);
    font-size: 1.4rem;
    text-align: left;
    margin-top: 10px;
}

.plan__graph {
    margin-bottom: 90px;
}

@media screen and (min-width:769px) {
    .section--title2 {
        margin-bottom: 90px;
    }

    .plan__content {
        max-width: 1190px;
    }

    .plan__txt {
        font-size: 2.2rem;
        margin: 60px auto;
    }

    .plan__price {
        font-size: 3.2rem;
        margin: 60px auto;
    }

    .plan__graph {
        display: flex;
        align-items: center;
        margin: 0 auto 150px;
        justify-content: space-evenly;
    }

    .graph__img {
        width: 50%;
    }

    .graph__txt {
        font-size: min(2.8vw, 48px);
        text-align: left;
    }

 

    .section--plan {
        padding: 60px 5% 120px;
    }
    
}

/* =============================================
section--support
================================================ */
.section--support {
    padding:30px 5%;
}

.support__list {
    display: block;
    max-width: 500px;
    margin: 60px auto 0;
}

.support__item {
    padding: 27px;
    border-radius: 26.96px;
    background: #FFF;
    box-shadow: 0px 1.797px 6.291px 1.797px #D9D9D9;
    margin-bottom: 30px;
    aspect-ratio: 337 / 473;
}

.item__title {
    color: var(--darkGreen);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}

.item__img {
    width: 100%;
    margin: 17px auto;
}

.list__number {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: Montserrat;
    text-align: center;
    background: linear-gradient(180deg, #22BFA1 0%, #349583 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.list__title {
    display: flex;
    gap: 5px;
}

.list__subtitle {
    color: var(--darkGreen);
    font-size: 20px;
    font-weight: 700;
}


.list__item {
    margin-bottom: 18px;
}

@media screen and (min-width:769px) {
    .support__list {
        display: flex;
        max-width: 1190px;
        gap: 2%;
    }

    .section--support {
        padding: 60px 3%;
    }



    .support__list {
        margin: 90px auto 0;
    }
}

/* ================================================
section--flow
===================================================*/
.section--flow {
    background: linear-gradient(180deg, #329D9C -78.38%, #80C8B7 34.34%, #CFF4D2 149.2%);
    padding: 30px 5%;
    text-align: center;
    margin-top: 30px;
}

.flow__list {
    margin: 60px auto 0;
    width: 86.6%;
    max-width: 370px;
}

.flow__item {
    display: flex;
    align-items: center;
    gap: 10.8%;
    text-align: center;
    margin-bottom: 30px;
}


.flow__img {
    width: 41.3%;
    aspect-ratio: 1 / 1;
}

.flow__subtitle {
    color: var(--white);
    text-align: left;
    font-size: min(5.8vw, 22px);
    font-weight: 700;
}

@media screen and (min-width:769px) {
    .section--flow {
        padding: 60px 3% 120px;
    }
    .flow__list {
        margin: 90px auto 0;
        display: flex;
        gap:1.2% ;
        max-width: 1190px;
        width: 100%;
        align-items: center;;
    }

    
    .flow__item {
        display: block;
        margin-bottom: 0;
        aspect-ratio: 38 / 57;
    }

    .flow__img {
        width: 100%;
        max-width: 196px;
        margin-bottom: 15px;
    }

    .yellow-arrow {
        width: 2.9%;
        aspect-ratio: 1 / 1;
        transform: rotate(-92deg);
    }

    .flow__subtitle {
        font-size: min(1.5vw, 22px);
        text-align: center;
    }
}

/* ================================================
section--contact
===================================================*/
.section--contact {
    background-color: #F2F2F2;
}

.contactform {
    width: 89.8%;
    max-width: 538px;
    margin: 0 auto;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0px 2px 7px 2px #D9D9D9;
    padding: 60px 4.4%;
}

.contactform__item {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contactform__item span {
    color: var(--orange);
}

.form__item {
    border-radius: 7px;
    border: 2px solid #D9D9D9;
    background: var(--white);
    max-width:200px;
    height: 35px;
    padding: 7px 15px;
}

.form__item--textarea {
    max-width: 200px;
    height: 113px;
}

.contactform__item2 {
    display: block;
}

::placeholder {
    color: #D9D9D9;
}


.session__txt {
    margin-bottom: 5px;
}

.form__item--textarea2 {
    max-width: 476px;
    width: 100%;
    height: 113px;
    padding: 7px 20px;
    border-radius: 7px;
    border: 2px solid #D9D9D9;
    background: var(--white);
    margin: 5px auto 15px;
}

.send__btn {
    display: flex;
    margin: 0 auto;
}

.link {
    color:var(--corporateGreen);
    border-bottom: 1px solid var(--corporateGreen);
}

.pcBr {
    display: none;
}

.checkbox {
    margin: 0 auto 30px;
    text-align: center;
}

.message {
    color: var(--orange);
    text-align: center;
    margin: 15px auto;
    font-size: 1.4rem;
}

.txt2 span {
    color: var(--black);
}

@media screen and (min-width:769px) {
    .contactform {
        width: 68.4%;
        max-width: 986px;
        margin: 0 auto;
        border-radius: 60px;
        background: var(--white);
        padding: 60px 7.3%;
    }

    .form__item {
        width: 100%;
        max-width:350px;
        height: 35px;
    }

    .contactform__item2 {
        display:block;
    }

    .form__item--textarea2 {
        max-width: 1000px;
        width: 100%;
        height: 113px;
        padding: 7px 20px;
        border-radius: 7px;
        border: 2px solid #D9D9D9;
        background: var(--white);
        margin: 5px auto 30px;
    }

    .send__btn {
        text-align: center;
    }

    .form__item--textarea2 {
        margin: 0;
    }
    
    .pcBr {
        display: block;
    }

    .session__txt {
        display: block;
        width: 100%;
    }

    .txt2 span {
        white-space: pre;
        color: var(--black);
    }

    
}


/* ================================================
footer
===================================================*/

.footer__logo img {
    max-width:200px;
    aspect-ratio: 556 / 101;
}

footer {
    padding: 30px 5%;
}

.footer__txt {
    margin-top: 20px;

}

.footer__item {
    margin-bottom: 20px;
}

.copy {
    text-align: center;
}

@media screen and (min-width:769px) {
    .footer__list {
        display: flex;
        justify-content: space-between;
        margin-bottom: 60px;
    }

    .footer {
        padding: 30px 5%;
    }
}