@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a {
    text-decoration: none;
}
a:hover {
    transition: 0.4s;
}
a.anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

.pc {
    display: none;
}
.sp {
    display: block;
}

body {
    color: #333;
    font-family: YakuHanJP_Noto, Roboto, "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-feature-settings: "palt";
    letter-spacing: .1rem;
    position: relative;
    overflow-x: hidden;
}

p {
    line-height: 1.75;
}
img {
    max-width: 100%;
    height: auto;
}

header {
    width: 100%;
    height: 60px;
    padding: 0 1rem;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.logo img {
    width: 80px;
}

.navi_area {
}
.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: #06C755;
    font-size: 14px;
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem 0;
    border: 2px solid #06C755;
    border-radius: 50px;
    text-align: center;
}
.navi ul li:last-of-type a:hover {
    color: #06C755;
    background-color: #fff;
    border: 2px solid #06C755;
    transition: 0.4s;
}
#menu-btn-check:checked ~ .navi {
    left: 50%;/*メニューを画面内へ*/
}

.tel_pc {
    display: none;
}
.btn_head {
    color: #fff !important;
    background-color: #06C755;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 0 !important;
    border: 2px solid #06C755;
    border-radius: 50px;
    text-align: center;
    line-height: 1.3;
}
.btn_head:hover {
    color: #06C755 !important;
    background-color: #fff;
    border: 2px solid #06C755;
}

#mainimg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
#mainimg::after {
    content: "";
    background-color: #9CCFFF;
    width: 80%;
    height: 55%;
    border-radius: 1000px 0 0 1000px;
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: -1;
}
#mainimg > .inner {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.main_copy {
}
.main_copy img {
    width: 100%;
    height: 100%;
}
.main_img {
    display: none;
}
.main_btn {
    width: 80%;
    margin: 1rem auto 0;
    position: relative;
}
.cta_btn {
    color: #fff;
    background-color: #06C755;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    border: 2px solid #06C755;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.cta_btn:hover {
    color: #06C755 ;
    background-color: #fff;
}
.main_btn > .cta_btn {
    height: 60px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    background-color: #06C755;
    border: 3px solid #06C755;
    position: relative;
}
.main_btn > .cta_btn:hover {
    color: #06C755;
    background-color: #fff;
}
.ani_reflection {
    width: 30px;
    height: 100%;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    -moz-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999;
    pointer-events: none;
}
@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
.main_btn > span,
.contact_btn > span {
    color: #333;
    font-size: 80%;
    font-weight: bold;
    background-color: #fff;
    width: 70%;
    padding: 10px;
    border: 2px solid #06C755;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.main_btn > p {
    margin: 0 auto 10px;
    line-height: 0.75;
    text-align: center;
}
.main_btn > .slash::before,
.main_btn > .slash::after {
    position: absolute;
}
.inner {
    max-width: 1280px;
    padding: 40px 1rem;
}
.subcopy,
.main_text {
    display: none;
}

