@charset "UTF-8";
/*---------------------------------------------------------
	全ページ共通スタイル
---------------------------------------------------------*/


/* 要素設定*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 2.1;
  font-size: 16px;
  letter-spacing: 0.1em;
}


button,
select,
textarea,
input{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  font-size: 16px;
}

.font-en{
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0;
}

a{
    color: #000;
}


.mainWidth{
  padding: 0 100px;
}
.mainInner1{
    max-width: 1200px;
    margin: 0 auto;
}
.mainInner2{
    max-width: 1440px;
    margin: 0 auto;
}

.noBar{
 -ms-overflow-style: none; /* IE対策 */
 scrollbar-width: none;
}
.noBar::-webkit-scrollbar { /* Google Chrome対策 */
 display: none;
}


/*　ヘッダー
---------------------------------------------------------*/


#pageHeader{}

.l-head{
  position: fixed;
  z-index: 120;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content:space-between;
  /* align-items:center; */
  box-shadow: 0px 0px 15px 0px rgba(215, 215, 215, 0.49);
  height: 80px;
  background: rgba(255,255,255,1);
  /*  -webkit-backdrop-filter: saturate(180%) blur(5px);*/
  /*  backdrop-filter: saturate(180%) blur(5px);*/
}
.l-head_logo {
  margin: 13px 0 0 24px;
  display: flex;
  align-items: center;
  gap: ;
}
.l-head_logo a{
  /* display: flex;
  align-items:center;   */
  display: block;
}
.l-head_logo_img{
  width: 103px;
  margin: 0 19px 0 0;
}
.l-head_logo_txt{
    line-height: 1.4;
    font-weight: bold;
    display: block;
}
.l-head_main{
  display: flex;
}
.l-head_nav{
  display: flex;
}
.l-head_nav_hover{
  position: absolute;
  z-index: 1;
  top: 68px;
  background: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
  box-shadow: 0px 0px 15px 0px rgb(215 215 215 / 49%);
  border-radius: 5px;
  padding: 18px 22px;
}
.l-head_nav_hover:before{
  content: "";
  z-index: 1;
  position: absolute;
  border-bottom:10px solid #fff;
  border-top:0px solid transparent;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  width: 0px;
  height: 0px;
  top:-10px;
  left: 0;
  right:0;
  margin: auto;
}

.l-head_nav_hover a{
  white-space: nowrap;
  padding-right: 46px;
  position: relative;
  z-index: 1;
  display: block;
}


.l-head_nav_hover a:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid rgb(5, 48, 132);
    border-right: 1px solid rgb(5, 48, 132);
    transform: rotate(45deg);
}


.l-head_nav li{
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.l-head_nav li:nth-child(n+2){
  margin-left: 47px;
}
.l-head_nav1{}
.l-head_nav_btn{
  /* display: flex; */
  align-items:center;
  justify-content:center;
  cursor: pointer;
}
.l-head_info{
  background: #053084;
  border: 2px solid #053084;
  color: #fff;
  display: flex;
  align-items:center;
  justify-content:center;
  width: 220px;
  margin: 0 0 0 48px;
}
.l-head_info span{
    position: relative;
    z-index: 1;
    padding: 0 0 0 33px;
}
.l-head_info span:after,
.l-head_info span:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/icon_mail.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 22px;
  height: 15px;
  top:0;
  bottom: 0;
  left: 0;
  margin: auto;

  transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1);
}
.l-head_info span:after{
  background-image: url(../img/common/icon_mail_b.svg);
  opacity: 0;
}

.l-head_menu{
  display: none;
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: no-repeat;
  border: none;
  padding: 0;
  /* margin: 0 0 0 9px; */
  background: #053084;
}

.l-head_menu:after,
.l-head_menu:before,
.l-head_menu span{
  content: "";
  z-index: 1;
  position: absolute;
  background: #fff;
  height: 1px;
  top: 0px;
  bottom: 0;
  right: 15px;
  left: 15px;
  margin: auto;
  overflow: hidden;
  text-indent: -999px;
  transition: all 400ms cubic-bezier(.165,.84,.44,1);
}


.l-head_menu:after {
    bottom: -26px;
}
.l-head_menu:before {
    top: -26px;
}
.l-head_menu.on:before {
    transform: rotate(-45deg);
    top: 0;
}
.l-head_menu.on:after {
    transform: rotate(45deg);
    bottom: 0;
}
.l-head_menu.on span {
    opacity: 0;
}

.l-head_popup{
  position: fixed;
  z-index: 110;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overscroll-behavior-y: contain;
  overflow-y: scroll;
  padding-bottom: 75px;

  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;

}
.l-head_popup.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;
}
.l-head_popup_inner{max-width: 800px;margin: 30px auto 0;}

.l-head_link_box{}
.l-head_link_main{
    border-bottom: solid 1px #053084;
}
.l-head_link_list{
  display: flex;
  flex-wrap: wrap;
}
.l-head_link_list2{
  display: flex;
  flex-wrap: wrap;
}
.l-head_link_list2 a{
  color: #053084;
  font-weight: bold;
  padding: 14px 0;
  display: block;
}
.l-head_link_list2 .l-head_link_ttl2{
  width: 50%;
  text-align: center;
}

.l-head_link_list2 .l-head_link_ttl2:nth-child(2n+1){
  border-right: solid 1px #053084;
}

.l-head_link_list2 .l-head_link_ttl2:nth-child(n+3){
  border-top: solid 1px #053084;
}




.l-head_link_ttl{}

.l-head_link_ttl_btn,
.l-head_link_ttl_link {
    display: block;
    padding: 17px 0;
    position: relative;
    z-index: 1;
    color: #053084;
    font-weight: bold;
}
.l-head_link_ttl_btn:before,
.l-head_link_ttl_link:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid #053084;
    border-right: 1px solid #053084;
    transform: rotate(135deg);
}
.l-head_link_ttl_btn.on:before{
    transform: rotate(-45deg);
    top: 3px;
}

.l-head_link_ttl_link:before{
    transform: rotate(45deg);
}
.l-head_link_list{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin: 0 4%;
    display: none;
}
.l-head_link_list li{
    width: 50%;
}
.l-head_link_list li:nth-child(n+3){
  margin-top: 8px;
}
.l-head_link_list a{
    display: block;
    color: #053084;
    font-size: 14px;
}




@media screen and (max-width: 1500px) {
  .l-head_logo_txt {
      /* line-height: 1.4; */
      font-size: 14px;
  }
  .l-head_nav li {
  font-size: 14px;
  }
  .l-head_info {
    font-size: 14px;
    width: 175px;
    margin: 0 0 0 26px;
  }  
  .l-head_logo{
    margin: 17px 0 0 21px;
}
  .l-head_logo_img {
      width: 90px;
      margin: 0 19px 0 0;
  }
  .l-head_nav li:nth-child(n+2) {
      margin-left: 30px;
  }  
}
@media screen and (max-width: 1230px) {
  .l-head_logo_txt {
      /* line-height: 1.4; */
      font-size: 13px;
  }
  .l-head_nav li {
  font-size: 13px;
  }
  .l-head_info {
    font-size: 13px;
    width: 167px;
    margin: 0 0 0 20px;
  }  
  .l-head_logo{
    margin: 17px 0 0 21px;
}
  .l-head_logo_img {
      width: 90px;
      margin: 0 19px 0 0;
  }
  .l-head_nav li:nth-child(n+2) {
      margin-left: 26px;
  }  
}
@media screen and (max-width: 1140px) {
  .l-head_info,
  .l-head_nav{
    display: none;
  }

  .l-head_menu{
    display: block;
  }

}

/* ------------------------ */
.c-list1{
  display: flex;
  flex-wrap: wrap;
}
.c-list1 li{
  width: 31.6%;
  margin-left: 2.6%;
  max-width: 379px;
}
.c-list1 li:nth-child(3n+1){
  margin-left: 0;
}
.c-list1 li:nth-child(n+4){
  margin-top: 95px;
}

