html,body{
padding: 0;
margin: 0;
font-family: 'Noto Sans JP', sans-serif;
width: 100%;
background-color: #efefef;
}

::selection {
  color: #fff;
  background-color: #2419AC;
}


.modal-overlay{
  position: fixed;
  inset: 0;
  display: none;
  background-color: rgba(36,25,172,0.9);
  z-index: 10000;
  cursor:pointer;

  /* 中央配置 */
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-flex{ display: flex; }

.modal-imgwrap{
  outline: none;
  max-width: min(92vw, 900px);
  max-height: 92vh;
  cursor:pointer;
}

.modal-img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
}


a:hover{
opacity: 0.7;
}

img{
width: 100%;
height: auto;
}

.js-fade {
opacity: 0;
transition: opacity 1s, transform 0.8s;
transform: translate(0px,15px);
}

.js-fade.d05 {
transition-delay: 0.5s;
}

.js-fade.d1 {
transition-delay: 1s;
}

.js-fade.inview {
opacity: 1;
transform: translate(0px,0px);
}

.js-fade2 {
opacity: 0;
transition: opacity 1s, transform 0.8s;
transform: translate(-15px,0px);
}

.js-fade2.d05 {
transition-delay: 0.5s;
}

.js-fade2.d1 {
transition-delay: 1s;
}

.js-fade2.inview {
opacity: 1;
transform: translate(0px,0px);
}


.sp {
  display: none;
}


#wrapper {
width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  
}

main{
box-sizing: border-box;
width: 100%;
position: relative;
}


header{
width: 100%;
z-index: 2000;
position: fixed;
padding: 20px 20px 0 20px;
box-sizing: border-box;
}

header .header_wrap{
background-color: rgba(255,255,255,0.9);
border-radius: 24px;
display: flex;
align-items: center;
justify-content: space-between;
max-width: calc(1280px + 30px);
height: 80px;
padding: 0 15px;
margin: 0 auto;
box-sizing: border-box;
position: relative;
box-shadow: 2px 1px 6px 1px rgba(0, 0, 0, 0.2);
}


header .header_logo{
width: 100px;
margin: 0 16px 0 16px;
padding: 0;
display: block;
}

header .header_nav{
  flex-grow: 1;
  padding-right: 16px;
}

header .header_nav ul{
  list-style: none;
  display: flex;
   justify-content: flex-end;
}

header .header_nav ul li{
  margin-left: 1.5em;
}

header .header_nav ul li a{
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(12px, 1.2vw, 15px);
  color: #000;
}


header .header_ban ul{
  list-style: none;
  display: flex;
}

header .header_ban ul li{
  margin-left: 10px;
  width: 190px;
}

header .header_ban ul li a.btn1{
  display: flex;
  flex-direction: row;
  justify-content: center;
   align-items: center;
  max-width: 190px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid #2419AC;
  overflow: hidden;
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 1);
}

header .header_ban ul li a.btn2{
  display: flex;
  flex-direction: row;
  justify-content: center;
   align-items: center;
   background: #2419AC;
  max-width: 190px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 1);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 15px);
}





#drawer{
display: flex;
justify-content:flex-start;
align-items: center;
flex-direction: column;
position: fixed;
/*background-color: rgba(36,25,172,0.9);*/
background-color: rgba(255,255,255,0.9);
top: 0;
left: 0;
width: 100%;
height: 100vh;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s, visibility 0.5s, height 0.5s;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
z-index: 2002;
text-align:center;
box-sizing:border-box;
padding:25px;
}


#drawer.open{
opacity: 1;
visibility: visible;
height: 100%;
}

#close_btn {
display:block;
width: 30px;
height: 30px;
position: absolute;
right:18px;
top:18px;
cursor: pointer;
opacity:0;
}

#drawer.open #close_btn{
opacity:1;
}

#close_btn span::before,
#close_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 2px;
  background: #333;
-webkit-transition:all 0.4s;
transition:all 0.4s;
-webkit-transition-delay:0.4s;
transition-delay:0.4s;
}


#close_btn.open span::before{
transform: rotate(-45deg);
}

#close_btn.open span::after{
transform: rotate(45deg);
}

.scroll-prevent {
position: fixed;
}

.drawer_wrap{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#drawer .menu_link{
   list-style: none;
}

#drawer .menu_link li{
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px #333 dotted;
}

