@charset "utf-8";
html {
    font-size: 18px;
}


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

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333;
    line-height: 1.6;
}


/*
=======================================
  loading
=======================================
*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center;
    color: #f48eb8!important;
}


/*
=======================================
  header
=======================================
*/


/* #header {
        background-color: #fefcf0;
        background-size: contain;
        width: 100vw;
        height: 900px;
        padding: 30px auto;
    }
    
    #header h1 {
        font-size: 6.8rem;
        letter-spacing: 0.048em;
        color: #f48eb8;
        position: absolute;
        top: 30%;
        left: -10%;
        font-weight: 900;
    }
    
    #header h1 .mo {
        color: #f9d93a;
    }
    
    #header h1 .chi {
        color: #8fb5e5;
    }
    
    #header h1 .ya {
        color: #bed55f;
    }
    
    #header h1 .no {
        font-size: 4rem;
        color: #ff9e7c;
    }
    
    #header h1 .sa {
        color: #fbb9c0;
    }
    
    #header h1 .bu {
        color: #77c8e5;
    }
    
    #header h1 .su {
        color: #ffc27b;
    }
    
    #header h1 .ku {
        color: #f98fa3;
    } */


/*
=======================================
  navi
=======================================
*/


/* #header {
        background: #fefcf0;
    } */

#header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: -2%;
    padding: 30px 50px 30px;
}


/* ------ 右navi ------*/

#header nav .nav_right {
    display: flex;
    justify-content: space-between;
}

#header nav li {
    width: 18vw;
    height: 67px;
    background: #f9d93a;
    border-radius: 50px;
    text-align: center;
    line-height: 67px;
    font-weight: 500;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header nav li img {
    padding-bottom: 5px;
    padding-right: 8px;
}

#header nav li a {
    color: #333
}

#header nav li:last-child {
    background: #f48eb8;
    margin-left: 30px
}

#header .nav_right li:last-child a {
    color: #fff;
}

#header #navi .nav_right {
    display: flex;
    justify-content: end;
}

.header_text .ribbon {
    margin: 0 auto 20px;
    width: 85%;
}

.header_text .logo {
    padding-bottom: 20px;
}

.header_text .monthly {
    margin-top: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header_text .monthly .price {
    font-size: 4rem;
}

.header_text .monthly .price_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_text .tax {
    display: flex;
    flex-direction: column;
}

.header_text .monthly .pink {
    color: #F28EB7;
}

@media screen and (max-width:994px) {
    #header nav {
        display: none;
    }
}


/* ------ハンバーガーメニュー------*/

.hamburger-menu {
    display: none;
}

@media screen and (max-width:994px) {
    #navi a {
        color: #fff;
    }
    #navi {
        position: static;
    }
    .hamburger-menu {
        display: block;
    }
    #navi {
        display: none;
    }
    .menu-btn {
        position: fixed;
        top: 0px;
        right: 0px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 150;
        background-color: #f48eb8;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #fff;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked~.menu-btn span {
        background-color: rgba(255, 255, 255, 0);
    }
    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 80;
        background-color: #FFDEA0;
        color: #DF7221;
        transition: all 0.5s;
    }
    #menu-btn-check:checked~.menu-content {
        left: 0;
    }
    .menu-content .g-navi {
        padding: 40px 10px 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 70px auto 40px;
    }
    .menu-content .g-navi li {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }
    .menu-content .g-navi li a {
        color: #000;
        font-weight: bold;
    }
    .navi_btn {
        display: flex;
        flex-direction: column;
    }
    .navi_btn li {
        margin: 0 auto 10px;
        border: 1px solid #DF7221;
        border-radius: 5px;
        text-align: center;
        background: #fff;
        font-weight: bold;
    }
    .navi_btn li:first-child {
        margin: 0 auto 10px;
        border: 1px solid #DF7221;
        border-radius: 5px;
        text-align: center;
        background: #DF7221;
        font-weight: bold;
    }
    .navi_btn li a {
        border-radius: 5px;
        width: 180px;
        color: #000;
        text-align: center;
        padding: 10px 20px;
        display: block;
    }
    .navi_btn li:first-child a {
        border-radius: 5px;
        width: 180px;
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        display: block;
    }
    .menu-content .logo {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .menu-content .logo .time {
        color: #000;
        font-weight: bold;
        margin-left: 12px;
    }
}


/*
=======================================
  mv
=======================================
*/

#mv .header_text .logo {
    margin: 0 auto;
}

#mv .header_text .age_wrap {
    position: relative;
}