.c-list1 a{
  display: block;
}
.c-list1_img{
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
}
.c-list1_ttl{
  font-size: 22px;
  color: #053084;
  font-weight: bold;
  margin: 0 0 18px;
  line-height: 1.5;
}
.c-list1_mes{
  font-size: 14px;
}
.c-list1_mes span{
  text-decoration: underline;
  color: #053084;
}

@media screen and (max-width: 960px) {
  .c-list1 li{
    width: 48.7%;
  }
  .c-list1 li:nth-child(3n+1){
    margin-left: 2.6%;
  }  
  .c-list1 li:nth-child(2n+1){
    margin-left: 0;
  }
  .c-list1 li:nth-child(n+2){
    margin: 45px 0 0;
  }

}

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

.l-side{
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);


}
.l-head_popup + .l-side{
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
}
.l-head_popup + .l-side.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;
}




.l-side_btn{
  display: block;
  border: 2px rgb(16, 62, 162) solid;
  background-color: rgb(255, 255, 255);
  width: 80px;
  height: 190px;
  border-radius: 6px 0 0 6px;
  line-height: 72px;
  text-align: center;
  line-height: 1;
  padding: 84px 0 0 0;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.l-side_btn span{
   /* position: relative; */
   /* z-index: 1; */
}
.l-side_btn span:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: 0 0 no-repeat;
  width: 40px;
  height: 40px;
  top: 35px;
  right:0;
  left: 0;
  margin: auto;
}
.l-side_btn .icon1:before{
    background-image: url(../img/common/icon_nav1.svg);
}
.l-side_btn .icon2:before{
    background-image: url(../img/common/icon_nav2.svg);
}

.l-side_btn:nth-child(n+2){
  margin-top: 10px;
}

/*　パンくず
---------------------------------------------------------*/

#breadcrumb{}

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

.c-skew{
  transform: skewX(-28.3deg);
}

._c-skew{
  transform: skewX(28.3deg);
}

img.c-cover{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}



/* --------------- */
a.c-zoom  {
    display: block;
    cursor: zoom-in;
}
/* --------------- */

.c-arrow1{
  display: inline-block;
  border: 1px rgb(19, 87, 200) solid;
  border-radius: 50%;
  background-color: #fff;
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1), color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), background-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), border-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), box-shadow 400ms cubic-bezier(0.26, 0.06, 0, 1);
}

.c-arrow1:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  border-top: 1px solid rgb(19, 87, 200);
  border-right: 1px solid rgb(19, 87, 200);
  transform: rotate(45deg);
  transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1), color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), background-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), border-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), box-shadow 400ms cubic-bezier(0.26, 0.06, 0, 1);
}

/* --------------- */
.c-pdf{
  display: inline-block;
  width: 18px;
  height: 25px;
  position: relative;
  z-index: 1;
  background: url(../img/common/icon_pdf.svg) 0 0 no-repeat;
  top: 8px;
  margin-left: 9px;
}
/* --------------- */

.c-select1{
  display: inline-block;
  border: 1px rgb(19, 87, 200) solid;
  border-radius: 50%;
  background-color: #fff;
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1), color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), background-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), border-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), box-shadow 400ms cubic-bezier(0.26, 0.06, 0, 1);
}

.c-select1:after,
.c-select1:before{
  content: "";
  z-index: 1;
  position: absolute;
  
  background: rgb(19, 87, 200);
  height: 2px;
  top:0;
  bottom: 0;
  right:2px;
  left: 2px;
  margin: auto;
}
.c-select1:after{
  transform: rotate(90deg);
}

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

.c-pagenavi{
  text-align: center;
  margin-top: 87px;
}
.c-pagenavi .wp-pagenavi{
  display: flex;
  justify-content:center;
  align-items:center;
}

.c-pagenavi .extend,
.c-pagenavi .pages{
  display: none;
}



.c-pagenavi .page,
.c-pagenavi .current{
  border-radius: 100px;
  background: #fff;
  width: 46px;
  line-height: 46px;
  color: #023aa7;
  margin: 0 6px;
}
.c-pagenavi .page{}
.c-pagenavi .current{
  background: #023aa7;
  color: #fff;
}

.c-pagenavi .last,
.c-pagenavi .first,
.c-pagenavi .previouspostslink,
.c-pagenavi .nextpostslink{
  width: 46px;
  height: 46px;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  z-index: 1;
  border-radius: 100px;
}

.c-pagenavi .last:before,
.c-pagenavi .first:before,
.c-pagenavi .last:after,
.c-pagenavi .first:after,
.c-pagenavi .previouspostslink:before,
.c-pagenavi .nextpostslink:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #1d6eb7;
  border-right: 2px solid #1d6eb7;
  transform: rotate(45deg);
}

.c-pagenavi .last:before,
.c-pagenavi .first:before{
  left: -7px;
}
.c-pagenavi .last:after,
.c-pagenavi .first:after{
  left: 7px;
}

.c-pagenavi .previouspostslink{
  transform: scale(-1, 1);
  margin: 0 18px 0 0;
}
.c-pagenavi .nextpostslink{
    margin: 0 0 0 18px;
}

.c-pagenavi .first{
  width: 60px;
  transform: scale(-1, 1);
  margin: 0 5px 0 0;
}
.c-pagenavi .last{
  width: 60px;
    margin: 0 0 0 5px;
}



/* --------------- */
.c-blank1{
  display: inline-block;
  border: 2px #fff solid;
  border-radius: 50%;
  /* background-color: #fff; */
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 1;
  transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1), color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), background-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), border-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), box-shadow 400ms cubic-bezier(0.26, 0.06, 0, 1);
}

.c-blank1:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/icon_blank.svg) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  margin: auto;
}

.c-blank2{
  display: inline-block;
  /* border: 2px #fff solid; */
  /* border-radius: 50%; */
  /* background-color: #fff; */
  width: 15px;
  height: 15px;
  position: relative;
  z-index: 1;
  top: 3px;
  margin-left: 2px;
  /* transition: opacity 400ms cubic-bezier(0.26, 0.06, 0, 1), color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), background-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), border-color 400ms cubic-bezier(0.18, 0.06, 0.23, 1), box-shadow 400ms cubic-bezier(0.26, 0.06, 0, 1); */
}

.c-blank2:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/icon_blank.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  margin: auto;
}

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


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

.l-bg-flont,
.l-bg{
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: 0 0 repeat-y;
  background-size: 100% auto;
  overflow: hidden;
  mix-blend-mode: color-burn;
  height: 0px;
}

.l-bg{
  /* background-image: url(../img/common/bg1.svg); */
}
.l-bg2{
  display: block;
  position: relative;
  z-index: -2;
}
.l-bg2 span{
  background: #E1E9F8;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
}


.l-bg-flont span{
  display: block;
  position: absolute;
  z-index: 1;
}

.l-bg_l{
  left: 0;
}
.l-bg_r{
  right: 0;
}

.l-bg_color1{
  opacity: 0.2;
}
.l-bg_color2{
  opacity: 0.12;
}
.l-bg_color3{
  opacity: 0.08;
}



.l-bg_l:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: 0% 100% no-repeat;

  top: 0;
  bottom: 0;
  right:0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transform: translate(-100%, 100%);
}
.l-bg_r:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: 100% 0% no-repeat;
  top: 0;
  bottom: 0;
  right:0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transform: translate(100%, -100%);
}


.l-bg_l.l-bg_img1:before{
  background-image: url(../img/common/bg1_1.svg);
}
.l-bg_l.l-bg_img2:before{
  background-image: url(../img/common/bg1_2.svg);
}
.l-bg_r.l-bg_img1:before{
  background-image: url(../img/common/bg1_3.svg);
}
.l-bg_r.l-bg_img2:before{
  background-image: url(../img/common/bg1_4.svg);
}