#drawer .menu_link li a{
  font-weight: bold;
  text-decoration: none;
  color:#000;
  font-size: 20px;
  font-weight: bold;
}

#drawer .ban_link{
list-style: none;
margin-top: 2em;
}

#drawer .ban_link li{
  text-align: center;
  margin-bottom: 1em;
}

#drawer .ban_link li a.btn1{
  display: flex;
  flex-direction: row;
  justify-content: center;
   align-items: center;
  max-width: 190px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid #2419AC;
  overflow: hidden;
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 1);
}

#drawer .ban_link li a.btn2{
  display: flex;
  flex-direction: row;
  justify-content: center;
   align-items: center;
   background: #2419AC;
  max-width: 190px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 1);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 15px);
}



#kimg{
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1.3;
}

#kimg .kimg_img{
  position: absolute;
  width: calc(100% - 110px);
  top: 0;
  left: 0;
  border-radius: 0 0 24px 0;
  overflow: hidden;
  display: block;
}

#kimg .kimg_img img{
  height: 100%;
  display: block;
}

#kimg .kimg_text{
  position: absolute;
  width: 55%;
  bottom: 60px;
  left: 60px;
}

#kimg .kimg_bg{
  position: absolute;
  background: linear-gradient(110deg, #E22E7F 0%, #2419AC 100%);
  width: 100%;
  bottom: 0;
  left: 0;
  height: 50%;
}

#kimg .page_anc{
  position: absolute;
  width: 24px;
  top: calc(50% - 124px);
  right: 40px;
}

.btn_basic{
  background: #2419AC;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 20px);
  box-sizing: border-box;
  padding: 30px 40px 30px 30px;
  border-radius: 14px;
  position: relative;
  display: block;
  text-align: center;
}

.btn_basic::after{
  content: "";
  position: absolute;
  top: calc(50% - 17px);
  right: 20px;
  width: 34px;
  height: 34px;
  background-image: url("../images/arrow.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.inner{
  max-width: calc(1000px + 60px);
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}


#section1{
  background-image: url("../images/bg_01.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #EFEFEF;
}

#section1 .layout{
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#section1 .layout .img{
  width: 48%;
}

#section1 .layout .text{
  width: 48%;
}

#section1 .layout .text h2{
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.8;
  margin-bottom: 1em;
}



#section2{
  background-image: url("../images/bg_02.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #2419AC;
  aspect-ratio: 2 / 1;
  position: relative;
  width: 100%;
height: 100%;
}

#section2 .inner{
  height: 100%;
}

#section2 .text{
width: 100%;
height: 100%;
position: relative;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
}


#section2 .text h2{
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: bold;
}

#section2 .text p{
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 2.4;
  font-weight: bold;
}


#section3{
  background-image: url("../images/bg_03.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #EFEFEF;
}

#section3 .section_title{
  padding: 100px 0 130px 0;
}

#section3 .section_title h2{
font-size: clamp(21px, 5vw, 50px);
  line-height: 1.4;
  text-align: center;
}

#section3 .section_title h2 span{
font-size: clamp(29px, 7vw, 70px);
color: #2419AC;
position: relative;
}

#section3 .section_title h2 span:after{
content: "";
width: 100%;
height: 0.1em;
background-color:#2419AC;
position: absolute;
left: 0;
bottom: -0.3em;
}


.arrow{
  position: absolute;
  width: 150px;
  top:-30px;
  left: calc(50% - 75px);
}

.reason{
  position: relative;
  background: #fff;
  padding-bottom: 100px;
}

.reason .title_layout{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0 60px 0;
}

.reason .title_layout.reverse{
  flex-direction: row-reverse;
}

.reason .title_layout .text{
  width: calc(50% - 15px);
}


.reason .title_layout .text p.point{
  font-size: clamp(27px, 7vw, 60px);
  font-weight: bold;
  position: relative;
  color: #2419AC;
  display: inline-block;
  margin-bottom: 1em;
}

.reason .title_layout .text p.point:after{
content: "";
width: 100%;
height: 0.1em;
background-color:#2419AC;
position: absolute;
left: 0;
bottom: -0.3em;
}


.reason .title_layout .text p.point span{
  font-size: clamp(56px, 12vw, 120px);
  font-style: italic;
  
}