.ttl01 {
    font-size: 0.5rem;
    font-weight: normal;
    height: 100%;
    position: absolute;
    top: 0;
    left: 110px;
    display: flex;
    align-items: center;
    line-height: 1.3;
}
.ttl02 {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    letter-spacing: .2rem;
    line-height: 1.3;
}
.ttl02 > span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: normal;
    background-color: #08427D;
    width: 140px;
    margin: 0 auto 2rem;
    padding: 7px 0;
    border-radius: 50px;
    display: block;
    letter-spacing: .3rem;
    position: relative;
}
.ttl02 > span::after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(6, 199, 85, 0);
    border-top-width: 10px;
    border-bottom-width: 0;
    border-left-width: 6px;
    border-right-width: 6px;
    margin-left: -6px;
    border-top-color:#08427D;
    top:100%;
    left:50%;
}
.ttl03 {
    color: #08427D;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.fs200,
.fs400 {
    font-weight: bold;
    line-height: 1;
}
.fs200 {
    font-size: 200%;
    letter-spacing: normal;
}
.fs400 {
    font-size: 400%;
}
.fs50 {
    font-size: 50%;
}
.center {
    text-align: center;
}
.mb20 {
    margin-bottom: 20px;
}
.mt40 {
    margin-top: 40px;
}
.fc_blue {
    color: #08427D;
}

.cta {
    background: url(img/deco_bg.svg) no-repeat center center #08427D;
    background-size: cover;
    padding: 40px 0;
    overflow-x: hidden;
}
.cta > .inner {
    background-color: #FFFEE6;
    padding: 20px;
    margin: 0 1rem;
}
.deco_cta01,
.deco_cta02 {
    display: none;
}
.cta_area > img {
    margin-left: auto;
    margin-right: auto;
}
.cta_area > .ttl {
    color: #08427D;
    font-size: 1.5rem;
    font-weight: normal;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}
.cta_area p {
    width: 100%;
    margin-bottom: 1rem;
}
.btn_area {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column-reverse;
}
.contact_btn {
    margin-bottom: 1rem;
    position: relative;
}
.cta_area .cta_tel,
.cta_area .cta_btn {
    width: 100%;
    height: 60px;
    margin-right: auto;
    margin-left: auto;
}
.cta_tel {
    color: #08427D;
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.cta_tel > img {
    width: 20px;
    background-color: #08427D;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-block;
    aspect-ratio: 1/1;
}
.cta_tel > span {
    color: #333;
    font-size: 8px;
    font-weight: 400;
    width: 100%;
    margin: 5px 0 0;
    padding: 0;
    line-height: 1;
}

.accordion {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.accordion-item {
    border: 2px solid #ECF6FF;
    overflow: hidden;
}
.accordion-item:not(:first-of-type) {
    margin-top: 1rem;
}
.accordion-title {
    background-color: #fff;
    font-weight: normal;
    cursor: pointer;
    padding: 16px 50px 16px 15px;
    position: relative;
    line-height: 1.5;
    display: flex;
    align-items: center;
}
.accordion-content > p::before,
.accordion-title::before {
    color: #08427D;
    font-size: 1.25rem;
    font-weight: bold;
    padding-right: 10px;
}
.accordion-content > p::before {
    content: "A";
}
.accordion-title::before {
    content: "Q";
}
.accordion-content {
    background-color: #ECF6FF;
    display: none;
    padding: 15px;
    position: relative;
}
.accordion-content > p {
    display: flex;
    align-items: center;
}
/* コンテンツボックスの枠線 */
.accordion-item .accordion-content {
}
/* 矢印 */
.accordion-title::after {
    border-right: solid 2px #08427D;
    border-top: solid 2px #08427D;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    margin-top: -12px;
    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: -5px;
    top: 50%;
    transform: rotate(-45deg);
}
.close {
    background:rgba(255,255,255,0.8);
    padding: 2rem;
}
.close > p {
    font-size: 80%;
    margin-top: 1rem;
    line-height: 1.75;
}

#footer_navi {
    background-color: #EEEEEE;
}
#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;
}
.flex_area > .box {
    display: flex;
    flex-flow: row wrap;
}
.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;
}

.mt40 {
    margin-top: 40px !important;
}
.fs80 {
    color: #08427D;
    font-size: 70%;
    font-weight: normal;
    margin-right: 1rem;
    display: inline-block;
}
.fs150 {
    font-size: 160%;
    line-height: 1;
}
.fs260 {
    font-size: 260%;
    line-height: 1;
}
.red {
    color: #06C755;
    font-weight: bold;
}
.center {
    width: 100%;
    text-align: center;
}
.line-through {
    padding-right: 10px;
    text-decoration: line-through;
}
.line50 {
    line-height: 60px;
}

