@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, .wrap {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
}








a {
    text-decoration: none;
}

.pc {
    display: none;
}

.sp {
    display: block;
}

p {
    line-height: 2;
}

.wrap {
    margin: 0 auto 5em;
}

html,body {
    height: 100%;
}

body {
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    position: relative;
}

section {
    position: relative;
}

h1 {
}

header {
    background-color: #fff;
    width: 100%;
    height: 50px;
    padding: 0 0 0 1rem;
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 80px;
}

section {
    padding: 3rem 0 4rem;
}
section:first-of-type {
    padding-top: 1.5rem;
}
section:nth-of-type(even) {
    background-color: #F2F4FB;
}

.inner {
    width: 90%;
    max-width: 1150px;
    margin: 0 5%;
}

.mainimg {
    background: url(../img/mainimg_sp.jpg) no-repeat top center;
    background-size: cover;
    width: 100%;
    height: 0;
    padding-top: calc(840 / 750* 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.flow_area {
    margin-top: 3rem;
}
.flow_area > li {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #4057A1;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position: relative;
}
.flow_area > li:not(:first-of-type) {
    margin-top: 2rem;
}
.flow_area > li > img {
    width: 50%;
    max-width: 200px;
    border-radius: 50%;
}
.flow_area > li > .ttl03 {
    color: #4057A1;
    font-size: 120%;
    font-weight: 700;
    width: 50%;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.flow_area > li > p {
    width: 100%;
}
.flow_num {
    color: #4057A1;
    background-color: #E8EBF6;
    font-size: 80%;
    font-weight: 700;
    width: 100px;
    padding: 5px 0;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #4057A1;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.flow_area li:after {
    border-top: 15px solid #4057A1;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
}
.flow_area li:last-child:after {
    border: none;
}

footer {
    font-size: 60%;
}

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    background-color: #000;
    position: absolute;
}
.menu-btn span:before {
    bottom: 7px;
}

.menu-btn span:after {
    top: 7px;
}
#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;
}

.navi {
    background-color: rgba(255,255,255,0.95);
    width: 50%;
    height: 100%;
    padding: 1rem;
    border-left: 1px solid #bbb;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 98;
    transition: all 0.5s;/*アニメーション設定*/
}
.navi ul {
    padding: 70px 0 0;
}
.navi ul li {
    font-size: 100%;
    border-bottom: solid 1px #bbb;
    list-style: none;
}
.navi ul li:last-of-type,
.navi ul li:nth-last-of-type(-n+2) {
    border: none;
}
.navi ul li a {
    display: block;
    color: #242424;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 1rem 15px 1rem 0;
    position: relative;
}
.navi ul li:not(:last-of-type) a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #242424;
    border-right: solid 2px #242424;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 20px;
}
.navi ul li:last-of-type a {
    color: #fff;
    background-color: #FF6D81;
    font-size: 14px;
    width: 100%;
    margin-top: 1rem;
    padding: 5px 0;
    border: 2px solid #FF6D81;
    border-radius: 50px;
    text-align: center;
    line-height: 1.5;
}
.navi ul li:last-of-type a:hover {
    color: #3bcf93;
    background-color: #fff;
    border: 2px solid #3bcf93;
    transition: 0.4s;
}

#menu-btn-check:checked ~ .navi {
    left: 50%;/*メニューを画面内へ*/
}

a.anchor {
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}

#btn_sp {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 99;
    filter: drop-shadow(1px 0px 5px rgba(0,0,0,0.2));
}

.tel_sp,
.register {
    width: 80%;
    height: 100%;
}

.tel_sp a {
    color: #000;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #3bcf93;
}

.tel_sp a img {
    width: 15px;
    height: 15px;
    margin-right: 0.3rem;
}

.tel_sp a p {
    color: #aaa;
    font-size: 8px;
    font-weight: 400;
    margin-top: 0.2rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    line-height: 1;
}

.register a {
    color: #fff;
    font-weight: 700;
    background-color: #FF6D81;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel_pc {
    display: none;
}

.tel_pc img,
.tel_icon {
    width: 21px;
    height: 20px;
    margin-right: 0.5rem;
    display: block;
}