.reason .title_layout .text h3{
  font-size: clamp(32px, 8vw, 58px);
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.reason .title_layout .text .leadtext{
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.8;
}

.reason .title_layout .img{
  width: calc(50% - 15px);
}

.reason .title_layout .img img{
  border-radius: 14px;
}

.reason .point_list{
  width: 100%;
}

.reason .point_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.reason .point_list ul li{
  width:calc(33% - 30px);
  margin: 0 10px;
}

.reason .system_list_1{
  margin-bottom: 40px;
}

.reason .system_list_1 h4{
  font-size: clamp(18px, 3vw, 26px);
  font-weight: bold;
  display: block;
  background: #2419AC;
  color: #fff;
  text-align: center;
  border-radius: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
}

.reason .system_list_1 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.reason .system_list_1 ul li{
  text-align: center;
  font-size: clamp(12px, 2vw, 20px);
  background: #E7E6F6;
  border-radius: 10px;
  font-weight: bold;
  padding: 1em;
  box-sizing: border-box;
  width: calc(33% - 6px);
  color: #2419AC;
  margin-bottom: 0.6em;
}


.reason .system_list_2 h4{
  font-size: clamp(18px, 3vw, 26px);
  font-weight: bold;
  display: block;
  background: #E32E7F;
  color: #fff;
  text-align: center;
  border-radius: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
}

.reason .system_list_2 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.reason .system_list_2 ul li{
  text-align: center;
  font-size: clamp(12px, 2vw, 20px);
  background: #FCE9F2;
  border-radius: 10px;
  font-weight: bold;
  padding: 1em;
  box-sizing: border-box;
  width: calc(50% - 6px);
  color: #E32E7F;
  margin-bottom: 0.6em;
}



#section4{
  
}

#section4 .inner{
  padding-top: 30px;
  padding-bottom: 80px;
}

#section4 .layout{
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

#section4 .layout.reverse{
  flex-direction: row-reverse;
}

#section4 .layout .img{
  width: calc(50% - 15px);
}

#section4 .layout .img img{
  border-radius: 14px;
}

#section4 .layout .text{
  width: calc(50% - 15px);
}

#section4 .layout .text .year{
  display: inline-block;
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: bold;
  background: #2419AC;
  color: #fff;
  border-radius: 1em;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

#section4 .layout .text h3{
font-size: clamp(26px, 3vw, 40px);
font-weight: bold;
color: #2419AC;
margin-bottom: 0.5em;
}

#section4 .layout .text p{
font-size: clamp(14px, 2vw, 16px);
line-height: 1.8;
}

#section4 .btn_wrap{
  width: 480px;
  margin: 80px auto 0 auto;
}


#section5{
  background-image: url("../images/bg_05.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  aspect-ratio: 2 / 1;
  position: relative;
  width: 100%;
height: 100%;
}

#section5 .inner{
  height: 100%;
}

#section5 .text{
width: 100%;
height: 100%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}


#section5 .text h2{
  font-size: clamp(19px, 3vw, 36px);
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: bold;
  color: #2419AC;
}

#section5 .text p{
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 2.4;
  font-weight: bold;
  max-width: 485px;
  width: calc(50% - 15px);
}

#section6{

}

#section6 .images{
  padding: 100px 0;
}

#sectionEnd{
  background-image: url("../images/bg_end.jpg");
  background-position: top center;
  background-size:cover;
  background-repeat: no-repeat;
  height: 530px;
}


#sectionEnd .inner{
  height: 100%;
  display: flex;
  align-items: center;
}

#sectionEnd .inner .text{
  width: 620px;
  margin: 0 auto;
}

footer{
  background: #222222;
}

footer .inner{
  padding-top: 100px;
  padding-bottom: 20px;
}

footer h2{
  color: #fff;
  margin-bottom: 1em;
  font-size: clamp(16px, 1.8vw, 20px);
  text-align: center;
}

footer .btn_wrap{
  width: 460px;
  margin:0 auto 80px auto;
}

.footer_mynavi_list{
  list-style: none;
  display: flex;
  width: 470px;
  margin: 0 auto 80px auto;
  justify-content: space-between;
}

.footer_mynavi_list li{
  width: 230px;
}

.footer_mynavi_list li img{
  border-radius: 10px;
}

.footer_logo{
  width: 116px;
  margin: 0 auto 20px auto;
}

.copy{
  color: #fff;
  font-size: 12px;
  text-align: center;
}


/*------------------------------------------------------------------------------------------------------------

SP

------------------------------------------------------------------------------------------------------------*/



