@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');

*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

*::before,
*::after{
  background-size: cover;
  background-position: center;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
}

body{
  letter-spacing: 0.04em;
  font-size: 16px;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}


main{
  overflow: hidden;
  padding-top: 76px;
}

img{
  display: block;
  object-position: center;
}

/*
-------------------------------------
共通パーツ
-------------------------------------
*/

.hide{
  display: none!important;
}


.container{
  max-width:1150px;
  padding:0 25px;
  margin:0 auto;
}

.common_hover_opa{
  transition: 0.4s;
}

.common_hover_opa:hover{
  opacity: 0.7;
}

header{
  position: fixed;
  z-index:100;
  top:0;
  left:0;
  width:100%;
  background-color: #fff;
}

header .header_container{
  /* padding:0 60px; */
  padding:0 4.167vw;
}

header .header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:76px;
}

header .header_left{
  display: flex;
  align-items: center;
}

header .header_left .header_logo{
  display: flex;
  align-items: center;
}

header .header_left .header_logo h1{
  color:#000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}


header .header_left .header_logo img{
  width:40px;
  margin-right: 12px;
}

header .header_left .hp_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 52px;
  border:1px solid #0071BE;
  font-weight: 700;
  line-height: 1;
  color:#0071BE;
  margin-left: 24px;
  border-radius:4px;
}


header .header_right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .header_right .line_link{
  width:34px;
  margin-right: 30px;
}

header .header_right .line_link img{
  width:100%;
}

header .header_right .tel{
  position: relative;
  padding-left: 36px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color:#0071BE;
  pointer-events:none;
}

header .header_right .tel::before{
  content:"";
  width:30px;
  height:30px;
  background-image: url('../img/tel.png');
  position: absolute;
  left:0;
  top:-3px;
}

header .header_right .recruit_link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 52px;
  background-image: url('../img/orange_bg.png');
  font-weight: 700;
  line-height: 1;
  color:#fff;
  margin-left: 30px;
  border-radius: 4px;
}

header .header_right .drawer_menu_switch{
  cursor: pointer;
  margin-left: 72px;
}

header .header_right .drawer_menu_block{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width:34px;
  height:24px;
  margin:0 auto 6px;
}

header .drawer_menu_switch .bar{
  height:2px;
  background-color: #0071BE;
  transition-duration: 0.5s;
}

header .drawer_menu_switch.active .bar1 {
  transform: translateY(11px) rotate(-45deg);
}
header .drawer_menu_switch.active .bar2 {
  display: none;
}
header .drawer_menu_switch.active .bar3 {
  transform: translateY(-11px) rotate(45deg);
}

header .drawer_menu_switch p{
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color:#0071BE;
}


#drawer_bg{
  position: fixed;
  width:100%;
  height:100vh;
  bottom:0;
  left:0;
  z-index:95;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  background-color: #0F7AC2;
}

#drawer_bg .bg{
  width:100%;
  height:100%;
  background-image: url('../img/drawer_bg.jpg');
  background-position: right;
}

#drawer_bg.show{
  opacity: 1;
}

#drawer_menu{
  position: fixed;
  width:100%;
  height:calc(100vh - 76px);
  height: calc(calc(var(--vh2, 1vh) * 100) - 76px);
  z-index:96;
  left:0;
  top:75px;
  padding:40px 11.806vw ;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

#drawer_menu.show{
  opacity: 1;
  pointer-events: auto;
}

#drawer_menu .drawer_scroll{
  height:100%;
  overflow-y: scroll;
}

#drawer_menu .frame{
  display: flex;
  align-items: center;
  min-height:100%;
}

#drawer_menu .contents{
  padding-bottom: 20px;
}


#drawer_menu .flex{
  display: flex;
}

#drawer_menu ul {
  
}

#drawer_menu ul li{
  /* margin-bottom: 56px; */
  margin-bottom: 6.087vh;
}

#drawer_menu ul li:last-child{
  margin-bottom: 0;
}

#drawer_menu ul li .ja{
  color:#fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

#drawer_menu ul li .en{
  color:rgba(255,255,255,0.7);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}


#drawer_menu .ul01{
  margin-right: 11.806vw;
}