.l-bg_r.scBomb_anim:before,
.l-bg_l.scBomb_anim:before{
  transform: translate(0%, 0%);
}

.l-bg_box001{
  top: 144.8vw;
  top: 2804px;
  width: 11.8vw;
  height: 22vw;
}
.l-bg_box002{
  top: 154vw;
  top: 2972px;
  width: 12.8vw;
  height: 22vw;
}
.l-bg_box003{
  top: 160vw;
  top: 3095px;
  width: 10.8vw;
  height: 19vw;
}
.l-bg_box004{
  top: 216vw;
  top: 4178px;
  width: 10.8vw;
  height: 19vw;
}
.l-bg_box005{
  top: 242vw;
  top: 4673px;
  width: 8.8vw;
  height: 16.4vw;
}
.l-bg_box006{
  top: 247vw;
  top: 4770px;
  width: 8.5vw;
  height: 15vw;
}
.l-bg_box007{
  top: 266vw;
  top: 5137px;
  width: 23.8vw;
  height: 43.4vw;
}
.l-bg_box008{
  top: 296.4vw;
  top: 5727px;
  width: 12.8vw;
  height: 23vw;
}
.l-bg_box009{
  top: 302.6vw;
  top: 5846px;
  width: 11.6vw;
  height: 20.6vw;
}
.l-bg_box010{
  top: 334vw;
  top: 6452px;
  width: 23.8vw;
  height: 42.4vw;
}
.l-bg_box011{
  top: 367vw;
  top: 7091px;
  width: 23.8vw;
  height: 42.4vw;
}
.l-bg_box012{
  top: 397.4vw;
  top: 7677px;
  width: 12.8vw;
  height: 23vw;
}
.l-bg_box013{
  top: 403.6vw;
  top: 7780px;
  width: 11.6vw;
  height: 20.6vw;
}
.l-bg_box101{
  top: 1021px;
  width: 8.8vw;
  height: 14vw;
}
.l-bg_box102{
  top: 1073px;
  width: 15.8vw;
  height: 28vw;
}
.l-bg_box103{
  top: 2986px;
  width: 6.6vw;
  height: 11.5vw;
}
.l-bg_box104{
  top: 3054px;
  width: 11.8vw;
  height: 21.5vw;
}

.l-bg_box105{
  top: 4207px;
  width: 14vw;
  height: 24.3vw;
}
.l-bg_box106{
  top: 3873px;
  width: 16.8vw;
  height: 29.5vw;
}

.l-bg_box107{
  top: 5129px;
  width: 6.6vw;
  height: 11.5vw;
}
.l-bg_box108{
  top: 5198px;
  width: 11.8vw;
  height: 21.5vw;
}
.l-bg_box109{
  top: 6128px;
  width: 14vw;
  height: 24.3vw;
}
.l-bg_box110{
  top: 6237px;
  width: 13.8vw;
  height: 24.5vw;
}
.l-bg_box111{
  top: 6409px;
  width: 11.8vw;
  height: 21.5vw;
}
.l-bg_box112{
  top: 7517px;
  width: 13.8vw;
  height: 24.5vw;
}

/* --------------- */
.c-ttl1{
  line-height: 1;
}
.c-ttl1_en{
  font-weight: bold;
  font-size: 70px;
  color: #103ea2;
  text-transform: uppercase;
  display: block;
  position: relative;
  z-index: 1;
  padding-top: 35px;
}
.c-ttl1_en:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/ttl1_line.svg) 0 0 no-repeat;
  width: 50px;
  height: 11px;
  top:0;
  left: 0;
}

.c-ttl1_jp{
  display: block;
  font-size: 22px;
  color: #103ea2;
  position: relative;
  z-index: 1;
  font-weight: bold;
  padding: 0 0 0 67px;
  /* letter-spacing: 0.1em; */
  margin-top: 17px;
}

.c-ttl1_jp:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #103ea2;
  width: 40px;
  height: 2px;
  top: 11px;
  left: 0;
}

.c-ttl2{
  font-size: 32px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-weight: bold;
  color: #103ea2;
  /* letter-spacing: 0.1em; */
  margin: 0 0 74px;
}

.c-ttl2:before {
    content: "";
    z-index: 1;
    position: absolute;
    background: #103ea2;
    width: 60px;
    height: 2px;
    bottom: -20px;
    left: 0;
}
.c-ttl2:after {
    content: "";
    z-index: 1;
    position: absolute;
    background: #199b3b;
    width: 16px;
    height: 2px;
    bottom: -20px;
    left: 0;
}


.c-ttl3{
  font-size: 28px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  line-height: 1.4;
  /* letter-spacing: 0.1em; */
  margin-bottom: 49px;
}

.c-ttl3:before {
    content: "";
    z-index: 1;
    position: absolute;
    background: #103ea2;
    width: 6px;
    height: 25px;
    top: 8px;
    left: 0;
}

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

.c-link1{
  color: #103ea2;  
  text-decoration: underline;
}

.c-link1 .c-arrow1{
  margin: 0 0 0 15px;
  top: 3px;
}

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

.c-table_slide{
    width: 100%;
    overflow: hidden;
}
.c-table_slide table{}
.c-table_slide .mCSB_horizontal.mCSB_inside>.mCSB_container{
  margin: 42px 0 0;
}
.c-table_slide .mCSB_horizontal.mCSB_inside>.mCSB_container.mCS_x_hidden{
  margin: 0;
}
.c-table_slide .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: auto;
    top: 0;
    right: 18px;
    opacity: 1;
}
.c-table_slide .mCSB_scrollTools.mCSB_scrollTools_horizontal:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #103ea2;
  height: 1px;
  top: 15px;
  right: -17px;
  left: 0;
  border-radius: 10px;
}
.c-table_slide .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  width:  30px;
  height: 30px;
  border: solid #103ea2 1px;
  background: #fff !important;
}
.c-table_slide .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after,
.c-table_slide .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: -8px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-top: 1px solid rgb(19, 87, 200);
  border-right: 1px solid rgb(19, 87, 200);
  transform: rotate(45deg);
}

.c-table_slide .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:before{
  left: -7px;
  right: -1px;
  transform: rotate(225deg);
}


.c-table_slide .mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{
  display: none;
}



/* --------------- */
.l-fv{
    padding: 0 5%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.l-fv:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/mv_bg3.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 119px;
  height: 275px;
  bottom: 48px;
  left: 0;
}

.l-fv_inner{
    max-width: 1420px;
    margin: 0 auto;
    padding-top: 182px;
    padding-bottom: 186px;
    position: relative;
    z-index: 5;
}