#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: inherit;
    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 #08427D;
}
.tel_sp > a img {
    background-color: #08427D;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    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;
    background-color: #08427D;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#worries {
    position: relative;
    z-index: 1;
}
#worries::after {
    content: "";
    width: 100%;
    height: 120px;
    background: url(img/deco_worries.svg) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
}
#worries > .inner {
    padding-bottom: 0;
}
.worries {
    width: 100%;
    margin: 0 auto;
}
.worries > li {
    background-color: #eee;
    margin-top: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.worries > li:first-of-type {
    margin-top: 0;
}
.worries > li > img {
    width: 15%;
    line-height: 0;
}
.worries > li > p {
    font-weight: bold;
    padding-left: 10px;
}
.worries_text {
    color: #08427D;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}

.triangle {
    font-weight: bold;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.triangle::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 40px solid #ECF6FF;
    border-bottom: 0;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.resolution {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}
.resolution > span {
    color: #08427D;
    background-color: #fff;
    padding: 0 5px;
    border: 2px solid #08427D;
    display: inline-block;
    line-height: 1.3;
}

#reason {
    background-color: #ECF6FF;
    margin: 40px 0 0;
}
.reason > .flex_area > .box:first-of-type {
    background-color: #fff;
    margin-bottom: 1rem;
    padding: 40px 0;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.reason > .flex_area:not(:first-of-type) {
    margin-top: 40px;
}
.deco01,
.deco02,
.deco03 {
    position: relative;
    z-index: 1;
}
.deco01::after,
.deco02::after,
.deco03::after {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    right: 0;
    bottom: -10px;
    z-index: -1;
}
.deco01::after {
    background: url(img/deco_01.svg) no-repeat right bottom;
}
.deco02::after {
    background: url(img/deco_02.svg) no-repeat right bottom;
}
.deco03::after {
    background: url(img/deco_03.svg) no-repeat right bottom;
}
.support_list {
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.support_list > li {
    font-size: 0.75rem;
    width: 32%;
    padding: 10px 5px;
    border: 2px solid #08427D;
    border-radius: 5px;
    text-align: center;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.support_list > li:nth-of-type(n+4) {
    margin-top: 5px;
}

.brackets {
    position: relative;
}
.brackets::before,
.brackets::after {
    content: "";
    width: 40px;
    display: block;
    aspect-ratio: 1/1;
    position: absolute;
    border: 10px solid #08427D;
    z-index: 2;
}
.brackets::before {
    border-right: 0;
    border-bottom: 0;
    top: -5px;
    left: -5px;
}
.brackets::after {
    border-top: 0;
    border-left: 0;
    right: -5px;
    bottom: -5px;
}

.case_area {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.case_area > li {
    width: 48%;
    position: relative;
}
.case_area > li:nth-of-type(n+3) {
    margin-top: 20px;
}
.case_area > li > .ttl {
    color: #08427D;
    font-size: 0.75rem;
    width: 100%;
    background-color: #fff;
    padding: 5px 0;
    text-align: center;
    border: 2px solid #08427D;
    border-radius: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.case_area > li > img {
    border-radius: 50%;
    aspect-ratio: 1/1;
}
.case_text {
    margin-bottom: 1rem;
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tab-label {
    color: #CCCCCC;
    font-size: 0.75rem;
    font-weight: bold;
    width: 32%;
    padding: 10px 0;
    text-align: center;
    order: -1;
    cursor: pointer;
    border: 2px solid #CCCCCC;
    border-radius: 50px;
}
.tab-label:hover {
    color: #fff;
    background-color: #08427D;
    border: 2px solid #08427D;
}
.tab-content {
    width: 100%;
    display: none;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    color: #08427D;
    border: 2px solid #08427D;
    cursor: default;
}
.tab-switch:checked+.tab-label:hover {
    color: #08427D;
    background-color: #fff;
    border: 2px solid #08427D;
}
.tab-switch:checked+.tab-label+.tab-content {
    display: block;
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}
#case {
    position: relative;
    z-index: 1;
}
#case::after {
    content: "";
    width: 100%;
    height: 120px;
    background: url(img/deco_case.svg) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
}


#result,
#price {
    background-color: #ECF6FF;
    position: relative;
}
.result_list {
}
.result_list > li {
    margin-top: 2rem;
    position: relative;
}
.result_list > li > img {
    margin-bottom: 1rem;
    border-radius: 10px;
}
.result_list > li > span {
    color: #fff;
    width: 60%;
    max-width: 240px;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.YouTube {
    background-color: #FF7575;
}
.Instagram {
    background-color: #F588F5;
}
.TikTok {
    background-color: #67D4DC;
}

.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    line-height: 1.5 !important;
}
.slash::before,
.slash::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #333;
    margin: 0px 20px;
    position: absolute;
}
.slash::before {
    transform: rotate(-20deg);
    left: 0;
    bottom: 0;
}
.slash::after {
    transform: rotate(20deg);
    right: 0;
    bottom: 0;
}

.whiteboard {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    position: relative;
}
.whiteboard_deco {
    display: none;
}
.point > li:not(:first-of-type) {
    margin-top: 40px;
}
.point > li > img {
    margin: 0 auto;
    display: block;
}
.point > li > .ttl {
    color: #08427D;
    font-size: 1.125rem;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
    line-height: 1.5;
}
#flow {
    position: relative;
}
#flow > .inner {
}
#flow > .inner > img {
    margin: 1rem auto;
    display: block;
}

.point_num {
    counter-reset: listnum;
}
.point_num > li {
    position: relative;
    z-index: 1;
}
.point_num > li::before {
    content: counter(listnum, decimal-leading-zero);
    counter-increment: listnum;
    color: #ECF6FF;
    font-size: 190px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    position: absolute;
    top: -30px;
    z-index: -1;
}
.point_num .ttl {
    font-size: 1.5rem !important;
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#price {
    position: relative;
    z-index: 1;
}
#price::after {
    content: "";
    width: 100%;
    height: 120px;
    background: url(img/deco_price.svg) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
}