#mv .header_text .age_wrap img {
    position: absolute;
    left: 10%;
    top: 20%;
}

#mv .header_text .age {
    color: #fff;
    font-size: 1.6rem;
    text-shadow: 2px 2px 0px #f48eb8, -2px -2px 0px #f48eb8, -2px 2px 0px #f48eb8, 2px -2px 0px #f48eb8, 2px 0px 0px #f48eb8, -2px -0px 0px #f48eb8, 0px 2px 0px #f48eb8, 0px -2px 0px #f48eb8;
    margin: 0;
}

#mv .header_text .monthly {
    display: flex;
    justify-content: center;
}

#mv .header_text {
    width: 35%;
    text-align: center;
    margin-left: 100px;
    position: absolute;
    top: 23%;
    left: 11%;
}

@media screen and (max-width:1000px) {
    #mv .header_text {
        width: 35%;
        margin-left: 100px;
        position: absolute;
        top: 20%;
        left: 11%;
    }
}

#mv ul {
    display: flex;
    justify-content: space-between;
}

#mv ul li {
    width: 30%;
}


/* #mv ul li p {
        margin: 0 auto;
    } */

@media screen and (max-width:750px) {
    #mv {
        background: url(../img/mv.jpg) left 0% top 10% no-repeat;
        height: 70vh;
    }
    #mv .mv {
        display: none;
    }
}


/*
=======================================
  about
=======================================
*/

#about {
    background: #E8F5FB;
    position: relative;
}

#about .about_text p {
    text-align: center;
}

#about .about_text {
    display: flex;
    justify-content: center;
    margin-bottom: 150px;
}

#about .about_text .home {
    color: #F48DB8;
}

#about .about_text .omocha {
    font-size: 2.6rem;
    letter-spacing: 0.048em;
    font-weight: 900;
    color: #f48eb8;
    margin-bottom: 20px;
}

#about .omocha .mo {
    color: #f9d93a;
}

#about .omocha .chi {
    color: #8fb5e5;
}

#about .omocha .ya {
    color: #bed55f;
}

#about .omocha .no {
    font-size: 1.7rem;
    color: #ff9e7c;
}

#about .omocha .sa {
    color: #fbb9c0;
}

#about .omocha .bu {
    color: #77c8e5;
}

#about .omocha .su {
    color: #ffc27b;
}

#about .omocha .ku {
    color: #f98fa3;
}

#about .omocha .toha {
    font-size: 1.7rem;
    color: #333;
}

#about .point .point_ribbon {
    position: absolute;
    top: 33.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#about .point ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #FEFCF0;
    padding: 120px 80px;
}

#about .point li {
    width: 450px;
    margin-bottom: 100px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    position: relative;
}

#about .point li:nth-child(3),
#about .point li:nth-child(4) {
    margin-bottom: 26px;
}

#about .about_text img {
    width: 20%;
    height: 20%;
}

#about .point li .point_title {
    position: absolute;
    top: -7%;
    left: 50%;
    transform: translate(-50%);
}

#about .point h3 {
    font-size: 1.25rem;
    color: #F98FA3;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 400;
}

#about .point li .point_text {
    background: #fff;
    padding: 30px 50px;
    text-align: justify;
    border-radius: 0 0 20px 20px;
    font-size: 0.83rem;
}

.sp {
    display: none;
}

@media screen and (max-width:1140px) {
    #about .point .point_ribbon {
        position: absolute;
        top: 16%;
    }
    #about .point ol {
        display: flex;
        vertical-align: middle;
        justify-content: space-between;
        background: #FEFCF0;
        padding: 120px 80px;
    }
    #about .point li .point_title {
        position: absolute;
        top: -5%;
        left: 50%;
        transform: translate(-50%);
    }
    #about .point li img {
        width: 100%;
    }
    #about .point li {
        width: 100%;
        margin-bottom: 100px;
    }
    #about .point li:nth-child(3) {
        margin-bottom: 100px;
    }
    #about .point li:nth-child(4) {
        margin-bottom: 0;
    }
}

@media screen and (max-width:1080px) {
    #about .point .point_ribbon {
        top: 16%;
    }
}

@media screen and (max-width:1050px) {
    #about .point .point_ribbon {
        top: 17%;
    }
}

@media screen and (max-width:966px) {
    #about .point .point_ribbon {
        top: 18%;
    }
}

@media screen and (max-width:912px) {
    #about .point .point_ribbon {
        top: 20%;
    }
}

@media screen and (max-width:855px) {
    #about .point .point_ribbon {
        top: 21%;
    }
}