.l-fv_inner:before{
  content: "";
  z-index: -1;
  position: absolute;
  background: url(../img/common/mv_bg1.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 375px;
  height: 420px;
  top:0;
  right: -218px;
}
.l-fv_inner:after{
  content: "";
  z-index: -1;
  position: absolute;
  background: url(../img/common/mv_bg2.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 670px;
  height: 500px;
  top:0;
  right: -258px;
}

.l-fv_mes{
    font-size: 20px;
    margin-top: 44px;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 1720px) {
  .l-fv:before {
      left: -49px;
  }
}
@media screen and (max-width: 1200px) {
  .l-fv_inner {
      padding-top: 15vw;
      padding-bottom: 16vw;
  }
  .l-fv .c-ttl1_en{
    font-size: 5.8vw;
  }
  .l-fv_inner:after{width: 56vw;height: 42vw;right: -21.5vw;}
  .l-fv_inner:before{
    width: 31.5vw;
    height: 36vw;
    right: -18vw;
  }
  .l-fv .c-ttl1_jp{
      font-size: max(1.85vw, 16px);
  }
  .l-fv_mes{
      font-size: max(1.65vw, 16px);
  }
  .l-fv:before {
    left: -4.5vw;
    height: 23vw;
    bottom: 4vw;
    width: 10vw;
  }

}

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

.c-standard{}
.c-standard_inner{
    padding-bottom: 156px;
}


/* --------------- */
.c-nav1{
  display: flex;
  flex-wrap: wrap;
}
.c-nav1_btn{
  display: flex;
  align-items:center;
  border: 2px rgb(2, 58, 167) solid;
  border-radius: 4px;
  background-color: rgb(237, 242, 251);
  position: relative;
  z-index: 1;
  color: #103ea2;
  font-weight: bold;
  padding: 5px 0 5px 24px;
  line-height: 1.5;
  overflow: hidden;
}

.c-nav1_btn:before{
  content: "";
  z-index: -1;
  position: absolute;
  background: #103ea2;
  top: -1px;
  bottom: -1px;
  right:-1px;
  left: -1px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0, 1);


}

.c-nav1_no{
    margin-right: 9.5%;
    font-size: 20px;
}

.c-nav1 .c-arrow1{
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  border-width: 2px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);

}
.c-nav1 .c-arrow1:before{
  border-width: 2px;
}

.c-nav1.col3 .c-nav1_btn{
  width: 31.81%;
  margin-left: 2.26%;
  font-size: 18px;
  min-height: 96px;
  padding-right: 55px;
}
.c-nav1.col3 .c-nav1_btn:nth-child(3n+1){
  margin-left: 0;
}
.c-nav1.col3 .c-nav1_btn:nth-child(n+4){
  margin-top: 27px;
}
.c-nav1.col3 .c-arrow1{
  right: 23px;
}

.c-nav1.col4 .c-nav1_btn{
  width: 23.3%;
  margin-left: 2.26%;
  font-size: 15px;
  min-height: 59px;
  padding-right: 41px;
}
.c-nav1.col4 .c-nav1_btn:nth-child(4n+1){
  margin-left: 0;
}
.c-nav1.col4 .c-nav1_btn:nth-child(n+5){
  margin-top: 24px;
}

.c-nav1.col4 .c-arrow1{
  right: 12px;
}

@media screen and (max-width: 1140px) {
  .c-nav1.col3 .c-nav1_btn{
    font-size: 16px;
    padding-right: 45px;
    padding-left: 20px;
  }
  .c-nav1_no {
      margin-right: 6.5%;
      font-size: 18px;
  } 
  .c-nav1.col3 .c-arrow1 {
      right: 14px;
  }   
  .c-nav1.col3 .c-nav1_btn{
    
  }
}
@media screen and (max-width: 1000px) {
  .c-nav1.col3 .c-nav1_btn {
      width: 48.86%;
  }
  .c-nav1.col3 .c-nav1_btn:nth-child(3n+1){
  margin-left: 2.26%;
  }
  .c-nav1.col3 .c-nav1_btn:nth-child(2n+1){
    margin-left: 0;
  }
  .c-nav1.col3 .c-nav1_btn:nth-child(n+3){
    margin-top: 10px;
  }  
}

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

.sample_bg span{}
.sample{
  position: relative;
  z-index: 1;
}
.sample:before{
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #E1E9F8;
    background-size: cover;
    opacity: 0.5;
}
.sample_inner{
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 5;
}

/* --------------- */
.scBomb_op{
  opacity: 0;
  transition: opacity .6s cubic-bezier(.36,.07,.7,.91);  
}
.scBomb_op.scBomb_anim{
  opacity: 1;
}

.scBomb_up{
  opacity: 0;
  transform: translate(0, 40px);  
  transition: transform .6s cubic-bezier(0.13, 0.78, 0.38, 0.98),opacity .6s cubic-bezier(.36,.07,.7,.91);  
}
.scBomb_up.scBomb_anim{
  opacity: 1;
  transform: translate(0, 0px);
}

.scBomb_maku{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.scBomb_maku:before {
    content: "";
    z-index: 5;
    position: absolute;
    background: #075cba;
    top: 0;
    bottom: 0;
    right: 0;
    left: -100px;
    transform: translate(-100%, 0%);
    transition: transform .8s cubic-bezier(.645,.045,.355,1);
}
.scBomb_maku_box{
    opacity: 0;
    transition: opacity .001s cubic-bezier(.645,.045,.355,1);
    transition-delay: .4s;
    position: relative;
    z-index: 1;
}

.scBomb_maku.scBomb_anim:before{
    transform: translate(100%, 0%);
}
.scBomb_maku.scBomb_anim .scBomb_maku_box {
    opacity: 1;
}



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

.c-btn1{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  border: 2px rgb(5, 48, 132) solid;
  background-color: rgb(255, 255, 255);
  min-width: 276px;
  min-height: 67px;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  padding: 8px 27px;
  font-size: 14px;
  color: #103ea2;
  line-height: 1.5;
  overflow: hidden;
}

.c-btn1:before{
  content: "";
  z-index: -1;
  position: absolute;
  background: #b89a41;
  top: -1px;
  bottom: -1px;
  right:-1px;
  left: -1px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 100px;

  background-image: -moz-linear-gradient( 45deg, rgb(5,48,132) 0%, rgb(73,117,202) 100%);
  background-image: -webkit-linear-gradient( 45deg, rgb(5,48,132) 0%, rgb(73,117,202) 100%);
  background-image: -ms-linear-gradient( 45deg, rgb(5,48,132) 0%, rgb(73,117,202) 100%);
}


.c-btn1 .c-arrow1{
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  border-width: 1px;
  width: 21px;
  height: 21px;
  right: 18px;
}
.c-btn1 .c-arrow1:before{width: 5px;height: 5px;}



/* --------------- */
.line1.line1_c,
.line1 .line1_c{
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
}

.line1.line1_s:after,
.line1.line1_c:after,
.line1 .line1_s:after,
.line1 .line1_c:after{
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(5, 48, 132);
    transform-origin: 100% 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.13, 0.78, 0.38, 0.98);
  }

.backBlack .line1 .line1_s:after,
.backBlack .line1 .line1_c:after{
    background-color: rgba(255,255,255,0.3);
}

.line1 .line1_s:after{
    transform-origin: 0 0;
    transform: scaleX(1);
    /* transition: none; */
}
/* --------------- */

.imgScale {
    transition: transform 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}

/* --------------- */
.link1 a{
  color: #004da2;
}

/* --------------- */
.anc1{
  height: 0;
  position: relative;
  z-index: 1;
  top: -150px;
}

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

.img1_anim{
  overflow: hidden;
}
.img1_anim img{
    transition: transform 400ms cubic-bezier(0.43, 0.05, 0.17, 1);
}

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

.l-movies-bg{
    margin-top: 115px;
}
.l-movies-bg span{
  background: url(../img/common/bg_movies.svg) 50% 50% no-repeat;
  background-size: cover;
  right: 133px;
}
.l-movies{
  position: relative;
  z-index: 1;
}
.l-movies:before{
    /* content: ""; */
    position: absolute;
    z-index: 1;
    left: 0;
    right: 133px;
    top: 0;
    bottom: 0;
    background: url(../img/common/bg_movies.svg) 50% 50% no-repeat;
    background-size: cover;
    opacity: 0.9;
}
.l-movies_inner{
  position: relative;
  z-index: 5;
    padding-top: 89px;
    padding-bottom: 82px;
}

.l-movies .c-ttl1{
  text-align: center;
}
.l-movies .c-ttl1_en{
    font-size: 60px;
    color: #fff;
}
.l-movies .c-ttl1_en:before{
  right: 0;
  margin: auto;
}
.l-movies .c-ttl1_jp{
  padding-left: 0px;
  font-size: 32px;
  color: #fff;
  margin-top: 25px;
}
.l-movies .c-ttl1_jp:before{
  display: none;
}