@media screen and (max-width: 976px) {
	


.sp {
    display: block;
  }

  .pc {
    display: none;
  }


  header{
padding: 10px 10px 0 10px;
}

header .header_wrap{
border-radius: 12px;
height: 54px;
padding: 0 6px;
}


header .header_logo{
width: 80px;
margin: 0 16px 0 10px;
}

header .menu_btn{
width: 42px;
height: 42px;
background: #333;
cursor: pointer;
border-radius: 10px;
margin-left: 7px;
position: relative;
}

.menu_btn{
transition: opacity .3s;
}

.menu_btn:hover{
opacity: 0.5;
}

header .menu_btn span{
    width: 16px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translateX(-50%);
    transition: .7s;
}

header .menu_btn span:nth-of-type(1){
    transform: translate(-50%,-6px);
}

header .menu_btn span:nth-of-type(3){
    transform: translate(-50%,6px);
}


#kimg{
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.3;
}

#kimg .kimg_img{
  position: absolute;
  width: calc(100% - 45px);
  top: 0;
  left: 0;
  border-radius: 0 0 24px 0;
  overflow: hidden;
  display: block;
}

#kimg .kimg_img img{
  height: 100%;
  display: block;
}

#kimg .kimg_text{
  position: absolute;
  width: 80%;
  bottom: 10vw;
  left: 20px;
}

#kimg .kimg_bg{
  height: 33%;
}

#kimg .page_anc{
  width: 12px;
  top:auto;
  bottom: calc(33% - 64px);
  right: 18px;
}



.btn_basic{
  background: #2419AC;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 20px);
  box-sizing: border-box;
  padding: 30px 40px 30px 30px;
  border-radius: 14px;
  position: relative;
  display: block;
  text-align: center;
}

.btn_basic::after{
  top: calc(50% - 12px);
  right: 15px;
  width: 24px;
  height: 24px;
}

.inner{
  padding: 0 15px;
}


#section1 .inner{
  padding-top: 40px;
  padding-bottom: 40px;
}

#section1 .layout{
  padding:  0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#section1 .layout .img{
  width: 90%;
  margin-bottom: 20px;
}

#section1 .layout .text{
  width: 100%;
}

#section1 h2{
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: center;
}



#section2{
  background-image: url("../images/bg_02_sp.jpg");
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  aspect-ratio: auto;
  position: relative;
  width: 100%;
height: 100%;
box-sizing: border-box;
}

#section2 .inner{
  height: 100%;
  box-sizing: border-box;
}

#section2 .text{
width: 100%;
height: 100%;
position: relative;
color: #fff;
display: block;
flex-direction: column;
justify-content: center;
padding-top: 40px;
padding-bottom: 50px;
}


#section2 .text h2{
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: bold;
}

#section2 .text p{
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 2.4;
  font-weight: bold;
}


#section3{
  background-image: url("../images/bg_03.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #EFEFEF;
}

#section3 .section_title{
  padding: 50px 0 70px 0;
}

#section3 .section_title h2{
font-size: clamp(21px, 5vw, 50px);
  line-height: 1.4;
  text-align: center;
}

#section3 .section_title h2 span{
font-size: clamp(29px, 7vw, 70px);
color: #2419AC;
position: relative;
}

#section3 .section_title h2 span:after{
content: "";
width: 100%;
height: 0.1em;
background-color:#2419AC;
position: absolute;
left: 0;
bottom: -0.4em;
}


.arrow{
  position: absolute;
  width: 60px;
  top:-10px;
  left: calc(50% - 30px);
}

.reason{
  position: relative;
  background: #fff;
  padding-bottom: 50px;
}

.reason .title_layout{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 30px 0;
}

.reason .title_layout.reverse{
  flex-direction: column;
}

.reason .title_layout .text{
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}


.reason .title_layout .text p.point{
  font-size: clamp(27px, 7vw, 60px);
  font-weight: bold;
  position: relative;
  color: #2419AC;
  display: inline-block;
  margin-bottom: 1em;
}

.reason .title_layout .text p.point:after{
content: "";
width: 100%;
height: 0.1em;
background-color:#2419AC;
position: absolute;
left: 0;
bottom: -0.3em;
}


.reason .title_layout .text p.point span{
  font-size: clamp(56px, 12vw, 120px);
  font-style: italic;
  
}