/* @media screen and (max-width:843px) {
    #about .point .point_ribbon {
        top: 21%;
    }
} */

@media screen and (max-width:809px) {
    #about .point .point_ribbon {
        top: 21.5%;
    }
}

@media screen and (max-width:680px) {
    #about .point .point_ribbon {
        top: 22%;
    }
}

@media screen and (max-width:583px) {
    #about .point .point_ribbon {
        top: 22.5%;
    }
}

@media screen and (max-width:750px) {
    #about .point .point_ribbon {
        width: 75%;
    }
}

@media screen and (max-width:900px) {
    .sp {
        display: block;
    }
}

@media screen and (max-width:750px) {
    #about .about_text img {
        display: none;
    }
    #about .about_text .omocha {
        font-size: 2.2rem;
        letter-spacing: 0.048em;
        color: #f48eb8;
        margin-bottom: 20px;
    }
}


/*
=======================================
  toy
=======================================
*/

#toy {
    background: #FFF4FB;
    position: relative;
}

#toy .toy_text {
    text-align: center;
    margin-bottom: 54px;
}

#toy .toy1 {
    position: absolute;
    top: 0%;
    left: 0%;
}

#toy .toy2 {
    position: absolute;
    top: 3%;
    left: 65%;
}

#toy .toy3 {
    position: absolute;
    top: 0%;
    left: 80%;
}

@media screen and (max-width:1100px) {
    #toy .toy1 {
        position: absolute;
        top: 0%;
        left: 0%;
        width: 40%;
    }
    #toy .toy2 {
        position: absolute;
        top: 3%;
        left: 65%;
        width: 20%;
    }
    #toy .toy3 {
        position: absolute;
        top: 0%;
        left: 80%;
        width: 20%;
    }
}

@media screen and (max-width:750px) {
    #toy .toy1 {
        position: absolute;
        top: 3%;
        left: 0%;
        width: 40%;
    }
    #toy .toy2 {
        position: absolute;
        top: 5%;
        left: 65%;
        width: 20%;
    }
    #toy .toy3 {
        position: absolute;
        top: 2%;
        left: 75%;
        width: 20%;
    }
}


/* ----tab---- */

.tab {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    display: flex;
    justify-content: space-between;
}

.tab li {
    text-align: center;
    width: 33%;
    height: 70px;
    line-height: 70px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-size: 1.7rem;
    font-weight: 900;
    margin-right: 3px;
}

.tab li a {
    color: #CCCCCC;
}

.tab li:last-child {
    margin-right: 0;
}

.tab .zero {
    background: #FFE0ED;
}

.tab .one {
    background: #F0F7D4;
}

.tab .two {
    background: #D3E5FC;
}


/* .tab .three {
    background: #F0F7D4;
}

.tab .four {
    background: #FCE7E0;
}

.tab .five {
    background: #DDF2FA;
}

.tab .six {
    background: #FADFE4;
} */

#toy .area {
    background: #fff;
    text-align: center;
    padding: 70px 60px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

#zero h3 {
    color: #FA93BF;
}

#zero>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #FA93BF;
}

#one h3 {
    color: #C6F214;
}

#one>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #D33642;
}

#two h3 {
    color: #6FADFC;
}

#two>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #6FADFC;
}

#three h3 {
    color: #C6F214;
}

#three>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #C6F214;
}

#four h3 {
    color: #F58560;
}

#four>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #F58560;
}

#five h3 {
    color: #8DDFFF;
}

#five>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #8DDFFF;
}

#six h3 {
    color: #F7647F;
}

#six>div {
    padding-bottom: 20px;
    border-bottom: 2px solid #F7647F;
}

#toy .area h3 {
    font-size: 2.2rem;
}

#toy .area ul {
    padding-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* @media screen and (max-width:750px) {
    #toy ul li {
        width: 100%;
    } }*/


/*tabの形状*/

.tab {
    display: flex;
    flex-wrap: wrap;
}

.tab li a {
    display: block;
    margin: 0 2px;
}


/*liにactiveクラスがついた時の形状*/

.tab li.active a {
    text-align: center;
    width: 100%;
    height: 70px;
    line-height: 70px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-size: 1.7rem;
    font-weight: 900;
    margin-right: 3px;
    color: #fff;
}

.tab .zero.active a {
    background: #FA93BF;
}

.tab .one.active a {
    background: #C6F214;
}

.tab .two.active a {
    background: #6FADFC;
}


