@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;
}

.navi_area,
.hamburger-menu {
    height: 100%;
}

section {
    padding: 2rem 0;
}

.inner {
    width: 100%;
    max-width: 1150px;
}

.mainimg {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.mainimg > .inner {
    max-width: none;
    width: 100%;
    height: 100%;
    margin: 0;
}
.copy {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.copy > img {
    margin: 0 auto;
}

.FV_movie {
    width: 42%;
    height: auto;
    background-color: #333;
    padding: 40px 0 0;
    border: 8px solid #000;
    border-radius: 30px 30px 0 0;
    position: absolute;
    bottom: 0;
    left: 5%;
}
.FV_movie > video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
}

.flow_area {
    margin-top: 1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
.flow_area > li {
    width: 42%;
    margin-top: 1rem;
    position: relative;
}
.flow_area > li > img {
    width: 100%;
}
.flow_area > li > .ttl03 {
    font-weight: 700;
    width: 100%;
    padding: 10px 0;
    line-height: 1.5;
    text-align: center;
}
.flow_num {
    color: #fff;
    font-size: 1.5rem;
    background-color: #111;
    width: 80px;
    padding: 5px 0;
    text-align: center;
    border-radius: 50px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

footer {
    font-size: 12px;
}

.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) {
    margin-top: 1rem;
    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:last-of-type a {
    color: #fff;
    background-color: #111;
    font-size: 14px;
    width: 100%;
    height: 100%;
    padding: 0.7rem 0;
    text-align: center;
}
.navi ul li:last-of-type a:hover {
    color: #111;
    background-color: #F7E900;
    transition: 0.4s;
}
.navi_cta_deco {
    display: none;
}

#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;
    z-index: 99;
    filter: drop-shadow(1px 0px 5px rgba(0,0,0,0.2));
}

.tel_sp,
.register {
    width: 50%;
    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-top: 3px solid #111;
    border-bottom: 3px solid #111;
    border-left: 3px solid #111;
}

.tel_sp a img {
    background-color: #111;
    width: 15px;
    height: 15px;
    margin-right: 0.3rem;
    aspect-ratio: 1;
    border-radius: 50%;
}

.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: #111;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.register a::before {
    content: "";
    background: url(img/navi_cta_deco.svg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
}

.tel_pc {
    display: none;
}

.tel_pc img,
.tel_icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    display: block;
    background-color: #111;
    border-radius: 50%;
    aspect-ratio: 1;
}

.btn_tel,
.btn_main {
    width: 80%;
    max-width: 480px;
    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: #111;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    text-align: center;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn_main > a {
    box-shadow: 10px 10px 25px rgb(254 44 85 / 85%), -10px -10px 25px rgb(37 244 238 / 85%);
}
.btn_main > a:hover {
    color: #111;
    background-color: #fff;
    border: 5px solid #F7E900;
    box-shadow: none;
    transition: .3s;
}
.btn_main_txt {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_main_deco {
    background: url(img/arrow.svg) no-repeat center center #F7E900;
    background-size: 14px;
    width: 60px;
    height: 100%;
}

.btn_tel > a > span {
    color: #333;
    font-size: 12px;
    font-weight: normal;
    width: 100%;
    margin-top: 0.5rem;
}

.ttl01 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 2rem auto;
    text-align: center;
    line-height: 1.45;
    z-index: 10;
}
.ttl01 > span {
    background-color: #111;
    padding: 0 5px;
}
.text_works,
.text_reason,
.text_merit,
.text_purpose,
.text_plan,
.text_flow,
.text_qa {
    position: relative;
}
.text_works::after,
.text_reason::after,
.text_merit::after,
.text_purpose::after,
.text_plan::after,
.text_flow::after,
.text_qa::after {
    content: "";
    background-size: contain;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -1;
}
.text_works::after {
    background: url(img/text_works.svg) no-repeat center center;
}
.text_reason::after {
    background: url(img/text_reason.svg) no-repeat center center;
}
.text_merit::after {
    background: url(img/text_merit.svg) no-repeat center center;
}
.text_purpose::after {
    background: url(img/text_purpose.svg) no-repeat center center;
}
.text_plan::after {
    background: url(img/text_plan.svg) no-repeat center center;
}
.text_flow::after {
    background: url(img/text_flow.svg) no-repeat center center;
}
.text_qa::after {
    background: url(img/text_qa.svg) no-repeat center center;
}

.ttl02 {
    font-size: 120%;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.faq {
    padding-bottom: 0;
}

.accordion {
    width: 90%;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}
.accordion-item:not(:first-of-type) {
    margin-top: 20px;
}
.accordion-title {
    font-weight: 700;
    cursor: pointer;
    padding: 20px 50px 20px;
    position: relative;
    line-height: 1.75;
}
.accordion-title::before {
    content: "Q";
    font-size: 120%;
    height: 100%;
    background-color: #F7E900;
    padding: 0 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.accordion-content {
    background-color: #f2f2f2;
    display: none;
    padding: 20px;
    position: relative;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid #111;
}
/* コンテンツボックスの枠線
.accordion-item .accordion-content {
    border-bottom: 1px solid #E5E5E5;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
}*/
/* 矢印 */
.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 {
    color: #fff;
    background-color: #111;
    margin-top: 4rem;
    padding: 3rem 0;
}
#footer_navi .ttl {
    width: 100%;
    text-align: center;
}
#footer_navi .ttl > span {
    margin-bottom: 1rem;
    display: block;
}
#footer_navi .ttl > .logo {
    width: 140px;
}
#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: 20px;
}
.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 {
    font-size: 0.5rem;
    padding: 10px 0 70px;
    text-align: center;
    letter-spacing: .05rem;
}

