html {
    max-width: 100%;
    height: auto;
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}

h2,h3,h4 {
    line-height: 1.4;
    color: var(--dark);
}

p,a {
    letter-spacing: 0.03em;
    line-height: 1.8;
    color: var(--navy);
}

a:hover{
    opacity: 0.85;
    transition: 0.5s;
}

.pt10{
    padding-top: 10px;
}
.pt20{
    padding-top: 20px;
}
.pt30{
    padding-top: 30px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}

.pb10{
    padding-bottom: 10px;
}
.pb20{
    padding-bottom: 20px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}

.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}

.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mb50{
    margin-bottom: 50px;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.pc_only{
    display: block;
}

.sp_only{
    display: none;
}

@media (max-width: 680px) {
    .pc_only{
        display: none;
    }
    .sp_only{
        display: block;
    }
}

:root {
    --dark: #223953;
    --white: #fff;
    --dark-blue: #00385E;
    --brown: #8B380D;
    --pink: #D8176B;
    --red: #E65245;
    --indigo: #255598;
    --light: #005998;
    --light-blue: #5CA0CE;
    --navy: #082454;
    --yellow: #FFEC5B;
    --orange: #F15F2C;
    --light-gray: #F8F8F8;
}

/*-- MVエリア --*/

main {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

header {
    background: var(--light);
    padding: 17px 0 27px;
    position: relative;
    margin-bottom: 30px;
}

header::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 27px 0 27px;
  border-color: var(--light) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

header h2 {
    color: var(--white);
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
}

header h2 span {
    border-bottom: solid 3px var(--yellow);
}

.fv_title img:first-of-type {
    width: 82%;
    padding-bottom: 30px;
}

.fv_title img:last-of-type {
    width: 87%;
    padding-bottom: 50px;
}

button {
    display: block;
    margin: 0 auto;
}

img.btn_animation {
    margin: 0 auto;
    animation: beside 2s linear infinite;
    transform-origin:center;
    cursor: pointer;
}

@keyframes beside {
    0% {transform: translate(2px, 0px);}
    5% {transform: translate(-2px, 0px);}
    10% {transform: translate(2px, 0px);}
    15% {transform: translate(-2px, 0px);}
    20% {transform: translate(2px, 0px);}
    25% {transform: translate(-2px, 0px);}
    30% {transform: translate(0px, 0px);}
}

 .fix_btn {
    position: relative;
    text-align: center;
 }
  .fix_btn a {
    max-width: 550px;
    width: 100%;
    font-size: 1em;
    font-weight: 600;
    position: fixed;
    bottom: 0;
    background: var(--orange);
    color: var(--white);
    padding: 13px 30px;
    border: solid 3px var(--white);
    box-shadow: 0px 2px 16px -8px #04233F;
    border-radius: 35px;
    left: 50%;
    transform: translate(-50%, -15%);
    z-index: 9;
    opacity: 1;
 }

 .fix_btn a:hover {
    background: #fa875f;
    transition: 0.5s;
 }

.fv_contain {
    position: relative;
    background-image: url(../img/fv_bottom_bgi.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.fv_contain button {
    padding-bottom: 6.6rem;
}

.top_title_bgc h2 {
    font-size: 1.5em;
    color: var(--yellow);
    background: var(--dark-blue);
    padding: 40px 0 30px;
    font-weight: 500;
}

.top_title_bgc img {
    display: flex;
    justify-content: center;
    margin: -6px auto 0;
}

/*-- inviewアニメ―ション--*/
.js-fadeUp {
  opacity: 0; 
  transform: translateY(20px);
  transition: opacity .8s, transform .8s;
}

.js-fadeUp.is-inview {
  opacity: 1; 
  transform: translateY(0); 
  transition-delay: .2s;
}

.satisfy_bgi {
    background-image: url(../img/rectangle_bgi.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -38px;
    padding: 0 3.5%;
}

.satisfy_text {
    padding: 80px 0 50px;
}

.satisfy_text p {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
}

.satisfy_list {
    background: var(--white);
    box-shadow: 0px 2px 16px -8px #04233F;
    padding: 25px 0 15px 40px; 
}

.satisfy_list li img {
    padding-right: 0.3rem;
}

.satisfy_list li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.satisfy_list li span {
    font-weight: 700;
}

.satisfy_bgi .satisfy_text:last-of-type {
    padding: 40px 0;
}

.satisfy_bgi .satisfy_text:last-of-type p {
    font-size: 1em;
    font-weight: 400;
}

.satisfy_triangle {
  position: relative;
  width: 114px;
  margin: 25px auto;
  height: 50px;
  background: var(--dark-blue); 
  clip-path: polygon(50% 100%, 0 0, 100% 0); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
}

.satisfy_triangle p {
    font-size: 1em;
    color: var(--white);
    font-weight: 500!important;
    padding-bottom: 15px;
}

.satisfy_text p strong {
    font-size: 1.4em;
    background: linear-gradient(transparent 65%, var(--yellow) 50%);
}

.wrap {
    max-width: 600px;
    width: 100%;
    margin: 0 auto
}

.blur_bgi {
    background-image: url(../img/blur_bgi.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 -100px;
}

.common_title {
    text-align: center;
    padding: 60px 0;
}

.common_title p {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.2;
}

.common_title h2 {
    position: relative;
    display: inline-block;
    font-size: 1.6em;
    font-weight: 800;
    line-height: 1.2;
}

.common_title h2:before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--dark);
  border-radius: 2px;
}

.common_title h2 span {
    font-size: 1.25em;
}

.assumptions_text {
    font-size: 0.9em;
    padding-bottom: 40px;
}

.blur_bgi .assumptions_box_tit:last-of-type h3 {
    border-radius: 50px;
}

.assumptions_box {
    border-top: dotted 1px var(--light-blue);
    text-align: center;
    padding-top: 20px;
}

.blur_bgi .assumptions_box:last-of-type {
    border-bottom: dotted 1px var(--light-blue);
}

.assumptions_box_tit {
    max-width: 560px;
    width: 100%;
    margin: 0 auto 10px;
}

.assumptions_box_tit h3 {
    font-size: 1.1em;
    font-weight: 800;
    color: var(--brown);
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0px 2px 16px -8px #04233F;
    padding: 15px 20px;
    margin-top: -10px
}

.assumptions_box p {
    font-size: 0.9em;
    font-weight: 600;
    padding-bottom: 30px;
}

.blur_bgi h4 {
    font-size: 1.2em;
    font-weight: 600;
    padding: 60px 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    line-height: 1.7;
    letter-spacing: 0.05em;
}

.blur_bgi h4 span {
    font-size: 1.6em;
    color: var(--pink);
}

.assumptions_diamond {
  width: 76px;
  height: 76px;
  background: var(--pink);
  transform: rotate(45deg);
  position: relative;
  margin: 0 auto -38px;
}

.assumptions_diamond p {
  width: 76px;
  transform: rotate(-45deg);
  text-align: center;
  position: absolute;
  top: 15px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--white);
}

.gradually_bgi {
    background-image: url(../img/gradually_bgi.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 40px;
}

.negative_box {
    max-width: 520px;
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--white);
    padding: 30px 0;
    margin: 0 auto 30px;
}

.negative_box img:first-of-type {
    position: absolute;
    top: 0;
    right: 0;
}

.negative_box img:last-of-type {
    position: absolute;
    left: 0;
    bottom: 0;
}

.negative_box p:first-of-type {
    font-size: 0.9em;
}

.negative_box p:last-of-type {
    font-size: 1.1em;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.white_bgi {
    background-image: url(../img/foundation_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 8.6rem;
    text-align: center;
    padding: 20px 0;
}

.white_bgi h4 {
    font-size: 1.3em;
    line-height: 1.5;
}

.white_bgi h4 strong {
    font-size: 1.24em;
    background: linear-gradient(transparent 70%, var(--yellow) 50%);
}

.white {
    font-size: 0.9em;
    color: var(--white);
}

.trapezoid_text p {
    color: var(--white);
    font-size: 1.2em;
    font-weight: 500;
}

.trapezoid_text {
    position: relative;
    display: inline-block;
    background: var(--navy);
    padding: 3px 35px;
    font-weight: bold;
    left: 50%;
    transform: translate(-50%, 0%);
    margin: 35px 0 40px;
}

.trapezoid_text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 95px solid transparent;
    border-right: 95px solid transparent;
    border-top: 15px solid var(--navy);
}

.sec_change {
    padding: 0 0 60px;
}

.change_box {
    background: var(--light-gray);
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 20px;
}

.change_box h3 {
    font-size: 1.2em;
    font-weight: 700;
    padding-bottom: 30px;
}

.change_box p {
    font-size: 0.9em;
    font-weight: 500;
    text-align: left;
}

.change_box img {
    padding-bottom: 20px;
}

.sec_step .common_title:first-of-type {
    padding: 0px 0 60px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -25%);
}

.step_bgi {
    padding-top: 100px;
    background-image: url(../img/step_bgi.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.step_bgi_box {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.step_box {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.step_box img {
    padding-right: 10px;
}

.step_box h3 {
    font-size: 1.3em;
    font-weight: 700;
}

.step_text strong {
    background: linear-gradient(transparent 70%, var(--yellow) 50%);
}

.step_text {
    font-size: 0.8em;
}

.step_wrap {
    position: relative;
}

.common_title.line {
    padding-bottom: 80px;
}

.common_title.line h2 {
    line-height: 1.5;
}

.arrow_title h3 {
    color: var(--white);
    font-size: 1.2em;
    font-weight: 700;
}

.arrow_title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    background: var(--light);
    padding: 10px;
    text-align: center;
}

.arrow_title::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 2vw 0 2vw;
    border-color: var(--light) transparent transparent transparent;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.step_inner {
    position: relative;
}

.step_bgc {
    padding: 65px 20px 10px;
    margin-bottom: 30px;
    background: #CEFFF6;
    background: linear-gradient(275deg,rgba(206, 255, 246, 1) 0%, rgba(207, 238, 255, 1) 100%);
    box-shadow: 0px 7px 14px -13px #04233F;
}

.step_bgc ul li {
    padding-bottom: 25px;
    font-size: 0.9em;
    font-weight: 600;
}

.step_bgc ul li img {
    padding-right: 5px;
}

.step_text p {
    padding-bottom: 20px;
}

.program_bgc {
    background: #E7F7FF;
    padding: 40px 0 30px;
}

.program_bgc .common_title {
    padding-top: 0;
}

.program_bgc .common_title img {
    display: block;
    margin: 0 auto 10px;
}

.program_title {
    padding-bottom: 30px;
    text-align: center;
}

.program_title span {
    position: relative;
    font-size: 0.75em;
    display: block;
    margin-bottom: 20px;
}

.program_title span::before {
    content: "";
    position: absolute;
    bottom: -5px;
    display: inline-block;
    width: 25px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--red);
    border-radius: 2px;
}

.program_title h3 {
    font-size: 1.2em;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg,rgba(8, 36, 84, 1) 0%, rgba(18, 79, 186, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program_box {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: dotted 1px var(--light-blue);
}

.program_bgc .program_box:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.program_box p {
    font-size: 0.8em;
}

.real_bgc {
    background: var(--navy);
    padding: 40px 0 30px;
}

.real_bgc .common_title {
    padding: 0 0 50px;
}

.real_bgc .common_title h2 {
    color: var(--white);
}

.real_bgc .common_title h2::before {
    color: var(--white);
    background: var(--white);
}

.real_bgc .common_title img {
    display: block;
    margin: 0 auto 10px;
}

.real_box {
    text-align: center;
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
}

.real_box h3 {
    font-size: 1.2em;
    font-weight: 700;
    padding-bottom: 25px;
}

.real_box img {
    width: auto;
    padding-bottom: 15px;
}

.real_box p {
    font-size: 0.8em;
    text-align: left;
}

.sec_voice {
    padding: 0 0 80px;
}

.wrap .voice_box:last-of-type {
    margin-bottom: 0;
}

.sec_voice {
    position: relative;
}

.sec_voice .common_title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec_voice .common_title img {
    display: block;
    margin: 0 auto 10px;
}

.voice_contain {
    padding-top: 80px;
}

.voice_box {
    background: var(--white);
    box-shadow: 0px 3px 21px -18px #04233F;
    margin-bottom: 30px;
    text-align: center;
    padding: 30px
}

.voice_box h3 {
    font-size: 1.2em;
    font-weight: 700;
}

.voice_box p {
    font-size: 0.8em;
    text-align: left;
}

.voice_box img {
    padding: 25px 0 10px;
}

.sec_profile .common_title {
    padding: 0 0 50px;
}

.sec_profile .common_title h2 {
    color: var(--white);
}

.sec_profile .common_title h2::before {
    background: var(--white);
}

.profile_box {
    background:  var(--white);
    padding: 30px 30px 10px;
}

.profile_img_box {
    text-align: center;
    padding-bottom: 30px;
}

.profile_img_box p {
    font-size: 1.2em;
    font-weight: 700;
}

.profile_text p {
    font-size: 0.7em;
    padding-bottom: 20px;
}

.gradually_bgi.sec_profile {
    padding: 60px 0;
}

.sec_flow {
    padding-top: 0;
}

.flow_box {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    text-align: center;
    border: solid 3px var(--dark-blue);
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 60px;
}

.flow_contain {
    padding-top: 30px;
}

.flow_box h3 {
    color: var(--indigo);
    font-size: 1.2em;
    font-weight: 700;
    padding: 20px 0 15px;
}

.flow_box img {
    padding-bottom: 20px;
}

.flow_box img:first-of-type {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -75%);
}

.flow_box p {
    font-size: 0.8em;
    text-align: left;
}

.copy_right {
    margin-top: 60px;
    background: var(--navy);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.copy_right small {
    color: var(--white);
    font-size: 0.6em;
}

@media (max-width: 650px) {
.wrap {
    max-width: 100%;
    padding: 0 4%;
    box-sizing: border-box;
 }
 header {
    padding: 15px 0 25px;
 }
 header::after {
	top: 99%;
    border-width: 17px 4vw 0 4vw;
 }
 header h2 {
    color: var(--white);
    font-size: 0.8em;
}
button {
    text-align: center;
}
button img {
    width: 62%;   
}
.fv_contain button {
    padding-bottom: 2.6rem;
}
.fv_title h1 {
    padding: 0 5%;
}
.fv_title img:first-of-type {
    width: 100%;
    padding-bottom: 20px;
}
.fv_title img:last-of-type {
    width: 100%;
    padding-bottom: 10px;
}
.top_title_bgc h2 {
    font-size: 1em;
    padding: 20px 3% 20px;
}
.top_title_bgc img {
    margin: -6px auto 0;
}
.satisfy_bgi {
    background-image: url(../img/rectangle_bgi_sp.png);
    background-size: cover;
}
.satisfy_text p {
    font-size: 0.8em;
}
.satisfy_text {
    padding: 60px 0 30px;
}
.satisfy_list {
    padding: 25px 20px 15px 20px;
}
.satisfy_list li p {
    font-size: 0.9em;
    font-weight: 500;
}
.satisfy_bgi .satisfy_text:last-of-type p {
    font-size: 0.8em;
    font-weight: 500;
}
.satisfy_list li img {
    padding-right: 0.4rem;
}
.satisfy_triangle {
    margin: 20px auto;
}
.assumptions_text {
    font-size: 0.8em;
}
.common_title p {
    font-size: 1em;
}
.common_title h2 {
    font-size: 1.5em;
}
.common_title {
    text-align: center;
    padding: 60px 0 50px;
}
.assumptions_box_tit h3 {
    font-size: 1em;
    padding: 15px 15px;
}
.assumptions_box p {
    font-size: 0.8em;
}
.blur_bgi h4 {
    font-size: 1em;
    padding: 10px 0 40px;
}
.assumptions_diamond p {
    width: 70px;
    top: 17px;
    font-size: 1em;
}
.assumptions_diamond {
    width: 70px;
    height: 70px;
}
.negative_box p:first-of-type {
    font-size: 0.8em;
}
.negative_box p:last-of-type {
    font-size: 0.9em;
}
.trapezoid_text p {
    font-size: 1.1em;
}
.trapezoid_text {
    margin: 25px 0 40px;
}
.trapezoid_text::after {
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
}
.white_bgi {
    background-image: url(../img/foundation_img_sp.png);
    padding: 20px;
}
.white_bgi h4 {
    font-size: 1.1em;
    line-height: 1.6;
    padding-left: 20px;
}
.change_box h3 {
    font-size: 1.1em;
}
.change_box p {
    font-size: 0.7em;
}
.arrow_title::after {
    border-width: 14px 4vw 15px 0 4vw;
}
.sec_step .common_title:first-of-type {
    width: 100%;
}
.sec_step .common_title:first-of-type {
    padding: 0px 0 40px;
}
.step_box h3 {
    font-size: 0.95em;
}
.step_text {
    font-size: 0.7em;
}
.step_bgc ul li {
    line-height: 1.4;
}
.step_bgc ul li img {
    padding-right: 3px;
    padding-bottom: 1px;
}
.arrow_title h3 {
    font-size: 1.1em;
    padding-bottom: 3px;
}
.arrow_title::after {
    border-width: 15px 4vw 0 4vw;
}
.program_box p {
    font-size: 0.7em;
}
.program_title h3 {
    font-size: 1.1em;
}
.real_box h3 {
    font-size: 1.1em;
}
.real_box p {
    font-size: 0.7em;
}
.sec_voice .common_title {
    width: 100%;
}
.voice_box h3 {
    font-size: 1.1em;
}
.voice_box p {
    font-size: 0.7em;
}
.profile_img_box p {
    font-size: 1.1em;
}
.flow_box h3 {
    font-size: 1.1em;
}
.flow_box p {
    font-size: 0.7em;
}
.blur_bgi .assumptions_box_tit:last-of-type h3 {
    border-radius: 70px;
}
 .rectangle_img {
    width: 100%;
 }
 .negative_box p:first-of-type {
    position: relative;
 }
 .sec_flow button a img {
    width: 100%;
 }
 .fix_btn a {
    width: 87%;
    font-size: 0.85em;
     padding: 11px 30px;
     transform: translate(-50%, -10%);
 }
}