.btn_tel,
.btn_main {
    width: 80%;
    max-width: 400px;
    height: 60px;
    margin-right: auto;
    margin-left: auto;
}
.btn_tel {
    margin-bottom: 1rem;
}
.btn_tel > a,
.btn_main > a {
    width: 100%;
    height: 100%;
    display: block;
}
.btn_tel > a {
    color: #3bcf93;
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border: 3px solid #3bcf93;
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.btn_main > a {
    color: #fff;
    background-color: #3bcf93;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    padding: 0;
    border-radius: 50px;
    text-align: center;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 50%);
}
.btn_main > a:hover {
    color: #3bcf93;
    background-color: #fff;
    border: 3px solid #3bcf93;
}
.btn_tel > a > span {
    color: #333;
    font-size: 12px;
    font-weight: normal;
    width: 100%;
    margin-top: 0.5rem;
}

.ttl01 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.ttl02 {
    color: #4057A1;
    font-size: 120%;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.ttl03 {
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.fs140 {
    color: #4057A1;
    font-size: 140%;
}

.faq {
    margin-bottom: 1rem;
}

.accordion {
width: 100%;
max-width: 1000px;
margin: 0 auto;
position: relative;
}

.accordion-item:not(:first-of-type) {
    margin-top: 20px;
}

.accordion-title {
    font-size: 110%;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 40px 16px 20px;
    position: relative;
    line-height: 1.75;
}
.accordion-title:first-letter {
    color: #4057A1;
    font-size: 140%;
}

.accordion-content {
    background-color: #F2F4FB;
    display: none;
    padding: 16px 20px;
    position: relative;
}

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #4057A1;
    overflow: hidden;
}

/* 矢印 */
.accordion-title::after {
    border-right: solid 3px #999;
    border-top: solid 3px #999;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -7px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: rotate(135deg);
    transition: transform .05s ease-in-out, top .05s ease-in-out;
}
.accordion-title.open::after {
    margin-top: -7px;
    top: 50%;
    transform: rotate(-45deg);
}

#footer_navi {
    background: url(../img/deco.svg) no-repeat top 0px right -60px #eee;
    background-size: 60%;
    padding: 3rem 0;
}
#footer_navi .ttl {
    color: #4057A1;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
#footer_navi .ttl > span {
    margin-bottom: 1rem;
    display: block;
}
#footer_navi .ttl > .logo {
    width: 200px;
    display: block;
    margin: 0 auto 1rem;
}
#footer_navi p {
    font-size: 0.75rem;
}
#footer_navi .flex_area > .box {
    display: flex;
    flex-flow: row wrap;
}
#footer_navi .flex_area > .box:not(:first-of-type) {
    margin-top: 2rem;
}
.footer_navi {
    width: 50%;
}
.footer_navi > li {
    font-size: 0.5rem;
}
.footer_navi > li:not(:first-of-type) {
    margin-top: 10px;
}
.footer_navi > li > a {
    color: #fff;
}
.footer_navi > li > a:hover {
    text-decoration: underline;
}
.tbl {
    font-size: 0.75rem;
    width: 100%;
    border-collapse: collapse;
    line-height: 1.3;
    border-top: 1px solid #666;
}
.tbl tr {
    border-bottom: 1px solid #666;
}
.tbl th {
    font-weight: normal;
    width: 25%;
    vertical-align: middle;
}
.tbl td {
    width: 80%;
}
.tbl th,
.tbl td {
    padding-top: 10px;
    padding-bottom: 10px;
}

footer {
    padding: 10px 0 70px;
    text-align: center;
    letter-spacing: .05rem;
}

.point_list {
}
.point_list > li {
}
.point_list > li:not(:first-of-type) {
    margin-top: 2rem;
}
.point_list > li > img {
    width: 50%;
    max-width: 100%;
    display: block;
    margin: 1rem auto;
}
.point_list > li > p {
    margin-top: 1rem;
}

.flex_area {
}
.flex_area:not(:first-of-type) {
    margin-top: 2rem;
}
.flex_area > .box_img {
    margin-bottom: 1rem;
}