/* .tab .three.active a {
    background: #C6F214;
}

.tab .four.active a {
    background: #F58560;
}

.tab .five.active a {
    background: #8DDFFF;
}

.tab .six.active a {
    background: #F7647F;
} */


/*エリアの表示非表示と形状*/

.area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
}


/* areaにis-activeというクラスがついた時の形状 */

.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* #contents div {
        display: none;
    } */

@media screen and (max-width: 750px) {}


/*
=======================================
  flow
=======================================
*/

#flow {
    background: #fff;
}

#flow .step {
    font-size: 1.3rem;
    font-weight: bold;
    color: #EA879A;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}

#flow .step span {
    font-size: 3.1rem;
    font-weight: bold
}

#flow ol {
    display: flex;
    justify-content: space-between;
}

#flow ol li {
    position: relative;
    margin-top: 300px;
}

#flow ol li .flow_wrap {
    position: absolute;
    top: -63%;
    left: 5%;
}

#flow ol li h3 {
    border-bottom: dotted 2px #EA879A;
    margin-bottom: 20px;
    padding-bottom: 24px;
    text-align: center;
}

#flow ol li .step_text {
    width: 250px;
    height: 450px;
    padding: 80px 40px;
    background: #fefcf0;
}

#flow ol li .step_text p {
    font-size: 1rem;
    text-align: justify;
}

#flow ol li .step_text a {
    color: #EA879A;
    border-bottom: 1px solid #EA879A;
}

@media screen and (max-width:1100px) {
    #flow ol {
        display: flex;
        flex-direction: column;
    }
    #flow ol li {
        position: relative;
        margin: 350px auto 0;
    }
}


/*
=======================================
PRICE
=======================================
*/

#price {
    background: #FEFCF0;
}

#price {
    background: #FEFCF0;
    text-align: center;
}

#price .price_text p {
    font-size: 1.1rrem;
    margin-bottom: 30px;
}

#price .plan_wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#price .plan_wrap li {
    width: 350px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

#price .plan_wrap1 .plan_top {
    background: #FAB83A;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 16px;
}

#price .plan_wrap1 .plan_top .plan {
    color: #FAB83A;
    background: #fff;
    width: 160px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px;
}

#price .plan_wrap1 .plan_top h3 {
    font-size: 1.6rem;
}

#price .plan_wrap1 .plan_top .amount {
    font-size: 1.3rem;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 10px;
    margin-top: 5px;
    font-size: bold;
}

#price .plan_wrap1 .plan_bottom {
    padding: 20px 0 10px 0;
}

#price .plan_wrap1 .plan_bottom .month {
    color: #FAB83A;
    background: #FFF3DD;
    width: 310px;
    margin: 0 auto;
    padding: 5px;
}

#price .plan_wrap1 .plan_bottom .month_price {
    color: #FAB83A;
    font-weight: bold;
    font-size: 3.1rem;
}

#price .plan_wrap1 .plan_bottom .month_price span {
    color: #333;
    font-weight: bold;
    font-size: 1.3rem;
}

#price .plan_wrap1 .plan_bottom .month_price .monthly {
    font-size: 1rem;
}

#price .plan_wrap2 .plan_top {
    background: #F88FA3;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 16px;
}

#price .plan_wrap2 .plan_top .plan {
    color: #F88FA3;
    background: #fff;
    width: 160px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px;
}

#price .plan_wrap2 .plan_top h3 {
    font-size: 1.6rem;
}

#price .plan_wrap2 .plan_top .amount {
    font-size: 1.3rem;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 10px;
    margin-top: 5px;
    font-size: bold;
}

#price .plan_wrap2 .plan_bottom {
    padding: 20px 0 10px 0;
}

#price .plan_wrap2 .plan_bottom .month {
    color: #F88FA3;
    background: #FDF0F3;
    width: 310px;
    margin: 0 auto;
    padding: 5px;
}

#price .plan_wrap2 .plan_bottom .month_price {
    color: #F88FA3;
    font-weight: bold;
    font-size: 3.1rem;
}

#price .plan_wrap2 .plan_bottom .month_price span {
    color: #333;
    font-weight: bold;
    font-size: 1.3rem;
}

#price .plan_wrap2 .plan_bottom .month_price .monthly {
    font-size: 1rem;
}

#price .plan_wrap3 .plan_top {
    background: #76C7E4;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 16px;
}

#price .plan_wrap3 .plan_top .plan {
    color: #76C7E4;
    background: #fff;
    width: 160px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px;
}

#price .plan_wrap3 .plan_top h3 {
    font-size: 1.6rem;
}