.slider {
    background-color: #fff;
    width: 100%;
    height: 100px;
    margin: 1rem 0 0;
    border-top: 1px solid #9CCFFF;
    border-bottom: 1px solid #9CCFFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.slider-wrap {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(3000px * 2);
    height: 100px;
}
.slide {
    width: 3000px;
    height: 100px;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes scroll{
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(calc(-3000px * 1));
    }
}
.slide > img {
    max-height: 100%;
}
.slider-ttl {
    color: #fff;
    background-color: #08427D;
    width: 30%;
    max-width: 240px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
}
#recommend > p {
    font-size: 80%;
    margin-left: 10px;
}

.flex_box {
}
.flex_box > img {
    border-radius: 30px;
}
.flex_box > .text {
    padding: 20px 0;
}

.price_list {
}
.price_list li {
    color: #08427D;
    font-size: 1.25em;
    font-weight: bold;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.price_list li:not(:first-of-type) {
    margin-top: 1rem;
}
.price_list li:nth-of-type(2) {
    background-color: #FFFEE6;
    border: 4px solid #08427D;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 15%);
}
.price_list li > .ttl {
    font-size: 1.25em;
    background-color: #9CCFFF;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 6px 6px 0 0;
}
.price_list li:nth-of-type(2) > .ttl {
    background-color: #FFEE7E;
}
.price_list li > p {
    color: initial;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    padding: 3rem 20px 20px;
}
.circle {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background-color: #FF7575;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    text-align: center;
    line-height: 1.3;
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#price .cta_area {
    width: 100%;
    max-width: 1160px;
    margin: 4rem auto 0;
}










/*pc*/
@media screen and (min-width: 600px) {
.pc {
    display: block;
}
.sp {
    display: none;
}

body {
    font-size: 16px;
    width: 100%;
    min-width: 1280px;
}

.navi_area {
    display: block;
}

#mainimg {
    height: 680px;
    margin-bottom: 0;
}
#mainimg::after {
    width: 50%;
    height: 110%;
    top: 0;
    bottom: 0;
}
#mainimg > .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 100px;
    display: flex;
}
.main_copy {
    width: 680px;
}
.main_img {
    width: 600px;
    display: block;
}

.main_btn {
    margin-top: 40px;
}
.main_btn > span {
    font-size: 100%;
}
.main_btn > p {
    margin-bottom: 1rem;
}
.cta_btn {
    font-size: 2rem;
    letter-spacing: .15rem;
}
.main_btn > .cta_btn {
    font-size: 1.875rem;
    height: 100px;
}
.main_btn > span,
.contact_btn > span {
    font-size: 100%;
}

