@charset "utf-8";

.content, .content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content td, .content th, .content p, .content div, .content input, .content textarea, .content pre, .content ul, .content li, .content ol {
    font-family: "Noto Sans JP", sans-serif;
}
.content {
    color: #3c3c3c;
    font-weight:400;
    background: #eef3f8;
    overflow: clip;
}
.content p, .content li, .content dt, .content dd, .content td, .content th {
    color: #3c3c3c;
}
a[href^="tel:"]{
    color: #3c3c3c;
    text-decoration: none;
}
h2 {
    font-size: 43px;
    text-align: center;
    font-weight: bold;
    background: #055cb6;
    color: #fff;
    border-radius: 6px;
    line-height: 1.3;
    padding: 20px 15px;
    box-sizing: border-box;
    height: 160px;
    box-shadow: 0px 3px 9px 0px rgba(84, 83, 83, 0.6);
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
h3 {
    font-size: 40px;
    color: #055cb6;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}
h4 {
    font-size: 30px;
    font-weight: 600;
}
.box_h3 {
    background: #fff;
    border: 3px solid #055cb6;
    border-radius: 6px;
    padding: 50px 40px;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
    margin-top: 80px;
}
.box_h3 h3 {
    text-align: center;
    position: relative;
}
.box_h3 h3:before {
    content: '';
    position: absolute;
    bottom: -30px;
    display: inline-block;
    width: 50px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #055cb6;
}
.box_h3 h4 {
    text-align: center;
    margin-top: 58px;
    margin-bottom: 30px;
}
.box_h3 p {
    font-size: 18px;
    line-height: 1.7;
}
.txt_normal {
    font-size: 20px;
    line-height: 2;
}
.txt_note {
    font-size: 18px;
    line-height: 1.7;
    text-indent: -1em;
    padding-left: 1em;
}
.txt_normal + .txt_note {
    margin-top: 10px;
}
.txt_normal + .box_h3 {
    margin-top: 60px;
}
.box_h3 h3 + p {
    margin-top: 58px;
}
.note {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
}
.lp_main {
    background: #055CB6;
    background: linear-gradient(0deg, rgba(5, 92, 182, 1) 0%, rgba(31, 130, 232, 1) 100%);
    position: relative;
}
.lp_main h1 img, .section01 .ttl img {
    width: 100%;
    height: auto;
}
a.link_normal {
    color: #055cb6;
    font-size: 18px;
    position: relative;
    display: inline-block;
    padding-left: 18px;
}
a.link_normal::before {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 1px solid #055cb6;
    border-bottom: 1px solid #055cb6;
    position: absolute;
    left: 0;
    top: 9px;
    transform: rotate(-45deg);
}
.txt_normal + a.link_normal {
    margin-top: 8px;
}
.button a {
    color: #3c3c3c;
    font-size: 26px;
    position: relative;
    text-decoration: none;
    background: #fffa6d;
    font-weight: 500;
    width: 400px;
    height: 90px;
    text-align: center;
    border-radius: 9px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
    transition : all 0.3s;
}
.button a:hover {
    background: #fcff93;
    box-shadow: 0 3px 12px 0px rgba(130, 129, 129, 0.8);
    transition : all 0.3s;
}
.button a::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid #3c3c3c;
    border-bottom: 2px solid #3c3c3c;
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,75%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}
.modal:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}
.modal.is-active{
    opacity: 1;
    visibility: visible;
    z-index: 999999;
}
.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 900px;
    width: 90%;
    border: 3px solid #055cb6;
    border-radius: 6px;
}
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    color: #fff;
    background: #055cb6;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.75em;
    transition : all 0.3s;
}
.modal-close:hover {
    background: #1f82e8;
    transition : all 0.3s;
}
.modal-content{
    background: #fff;
    text-align: left;
    line-height: 1.8;
    padding: 50px 40px;
}
.modal-content .box_h3 {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 0;
}
.modal-content .box_h3 h4 {
    margin-top: 0;
}
.section + .section {
    margin-top: 130px;
}
.section01 {
    background: #fff;
    padding: 100px 0 133px;
    background-image: url(../images/bg.png);
    background-size: 300px;
    position: relative;
}
.section01::before {
    content: "";
    width: 100%;
    height: 78px;
    background-color: #eef3f8;
    position: absolute;
    bottom: 0px;
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
    z-index: 1;
}
.section01::after {
    content: "";
    width: 100%;
    height: 78px;
    background-color: #eef3f8;
    position: absolute;
    bottom: 0px;
    clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
    z-index: 1;
}
.section01 .section01_inner::before {
    content: '';
    position: absolute;
    background-image: url(../images/section01_01.png);
    width: 202px;
    height: 369px;
    bottom: 35px;
    left: 50%;
    transform: translateX(-302%);
}
.section01 .section01_inner::after {
    content: '';
    position: absolute;
    background-image: url(../images/section01_02.png);
    width: 204px;
    height: 389px;
    bottom: 35px;
    right: 50%;
    transform: translateX(297%);
}
.section01 .flex_link {
    width: 960px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 40px;
    margin: 0 auto;
}
.section01 .flex_link a {
    background: #055cb6;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    width: 293px;
    height: 116px;
    font-size: 21px;
    box-sizing: border-box;
    box-shadow: 0px 3px 9px 0px rgba(84, 83, 83, 0.6);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
    transition : all 0.3s;
}
.section01 .flex_link a::after{
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 14px 15px 0 15px;
    border-color: #fff transparent transparent transparent;
    width: 0;
    height: 0;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.section01 .flex_link a:hover {
    background: #1f82e8;
    box-shadow: 0 3px 13px 0px rgba(51, 51, 51, 0.9);
    transition : all 0.3s;
}
.inner {
    width: 960px;
    margin: 0 auto;
}
.section02 {
    padding-top: 75px;
    position: relative;
}
.section02 .flex_payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 55px;
    gap: 25px 0;
}
.section02 .flex_payment li {
    text-align: center;
    width: 305px;
    height: 315px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    gap: 40px 0;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
}
.section02 .flex_payment li p {
    color: #055cb6;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-top: 40px;
}
.section03 .flex_plan {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 55px;
    gap: 25px 0;
}
.section03 .flex_plan li {
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
    width: 305px;
    height: 305px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border: 3px solid #055cb6;
    align-items: center;
    justify-content: center;
}
.section03 .flex_plan li p {
    font-size: 40px;
    font-weight: bold;
    color: #055cb6;
}
.section03 .flex_plan li p.txt_note {
    font-size: 19px;
    line-height: 1.5;
    font-weight: normal;
}
.section03 .flex_plan li p:nth-child(2) {
    margin-top: 3px;
}
.section03 .box {
    position: relative;
    z-index: 1;
}
.section03 .box.box1 {
    margin-top: 80px;
}
.section03 .box + .box {
    margin-top: 60px;
}
.section03 .box::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: #fff;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
}
.section03 .box:nth-child(odd) {
    margin-right: -127px;
    padding: 60px 127px 60px 0;
}
.section03 .box:nth-child(even) {
    margin-left: -127px;
    padding: 60px 0 60px 127px;
}
.section03 .box:nth-child(even)::before {
    left: 0;
    border-radius: 140px 0 0 140px;
}
.section03 .box:nth-child(odd)::before {
    right: 0;
    border-radius: 0 140px 140px 0;
}
.section03 .box:nth-child(even) {
    flex-direction: row-reverse;
}
.section03 .box .box_top,
.section03 .box .box_bottom {
    display: flex;
    align-items: flex-start;
    width: 960px;
    justify-content: space-between;
}
.section03 .box .box_top .left_box {
    width: 500px;
}
.section03 .commission {
    font-size: 24px;
    background: #7091b2;
    color: #fff;
    width: 960px;
    height: 50px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-top: 30px;
}
.section03 .box .box_bottom .left_box {
    width: 352px;
    text-align: center;
}
.section03 .box .box_bottom .right_box {
    width: 561px;
    text-align: center;
}
.section03 .commission_ttl {
    font-size: 21px;
    color: #fff;
    background: #055cb6;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 22px;
    font-weight: 600;
}
.section04 .step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section04 .box_step {
    width: 210px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.section04 .box_step + .box_step {
    position: relative;
}
.section04 .box_step + .box_step:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 11px solid #055cb6;
    border-right: 0;
    left: -25px;
    top: 34px;
}
.section04 .step_img {
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
    width: 210px;
    border: 3px solid #055cb6;
    background: #fff;
    border-radius: 6px;
    height: 96px;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    box-sizing: border-box;
}
.section04 .step_img .step_left {
    width: 94px;
    background: #055cb6;
    height: 100%;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 500;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}