footer{
  padding:120px 0 24px;
}

footer .footer_logo{
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color:#000;
}

footer .footer_logo img{
  width:40px;
  margin-right: 12px;
}

footer .p01{
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

footer .p02{
  margin-bottom: 48px;
}

footer .p02 a{
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  pointer-events: none;
}

footer .flex{
  display: flex;
  align-items: center;
  margin-bottom: 88px;
}

footer .flex .link{
  width:220px;
  height:60px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}

footer .flex .link01{
  background-color: #0071BE;
  color:#fff;
  margin-right: 32px;
}

footer .flex .link02{
  color:#0071BE;
  border:1px solid #0071BE;
}

footer .copy{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

#pagetop{
  position: fixed;
  right:32px;
  bottom:32px;
  width:64px;
  cursor: pointer;
}
/*
-------------------------------------
top LP
-------------------------------------
*/


.sec_title{
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 12px;
}

.sec_sub_title{
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 80px;
  color:#0071BE;
}

.top_section01{
  height:57.222vw;
  position: relative;
}

.top_section01 .bg{
  position: absolute;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit: cover;
  top:0;
  left:0;
}

.top_section01 .text{
  position: absolute;
  top:4.167vw;
  left:5.556vw;
}

.top_section01 .text .p01 img{
  width:54vw;
}

.top_section01 .text .border{
  height:0.139vw;
  width:38.194vw;
  background-color: #fff;
  margin:3.333vw 0;
}

.top_section01 .text .p02{
  font-size: 1.528vw;
  font-weight: 700;
  line-height: 1.5;
  color:#fff;
  text-shadow: 0px 0px 12px 0px rgba(0,0,0,0.22);
}

.top_section02{
  position: relative;
  padding-top: 120px;
  padding-bottom: 172px;
}

.top_section02 ul{
  display: flex;
  justify-content:space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.top_section02 ul li{
  width:31.8%;
  margin-bottom: 24px;
}

.top_section02 ul li img{
  width:100%;
}

.top_section02 h2{
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  color:#0071BE;
}

.top_section02 .p01{
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.top_section02 .p01.mb0{
  margin-bottom: 0;
}

.top_section02 .bg{
  position: absolute;
  z-index:-2;
  width:1440px;
  min-width: 100vw;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index:-2;
  object-position: top;
  height:918px;
}

.top_main .change_common{
  width:100%;
  margin-top: -112px;
}

.top_section03{
  position: relative;
  padding-top: 188px;
  padding-bottom: 120px;
  margin-top: -96px;
}

.top_section03 .bg{
  position: absolute;
  z-index:-5;
  width:1440px;
  min-width: 100vw;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section03 ul{
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.top_section03 ul li{
  width:32.5%;
  height:112px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(15, 36, 50, 0.09);
  border:2px dotted #000;
  border-radius: 6px;
}

.top_section03 ul li p{
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.top_section03 ul li p span{
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.top_section03 h2{
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;

}

.top_section03 .bottom_angle{
  width:18px;
  margin:40px auto;
}

.top_section03 .p01{
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  color:#0071BE;
  margin-bottom: 48px;
}

.top_section03 .p01 span{
  padding-bottom: 6px;
  background: linear-gradient(to top, #FFE922 0%, #FFE922 40%, transparent 40%, transparent 100%);
}

.top_section03 .p02{
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.top_section04{
  position: relative;
  padding-bottom: 120px;
}

.top_section04::before{
  content:"";
  width:100%;
  height:100%;
  background-color:#F4F7F9;
  z-index:-4;
  position: absolute;
  top:0;
  left:0;
}

.top_section04 .mv_aera{
  padding-top: 110px;
  padding-bottom: 148px;
  position: relative;
  /* padding-top: 7.639vw;
  padding-bottom: 10.278vw; */
}

.top_section04 .mv_aera .bg{
  position: absolute;
  z-index:-1;
  width:1440px;
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: top;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section04 .flex{
  display: flex;
  align-items: center;
  padding-left: 60px;
  color:#fff;
}

.top_section04 .flex .left{
  position: relative;
  margin-right: 118px;
}

.top_section04 .flex .left .title01{
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  
}

.top_section04 .flex .left .title02{
  position: absolute;
  top:0;
  left:calc(100% + 32px);
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  transform: rotateZ(90deg);
  transform-origin: 0 0;
  white-space: nowrap;
}

.top_section04 .flex .right{
  
}

.top_section04 .flex .right p{
  color:#fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.top_section04 .flex .right .p01{
  margin-bottom: 24px;
}

.top_section04 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -80px;
}

.top_section04 ul li{
  width:24%;
  position: relative;
  margin-bottom: 16px;
  transition: 0.4s;
  cursor: pointer;
}

.top_section04 ul li:hover{
  opacity: 0.7;
}

.top_section04 ul li img{
  width:100%;
}

.top_section04 ul li p{
  position: absolute;
  bottom:10px;
  left:10px;
  padding:7px 10px;
  background-color: #0071BE;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;

}

.top_section05{
  padding:120px 0;
}

.top_section05 .sec_sub_title{
  margin-bottom: 96px;
}

.top_section05 .table_frame{
  max-width:980px;
  margin:0 auto 48px;
}

.top_section05 table{
  border-collapse: collapse;
  table-layout: fixed;
  width:100%;
}

.top_section05 table .w_250{
  width:250px;
}

.top_section05 table .w_365{
  width:365px;
}

.top_section05 table td{
  padding:24px;
  border:1px solid #D7D7D7;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

.top_section05 table .f_20{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.top_section05 table .orange{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0em;
  text-align: center;
  color:#EA7B15;
}

.top_section05 table .orange span{
  font-size: 36px;
}

.top_section05 table .mini{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 4px;
}

.top_section05 table .left{
  text-align: left;
}

.top_section05 table .adjust{
  margin:4px 0;
}

.top_section05 table a{
  color:#0071BE;
  text-decoration: underline;
  font-weight: 400;
  white-space: normal;
  word-break: break-all;
}

.top_section05 table td:first-child{
  background-color: #EFF4F8;
}

.top_section05 table td:last-child{
  border-right:6px solid #0071BE;
  border-left:6px solid #0071BE;
}

.top_section05 table tr:last-child td:last-child{
  border-bottom:6px solid #0071BE;
}

.top_section05 table .box{
  position: absolute;
  width:calc(100% + 12px);
  height:100px;
  background-color:#0071BE;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color:#fff;

}

.top_section05 .table_remark{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width:980px;
  margin:0 auto;
}

.top_section06{
  padding:120px 0;
  background: linear-gradient(189.08deg, #158FC3 1.47%, #0071BE 22.28%, #158FC3 60.06%, #0071BE 100%);

}

.top_section06 .sec_title{
  color:#fff;
}

.top_section06 .sec_sub_title{
  margin-bottom: 80px;
  color:#fff;
}

.top_section06 .data_frame img{
  width:100%;
}


.top_section07{
  padding:120px 0;
  position: relative;
  
}

.top_section07::before{
  content:"";
  width:100%;
  height:100%;
  background-color: #EFF4F8;
  position: absolute;
  top:0;
  left:0;
  z-index:-3;
}

.top_section07 .sec_sub_title{
  margin-bottom: 56px;
  
}

.top_section07 .p01{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 80px;
}

.top_section07 .job_block{
  margin-bottom: 140px;
  display: flex;
  align-items: flex-start;
}

.top_section07 .job_block:last-child{
  margin-bottom: 0;
}

.top_section07 .job_block .thumb{
  width:605px;
  margin-right: 40px;
  flex-shrink: 0;
  position: relative;
}

.top_section07 .job_block .thumb p{
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color:#0071BE;
  position: absolute;
  top:24px;
  left:24px;
  padding:8px 20px;
  background-color: #fff;
}

.top_section07 .job_block .thumb img{
  width:100%;
}

.top_section07 .job_block .text_area{
  width:100%;
  position: relative;
  padding-top: 24px;
}

.top_section07 .job_block .back_text{
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(0, 113, 190, 0.08);
  position: absolute;
  z-index:-1;
  top:0;
  left:-6px;
  white-space: nowrap;
}

.top_section07 .job_block:last-child .back_text{
  left:-40px;
}

.top_section07 .job_block .text01{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  height: 40px;
  padding:0 12px;
  background-color: #0071BE;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  width:fit-content;
}

.top_section07 .job_block .text02{
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-feature-settings: "palt";
  /* overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-feature-settings: "palt"; */
}

.top_section07 .job_block .text02 a{
  color:rgba(0, 113, 190, 1);
  text-decoration: underline;
  font-weight: 500;
}

.top_section07 .job_block .more_link{
  width:fit-content;
  margin:0 0 40px auto;
  position: relative;
  padding-bottom: 8px;
  border-bottom:1px solid #0071BE;
  font-weight: 500;
  line-height: 1;
  color:#0071BE;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.top_section07 .job_block .more_link::after{
  display: block;
  content:"";
  width:6px;
  height:9px;
  background-image: url('../img/blue_arrow.svg');
  margin-left: 20px;
}

.top_section07 .job_block .sub_img{
  width:270px;
}

.top_section08{
  padding:120px 0 80px;
}

.top_section08 .container{
  padding:0;
  max-width:1200px;
}


.top_section08 .sec_sub_title{
  margin-bottom: 48px;
}

.top_section08 .career_frame{
  margin-bottom: 56px;
}

.top_section08 .career_frame img{
  width:100%;
}

.top_section08 .career_text{
  display: flex;
  justify-content: flex-end;
  font-weight: 400;
  line-height: 1.4;
}

.top_section08 .career_text a{
  color:#000;
  font-weight: 400;
}

.top_section09{
  padding:80px 0 124px;
}

.top_section09 .sec_sub_title{
  margin-bottom: 72px;
}

.top_section09 ul{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.top_section09 ul li{
  width:31%;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.top_section09 ul li:nth-child(2){
  margin-top: 60px;
}

.top_section09 ul li .thumb{
  position: relative;
}

.top_section09 ul li .thumb img{
  width:100%;
}

.top_section09 ul li .info{
  position: absolute;
  top:16px;
  left:0;
  display: flex;
  align-items: center;
}

.top_section09 ul li .info01{
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding:0 8px;
  margin-right: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color:#0071BE;

}

.top_section09 ul li .info02{
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color:#fff;
  letter-spacing: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.top_section09 ul li .info02 span{
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}



.top_section09 ul li .text_area{
  padding:18px 12px 32px;
  background-color: #fff;
}

.top_section09 ul li .text_area .p01{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

.top_section09 ul li:nth-child(3) .p01{
  letter-spacing: -0.05em;
}

.top_section09 ul li .text_area .p02{
  width:fit-content;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  color: #0071BE;
}

.top_section09 ul li .text_area .p02::after{
  display: block;
  content:"";
  width:6px;
  height:9px;
  background-image: url('../img/blue_arrow.svg');
  margin-left: 16px;
}

.top_section10{
  position: relative;
  padding-bottom: 100px;
}

.top_section10::before{
  content:"";
  width:100%;
  height:100%;
  background-color: #EFF4F8;
  position: absolute;
  z-index:-3;
  top:0;
  left:0;
}

.top_section10 .recruit_bg{
  width:100%;
}

.top_section10 .white_box{
  max-width:1100px;
  position: relative;
  z-index:1;
  padding:80px 56px 96px;
  background-color: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
  /* margin-top: -96px; */
  margin:-6.667vw auto 0;
  border-radius: 6px;
}

.top_section10 .sec_sub_title{
  margin-bottom: 80px;
}

.top_section10 ul{
  margin-bottom: 72px;
}

.top_section10 ul li{
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #0071BE;
  position: relative;
  padding-left: 38px;
}

.top_section10 ul li::before{
  content:"";
  width:32px;
  height:26px;
  background-image: url('../img/check.svg');
  position: absolute;
  left:0;
  top:9px;
  
}

.top_section10 ul li span{
  background: linear-gradient(to top, #FFE922 0%, #FFE922 40%, transparent 40%, transparent 100%);
}

.top_section10 .flex{
  display: flex;
  justify-content: space-between;
}

.top_section10 .box{
  width:465px;
  padding:56px 32px 32px;
  position: relative;
  background-color: #EFF4F8;
}

.top_section10 .box_title{
  position: absolute;
  height:44px;
  padding:0 12px;
  background-color: #0071BE;
  position: absolute;
  left:32px;
  top:-22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
}

.top_section10 .box_text{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

.top_section10 .box_text span{
  color:#EA7B15;
}

.top_section11{
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}

.top_section11::before{
  content:"";
  width:100%;
  height:100%;
  background-color: #EFF4F8;
  position: absolute;
  z-index:-4;
  top:0;
  left:0;
}

.top_section11 .sec_sub_title{
  margin-bottom: 72px;
}

.top_section11 .p01{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 72px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.65;
}


.top_section11 .faq_list{

}


.top_section11 .faq_block{
  margin-bottom: 20px;
  background-color: #fff;
  letter-spacing: 0;
  border-radius: 6px;
}

.top_section11 .faq_block .question_area{
  padding:24px 108px 24px 96px;
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.65;
}

.top_section11 .faq_block .question_area::before{
  content:"Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width:54px;
  height:54px;
  border-radius: 50%;
  background-color:#0071BE;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top:16px;
  left:20px;
}

.top_section11 .faq_block .question_area::after{
  content:"";
  width:17px;
  height:10px;
  background-image: url('../img/faq_arrow.svg');
  transition: 0.5s;
  transform: rotate(180deg);
  position: absolute;
  right:60px;
  top:40px;
}

.top_section11 .faq_block .question_area.active::after{
  transform: rotate(0deg);
}

.top_section11 .faq_block .answer_area{
  padding:24px 108px 24px 96px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  display: none;
}

.top_section11 .faq_block .answer_area::before{
  content:"A";
  display: flex;
  justify-content: center;
  align-items: center;
  width:54px;
  height:54px;
  border-radius: 50%;
  background-color:#EA7B15;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top:16px;
  left:20px;
}

.top_section12{
  padding:120px 0;
  background-color: #0071BE;
}

.top_section12 .sec_title{
  color:#fff;
}

.top_section12 .sec_sub_title{
  color:#fff;
  margin-bottom: 80px;
}

.top_section12 .table_frame{
  margin-bottom: 80px;
}

.top_section12 table{
  border-collapse: collapse;
  table-layout: fixed;
  /* width:100%; */
  letter-spacing: 0.01em;
}

.top_section12 table th,
.top_section12 table td{
  padding:32px 24px;
  border:1px solid #D7D7D7;
  vertical-align: top;

}

.top_section12 table th{
  background-color: #EFF4F8;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  white-space: nowrap;
  min-width:230px;
}

.top_section12 table td{
  font-size: 18px;
  line-height: 1.65;
  background-color: #fff;
}

.top_section12 table td p+p{
  margin-top: 24px;
}

.top_section12 table td em{
  font-style: normal;
  color:#0071BE;
}

.top_section12 table td span{
  color:#0071BE;
}

.top_section12 table td a{
  color:#0071BE;
  font-weight: 400;
  text-decoration: underline;
}

.top_section12 table td a.tel{
  pointer-events: none;
  color:#000;
  text-decoration: none;
}

.top_section12 .recruit_link{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width:372px;
  height:80px;
  border-radius: 4px;
  background-image: url('../img/orange_bg.png');
  margin:0 auto;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #FFFFFF;
}


.popup{
  position: fixed;
  width:100%;
  height:100vh;
  z-index:110;
  background-color: rgba(0,0,0,0.19);
  top:0;
  left:0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.7s;
  pointer-events: none;
  opacity: 0;
}

.popup.show{
  opacity: 1;
  pointer-events: auto;
}

.work_popup{
  width:90%;
  height:90vh;
  max-width:1270px;
  max-height:735px;
  position: relative;
  padding:60px 24px 24px;
  background-color: #fff;
}

.work_popup .close{
  width:24px;
  cursor: pointer;
  top:40px;
  right:48px;
  position: absolute;
}

.work_popup .frame{
  max-width:685px;
  margin:0 auto;
  max-height:100%;
  overflow-y: scroll;
}

.work_popup .work_title{
  width:fit-content;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height:40px;
  padding:0 12px;
  background-color: #0071BE;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: #FFFFFF;
}

.work_popup .pic{
  width:100%;
}

.job_popup{
  width:90%;
  height:90vh;
  max-width:1270px;
  max-height:735px;
  position: relative;
  padding:100px 0 24px;
  background-color: #EFF4F8;
}

.job_popup .close{
  width:24px;
  cursor: pointer;
  top:40px;
  right:48px;
  position: absolute;
}

.job_popup .frame{
  
  max-height:100%;
  overflow-y: scroll;
}

.job_popup .flex{
  display: flex;
  max-width:1100px;
  margin:0 auto;
  position: relative;
}

.job_popup .scroll_text{
  font-weight: bold;
  max-width:1100px;
  margin:0 auto 24px;
  color: #0071BE;
}

.job_popup .flex .left{
  width:100%;
}

.job_popup .flex .left .thumb{
  position: relative;
  margin-bottom: 24px;
}

.job_popup .flex .left .thumb p{
  position: absolute;
  top:24px;
  left:24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height:64px;
  padding:0 20px;
  background-color: #fff;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #0071BE;
}

.job_popup .flex .left img{
  width:100%;
}

.job_popup .flex .right{
  width:450px;
  flex-shrink: 0;
  margin-left: 48px;
  position: relative;
  padding-top: 48px;
}

.job_popup .back_text{
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(0, 113, 190, 0.08);
  position: absolute;
  /* z-index:-1; */
  top:0;
  left:-6px;
  white-space: nowrap;
}

.job_popup .back_text03{
  left:auto;
  right:-72px;
}

.job_popup .info_block{
  margin-bottom: 48px;
}

.job_popup .info_title{
  width:fit-content;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height:40px;
  padding:0 12px;
  background-color: #0071BE;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
}

.job_popup .info_text{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
}

.job_popup .info_text a{
  color:#0071BE;
  text-decoration: underline;
}

.job_popup .mini_flex{
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
}

.job_popup .mini_flex .example{
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  height:32px;
  padding:0 8px;
  border:1px solid #0071BE;
  font-size: 18px;
  font-weight: 500;
  line-height:1;
  color:#0071BE;
}

.job_popup .schedule{
  width:100%;
}

.popup .close_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  width:fit-content;
  margin:80px auto 40px;
  font-weight: 500;
  line-height: 1;
  color: #0071BE;
  cursor: pointer;
}

.popup .close_flex::after{
  display: block;
  content:"";
  width:6px;
  height:9px;
  background-image: url('../img/blue_arrow.svg');
  margin-left: 16px;
}

.interview_popup{
  width:90%;
  height:90vh;
  max-width:1270px;
  max-height:735px;
  position: relative;
  padding:100px 0 24px;
  background-color: #fff;
}

.interview_popup .close{
  width:24px;
  cursor: pointer;
  top:40px;
  right:48px;
  position: absolute;
}

.interview_popup .scroll_text{
  font-weight: bold;
  margin:0 auto 24px;
  color: #0071BE;
}

.interview_popup .frame{
  max-height:100%;
  overflow-y: scroll;
}

.interview_popup .frame img{
  width:100%;
}

.interview_popup .full_img{
  position: relative;
  margin-bottom: 72px;
}

.interview_popup .white_box{
  position: absolute;
  width:fit-content;
  bottom:0;
  left:0;
  background-color: #fff;
  padding:32px 20px;
}

.interview_popup .name_flex{
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.interview_popup .name_flex .job{
  margin-right:10px;
  padding:0 10px;
  height:40px;
  background-color: #0071BE;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #FFFFFF;
}

.interview_popup .name_flex .name{
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #0071BE;
}

.interview_popup .name_flex .name span{
  margin-left: 4px;
  font-size: 24px;
  font-weight: bold;
}

.interview_popup .white_box .msg{
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}

.interview_popup .flex{
  display: flex;
  margin-bottom: 56px;
}

.interview_popup .text_block{
  width:100%;
  margin-bottom: 56px;
  letter-spacing: 0;
}

.interview_popup .flex .text_block{
  margin-top: 56px;
  margin-bottom: 0;
}

.interview_popup .text_block:first-child{
  margin-top: 0;
}

.interview_popup .text_block .question{
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
  color: #0071BE;
}

.interview_popup .text_block .answer{
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}

.interview_popup .img_area{
  flex-shrink: 0;
  width:442px;
}

.interview_popup .img_area.img_area_mini{
  width:338px;
}

.interview_popup .blue_box{
  padding:32px 40px;
  background-color: #EFF4F8;
}

.interview_popup .img_area .cap{
  margin-top: 72px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.65;
  color: #0071BE;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interview_popup .img_area .cap.mt0{
  margin-top: 0;
}

.interview_popup .img_area .cap.mt30{
  margin-top: 30px;
}

.interview_popup .img_area img{
  margin-bottom: 16px;
}

.interview_popup .img_area_right{
  margin-left: 48px;
}

.interview_popup .img_area_left{
  margin-right: 48px;
}


/*
-------------------------------------
エントリーフォーム
-------------------------------------
*/

.entry_section01{
  color:#fff;
  text-align: center;
  height:300px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background: linear-gradient(189.08deg, #158FC3 1.47%, #0071BE 100%);
}

.entry_section01 .p01{
  margin-bottom: 16px;
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 1.4;
  color: #FFFFFF;
}

.entry_section01 .p02{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.entry_section02{
  padding:120px 0;
}

.entry_section02 .link_list{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}

.entry_section02 .link_list .link{
  cursor: pointer;
  width:430px;
  max-width: 100%;
  height:80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  border-radius: 4px;
}

.entry_section02 .link_list .link::after{
  content:"";
  width:18px;
  height:11px;
  margin-left: 20px;
}

.entry_section02 .link_list .link01{
  color: #F48117;
  border:3px solid #F48117;
  margin-bottom: 40px;
}

.entry_section02 .link_list .link01::after{
  background-image: url('../img/bottom_orange.svg');
}

.entry_section02 .link_list .link02{
  color:#fff;
  background-image: url('../img/orange_bg.png');
}

.entry_section02 .link_list .link02::after{
  background-image: url('../img/bottom_white.svg');
}

.entry_section02 h2{
  margin-bottom: 80px;
  text-align: center;
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.4;
  color: #0071BE;
}

.entry_section02 .flex{
  display: flex;
  justify-content: space-between;
}

.entry_section02 .flex .left{
  width:472px;
}

.entry_section02 .flex .left img{
  width:100%;
  margin-bottom: 16px;
}

.entry_section02 .flex .right{
  width:580px;
  letter-spacing: 0;
}

.entry_section02 .flex .color_box{
  padding:30px;
  background-color: #EFF4F8;
  margin-bottom: 28px;
}

.entry_section02 .flex .color_box .p01{
  font-family: "Toppan Bunkyu Midashi Gothic",'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.4;
  color: #0071BE;
}

.entry_section02 .flex ul{
  
}

.entry_section02 .flex ul li{
  display: flex;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
}

.entry_section02 .flex ul li::before{
  display: block;
  content:"";
  width:24px;
  height:24px;
  background-image: url('../img/entry_check.svg');
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.entry_section02 .flex ul li:last-child{
  margin-bottom: 0;
}

.entry_section02 .flex .right p{
  margin-bottom: 28px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
}

.form_section{
  padding:120px 0;
  background: linear-gradient(189.08deg, #158FC3 1.47%, #0071BE 22.28%, #158FC3 60.06%, #0071BE 100%);
}

.form_section .sec_title{
  color:#fff;
}

.form_section .sec_sub_title{
  color:#fff;
  margin-bottom: 72px;
}

.form_section .contact_box{
  background-color: #fff;
  padding:80px 24px;
}

.form_section .contact_block{
  max-width:580px;
  margin:0 auto;
}

.contact_block{
  
}

.contact_block .form_line{
  margin-bottom: 40px;
}

.contact_block .form_line .title{
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  padding-left: 60px;
  font-size: 20px;
  line-height: 1;
}

.contact_block .form_line .title .sub{
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.3;
  font-size: 14px;
}

.contact_block .form_line .title::before{
  content:"必須";
  width: 44px;
  height: 24px;
  background: #D3261B;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  left:0;
  top:-1px;
}

.contact_block .form_line .title.free::before{
  content:"任意";
  background: #A3A3A3;
}

.contact_block .form_line .text_input{
  border:none;
  background: none;
  display: block;
  width:100%;
  height:56px;
  border-radius: 5px;
  padding:0 20px;
  font-size: 18px;
  font-weight: 400;
  border:1px solid #BCBCBC;
  background-color: #FBFBFB;
}

.contact_block .form_line .input_age{
  width:72px;
  margin-right: 8px;
}

.contact_block .form_line .mwform-checkbox-field{
  margin-left: 0!important;
  cursor: pointer;
}

.contact_block .form_line .mwform-checkbox-field input{
  width:18px;
  height:18px;
  cursor: pointer;
  vertical-align: middle;
  margin-bottom: 4px;
}

.contact_block .form_line .request_block{
  display: flex;
  flex-wrap: wrap;
  gap:16px 72px;
  max-width: 380px;
}

.contact_block .form_line .kind_block{
  display: flex;
  flex-wrap: wrap;
  gap:16px 72px;
}

.contact_block .form_line .connecting_block{
  display: flex;
  flex-wrap: wrap;
  gap:16px 72px;
}

.contact_block .form_line .gender_block .horizontal-item + .horizontal-item {
  margin-left: 72px!important;
}

.contact_block .form_line .age_flex{
  display: flex;
  align-items: center;
}

.contact_block .form_line .age_flex .text{
  font-size: 18px;
  line-height: 1;
}

.contact_block .form_line .education_block{
  width:200px;
  position: relative;
}

.contact_block .form_line .education_block::after{
  content:"";
  position: absolute;
  right:16px;
  top:22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #000 transparent transparent transparent;
  pointer-events: none;
}

.contact_block .form_line .education_block select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  background: none;
  width:100%;
  height:56px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  background-color: #FBFBFB;
  border:1px solid #BCBCBC;
  border-radius: 5px;
}

.contact_block .form_line .upload_block{
  padding:20px;
  background-color: #FBFBFB;
  border:1px solid #BCBCBC;
  border-radius: 5px;
}

.contact_block .form_line textarea{
  border:none;
  background: none;
  display: block;
  width:100%;
  height:300px;
  border-radius: 5px;
  padding:20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  border:1px solid #BCBCBC;
  background-color: #FBFBFB;
}

.contact_block .agree_box{
  display: flex;
  justify-content: center;

  /* align-items: center; */
  margin: 56px 0;
}

.contact_block .agree_box .error{
  flex-shrink: 0;
  padding-top: 2px;
}

.contact_block .agree_box .agree_text{
  margin-left: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  position: relative;
  padding-left: 50px;
}

.contact_block .agree_box .agree_text::before{
  content:"必須";
  width: 44px;
  height: 24px;
  background: #D3261B;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  left:0;
  top:2px;
}

.contact_block .agree_box .mwform-checkbox-field-text{
  display: none;
}

.contact_block .agree_box input{
  width:18px;
  height:18px;
  margin-top: 6px;
  cursor: pointer;
}

.contact_block .agree_box .agree_text a{
  color:#0071BE;
  font-weight: 400;
  border-bottom:1px solid #0071BE;
}

.contact_block .submit_area{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_block .submit_area .submit{
  border:none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 372px;
  height: 80px;
  background-image:url('../img/orange_bg.png');
  border-radius: 4px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  line-height:1;
  color:#fff;
}

.contact_block .submit_area .submit.waiting{
  opacity: 0.7;
  pointer-events: none;
}

.contact_block .submit_area .return{
  border:none;
  background: none;
  color:#000;
  margin-top: 24px;
  padding:0 6px 4px;
  border-bottom:1px solid #000;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.grecaptcha-badge{
  visibility: hidden;
}


/*確認画面*/

.form_section .confirm_text{
  margin-bottom: 72px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  color: #FFFFFF;
}
.contact_block .mw_wp_form_confirm .agree_box{
  display: none;
}

.contact_block .mw_wp_form_confirm .form_line .education_block::after{
  content:none;
  
}