.l-movies_slide_box{
    margin-top: 54px;
    position: relative;
    z-index: 1;
    padding: 0 115px;
}
.l-movies_slide_btns{
    /* position: absolute; */
    /* z-index: 1; */
}
.l-movies_slide_btn{
    padding: 0;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 5;
    top: 76px;
}

.l-movies_slide_btn .c-arrow1:before {
    width: 8px;
    height: 8px;
    border-width: 2px;
    left: -3px;
}

.l-movies_slide_btn .c-arrow1 {
    width: 100%;
    height: 100%;
    border-width: 2px;
}

.l-movies_slide-prev{
    left: 27px;
    transform: scale(-1, 1);
}
.l-movies_slide-next{
    right: 27px;
}
.l-movies_slide_in{
    overflow: hidden;
    margin: 0 auto;
}
.l-movies_slide{}
.l-movies_slide li{}
.l-movies_slide a{
    color: #fff;
}
.l-movies_slide_img{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.l-movies_slide_img:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/icon_movies.svg) 0 0 no-repeat;
  width: 70px;
  height: 70px;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  margin: auto;
}
.l-movies_slide_ttl{margin-top: 24px;}
.l-movies_btn{
    text-align: center;
    margin-top: 58px;
}

@media screen and (max-width: 1750px) {
  .l-movies_slide-next{
    right: 60px;
}
  .l-movies_slide-prev{
    left: 62px;
}
  .l-movies_slide_box{
    padding: 0 144px;
}
}

/* --------------- */
.l-othersites{
    margin-top: 70px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.l-othersites_inner{
  display: flex;
  /* position: relative; */
  /* z-index: 5; */
}
.l-othersites_box{
  width: 50%;
  display: flex;
  align-items:center;
  display: flex;
  justify-content:center;
  text-align: center;
  height: 533px;
  color: #fff;
  /* padding-bottom: 100px; */
}
.l-othersites_box_inneer{
  padding: 0 6%;
  position: relative;
  z-index: 2;
}
.othersites_box_inneer{}
.l-othersites_ttl{
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 14px;
  font-weight: bold;
}
.l-othersites_mes{
  font-size: 14px;
  max-width: 510px;
  margin: auto;
}
.l-othersites_btn{
    margin-top: 46px;
}
.l-othersites_btn a{
    display: inline-block;
    /* background: #ccc; */
    /* width: 90px; */
    /* height: 90px; */
    border-radius: 100px;
}

.l-othersites_bg1,
.l-othersites_bg2{
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 50%;
  background: 50% 50% no-repeat;
  background-size: cover;
}
.l-othersites_bg1{
  left: 0;
  background-image: url(../img/common/othersites_bg1.jpg);
}
.l-othersites_bg2{
  right: 0;
  background-image: url(../img/common/othersites_bg2.jpg);
}


@media screen and (max-width: 1600px) {
  .l-othersites_box{
    height: 33.3vw;
    padding-top: 7vw;
  }
}

@media screen and (max-width: 1360px) {
  .l-othersites_ttl{
    font-size: 1.8vw;
  }
/*  .l-othersites_inner{
    display: block;
  }
  .l-othersites_box{
    width: auto;
  }*/
}
@media screen and (max-width: 1140px) {
  .l-othersites_inner{
    display: block;
  }
  .l-othersites_box{
    width: auto;
    position: relative;
    z-index: 1;
    height: 358px;
  }
  .l-othersites{
    padding: 0 0;
  }
  .l-othersites_bg1,
  .l-othersites_bg2{
    width: 100%;
  }
  .l-othersites_bg2 {
    background-position: 0 22%;
  }

  
}



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

/* --------------- */
.pagenavi{
  text-align: center;
  letter-spacing: -0.4em;
  margin: 84px 0 0;
  position: relative;
  z-index: 1;
}
.pagenavi .pages,
.pagenavi .first,
.pagenavi .extend,
.pagenavi .last{
  display: none;
}

.pagenavi .page,
.pagenavi .current{
  letter-spacing: normal;
  font-weight: 600;
  margin: 0 15px;
}
.pagenavi .current{
  color: #0101cb;
}


.pagenavi .previouspostslink,
.pagenavi .nextpostslink{
  position: absolute;
  z-index: 1;
  top: 8px;
  width: 30px;
  height: 8px;
  background: url(../img/common/arrow02_b.svg) 0 0 no-repeat;
  line-height: 0;
  overflow: hidden;
  text-indent: -69px;
}

.pagenavi .previouspostslink{
  left: 0;
  transform: scale(-1, 1);
}
.pagenavi .nextpostslink{
  right: 0;
}

/* --------------- */
.html_slide{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.html_slide_main{
  display: flex;
  width: 200%;
}
.html_slide_box{
  width: 100%;
  position: relative;
  z-index: 1;

  animation-name: scrolltext;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;  
}

@keyframes scrolltext{
    0%{ transform: translate(0%, 0%); }
    100%{ transform: translate(-100%, 0%); }
}



/*　メイン
---------------------------------------------------------*/

#pageMain{}



/*　フッター
---------------------------------------------------------*/


#pageFooter{
    position: relative;
    z-index: 1;
}
.l-foot{
  color: #fff;
  background: #053084;
  margin-top: 135px;
}
.l-foot a{
  color: #fff;
}
.l-foot a:after{
  background-color: rgba(247, 247, 247,0.4) !important;
}
.l-foot_inner{
    padding-top: 78px;
    padding-bottom: 40px;
}
.l-foot_top{
  display: flex;
  justify-content:space-between;
  border-bottom: solid rgba(247, 247, 247,0.4) 1px;
  padding-bottom: 54px;
  margin-bottom: 56px;
}


.l-foot_logo{
  display: flex;
  align-items: center;
  gap: 2rem; 
}
.l-foot_logo a{
  display: block;
  align-items:center;
 
}
.l-foot_logo_img{
  width: 126px;
  margin: 0 0 0 5px;
  display: block;
}
.l-foot_logo_txt{
  display: block;
    font-size: 20px;
     color: #fff;
    margin: 0 0 10px 27px;
}
.l-foot_addr{
    margin: 0 16px 0 0;
}
.l-foot_addr_name{}
.l-foot_addr_main{
    font-size: 14px;
}

.l-foot_addr_main span:nth-child(n+2){
  margin-left: 15px;
}


.l-foot_link{
  display: flex;
  justify-content:space-between;
}
.l-foot_link_box{}
.l-foot_link_main{
}
.l-foot_link_main:nth-child(n+2){
  margin-top: 29px;
}
.l-foot_link_ttl{
    font-weight: bold;
}
.l-foot_link_list{
    font-size: 12px;
    margin: 12px 0 0 40px;
}
.l-foot_link_list li{}
.l-foot_link_list li:nth-child(n+2){
  margin-top: 9px;
}
.l-foot_link_ttl2{
  font-weight: bold;
}



.l-foot_copy{
  font-size: 12px;
  text-align: center;
  margin-top: 208px;
  letter-spacing: 0.05em;
}





@media screen and (max-width: 1250px) {
  .l-foot_top{
    display: block;
  }
  .l-foot_addr{
    margin-top: 20px;
  }
  
}
@media screen and (max-width: 1000px) {
  .l-foot_link{
    flex-wrap: wrap;
  }
  .l-foot_link_box:last-child{
    border-top: solid rgba(247, 247, 247,0.4) 1px;
    width: 100%;
    margin-top: 50px;
    padding-top: 55px;
  }
  .l-foot_link_box:last-child .l-foot_link_main{
    display: flex;
    flex-wrap: wrap;
  }
  .l-foot_link_box:last-child .l-foot_link_main p{
    margin: 0 24px 10px 0;
  }
  
}







/*---------------------------------------------------------
  ホバー (PCのみ)
---------------------------------------------------------*/

@media screen and (min-width: 768px) {





  .c-pagenavi .last:hover,
  .c-pagenavi .first:hover,
  .c-pagenavi .previouspostslink:hover,
  .c-pagenavi .nextpostslink:hover{
    background: #023aa7;
  }

  .c-pagenavi .last:hover:before,
  .c-pagenavi .first:hover:before,
  .c-pagenavi .last:hover:after,
  .c-pagenavi .first:hover:after,
  .c-pagenavi .previouspostslink:hover:before,
  .c-pagenavi .nextpostslink:hover:before{
    border-color: #fff;
  }


  a:hover .c-blank1{
    background:  rgb(16, 62, 162);
  }
  .l-movies_slide_btn:hover .c-arrow1{
    background:  rgb(16, 62, 162);
    border-color: #fff;
  }
  .l-movies_slide_btn:hover .c-arrow1:before{
    border-color: #fff;
  }


  a:hover .imgScale{
    transform: scale(1.1);
  }

  .c-nav1_btn:hover,
  .c-btn1:hover{
    color: #fff;
  }

  .c-btn1-b:hover{
    border-color: #fff;
  }  

  .c-nav1_btn:hover:before,
  .c-btn1:hover:before{
    transform-origin: 0 0;
    transform: scaleX(1);
  }


.l-head_nav li:hover .l-head_nav_hover{
    visibility: visible;
    transition: transform .4s, opacity .4s;
    opacity: 1;
  }
  .l-side_btn:hover{
    background: rgb(16, 62, 162);
    color: #fff;
  }

/*  .c-nav1_btn:hover,
  .c-btn1:hover{
    box-shadow: 1.928px 2.298px 25.23px 3.77px rgb(120 125 130 / 30%);
  }*/

  .c-link1:hover{
    text-decoration: none;
  }

/*  .l-side_btn:hover{
    box-shadow: 1.928px 2.298px 25.23px 3.77px rgb(120 125 130 / 30%);
  }*/


  .l-head_info:hover{
    background: #fff;
    color: #053084;
  }
  .l-head_info:hover span:before{
    opacity: 0;
  }
  .l-head_info:hover span:after{
    opacity: 1;
  }

  .l-head_nav_hover a:hover{
    color: #053084;
  }



    .line1:hover .line1_s:after{
        animation: line1_anim 0.6s 1;
        animation-fill-mode: forwards;        
    }
    @keyframes line1_anim {
      0% {
        transform-origin: 100% 0;
        transform: scaleX(1);    
      }
      50% {
          transform-origin: 100% 0;
          transform: scaleX(0);    
      }  
      50.1% {
          transform-origin: 0% 0;
          transform: scaleX(0);    
      }
      100% {
          transform-origin: 0% 0;
          transform: scaleX(1);       
      }
    }




    .line1.line1_c:hover:after,
    .line1:hover .line1_c:after{
        transform-origin: 0 0;
        transform: scaleX(1);
    }

}


/*---------------------------------------------------------
	スマホ
---------------------------------------------------------*/



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


  /* 要素設定*/
  body {
  font-size: 13px;
  line-height: 1.6;
  }
  a{}


  .mainWidth{
    padding: 0 5%;
}
  .mainInner1{}
  .mainInner2{}


  /*　ヘッダー
  ---------------------------------------------------------*/


  #pageHeader{}

  .l-head{
    height: 50px;
}
  .l-head_logo{
    margin: 7px 0 0 10px;
}
  .l-head_logo a{}
  .l-head_logo_img{
    width: 60px;
    font-size: 10px;
    margin: 0 11px 0 0;
}
  .l-head_logo_txt{
    font-size: 13px;
}
  .l-head_main{}
  .l-head_nav{}
  .l-head_nav li{}
  .l-head_nav li:nth-child(n+2){}
  .l-head_nav1{}
  .l-head_nav_btn{}
  .l-head_info{}
  .l-head_info span{}
  .l-head_info span:before{}



  .l-head_menu{
    width: 50px;
    height: 50px;
}

  .l-head_menu:after,
  .l-head_menu:before,
  .l-head_menu span{
    right: 13px;
    left: 13px;
}


  .l-head_menu:after {
    bottom: -19px;
}
  .l-head_menu:before {
    top: -19px;
}
  .l-head_menu.on:before {}
  .l-head_menu.on:after {}
  .l-head_menu.on span {}

  .l-head_popup{
    top: 50px;
    padding-bottom: 40px;
}
  .l-head_popup.on{}
  .l-head_popup_inner{
    margin: 0 auto 0;
}

  .l-head_link_box{}
  .l-head_link_main{}
  .l-head_link_list{}
  .l-head_link_list2{}
  .l-head_link_list2 a{}
  .l-head_link_list2 .l-head_link_ttl2{}

  .l-head_link_list2 .l-head_link_ttl2:nth-child(2n+1){}

  .l-head_link_list2 .l-head_link_ttl2:nth-child(n+3){}




  .l-head_link_ttl{}

  .l-head_link_ttl_btn,
  .l-head_link_ttl_link {
    font-size: 14px;
}
  .l-head_link_ttl_btn:before,
  .l-head_link_ttl_link:before {
}
  .l-head_link_ttl_link:before{}
  .l-head_link_list{
    margin: 0 4%;
}
  .l-head_link_list li{}
  .l-head_link_list a{
    font-size: 12px;
}

  .l-head_popup .l-side{
    position: relative;
    margin: 22px 0 0;
    width: auto;
    /* visibility: inherit; */
    /* opacity: 1; */
  }
.l-side:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: rgb(16, 62, 162);
  width: 1px;
  top: 6px;
  bottom: 6px;
  left: 50%;
}

  /* ------------------------ */
  .c-list1{
    display: block;
}
  .c-list1 li{
    width: auto;
}
  .c-list1 li:nth-child(3n+1){}
  .c-list1 li:nth-child(n+4){}

  .c-list1 a{}
  .c-list1_img{
    margin: 0 0 12px;
}