.section04 .step_img .step_left span {
    display: block;
    font-size: 39px;
    font-weight: 600;
}
.section04 .step_img .step_right {
    margin: 0 auto;
}
.section04 .step_img .step_right img {
    width: 66px;
}
.section04 .step_ttl {
    font-size: 19px;
    color: #055cb6;
    font-weight: 600;
    margin-bottom: 12px;
}
.section04 .step_txt {
    font-size: 16px;
}
.section05 .box_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 63px;
}
.section05 .box_flex img {
    width: 420px;
    height: auto;
}
.section05 .box_flex p {
    width: 412px;
}
.section05 .box_card_type {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section05 .box_card_type .card_type {
    display: flex;
    flex-direction: column;
    width: 273px;
}
.section05 .box_card_type .card_type .creditcard_ttl {
    font-size: 16px;
    background: #055cb6;
    color: #fff;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section05 .box_card_type .card_type .creditcard img {
    width: 200px;
    height: auto;
    margin: 30px auto 23px;
    display: block;
}
.section05 .box_card_type .card_type .creditcard_name {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    line-height: 1.7;
    flex-grow:1;
}
.section05 .box_card_type .card_type .creditcard_list {
    margin: 17px 0 25px;
    line-height: 1.7;
    font-size: 16px;
    flex-grow:1;
}
.section05 .box_card_type .card_type .creditcard_list li {
    font-size: 16px;
    position: relative;
    padding-left: 15px;
}
.section05 .box_card_type .card_type .creditcard_list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 18px;
    padding-right: 5px;
    color: #055cb6;
}
.section05 .box_card_type .card_type a.btn_outline {
    color: #055cb6;
    text-decoration: none;
    background: #fff;
    border: 2px solid #055cb6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    height: 41px;
    line-height: 1;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0px 3px 9px 0px rgba(154, 155, 155, 0.4);
    position: relative;
    transition : all 0.3s;
}
.section05 .box_card_type .card_type a.btn_outline::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #055cb6;
    border-bottom: 2px solid #055cb6;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.section05 .box_card_type .card_type a.btn_outline:hover {
    background: #f0f8ff;
    box-shadow: 0 3px 12px 0px rgba(130, 129, 129, 0.8);
    transition : all 0.3s;
}
.section05 .box_h3 p.note {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 30px;
}
.section06 {
    padding-bottom: 130px;
}
.section06 .accordion_one + .accordion_one {
    margin-top: 30px;
}
.section06 .accordion_one .accordion_header {
    background: #7091b2;
    border-radius: 6px;
    line-height: 1.4;
    padding: 0 130px 0 28px;
    position: relative;
    cursor: pointer;
    transition-duration: 0.2s;
    display: grid;
    grid-template-columns: 42px 1fr;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 85px;
    align-items: center;
    transition : all 0.3s;
}
.section06 .accordion_one .accordion_header:hover {
    opacity: 0.7;
    transition : all 0.3s;
}
.section06 .accordion_one .accordion_header::after{
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(135deg);
}
.section06 .accordion_one .accordion_header.open::after  {
    transform: translateY(-50%) rotate(315deg);
}
.section06 .accordion_one .accordion_header span {
    font-size: 31px;
    line-height: 1.2;
    margin-top: -5px;
}
.section06 .accordion_one .accordion_inner {
    display: none;
    padding: 25px 25px 5px;
}
.section06 .accordion_one .accordion_inner .box_one {
    display: grid;
    grid-template-columns: 42px 1fr;
}
.section06 .accordion_one .accordion_inner .box_one .txt_a {
    color: #7091b2;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 600;
}
.section06 .accordion_one .accordion_inner .box_one .faq_table {
    width: 100%;
    text-align: center;
}
.section06 .accordion_one .accordion_inner .box_one .faq_table tr, 
.section06 .accordion_one .accordion_inner .box_one .faq_table th, 
.section06 .accordion_one .accordion_inner .box_one .faq_table td {
    border: 2px solid #7091b2;
    font-size: 18px;
}
.section06 .accordion_one .accordion_inner .box_one .faq_table th {
    background: #055cb6;
    color: #fff;
    padding: 5px 5px;
}
.section06 .accordion_one .accordion_inner .box_one .faq_table td {
    height: 53px;
}
.section06 .accordion_one .accordion_inner .box_one .faq_table th:nth-of-type(2), 
.section06 .accordion_one .accordion_inner .box_one .faq_table th:nth-of-type(3) {
    width: 39%;
}
.section07 {
    background: #cde0f3;
    padding: 70px 0;
}
.section07 ul {
    margin-top: 30px;
}
.section07 ul li {
    font-size: 14px;
    line-height: 1.86em;
    text-indent: -1em;
    padding-left: 1em;
}
.section08 {
    background: #fff;
    padding-top: 20px;
}
.section08 ul li {
    line-height: 1.86em;
    text-indent: -1em;
    padding-left: 1em;
}