#price .plan_wrap3 .plan_top .amount {
    font-size: 1.3rem;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 10px;
    margin-top: 5px;
    font-size: bold;
}

#price .plan_wrap3 .plan_bottom {
    padding: 20px 0 10px 0;
}

#price .plan_wrap3 .plan_bottom .month {
    color: #76C7E4;
    background: #EFFAFD;
    width: 310px;
    margin: 0 auto;
    padding: 5px;
}

#price .plan_wrap3 .plan_bottom .month_price {
    color: #76C7E4;
    font-weight: bold;
    font-size: 3.1rem;
}

#price .plan_wrap3 .plan_bottom .month_price span {
    color: #333;
    font-weight: bold;
    font-size: 1.3rem;
}

#price .plan_wrap3 .plan_bottom .month_price .monthly {
    font-size: 1rem;
}

@media screen and (max-width:1130px) {
    #price .plan_wrap {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    #price .plan_wrap li {
        width: 70%;
        margin: 0 auto 30px;
    }
    #price .plan_wrap li:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width:750px) {
    #price .plan_wrap li {
        width: 100%;
    }
}


/*
=======================================
F&Q
=======================================
*/

#f6q {
    background: #FEF4DA;
}

#f6q li {
    background: #FFFDF6;
    margin-bottom: 30px;
    padding: 35px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 10px 5px 5px #F8EBCD;
}

#f6q li p {
    font-weight: normal;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

#f6q li .title_Q {
    font-size: 1.2rem;
    font-weight: bold;
}

#f6q li:last-child {
    margin-bottom: 0px;
}

#f6q li span {
    font-size: 2.1rem;
    color: #F88FA3;
    margin-right: 25px;
    font-weight: bold;
}


/*==================================================
アコーディオンのためのcss
===================================*/


/*アコーディオン全体*/


/* .accordion-area {
        list-style: none;
        width: 96%;
        max-width: 900px;
        margin: 0 auto;
    } */


/* .accordion-area li {
        border: 1px solid #ccc;
        margin: 10px 0;
    } */


/* .accordion-area section {} */


/*アコーディオンタイトル*/

.title_Q {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    transition: all .5s ease;
}


/*アイコンの＋と×*/

.title_Q::before,
.title_Q::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;
}

.title_Q::before {
    top: 48%;
    right: 15px;
    transform: rotate(0deg);
}

.title_Q::after {
    top: 48%;
    right: 15px;
    transform: rotate(90deg);
}


/*　closeというクラスがついたら形状変化　*/

.title_Q.close::before {
    transform: rotate(45deg);
}

.title_Q.close::after {
    transform: rotate(-45deg);
}


/*アコーディオンで現れるエリア*/

.box {
    display: none;
    /*はじめは非表示*/
}

@media screen and (max-width:1010px) {
    .title_Q::before {
        top: -10%;
        right: -2%;
    }
    .title_Q::after {
        top: -10%;
        right: -2%;
        transform: rotate(90deg);
    }
}

@media screen and (max-width:750px) {
    #f6q li p {
        font-size: 1rem;
    }
    #f6q li .title_Q {
        font-size: 1.1rem;
        font-weight: bold;
    }
}


/*
=======================================
CONTACT
=======================================
*/

#contact {
    background: #FEFCF0;
}

#contact .title {
    margin-bottom: 84px;
}

#contact .contact_text {
    margin-top: 84px;
    font-size: 1rem;
    text-align: center;
}

#contact .contact_text .tel {
    font-size: 2.1rem;
    font-weight: bold;
    color: #EA879A;
}

#contact .form .form_wrap {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

#contact .form .input input {
    font-size: 1.1rem;
    height: 70px;
    width: 60%;
    border-radius: 5px;
    border: 1px solid #333333;
    margin-bottom: 40px;
}

#contact .form .form_wrap p:first-of-type {
    margin-right: 38px;
}

#contact .form .required {
    background: #F98FA3;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    padding: 0 15px;
}

#contact .form textarea {
    font-size: 1.1rem;
    height: 250px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #333333;
}

#contact .btn {
    background: #F98FA3;
    color: #fff;
    font-size: 2rem;
    width: 300px;
    border-radius: 50px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

#contact .checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#contact .checkbox input {
    width: 15px;
    height: 15px;
}

#contact .privacy {
    text-align: center;
    margin: 100px 0 20px 0;
}

#contact .privacy a {
    text-align: center;
    color: #333;
    border-bottom: 1px solid #333;
}


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

#footer {
    background: #F98FA3;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}

@media screen and (max-width:750px) {}