.inner {
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.subcopy,
.main_text {
    display: block;
}
.subcopy {
    font-size: 1.75em;
    margin-top: 2rem;
    line-height: 1.5;
}
.subcopy > span {
    color: #08427D;
    font-size: 140%;
}
.main_text {
    font-size: 1.25em;
    margin-top: 20px;
}

.ttl01 {
    top: 10px;
    left: 1rem;
    display: block;
}
.ttl02 {
    font-size: 3.5rem;
    padding-bottom: 40px;
}
.ttl03 {
    font-size: 2.25rem;
    line-height: 1.5;
}

.cta {
    padding: 60px 0;
}
.cta > .inner {
    margin: 0 auto;
    padding: 30px 60px 60px;
    position: relative;
}
.deco_cta01,
.deco_cta02 {
    display: block;
    position: absolute;
    bottom: -60px;
}
.deco_cta01 {
    width: 230px;
    right: -120px;
}
.deco_cta02 {
    width: 200px;
    left: -120px;
}
.cta_area,
.cta_area > .inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.cta_area > .inner {
    width: 70%;
    padding: 80px 0;
}
.fv_cta > .inner {
    padding: 40px 0;
}
.cta_area p {
    font-size: 1.25rem;
    margin: 0 auto 40px;
    text-align: center;
}
.contact_btn {
    width: 49%;
    margin-bottom: 0;
}
.btn_area {
    margin-top: 1rem;
    justify-content: space-between;
    flex-direction: row;
}
.cta_area .cta_btn,
.cta_area .cta_tel {
    width: 49%;
    margin: 0;
    border-width: 3px;
}
.cta_area .cta_btn {
    width: 100%;
    font-size: 1.875rem;
    height: 100px;
}
.cta_area .cta_tel {
    height: 104px;
    margin: 0;
}
.cta_area > .ttl {
    font-size: 3rem;
}
.cta_tel {
    font-size: 2.5rem;
    cursor: default;
}
.cta_tel > img {
    width: 30px;
}

.accordion {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.accordion-item {
    border-width: 3px;
}
.accordion-item:not(:first-of-type) {
    margin-top: 20px;
}
.accordion-title {
    font-size: 1.25rem;
    font-weight: bold;
    padding-left: 20px;
}
.accordion-content {
    padding-left: 20px;
}
.accordion-title::before,
.accordion-content > p::before {
    font-size: 2rem;
    padding-right: 1rem;
}
.accordion-title::after {
    width: 30px;
    height: 30px;
    margin-top: -22px;
    right: 40px;
}

.flex_area {
    display: flex;
    justify-content: space-between;
}
.flex_area > .box {
    width: 50%;
    align-content: flex-start;
}
.flex_area > .box:not(:first-of-type) {
    margin-top: 0;
}
.flex_area > .box:nth-of-type(2) {
    padding: 0;
    border: 0;
}
.center_flex {
    justify-content: center;
    align-items: center;
}
#footer_navi > li,
.tbl,
#footer_navi p {
}
#footer_navi > .inner {
    padding: 60px 0;
}
#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 > .box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tbl th,
.tbl td {
    line-height: 1.5;
}
.tbl th {
    text-align: center;
    vertical-align: middle;
}
footer {
    padding: 1rem 0;
}

#btn_sp {
    display: none;
}

#worries {
}
#worries::after,
#case::after,
#price::after {
    background-size: auto;
    height: 240px;
}
#worries::after {
    top: 40px;
}
#case::after {
    top: 60px;
}
#worries > .inner {
    padding-top: 60px;
}
.worries {
    display: flex;
    justify-content: space-between;
}
.worries > li {
    background-color: transparent;
    width: 400px;
    height: 400px;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.worries > li::after {
    content: "";
    background-color: #eee;
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}
.worries > li > img {
    width: 157px;
}
.worries > li > p {
    font-size: 1.5rem;
    padding: 20px 0 0;
    line-height: 1.5;
}
.resolution {
    font-size: 2rem;
    margin-top: 40px;
    line-height: 2;
}
.resolution > span {
    font-size: 160%;
    margin: 0 10px;
    padding: 5px;
    font-feature-settings: "palt";
    letter-spacing: .3rem;
}
.worries_text {
    font-size: 3.5rem;
    margin-top: 2rem;
}

.triangle {
    margin: 40px auto;
}
.triangle::after {
    border-right: 150px solid transparent;
    border-left: 150px solid transparent;
    border-top: 100px solid #ECF6FF;
    top: -20px;
}

.support_list > li {
    font-size: 1.125rem;
    font-weight: bold;
}
.support_list > li:nth-of-type(n+4) {
    margin-top: 10px;
}

#reason {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
#reason::before,
#reason::after,
#flow::before,
#flow::after,
#price::before {
    content: "";
    background-color: #9CCFFF;
    width: 200px;
    height: 400px;
    position: absolute;
}
#reason::before,
#flow::before,
#price::before {
    border-radius: 0 1000px 1000px 0;
    left: 0;
}
#reason::before,
#flow::before,
#price::before  {
    top: -200px;
}
#reason::after,
#flow::after {
    border-radius: 1000px 0 0 1000px;
    right: 0;
}
#reason::after,
#flow::after {
    top: 50%;
}

.reason > .flex_area {
    align-items: flex-end;
}
.reason > .flex_area:not(:first-of-type) {
    margin-top: 100px;
}
.reason > .flex_area > .box:first-of-type {
    font-size: 2rem;
    width: 800px;
    min-height: 400px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-content: center;
}
.reason > .flex_area > .box:nth-of-type(2) {
    width: calc(1280px - 800px);
    padding: 0 60px;
}
.reason > .flex_area:nth-of-type(odd) {
}
.reason > .flex_area > .box p {
    font-size: 1.25rem;
    font-weight: bold;
}
.reason > .flex_area > .box:first-of-type p {
    font-size: 2rem;
}
.deco01::after,
.deco02::after,
.deco03::after {
    height: 80%;
    bottom: 0;
}
.deco01::after,
.deco03::after {
    background-position: left bottom;
}
.deco02::after {
    background-position: right bottom;
}