.slider {
    background-color: #fff;
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 3px solid #111;
    border-bottom: 3px solid #111;
}
.slider-wrap {
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(1400px * 2);
    height: 50px;
}
.slide {
    width: 1400px;
    height: 50px;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes scroll{
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(calc(-1400px * 1));
    }
}
.slide > img {
    max-height: 100%;
}
.slider_ttl {
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.works_movie {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 40px;
}
.works_movie > video {
    width: 100%;
    filter: drop-shadow(0px 0px rgba(0,0,0,0));
    outline: none;
    border: none;
}

.CTA-area > .inner {
    margin-bottom: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.wrong {
    background-color: #111;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
}
.wrong > .ttl01 {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: left;
    line-height: 1.5;
}
.img_wrong {
    max-width: 700px;
    width: 90%;
    position: relative;
    margin: -50px auto 0;
}

.solution {
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 40px;
    line-height: 1.5;
}

.reason {
    margin-top: -50px;
    border-right: 3px solid #111;
    border-left: 3px solid #111;
    border-bottom: 3px solid #111;
}
.reason > li {
    padding: 40px;
    border-top: 3px solid #111;
}
.reason > li:first-of-type {
    padding-top: 80px;
}
.reason > li > img {
    max-width: 240px;
    width: 60%;
    margin: 20px auto;
    border-radius: 50%;
    aspect-ratio: 1;
    display: block;
}
.reason > li > p {
    margin-top: 20px;
}
.reason_ttl {
    font-size: 2em;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    background: linear-gradient(transparent 50%, #FFF880 50%);
}

.flex_area {
}
.flex_area > .box_img,
.flex_area > .box_txt {
    width: 90%;
}
.flex_area > .box_img > img {
    width: 100%;
}
.flex_area > .box_txt {
    background-color: #fff;
    margin: -40px 0 0 10%;
    padding: 40px;
    position: relative;
}
.flex_area > .box_txt > .ttl {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
}
.flex_area > .box_txt > .ttl > span {
    background: linear-gradient(transparent 50%, #FFF880 50%);
}

.purpose_list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
.purpose_list > li {
    width: 42%;
    padding: 1rem;
    border: 1px solid #111;
}
.purpose_list > li:nth-of-type(n+3) {
    margin-top: 1rem;
}
.purpose_list > li > .ttl {
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    line-height: 1.3;
}

.flex_column3 {
}
.flex_column3 > .box {
    color: #fff;
    background-size: cover;
    padding: 40px;
}
.flex_column3 > .box:last-of-type {
    display: none;
}
.img01 {
    background: url(img/plan01.jpg) no-repeat center center;
}
.img02 {
    background: url(img/plan02.jpg) no-repeat center center;
}
.img03 {
    background: url(img/plan03.jpg) no-repeat center center;
}
.flex_column3 > .box > .ttl {
    color: initial;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #fff;
    padding: 1rem 0;
    text-align: center;
}
.flex_column3 > .box > .fee {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}
.reco {
    position: relative;
}
.reco::before {
    content: "おすすめ";
    color: initial;
    font-size: 14px;
    background-color: #FFF880;
    padding: 5px 20px;
    border: 2px solid #111;
    border-radius: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.txt_blue {
    color: #25F4EE;
}
.txt_pink {
    color: #FE2C55;
}
.txt_ylw {
    color: #F7E900;
    font-size: 200%;
}

.CTA-area > p {
    margin-bottom: 20px;
    padding: 20px 40px;
}

.flow {
}
.flow > .box_txt {
    padding: 0 40px;
}











/*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 0 0 1rem;
    z-index: 99;
}

.fixed {
    position: fixed;
    background-color: rgba(255,255,255,0.95);
    top: 0;
    left: 0;
}

.logo {
    width: 120px;
}

.mainimg {
    width: 100%;
    height: 460px;
}
.mainimg > .inner {
    background: url(img/mainimg_bg.jpg) no-repeat center center;
    background-size: cover;
    max-width: none;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.mainimg > .inner::before {
    content: "";
    width: 100%;
    height: 80px;
    background-color: #111;
    position: absolute;
    bottom: 0;
}
.copy {
    width: 72%;
    height: 100%;
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
}
.copy > img {
    max-width: 760px;
    margin: 0 auto;
}

.FV_movie {
    width: auto;
    padding: 40px 0;
    border-radius: 30px;
    position: absolute;
    top: 40px;
    left: 5%;
    bottom: auto;
    z-index: 10;
}
.FV_movie > video {
    width: 240px;
    height: auto;
    aspect-ratio: 9/16;
}

section {
    padding: 4rem 0;
}

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;
}
.btn_main_deco {
    width: 100px;
    background-size: 24px;

}

.ttl01 {
    font-size: 30px;
}
.text_works::after,
.text_reason::after,
.text_merit::after,
.text_purpose::after,
.text_plan::after,
.text_qa::after {
    height: 10vw;
}

.works > p,
.fee > p,
.flow > p {
    text-align: center;
}

.cate_list > li {
    width: calc((100% - 80px) / 5);
    padding: 30px 0;
}

.cate_list > li:nth-of-type(n+3) {
    margin-top: 0;
}

.cate_list > li:nth-of-type(n+6) {
    margin-top: 20px;
}

.scroll-box {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tbl_price th,
.tbl_price td {
    padding: 1.5rem;
}

.tbl_price th {
    font-size: 120%;
}

.faq {
}

.price_plan {
}
.price_plan li {
  width: calc((100% - 35px) / 3);
  margin-top: 35px;
}
.price_plan li .price {
  font-size: 28px;
  padding: 35px 0 0;
}
.price_plan li p {
  padding: 0 40px 40px;
}
#fee_area section {
    padding-bottom: 4rem;
}
#trial_area {
    background: url(img/bg.svg) no-repeat right bottom #FCF24D;
    background-size: contain;
    padding: 4rem 0;
}
.trial {
    padding: 40px;
}
.trial .box {
    display: flex;
    align-items: center;
    position: relative;
}
.trial .ttl {
    max-width: 320px;
    margin: 0;
}
.trial .price {
    font-size: 200%;
    width: 100%;
    margin-top: -1rem;
    padding: 0;
    text-align: center;
    position: absolute;
}
.trial_icon {
    max-width: 300px;
    position: absolute;
    right: 4rem;
    bottom: -4rem;
}
.trial p {
    padding: 40px 0 0;
}
.fs260 {
    font-size: 340% !important;
}

#footer_navi {
    margin-top: 100px;
}
#footer_navi .ttl {
    font-size: 1.25rem;
}
#footer_navi .ttl > span {
    margin-bottom: 40px;
}
#footer_navi .ttl > .logo {
    width: 340px;
}
#footer_navi > li:not(:first-of-type) {
    margin-top: 1rem;
}
#footer_navi .flex_area {
    margin-top: 0;
    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;
}
.slider {
    height: 80px;
    margin: 0;
}
.slider-wrap {
    animation: scroll 20s linear infinite;
    width: calc(2800px * 2);
    height: 80px;
}
.slide {
    width: 2800px;
    height: 80px;
}
@keyframes scroll{
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(calc(-2800px * 1));
    }
}
.slider_ttl {
    width: 160px;
}

.works_movie {
    padding: 40px 0;
}

.wrong {
    height: 200px;
    flex-direction: row;
}
.img_wrong {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 38%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.solution {
    font-size: 42px;
    padding: 40px;
}

.reason {
    border-right: 0;
    border-left: 3px solid #111;
    border-bottom: 3px solid #111;
    display: flex;
}
.reason > li {
    width: calc(100% / 3);
    padding-top: 100px;
    border-right: 3px solid #111;
}
.reason > li > img {
    margin: 40px auto;
}

.flex_area {
    margin-top: 80px;
    display: flex;
    position: relative;
}
.flex_area:nth-of-type(even) {
    flex-direction: row-reverse;
}
.flex_area > .box_img {
    width: 60%;
}
.flex_area > .box_txt {
    width: 50%;
    margin: 0;
    padding: 60px;
    position: absolute;
    right: 0;
    bottom: -40px;
}
.flex_area:nth-of-type(even) > .box_txt {
    right: auto;
    left: 0;
}
.flex_area > .box_txt > .ttl {
    font-size: 36px;
    margin-bottom: 20px;
}

.purpose_list > li {
    width: 22%;
    padding: 2%;
    border-width: 2px;
}
.purpose_list > li:nth-of-type(n+3) {
    margin-top: 0;
}
.purpose_list > li:nth-of-type(n+5) {
    margin-top: 2%;
}
.purpose_list > li > .ttl {
    line-height: 1.5;
}

#plan {
}
.flex_column3 {
    margin-top: -50px;
    display: flex;
}
.flex_column3 > .box {
    width: calc(100% / 3);
    padding: 120px 60px 200px;
}
.flex_column3 > .box:last-of-type {
    display: block;
}
.flex_column3 > .box > .ttl {
    font-size: 2rem;
}
.flex_column3 > .box > .fee {
    font-size: 2.5rem;
    margin: 40px 0;
}
#plan > .CTA-area {
    margin-top: -180px;
}
#plan > .CTA-area > p {
    color: #fff;
    font-size: 120%;
    font-weight: bold;
    text-align: center;
}
#plan > .CTA-area > p > span {
    background-color: #111;
}

.flow {
    display: flex;
    background: url(img/text_flow.svg) no-repeat left bottom;
    background-size: 43%;
}
.flow .ttl01 {
    color: initial;
    font-size: 36px;
    text-align: left;
}
.flow .ttl01 > span {
    background-color: initial;
    padding: 0;
}
.flow > .box_txt {
    width: 40%;
    padding: 80px;
}
.flow_area {
    width: 60%;
    justify-content: space-between;
}
.flow_area > li {
    width: 30%;
    margin-top: 0;
}
.flow_area > li:nth-of-type(n+4) {
    margin-top: 40px;
}
.flow_area > li > .ttl03 {
    font-size: 120%;
}
.text_flow::after {
    display: none;
}
.flow_num {
    font-size: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    top: -20px;
    left: -20px;
    transform: none;
}

.accordion {
    margin-top: 80px;
}
.accordion-title {
    font-size: 120%;
    padding: 30px 40px 30px 60px;
}
.accordion-content {
    padding: 30px 40px;
}

.faq > .CTA-area > p {
    text-align: center;
}
}










@media screen and (min-width: 1170px) {
.inner {
    margin: 0 auto;
}

#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 {
    height: 100%;
    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) {
    margin-top: 0;
    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: 5px;
    background: #F7E900;
    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;
    background-color: #111111;
    font-size: 18px;
    font-weight: 700;
    width: 200px;
    height: 100%;
    margin-top: 0;
    padding: 0;
    text-align: center;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navi ul li:last-of-type a:hover {
    box-shadow: none;
    transition: 0.4s;
}
.btn_head {
    position: relative;
}
.navi_cta_deco {
    width: 100%;
    height: 5px;
    object-fit: cover;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.navi ul li a::before {
    display: none;
}

.tel_pc {
    background-color: #eee;
    font-size: 20px;
    font-weight: 700;
    width: 210px;
    height: 100%;
    text-align: center;
    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;
}
}

@media screen and (min-width: 1440px) {
body {
    font-size: 18px;
}
}