.c-list1_img .c-arrow1{
    position: absolute;
    z-index: 4;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
}
.c-list1_img .c-arrow1:before{
    left: -3px;
    width: 6px;
    height: 6px;
}

  .c-list1_ttl{
    font-size: 14px;
    margin-bottom: 12px;
}
  .c-list1_mes{
    font-size: 13px;
}
    
/* ------------------------ */
  .l-side{
    top: auto;
    bottom: 0;
    left: 0;
    transform: translate(0, 0%);
    display: flex;
    width: 90%;
    margin: 0 auto 13px;
    border: 1px rgb(5, 48, 132) solid;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 5px 16.74px 1.26px rgba(0, 0, 0, 0.29);
}
  .l-side_btn{
    width: 50%;
    height: auto;
    padding: 23px 0;
    border: none;
    border-radius: 0;
    background: no-repeat;
}
  .l-side_btn br{
    display: none;
  }
  .l-side_btn span{
    position: relative;
    z-index: 1;
    padding-left: 39px;
}
  .l-side_btn span:before{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: auto;
    left: -8px;
    background-size: 100% auto;
    width: 34px;
    height: 34px;
}
  .l-side_btn .icon1:before{}
  .l-side_btn .icon2:before{}

  .l-side_btn:nth-child(n+2){
    margin: 0;
}

  /*　パンくず
  ---------------------------------------------------------*/

  #breadcrumb{}

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

  .c-skew{}

  ._c-skew{}

  img.c-cover{}

  /* --------------- */
  a.c-zoom{
    position: relative;
    z-index: 1;
  }
  a.c-zoom:before {
      content: "";
      z-index: 1;
      position: absolute;
      background: #fff url(../img/common/icon_zoom.svg) 45% 51% no-repeat;
      background-size: 55% auto;
      width: 36px;
      height: 36px;
      bottom: 12px;
      right: 9px;
      opacity: 1;
      border-radius: 100px;
      /* border: solid 2px #103ea2; */
  }
  /* --------------- */

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

  .c-arrow1{}

  .c-arrow1:before{}


  /* --------------- */
  .c-pdf{}

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

  .c-select1{}

  .c-select1:after,
  .c-select1:before{}
  .c-select1:after{}

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

  .c-pagenavi{
    margin-top: 50px;
}
  .c-pagenavi .wp-pagenavi{}
  .c-pagenavi .pages,
  .c-pagenavi .first,
  .c-pagenavi .extend,
  .c-pagenavi .last{}
  .c-pagenavi .page,
  .c-pagenavi .current{
    width: 32px;
    line-height: 34px;
    margin: 0 4px;
}
  .c-pagenavi .page{}
  .c-pagenavi .current{}

  .c-pagenavi .previouspostslink,
  .c-pagenavi .nextpostslink{
    width: 25px;
    height: 46px;
}
  .c-pagenavi .last:before,
  .c-pagenavi .first:before,
  .c-pagenavi .last:after,
  .c-pagenavi .first:after,
  .c-pagenavi .previouspostslink:before,
  .c-pagenavi .nextpostslink:before{
    width: 8px;
    height: 8px;
}

  .c-pagenavi .previouspostslink{
    margin: 0 4px 0 0;
}
  .c-pagenavi .nextpostslink{
    margin: 0 0 0 4px;
}

  .c-pagenavi .last:before,
  .c-pagenavi .first:before{}

  .c-pagenavi .last:after,
  .c-pagenavi .first:after{}

  .c-pagenavi .previouspostslink{}
  .c-pagenavi .nextpostslink{}

  .c-pagenavi .first{
    width: 25px;
}
  .c-pagenavi .last{
    width: 25px;
}




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

  .c-blank1{
    width: 60px;
    height: 60px;
    border-width: 1px;
}

  .c-blank1:before{}



  /* --------------- */
  .l-bg{
/*     background-image: url(../img/common/bg1_sp.svg); */
}
  .l-bg2{}
  .l-bg2 span{}

  .l-bg span{}

  .l-bg_l{}
  .l-bg_r{}

  .l-bg_color1{}
  .l-bg_color2{}
  .l-bg_color3{}



  .l-bg_l:before{}
  .l-bg_r:before{}


  .l-bg_l.l-bg_img1:before{
    background-size: 187px auto;
}
  .l-bg_l.l-bg_img2:before{
    background-size: 124px auto;
}
  .l-bg_r.l-bg_img1:before{
    background-size: 187px auto;
}
  .l-bg_r.l-bg_img2:before{
    background-size: 124px auto;
}

  .l-bg_r.scBomb_anim:before,
  .l-bg_l.scBomb_anim:before{}

  .l-bg_box001{
    top: 2583px;
    width: 44.8vw;
    height: 83vw;
    opacity: 0.12;
}
  .l-bg_box002{
    top: 2804px;
    width: 22.8vw;
    height: 42vw;
    opacity: 0.2;
}
  .l-bg_box003{
    top: 3421px;
    width: 27.5vw;
    height: 48vw;
    opacity: 0.2;
}
  .l-bg_box004{
    top: 4181px;
    width: 27.5vw;
    height: 48vw;
    opacity: 0.2;
}
  .l-bg_box005{
    top: 3189px;
    width: 44.8vw;
    height: 83vw;
    opacity: 0.12;
}
  .l-bg_box006{
    top: 5523px;
    width: 14.5vw;
    height: 26vw;
    opacity: 0.2;
}
  .l-bg_box007{
    top: 3382px;
    width: 28.8vw;
    height: 51vw;
    opacity: 0.2;
}
  .l-bg_box008{
    top: 4142px;
    width: 28.8vw;
    height: 51vw;
    opacity: 0.2;
}
  .l-bg_box009{
    top: 6290px;
    width: 14.5vw;
    height: 26vw;
    opacity: 0.2;
}
  .l-bg_box010{
    top: 4695px;
    width: 28.8vw;
    height: 51vw;
}
  .l-bg_box011{
    top: 4899px;
    width: 23.8vw;
    height: 44vw;
    opacity: 0.2;
}
  .l-bg_box012{
    top: 5481px;
    width: 15.8vw;
    height: 30vw;
    opacity: 0.2;
}
  .l-bg_box013{}

  .l-bg_box051{
    top: 5338px;
    width: 26.8vw;
    height: 48vw;
  }
  .l-bg_box052{
    top: 6249px;
    width: 15.8vw;
    height: 30vw;
  }



  .l-bg_box101{}
  .l-bg_box102{}
  .l-bg_box103{}
  .l-bg_box104{}

  .l-bg_box105{}
  .l-bg_box106{}

  .l-bg_box107{}
  .l-bg_box108{}
  .l-bg_box109{}
  .l-bg_box110{}
  .l-bg_box111{}
  .l-bg_box112{}



  /* --------------- */
  .c-ttl1{}
  .c-ttl1_en{
    padding-top: 21px;
}
  .c-ttl1_en:before{
    width: 37px;
    background-size: 100% auto;
    height: 8px;
}

  .c-ttl1_jp{
    padding: 0 0 0 46px;
    margin-top: 13px;
}

  .c-ttl1_jp:before{
    width: 30px;
    top: 7px;
        height: 1px;
/*    width: 30px;
    top: 7px;
    right: 0;
    margin: 23px auto 0;
    height: 1px;*/
}

  .c-ttl2{
    font-size: 24px;
    margin: 0 0 53px;
}

  .c-ttl2:before {
    bottom: -15px;
}
  .c-ttl2:after {
    bottom: -15px;
}


  .c-ttl3{
    font-size: 20px;
    padding-left: 17px;
    margin-bottom: 20px;
}

  .c-ttl3:before {
    width: 4px;
    height: 19px;
    top: 5px;
}

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

  .c-link1{}

  .c-link1 .c-arrow1{}

  /* --------------- */
  .c-table_slide{}
  .c-table_slide table{
    width: 700px !important;
  }

  /* --------------- */
  .l-fv{
    margin: 0 0 34px;
}
  .l-fv:before{}

  .l-fv_inner{}


  .l-fv_inner {
      padding-top: 78px;
      padding-bottom: 20px;
  }
  .l-fv .c-ttl1_en{
    font-size: 9.8vw;
  }
  .l-fv_inner:after{width: 56vw;height: 42vw;right: -21.5vw;}
  .l-fv_inner:before{
    width: 31.5vw;
    height: 36vw;
    right: -18vw;
  }
  .l-fv .c-ttl1_jp{
      font-size: 16px;
  }
  .l-fv_mes{
      font-size: 13px;
      margin-top: 16px;
  }
  .l-fv_mes br{
    display: none;
  }
  .l-fv:before {
    left: -4.5vw;
    height: 23vw;
    bottom: 4vw;
    width: 10vw;
  }
  /* --------------- */
  .c-standard{}
  .c-standard_inner{
    padding-bottom: 35px;
}

  /* --------------- */
  .c-nav1{}
  .c-nav1_btn{
    /* justify-content:center; */
    padding: 2px 5px 31px 5px;
  }
  .c-nav1_no{}

  .c-nav1 .c-arrow1{left: 0;bottom: 8px;top: auto;width: 26px;height: 26px;border-width: 1px;}
  .c-nav1 .c-arrow1:before{}

  .c-nav1.col3 .c-nav1_btn{
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    min-height: 91px;
}
  .c-nav1.col3 .c-nav1_btn:nth-child(3n+1){}
  .c-nav1.col3 .c-nav1_btn:nth-child(n+3){
    margin-top: 8px;
}
  .c-nav1.col3 .c-arrow1{
    right: 0;
}

  .c-nav1.col4 .c-nav1_btn{
    width: 48.86%;
    padding: 5px 10px 38px;
    font-size: 13px;
}
  .c-nav1.col4 .c-nav1_btn br{
    display: none;
}
  .c-nav1.col4 .c-nav1_btn:nth-child(2n+1){
    margin-left: 0;
  }
  .c-nav1.col4 .c-nav1_btn:nth-child(n+3){
    margin-top: 10px;
  }

  .c-nav1.col4 .c-arrow1{
    right: 0;
}



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

  .sample{}
  .sample_inner{}

  /* --------------- */
  .scBomb_op{}
  .scBomb_op.scBomb_anim{}

  .scBomb_up{}
  .scBomb_up.scBomb_anim{}

  .scBomb_maku{}
  .scBomb_maku:before {}
  .scBomb_maku_box{}

  .scBomb_maku.scBomb_anim:before{}
  .scBomb_maku.scBomb_anim .scBomb_maku_box {}



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

  .c-btn1{
    padding: 8px 27px;
    min-height: 60px;
    border-width: 1px;
    min-width: 235px;
    font-size: 13px;
}

  .c-btn1 .c-arrow1{
    width: 24px;
    height: 24px;
}
  .c-btn1 .c-arrow1:before{}


  /* --------------- */
  .link1 a{}

  /* --------------- */
  .anc1{
    top: -80px;
}

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

  .img1_anim{}
  .img1_anim img{}

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

  .l-movies-bg{
    margin-top: 40px;
}
  .l-movies-bg span{
    right: 0;
    background-image: url(../img/common/bg_movies_sp.svg);
}
  .l-movies{
    overflow: hidden;
}
  .l-movies:before{
    right: 0;
}
  .l-movies_inner{
    padding-top: 59px;
    padding-bottom: 45px;
}

  .l-movies .c-ttl1{}
  .l-movies .c-ttl1_en{
    font-size: 10vw;
}
  .l-movies .c-ttl1_en:before{}
  .l-movies .c-ttl1_jp{
    font-size: 21px;
    margin-top: 34px;
}
  .l-movies .c-ttl1_jp:before{}


  .l-movies_slide_box{
    padding: 0 44px;
}
  .l-movies_slide_btns{}
  .l-movies_slide_btn{
    width: 47px;
    height: 47px;
    top: 13vw;
}

  .l-movies_slide_btn .c-arrow1:before {}

  .l-movies_slide_btn .c-arrow1 {
    border-width: 1px;
}

  .l-movies_slide-prev{
    left: 11px;
}
  .l-movies_slide-next{
    right: 11px;
}
  .l-movies_slide_in{
    overflow: visible;
}
  .l-movies_slide{}
  .l-movies_slide li{}
  .l-movies_slide a{}
  .l-movies_slide_img{}
  .l-movies_slide_img:before{
    width: 47px;
    height: 47px;
    background-size: 100% auto;
}
  .l-movies_slide_ttl{
    margin-top: 6px;
}
  .l-movies_btn{
    margin-top: 9px;
}

  /* --------------- */
  .l-othersites{
    padding: 0;
    margin-top: 40px;
}
  .l-othersites_inner{}
  .l-othersites_box{
    padding-top: 10px;
    height: 354px;
}
  .l-othersites_box_inneer{
    padding: 0 5%;
}
  .othersites_box_inneer{}
  .l-othersites_ttl{
    font-size: 18px;
    margin-bottom: 29px;
}
  .l-othersites_mes{
    text-align: left;
}
  .l-othersites_btn{
    margin-top: 36px;
}
  .l-othersites_btn a{}

  .l-othersites_bg1,
  .l-othersites_bg2{}
  .l-othersites_bg1{}
  .l-othersites_bg2{
    background-position: 56% 0;
}

  /* --------------- */
  .pagenavi{}
  .pagenavi .pages,
  .pagenavi .first,
  .pagenavi .extend,
  .pagenavi .last{}

  .pagenavi .page,
  .pagenavi .current{}
  .pagenavi .current{}


  .pagenavi .previouspostslink,
  .pagenavi .nextpostslink{}

  .pagenavi .previouspostslink{}
  .pagenavi .nextpostslink{}

  /* --------------- */
  .html_slide{}
  .html_slide_main{}
  .html_slide_box{}

  /*　メイン
  ---------------------------------------------------------*/

  #pageMain{}



  /*　フッター
  ---------------------------------------------------------*/


  #pageFooter{}
  .l-foot{
    margin-top: 40px;
}
  .l-foot a{
}
  .l-foot_inner{
    padding-top: 52px;
    padding-bottom: 109px;
}
  .l-foot_top{
    margin: 0;
    padding-bottom: 18px;
}

  
  .l-foot_logo{}
  .l-foot_logo a{}
  .l-foot_logo_img{
    width: 75px;
    margin: 0 0 0 2px;
}
  .l-foot_logo_txt{
    font-size: 14px;
    margin: 0 0 0px 15px;
    line-height: 1.9;
}
  .l-foot_addr{
    margin-top: 45px;
    line-height: 1.9;
}
  .l-foot_addr_name{}
  .l-foot_addr_main{
    font-size: 12px;
    margin-top: 4px;
}

  .l-foot_addr_main span{
    display: inline-block;
  }
  .l-foot_addr_main span:nth-child(n+2){}
  .l-foot_addr_main span:last-child{
    margin: 0;
  }
  .l-foot_link{
    display: block;
}

  .l-foot_link_box{}
  .l-foot_link_main{
    border-bottom: solid rgba(247, 247, 247,0.4) 1px;
}
  .l-foot_link_main:nth-child(n+2){
    margin-top: 0;
}
  .l-foot_link_ttl{
    font-size: 14px;
}

  .l-foot_link_ttl_btn,
  .l-foot_link_ttl_link{
    display: block !important;
    padding: 17px 0;
    position: relative;
    z-index: 1;
  }
  .l-foot_link_ttl_btn:before,
  .l-foot_link_ttl_link:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(135deg);
  }
  .l-foot_link_ttl_link:before{
    transform: rotate(45deg);    
  }
  .l-foot_link_ttl_btn.on:before{
      transform: rotate(-45deg);
      top: 3px;
  }


  .l-foot_link_ttl_btn{}
  .l-foot_link_ttl_link{}
  .l-foot_link_list{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding-bottom: 18px;
    margin: 0 4%;
    display: none;
}
  .l-foot_link_list li{
    width: 50%;
}
  .l-foot_link_list li:nth-child(n+2){
    margin-top: 0;
}
  .l-foot_link_list li:nth-child(n+3){
    margin-top: 8px;
}

 .l-foot_link_box:last-child{
    border: none;
    padding: 0;
    margin: 0;
  }

  .l-foot_link_box:last-child .l-foot_link_main{
    display: flex;
    flex-wrap: wrap;
  }
  .l-foot_link_box:last-child .l-foot_link_main p{
    width: 50%;
    margin: 0;
  }
  .l-foot_link_ttl2 a{
    padding: 15px 0;
    display: block !important;
    text-align: center;
    font-size: 12px;
  }
  .l-foot_link_ttl2:nth-child(2n+1){
    border-right: solid rgba(247, 247, 247,0.4) 1px;
  }
  .l-foot_link_ttl2:nth-child(n+3){
    border-top: solid rgba(247, 247, 247,0.4) 1px;
  }  

  .l-foot_copy{
    margin-top: 47px;
    font-size: 10px;
}

  .l-foot_pagetop{
    position: absolute;
    z-index: 1;
    overflow: hidden;
    border: solid 1px #fff;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: block;
    text-indent: -999px;
    background: #053084;
    top: -24px;
    right: 15px;
  }
  .l-foot_pagetop:before{
    content: '';
    position: absolute;
    top: 3px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
  }



}