.bg_deco {
    background: url(../img/deco.svg) no-repeat top 0px right -60px;
    background-size: 60%;
}

.case_area {
}
.case_area > .box_img {
    width: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.img_circle {
    border-radius: 50%;
}
.img_fuki {
    width: 70px;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
}
.case_area > .box_txt > .ttl {
    color: #4057A1;
    font-size: 120%;
    font-weight: 700;
    margin: 1rem 0;
}

.before,
.after {
    background-color: #fff;
    margin-top: 1rem;
    border-radius: 10px;
    position: relative;
}
.after {
    background: url(../img/arrow.svg) no-repeat bottom right #fff;
    background-size: 120px;
}
.before > .ttl,
.after > .ttl {
    width: 100px;
    padding: 5px 0;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.before > .ttl {
    color: #666;
    background-color: #eee;
}
.after > .ttl {
    color: #fff;
    background-color: #4057A1;
}
.before > ul,
.after > ul {
    padding: 1.5rem 1rem 1rem;
}
.before > ul > li:not(:first-of-type),
.after > ul > li:not(:first-of-type) {
    margin-top: 10px;
}
.after > ul > li {
    color: #4057A1;
    font-weight: 700;
}

.reco {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #4057A1;
    border-radius: 10px;
}
.reco > .box_txt > .ttl {
    color: #4057A1;
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 1rem;
}
.reco > img {
    width: 70%;
    max-width: 220px;
    margin: 1rem auto;
    display: block;
}

.about > .ttl01 {
    margin-bottom: 1rem;
}










/*pc*/
@media screen and (min-width: 600px) {

.pc {
    display: block;
}

.sp {
    display: none;
}

a[href^="tel:"] {
    pointer-events: none;
}

h1 {
}

html {
    overflow: auto;
}

body {
    font-size: 16px;
    width: 100%;
    min-width: 1150px;
}

header {
    height: 90px;
    padding: 0 1rem;
    z-index: 99;
}

.fixed {
    position: fixed;
    background-color: rgba(255,255,255,0.75);
    border-bottom: 1px solid #bbb;
    top: 0;
    left: 0;
}

.logo {
    width: 120px;
}

.mainimg {
    background: url(../img/mainimg.jpg) no-repeat center center;
    background-size: auto;
    width: 100%;
    height: 500px;
    margin-bottom: 2rem;
    padding-top: 0;
}

section {
    padding: 6rem 0 7rem;
}
section:first-of-type {
    padding-top: 0;
}

.flow_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flow_area > li {
    width: calc((100% - 70px)/3);
    padding: 2rem 20px 20px;
    display: block;
}
.flow_area > li > img {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.flow_area > li > .ttl03 {
    width: 100%;
    display: block;
}
.flow_area > li:not(:first-of-type) {
    margin-top: 0;
}
.flow_area > li:nth-of-type(n+4) {
    margin-top: 2rem;
}
.flow_area > li:after {
    border-right: none;
    border-left: 15px solid #4057A1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: "";
    position: absolute;
    right: -28px;
    top: 50%;
    bottom: auto;
    left: auto;
    margin-left: 0;
    margin-top: -15px;
}
.flow_area > li:last-child:after,
.flow_area > li:nth-child(3):after {
    border: none;
}

a.anchor {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

#btn_sp {
    display: none;
}

.btn_tel,
.btn_main {
    height: 100px;
    margin-right: 0;
    margin-left: 0;
}
.btn_tel {
    margin-right: 20px;
    margin-bottom: 0;
}
.btn_tel > a,
.btn_main > a {
    font-size: 30px;
}
.btn_tel > a {
    cursor: default;
}
.btn_tel > a > span {
    font-size: 14px;
}

.ttl01 {
    font-size: 32px;
    margin-bottom: 4rem;
}
.ttl02 {
    font-size: 24px;
}
.ttl03 {
    font-size: 140%;
    line-height: 1.75;
}

.faq {
    margin-bottom: 4rem;
}

#footer_navi {
    background-size: 740px;
}
#footer_navi .ttl > span {
    margin-bottom: 40px;
}
#footer_navi .ttl > .logo {
    width: 400px;
    margin-bottom: 2rem;
}
#footer_navi > li:not(:first-of-type) {
    margin-top: 1rem;
}
#footer_navi .flex_area {
    display: flex;
}
#footer_navi .flex_area > .box {
    width: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#footer_navi .flex_area > .box:not(:first-of-type) {
    margin-top: 0;
}
.tbl th,
.tbl td {
    line-height: 1.5;
}
.tbl th {
    text-align: center;
    vertical-align: middle;
}
footer {
    padding: 1rem 0;
}