.support_list {
    padding: 60px;
}
.support_list > li {
    width: 31%;
    padding: 1rem 0;
    border-radius: 10px;
}
.support_list > li:nth-of-type(n+4) {
    margin-top: 20px;
}

.brackets::before,
.brackets::after {
    content: "";
    width: 100px;
    border-width: 20px;
}
.brackets::before {
    top: -10px;
    left: -10px;
}
.brackets::after {
    right: -10px;
    bottom: -10px;
}

.case_area {
    justify-content: center;
}
.case_area > li {
    width: 240px;
    height: 240px;
    margin: 0 20px;
}
.case_area > li:nth-of-type(n+3) {
    margin-top: 0;
}
.case_area > li:nth-of-type(n+5) {
    margin-top: 40px;
}
.case_area > li > .ttl {
    font-size: 1rem;
    padding: 10px 0;
}
.case_text {
    margin-bottom: 40px;
    text-align: center;
}

.slash {
    flex-direction: row;
    align-items: flex-end;
}
.slash::before,
.slash::after {
    width: 2px;
    position: static;
}

.whiteboard {
    padding: 60px 60px 140px;
    border-radius: 50px;
    background-image: linear-gradient(1deg, rgba(240, 240, 240, 1), rgba(255, 255, 255, 1) 20%);
    position: relative;
}
.whiteboard::after {
    content: "";
    background: url(img/deco01.svg) no-repeat center bottom;
    background-size: contain;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.whiteboard_deco {
    display: block;
    position: absolute;
    right: 60px;
    top: -260px;
}

.point {
    display: flex;
    justify-content: space-between;
}
.point > li {
    font-size: 1.25rem;
    width: 340px;
}
.point > li:not(:first-of-type) {
    margin-top: 0;
}
.point > li > .ttl {
    font-size: 1.875rem !important;
}

#flow > .inner > p {
    font-size: 1.25em;
    text-align: center;
}

.flex_box {
    display: flex;
}
.flex_box:nth-of-type(even) {
    flex-direction: row-reverse;
}
.flex_box > img,
.flex_box > .text {
    width: 50%;
}
.flex_box > .text {
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result_list {
    display: flex;
    justify-content: space-between;
}
.result_list > li {
    width: 400px;
}
.result_list > li > .ttl03 {
    text-align: center;
}

.price_list {
    display: flex;
    justify-content: space-between;
}
.price_list li {
    width: 400px;
}
.price_list li:not(:first-of-type) {
    margin-top: 0;
}
.price_list li > p {
    font-size: 16px;
}

}










@media screen and (min-width: 600px) {
a.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

header {
    display: flex;
    justify-content: space-between;
    height: 90px;
}
.fixed {
    background-color: rgba(255,255,255,0.75);
    position: fixed;
    top: 0;
    left: 0;
}

.logo img {
    width: 140px;
}

#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;
    font-weight: bold;
    margin: 0 5px;
    border-bottom: 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:last-of-type a {
    margin-top: 0;
}
.navi > ul > li > a {
    padding: 10px;
    position: relative;
}
.navi > ul > li:not(:last-of-type) > a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #9CCFFF;
    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 a::before {
    display: none;
}

.dropdown__lists {
    visibility: hidden;
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 200px;
    margin: 0;
    position: absolute;
    top: 60px;
    left: 0;
}
.gnavi__list::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    transition: all .3s;
    position: relative;
}
.dropdown__list a {
    background-color: #08427D;
    font-size: 14px;
    padding: 1rem;
    display: flex;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a:hover {
    background-color: #2575c5;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}

.btn_head {
    font-size: 18px;
    font-weight: 700;
    width: 200px !important;
    margin-top: 0;
    padding: 1rem 0 !important;
    text-align: center;
    box-shadow: rgb(0 116 47) 0px 4px 0px;
    font-feature-settings: "palt";
    letter-spacing: .05rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.tel_pc {
    color: #08427D;
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;
    width: 200px;
    height: 60px;
    margin-right: 10px;
    text-align: center;
    border: 2px solid #EEEEEE;
    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: 5px 0 0;
    padding: 0;
    line-height: 1;
}
.tel_pc img {
    width: 20px;
    background-color: #08427D;
    margin-right: 5px;
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 50%;
}

}