.reason .title_layout .text h3{
  font-size: clamp(32px, 8vw, 58px);
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.reason .title_layout .text .leadtext{
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.8;
}

.reason .title_layout .img{
  width: 100%;
}

.reason .title_layout .img img{
  border-radius: 14px;
}

.reason .point_list{
  width: 100%;
}

.reason .point_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.reason .point_list ul li{
  width:calc(50% - 10px);
  margin: 0 5px;
}

.reason .system_list_1{
  margin-bottom: 40px;
}

.reason .system_list_1 h4{
  font-size: clamp(18px, 3vw, 26px);
  font-weight: bold;
  display: block;
  background: #2419AC;
  color: #fff;
  text-align: center;
  border-radius: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
}

.reason .system_list_1 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.reason .system_list_1 ul li{
  text-align: center;
  font-size: clamp(12px, 2vw, 20px);
  background: #E7E6F6;
  border-radius: 10px;
  font-weight: bold;
  padding: 1em;
  box-sizing: border-box;
  width: calc(33% - 6px);
  color: #2419AC;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}


.reason .system_list_2 h4{
  font-size: clamp(18px, 3vw, 26px);
  font-weight: bold;
  display: block;
  background: #E32E7F;
  color: #fff;
  text-align: center;
  border-radius: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
}

.reason .system_list_2 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.reason .system_list_2 ul li{
  text-align: center;
  font-size: clamp(12px, 2vw, 20px);
  background: #FCE9F2;
  border-radius: 10px;
  font-weight: bold;
  padding: 1em;
  box-sizing: border-box;
  width: calc(50% - 6px);
  color: #E32E7F;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}



#section4{
  
}

#section4 .inner{
  padding-top: 00px;
  padding-bottom: 30px;
}

#section4 .layout{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
}

#section4 .layout.reverse{
  flex-direction: column;
}

#section4 .layout .img{
  width: 100%;
  margin-bottom: 20px;
}

#section4 .layout .img img{
  border-radius: 14px;
}

#section4 .layout .text{
  width: 100%;
}

#section4 .layout .text .year{
  display: inline-block;
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: bold;
  background: #2419AC;
  color: #fff;
  border-radius: 1em;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

#section4 .layout .text h3{
font-size: clamp(26px, 3vw, 40px);
font-weight: bold;
color: #2419AC;
margin-bottom: 0.5em;
}

#section4 .layout .text p{
font-size: clamp(14px, 2vw, 16px);
line-height: 1.8;
}

#section4 .btn_wrap{
  width: 100%;
  margin: 30px auto 0 auto;
}


#section5{
  background-image:none;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #fff;
  aspect-ratio: auto;
  position: relative;
  width: 100%;
height: auto;
}

#section5 .inner{
  height: auto;
}

#section5 .text{
width: 100%;
height: auto;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding: 40px 0;
}


#section5 .text h2{
  font-size: clamp(19px, 3vw, 36px);
  line-height: 1.8;
  margin-bottom: 1em;
  font-weight: bold;
  color: #2419AC;
}

#section5 .text p{
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 2.4;
  font-weight: bold;
  max-width: 100%;
  width: 100%;
}

#section6{

}

#section6 .images{
  padding: 50px 0;
}

#sectionEnd{
  background-image: url("../images/bg_end.jpg");
  background-position: top center;
  background-size:cover;
  background-repeat: no-repeat;
  height: auto;
  aspect-ratio: 1 / 1;
}


#sectionEnd .inner{
  height: 100%;
  display: flex;
  align-items: center;
}

#sectionEnd .inner .text{
  width: 80%;
  margin: 0 auto;
}

footer{
  background: #222222;
}

footer .inner{
  padding-top: 50px;
  padding-bottom: 20px;
}

footer h2{
  color: #fff;
  margin-bottom: 1.6em;
  font-size: clamp(16px, 1.8vw, 20px);
  text-align: center;
}

footer .btn_wrap{
  width: 100%;
  margin:0 auto 50px auto;
}

.footer_mynavi_list{
  list-style: none;
  display: flex;
  width: 100%;
  margin: 0 auto 50px auto;
  justify-content: space-between;
}

.footer_mynavi_list li{
  width: calc(50% - 5px);
}

.footer_mynavi_list li img{
  border-radius: 10px;
}

.footer_logo{
  width: 86px;
  margin: 0 auto 20px auto;
}

.copy{
  color: #fff;
  font-size: 12px;
  text-align: center;
}



}