/* PC */
@media screen and (min-width: 768px){
	a[href^="tel:"]{
	    pointer-events: none;
	}
	.abstract {
	    height: auto;
	    padding: 88px 2% 0;
	}
	.lp_main h1 {
	    max-width: 1066px;
	    margin: 0 auto;
	}
	.section01 .ttl {
	    max-width: 871px;
	    margin: 120px auto 0;
	    z-index: 2;
	    position: relative;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.abstract {
	    padding: 80px 3% 0;
	}
	h2 {
	    font-size: 26px;
	    margin-bottom: 30px;
	    height: auto;
	}
	h3 {
	    font-size: 23px;
	}
	h4 {
	    font-size: 20px;
	}
	.box_h3 {
	    border: 3px solid #055cb6;
	    padding: 30px 15px;
	    margin-top: 40px;
	}
	.box_h3 h3:before {
	    bottom: -25px;
	    width: 40px;
	    height: 4px;
	}
	.box_h3 h4 {
	    margin-top: 50px;
	    margin-bottom: 20px;
	}
	.box_h3 p {
	    font-size: 16px;
	}
	.txt_normal {
	    font-size: 17px;
	    line-height: 1.8;
	}
	.txt_note {
	    font-size: 15px;
	}
	.txt_normal + .box_h3 {
	    margin-top: 27px;
	}
	.box_h3 h3 + p {
	    margin-top: 50px;
	}
	.lp_main h1 {
	    max-width: 750px;
	    margin: 0 auto;
	}
	a.link_normal {
	    font-size: 17px;
	}
	.button a {
	    font-size: 18px;
	    width: 100%;
	    height: auto;
	    padding: 13px 7px;
	    margin-top: 15px;
	}
	.button a::after {
	    width: 7px;
	    height: 7px;
	    right: 13px;
	}
	.modal-container {
	    width: 95%;
	    border: 2px solid #055cb6;
	}
	.modal-content {
	    padding: 30px 15px;
	}
	.modal-close {
	    width: 40px;
	    height: 40px;
	    font-size: 1.55em;
	}
	.section + .section {
	    margin-top: 70px;
	}
	.section01 {
	    padding: 40px 0 20px;
	}
	.section01::before, 
	.section01::after {
	    height: 60px;
	}
	.section01 .section01_inner::before, 
	.section01 .section01_inner::after {
	    content: none;
	}
	.section01 .flex_link {
	    width: 90%;
	    gap: 20px 40px;
	}
	.section01 .flex_link li {
	    width: 100%;
	}
	.section01 .flex_link a {
	    width: 100%;
	    height: auto;
	    font-size: 18px;
	    padding: 10px 0 30px;
	}
	.section01 .flex_link a::after {
	    border-width: 9px 11px 0 11px;
	    bottom: 12px;
	}
	.section01 .ttl {
	    max-width: 750px;
	    margin: 50px auto 0;
	    width: 90%;
	    z-index: 2;
	    position: relative;
	}
	.section01 .section01_img {
	    margin: 20px auto 0;
	    width: 86%;
	    display: block;
	}
	.inner {
	    width: 90%;
	}
	.section02 {
	    padding-top: 40px;
	}
	.section02 .flex_payment {
	    margin-top: 27px;
	}
	.section02 .flex_payment li {
	    width: 100%;
	    height: auto;
	    gap: 30px 0;
	}
	.section02 .flex_payment li p {
	    margin-top: 35px;
	}
	.section02 .flex_payment li img {
	    max-width: 257px;
	    margin-bottom: 35px;
	}
	.section03 .flex_plan {
	    margin-top: 27px;
	}
	.section03 .flex_plan li {
	    width: 100%;
	    height: 100%;
	    aspect-ratio: 1 / 1;
	    max-width: 270px;
	    margin: 0 auto;
	}
	.section03 .flex_plan li p {
	    font-size: 33px;
	}
	.section03 .flex_plan li p.txt_note {
	    font-size: 16px;
	}
	.section03 .box {
	  padding: 35px 0 35px;
	}
	.section03 .box + .box {
	    margin-top: 35px;
	}
	.section03 .box.box1 {
	    margin-top: 30px;
	}
	.section03 .box:nth-child(odd) {
	    padding: 35px 0 35px;
	    margin-right: -2%;
	}
	.section03 .box:nth-child(even) {
	    padding: 35px 0 35px;
	    margin-left: -2%;
	}
	.section03 .box:nth-child(even)::before {
	  left: 0;
	  border-radius: 70px 0 0 70px;
	}
	.section03 .box:nth-child(odd)::before {
	  right: 0;
	  border-radius: 0 70px 70px 0;
	}
	.section03 .box .box_top, .section03 .box .box_bottom {
	    flex-wrap: wrap;
	    width: 90%;
	}
	.section03 .box:nth-child(odd) .box_top, .section03 .box:nth-child(odd) .box_bottom {
	    padding-left: 3%;
	}
	.section03 .box:nth-child(even) .box_top, .section03 .box:nth-child(even) .box_bottom {
	    margin-left: auto;
	}
	.section03 .box .box_top .left_box, 
	.section03 .box .box_top .right_box, 
	.section03 .box .box_bottom .left_box, 
	.section03 .box .box_bottom .right_box {
	    width: 100%;
	}
	.section03 .commission {
	    font-size: 19px;
	    width: 90%;
	    height: 40px;
	    margin-top: 25px;
	}
	.section03 .box:nth-child(odd) .commission {
	    margin-left: 3%;
	}
	.section03 .box:nth-child(even) .commission {
	    margin-left: auto;
	}
	.section03 .box .box_bottom .left_box, .section03 .box .box_bottom .right_box {
	    width: 100%;
	}
	.section03 .commission_ttl {
	    font-size: 18px;
	    height: 38px;
	    margin-top: 17px;
	    margin-bottom: 17px;
	}
	.section03 .section03_01 {
	    max-width: 332px;
	}
	.section03 .section03_02_01_sp {
	    max-width: 234px;
	}
	.section03 .section03_02_02_sp {
	    max-width: 219px;
	}
	.section03 .border {
	    border-top: 2px solid #7091b2;
	    padding-bottom: 18px;
	    margin-top: 18px;
	}
	.section03 .box_sp {
	    width: 90%;
	    margin-left: 3%;
	    box-sizing: border-box;
	}
	.section04 .box_step {
	    width: 100%;
	}
	.section04 .step_img {
	    width: 100%;
	    height: 85px;
	    margin-bottom: 12px;
	}
	.section04 .step_img .step_left {
	    width: 45%;
	    font-size: 21px;
	}
	.section04 .step_img .step_left span {
	    font-size: 35px;
	}
	.section04 .step_img .step_right img {
	    width: 58px;
	}
	.section04 .step_ttl {
	    margin-bottom: 8px;
	}
	.section04 .box_step + .box_step {
	    margin-top: 40px;
	}
	.section04 .box_step + .box_step:before {
	    left: 50%;
	    top: -24px;
	    transform: translateX(-50%);
	    border-right: 20px solid transparent;
	    border-left: 20px solid transparent;
	    border-top: 13px solid #055cb6;
	    border-bottom: 0;
	}
	.section05 .box_flex {
	    margin-top: 55px;
	}
	.section05 .box_flex img {
	    width: 100%;
	    margin-bottom: 20px;
	}
	.section05 .box_flex p {
	    width: 100%;
	}

	.section05 .box_card_type {
	    margin-top: 30px;
	}
	.section05 .box_card_type .card_type {
	    width: 100%;
	}
	.section05 .box_card_type .card_type + .card_type {
	    margin-top: 40px;
	}
	.section05 .box_card_type .card_type a.btn_outline {
	    font-size: 18px;
	}
	.section05 .box_h3 p.note {
	    font-size: 14px;
	    margin-top: 25px;
	}
	.section06 {
	    padding-bottom: 70px;
	}
	.section06 .accordion_one + .accordion_one {
	    margin-top: 20px;
	}
	.section06 .accordion_one .accordion_inner .box_one .faq_table tr, 
	.section06 .accordion_one .accordion_inner .box_one .faq_table th, 
	.section06 .accordion_one .accordion_inner .box_one .faq_table td {
	    border: 1px solid #7091b2;
	    font-size: 14px;
	}
	.section06 .accordion_one .accordion_inner .box_one .faq_table td {
	    height: 45px;
	    padding: 0 5px;
	}
	.section06 .accordion_one .accordion_header {
	    padding: 9px 40px 9px 15px;
	    grid-template-columns: 30px 1fr;
	    font-size: 17px;
	    height: auto;
	}
	.section06 .accordion_one .accordion_header::after {
	    right: 15px;
	    width: 7px;
	    height: 7px;
	}
	.section06 .accordion_one .accordion_inner .box_one {
	    grid-template-columns: 30px 1fr;
	}
	.section06 .accordion_one .accordion_inner {
	    padding: 15px 2px 5px 15px;
	}
	.section06 .accordion_one .accordion_header span {
	    font-size: 22px;
	}
	.section06 .accordion_one .accordion_inner .box_one .txt_a {
	    font-size: 22px;
	}
	.section07 {
	    padding: 45px 0;
	}
	.section07 ul {
	    margin-top: 20px;
	}
	.section07 ul li {
	    font-size: min(13px, 3.2vw);
	    line-height: 1.65em;
	}
}