.point_list {
    display: flex;
    justify-content: space-between;
}
.point_list > li {
    width: 300px;
}
.point_list > li > img {
    width: 100%;
}
.point_list > li:not(:first-of-type) {
    margin-top: 0;
}

.flex_area {
    display: flex;
    justify-content: space-between;
}
.flex_area:nth-of-type(even) {
    flex-direction: row-reverse;
}
.flex_area:not(:first-of-type) {
    margin-top: 4rem;
}
.flex_area > .box_img {
    width: 50%;
    margin-bottom: 0;
}
.flex_area > .box_txt {
    width: calc(50% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg_deco {
    background-size: 740px;
    background-position: top 0px right -200px;
}

.case_area {
    display: flex;
    justify-content: space-between;
}
.case_area > .box_img {
    width: 300px;
    margin: 0;
}
.case_area > .box_txt {
    width: calc(100% - 300px - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img_fuki {
    width: 120px;
}
.before_after {
    display: flex;
    justify-content: space-between;
}
.before,
.after {
    width: calc((100% - 40px)/2);
    padding: 1rem;
    border-radius: 100px 0 0 100px;
    display: flex;
    align-items: center;
}
.before > .ttl,
.after > .ttl {
    width: 90px;
    height: 90px;
    margin-right: 1rem;
    border-radius: 50%;
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.before > ul,
.after > ul {
    padding: 0;
}

.reco {
    padding: 2rem;
    display: flex;
}
.reco > .box_txt {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reco > img {
    margin: 0;
}

.about {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about > .ttl01 {
    width: 50%;
    text-align: center;
    margin-bottom: 0;
}
.about > p {
    width: 50%;
    font-size: 140%;
    font-weight: 700;
}


}









@media screen and (min-width: 1170px) {
    .inner {
        margin: 0 auto;
    }
}

@media screen and (min-width: 1170px) {
#menu-btn-check {
    display: none;
}

.menu-btn {
    display: none;
}

.navi {
    background-color: initial;
    width: auto;
    height: 100%;
    padding: 0;
    border: none;
    position: static;
    top: auto;
    left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navi ul {
    margin-left: 1rem;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.navi ul li {
    font-size: 16px;
    padding-right: 1.5rem;
    border-bottom: none;
    list-style: none;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex;
    align-items: center;
}

.navi ul li:last-of-type,
.navi ul li:nth-last-of-type(-n+2) {
    padding-right: 0;
}

.navi ul li a {
    color: #333;
    font-weight: 700;
    display: inline;
    width: auto;
    position: relative;
    padding: 0.5rem 0;
}

.navi ul li:not(:last-of-type) a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FF6D81;
    transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.navi ul li:not(:last-of-type) a:hover::after {
    width: 100%;
}

.navi ul li:last-of-type a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    height: 60px;
    margin-top: 0;
    margin-left: 1.5rem;
    padding: 0 1rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: rgb(126 0 17) 0px 4px 0px;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navi ul li:last-of-type a:hover {
    color: #FF6D81;
    background-color: #fff;
    border: 2px solid #FF6D81;
    box-shadow: none;
    transition: 0.4s;
}

.navi ul li a::before {
    display: none;
}

.tel_pc {
    color: #3bcf93;
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;
    width: 210px;
    height: 60px;
    margin-right: 10px;
    text-align: center;
    border: 2px solid #3bcf93;
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.tel_pc p {
    color: #333;
    font-size: 8px;
    font-weight: 400;
    width: 100%;
    margin: 0.2rem 0 0;
    padding: 0;
    line-height: 1;
}
}