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


/* 要素設定 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #1e322f;
  line-height: 1.8;
  font-size: 16px;
  background: #f7f9fa;
  background: #eff2f3;
  letter-spacing: 0.03em;
}


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

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

a{
    color: #1e322f;
}

.mainWidth{
  padding: 0 6.5%;
}
.mainInner{
    max-width: 1200px;
    margin: 0 auto;
}
.mainInner2{
    max-width: 900px;
    margin: 0 auto;
}



.link_anim .l-load {  
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
}

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

#pageHeader{}

.l-head{
  position: relative;
  z-index: 100;
  height: 130px;
  
}
.l-head_fix{
  display: flex;
  justify-content:space-between;
  align-items:center;
  position: fixed;
  z-index: 5;
  top: 52px;
  left: 4.5%;
  right: 4.5%;
}
.l-head_fix:before{
  content: "";
  z-index: -1;
  position: absolute;
  background: rgba(247, 249, 250,0.5);
  background: rgba(239, 242, 243, 0.5);
  top: -13px;
  bottom: -13px;
  right: -10px;
  left: -10px;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  overflow: hidden;
  border-radius: 10px;
}
.l-head_logo{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-head_logo2{
  line-height: 1;
  font-weight: 700;
}
.l-head_logo2_txt1{
  font-size: 12px;
  display: block;
  letter-spacing: -0.01em;
}
.l-head_logo2_txt2{
  font-size: 28px;
  display: block;
  letter-spacing: 0.14em;
  margin: 9px 0 0;
}

.l-head_main{
  display: flex;
  align-items:center;
}
.l-head_navi{
  display: flex;
  letter-spacing: 0.05em;
}
.l-head_navi a{}
.l-head_navi a:nth-child(n+2){
    margin-left: 48px;
}
.l-head_lang{
  display: flex;
  align-items:center;
  position: relative;
  z-index: 1;
  width: 128px;
  margin: 0 0 0 55px;
}
.l-head_lang:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #1e322f;
  top:0;
  bottom: 0;
  left: 0;
  width: 50%;
  border-radius: 100px;
}


.l-head_lang:after{
  content: "";
  z-index: -1;
  position: absolute;
  background: #eff2f3;
  background: #f7f9fa;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border-radius: 100px;
}

.l-head_lang.on:before{
  transform: translate(0px, 50%);
}

.l-head_lang_btn{
  position: relative;
  z-index: 5;
}

.l-head_lang_btn{
  position: relative;
  z-index: 5;
  text-align: center;
  width: 50%;
  padding: 5px 0 7px;
}
.l-head_lang_ja .l-head_lang_btn_ja{
  color: #fff;
}
.l-head_lang_en .l-head_lang_btn_en{
  color: #fff;
}
.l-head_lang_en:before{
  left: 50%;
}

.l-head_menu{
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  /* background: #ccc; */
  width: 50px;
  height: 50px;
  margin: auto;
  overflow: hidden;
  text-indent: -999px;
}

.l-head_menu:before,
.l-head_menu:after{
    content: "";
    z-index: 1;
    position: absolute;
    background: #1e322f;
    height: 2px;
    top: 7px;
    bottom: 0;
    right: 10px;
    left: 10px;
    margin: auto;
    overflow: hidden;
    text-indent: -999px;
    transition: all 400ms cubic-bezier(.7,0,.3,1);
}



.l-head_menu:before {
    bottom: 7px;
    top: 0;
}


.l-head_menu.on:before {
  transform: rotate(25deg);
  bottom: 0;
}
.l-head_menu.on:after {
  transform: rotate(-25deg);
  top: 0;
}


.l-head_popup{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f9fa;
    visibility: hidden;
    transition: transform .2s, opacity .2s, visibility 0s .2s;
    opacity: 0;
    display: flex;
}
.l-head_popup.on {
    visibility: visible;
    transition: transform .4s, opacity .4s;
    opacity: 1;
}
.l-head_popup_bg{
    width: 100%;
    margin: 117px 0 0;
    overscroll-behavior-y: contain;
    overflow-y: scroll;
    padding: 0 6.5%;
}
.l-head_popup_inner{
    max-width: 800px;
    margin: 0 auto 0;
    padding-bottom: 60px;
}



@media screen and (max-width: 1400px) {
  .l-head{
    height: 115px;
}
  .l-head_fix{
    left: 3.5%;
    right: 3.5%;
    top: 40px;
}
  .l-head_logo{
    font-size: 23px;
}
  .l-head_navi a:nth-child(n+2) {
    margin-left: 35px;
}
  .l-head_lang{
    margin-left: 35px;    
  }

}
@media screen and (max-width: 1180px) {
  .l-head_navi a{
    font-size: 14px;
  }
  .l-head_navi a:nth-child(n+2) {
    margin-left: 30px;
}
  .l-head_logo{
    font-size: 20px;
}
}

@media screen and (min-width: 1011px){
  .l-head_popup{
    display: none;
  }
}
@media screen and (max-width: 1010px){
  .l-head_main{
    display: none;
  }
  .l-head_menu{
    display: block;
  }
  .l-head_navi{
    display: block;
  }
  .l-head_navi a{
    display: block;
    margin: 0 !important;
    padding: 23px 0;
    border-bottom: rgba(51, 51, 51,0.1) solid 1px;
    position: relative;
    z-index: 1;
  }

  .l-head_navi a .arrow1{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: auto;
    width: 30px;
    height: 30px;
  }

  .l-head_lang{
    margin: 50px auto 0;
  }

}


/*　ファーストビュー
---------------------------------------------------------*/

.l-mainv{}
.l-mainv_inner{
    padding-top: 57px;
    padding-bottom: 27px;
}
.l-mainv_news{
  padding-top: 0;
}

@media screen and (max-width: 1383px) {
  .l-mainv_inner{
      padding-top: 4.4vw;
      padding-bottom: 2vw;
  } 
}



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

.l-breadcrumb{
    display: flex;
    justify-content:flex-end;
    margin-top: 37px;
    flex-wrap: wrap;
}
.l-breadcrumb li{
    font-size: 12px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.l-breadcrumb li:before {
    content: "";
    z-index: 1;
    position: absolute;
    background-color: rgb(53, 55, 103);
    left: -35px;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    margin: auto;
}
.l-breadcrumb li:first-child:before{
  display: none;
}


.l-breadcrumb li + li {
    margin: 0 0 0 53px;
}
.l-breadcrumb a{
    opacity: 0.5;
}

.l-mainv_news .l-breadcrumb{
  justify-content:flex-start;
}


/*　コンテンツ
---------------------------------------------------------*/
.l-content1{}
.l-content1_inner{
    max-width: 1200px;
}


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

#pageMain{}


/*　バナー
---------------------------------------------------------*/

.bnr1{}

/*　画像 cover
---------------------------------------------------------*/

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

/*　ボタンアイコン類
---------------------------------------------------------*/

.arrow1{
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 0 -11px 19px;
  /* right: 5px; */
  /* top: 0; */
  /* bottom: 0; */
  /* margin: auto; */
  /* position: relative; */
  /* z-index: 1; */
}
.arrow1:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #1e322f;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  border-radius: 100px;
  /* opacity: 0.2; */
  transition: transform 300ms cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.arrow1:after{
  content: "";
  z-index: 2;
  position: absolute;
  background: url(../img/common/arrow1_w.svg) 50% 50% no-repeat;
  background-size: contain;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  margin: auto;
  width: 13px;
  height: 13px;
}


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

.blank1{
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 0 -11px 10px;
  /* right: 6px; */
  /* top: 0; */
  /* bottom: 0; */
  /* margin: auto; */
}


.blank1:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #1e322f;
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  border-radius: 100px;
  /* opacity: 0.2; */
  transition: transform 300ms cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

.blank1:after{
  content: '';
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: url(../img/common/blank1_w.svg) 50% 50% no-repeat;
  background-size: contain;
  width: 36%;
  height: 36%;
  margin: auto;
}

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


/*　ボタン類
---------------------------------------------------------*/

.btn1{
    min-width: 256px;
    display: inline-flex;
    align-items:center;

    text-align: left;
    padding: 0 100px 0 30px;
    font-size: 2rem;
    color: #fff;
      border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
    font-weight: 700;
    min-height: 80px;

}

.btn1 .arrow1{
    margin: auto;
    top: 0;
    bottom: 0;
    right: 30px;
    position: absolute;
    z-index: 1;
    width: 45px;
    height: 45px;
}


/*　タイトル
---------------------------------------------------------*/

.ttl1{
    margin-bottom: 47px;
    line-height: 1;
}
.ttl1_en{
  font-size: 68px;
  display: block;
  font-weight: 500;
}
.ttl1_ja{
  display: block;
  opacity: 0.5;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.ttl2{
    line-height: 1;
}
.ttl2_en{
  font-size: 80px;
  display: block;
  font-weight: 500;
}
.ttl2_ja{
  display: block;
  opacity: 0.5;
  font-size: 18px;
  font-weight: 700;
  margin-top: 18px;
}


.ttl3{
    line-height: 1;
    background: #fff;
    font-size: 26px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    padding: 26px 42px;
    border-radius: 12px;
}
.ttl3:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #11a688;
  width: 5px;
  top: 24px;
  bottom: 24px;
  left: 0;
  margin: auto;
}




@media screen and (max-width: 1383px) {
  .ttl1_en{
    font-size: 4.9vw;
  } 
  .ttl1_ja{
    font-size: 13px;
  }  

  .ttl2{
      line-height: 1;
  }
  .ttl2_en{
    font-size: 5.8vw;
  }
  .ttl2_ja{margin-top: 1.4vw;}



}


/*　スクロール発火アクション
---------------------------------------------------------*/
.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, 100%);
  transition: transform .8s cubic-bezier(0.13, 0.78, 0.38, 0.98),opacity .6s cubic-bezier(.36,.07,.7,.91);
  display: inline-block;
}
.scBomb-up.scBomb_anim{
  opacity: 1;
  transform: translate(0, 0px);
}




/*　リンクアンダーライン　ホバー
---------------------------------------------------------*/

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

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


.line1_s:after{
    transform-origin: 0 0;
    transform: scaleX(1);
}

.line2_s,
.line2_c {
  -webkit-animation: none !important;
  animation: none !important;
  display: inline;
  -webkit-transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0% 1px;
  text-decoration: none
}

.line2_s {
  background-position: left bottom;
  background-size: 100% 1px
}

.line2_c,
.line2_s {
  background-image: url(../img/common/line.png)
}

/*　画像ホバー
---------------------------------------------------------*/

.imgScale {
  transition: transform 400ms cubic-bezier(0.43, 0.05, 0.17, 1);
}
.imgOpacity{
  transition: opacity 0.4s cubic-bezier(0.26, 0.06, 0, 1);
}

/*　スライド
---------------------------------------------------------*/

.scroll_bar::-webkit-scrollbar{
   width: 0px;
   height: 5px;
}
.scroll_bar::-webkit-scrollbar-track{
   background-color: #ccc;
}
.scroll_bar::-webkit-scrollbar-thumb{
   background-color: #37A55B;
}

/*　アンカー位置調整
---------------------------------------------------------*/
.anc1{
  height: 0;
  position: relative;
  z-index: 1;
  top: -150px;
}

/*　アンカー位置調整
---------------------------------------------------------*/
.link1{
  position: relative;
  z-index: 1;
}

.link1{}
.link1 .arrow1{}


/*　ページナビ
---------------------------------------------------------*/

.pagenavi{
    margin-top: 80px;
    /* border-top: solid 1px #ccc; */
}
.pagenavi .wp-pagenavi{
    text-align: center;
    letter-spacing: -0.4em;
    position: relative;
    z-index: 1;
}

.pagenavi .extend{
    display: none;
}
.pagenavi .pages{
    display: none;
}
.pagenavi .first,
.pagenavi .last{
    display: none;
}

.pagenavi .previouspostslink,
.pagenavi .nextpostslink{
    position: absolute;
    z-index: 1;
    top: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;    
}

.pagenavi .previouspostslink{
    left: 0;
    padding: 0 0 0 25px;
}
.pagenavi .nextpostslink{
  right: 0;
  padding: 0 25px 0 0;

}

.pagenavi .previouspostslink:before,
.pagenavi .nextpostslink:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/arrow1_b.svg) 0 0 no-repeat;
  background-size: contain;
  width: 15px;
  height: 12px;
  top:0;
  bottom: 3px;
  right: 0;
  margin: auto;
}


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



.pagenavi .page,
.pagenavi .current{
  border-width: 1px;
  border-color: #1e322f;
  border-style: solid;
  /* border-radius: 100px; */
  width: 38px;
  line-height: 38px;
  display: inline-block;
  letter-spacing: normal;
  margin: 0 6px;
}

.pagenavi .current{
    background: #1e322f;
    color: #fff;
    /* border-color: #1e322f; */
}

.pagenavi .p-back{
    letter-spacing: normal;
    padding: 0 0  0 29px;
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 41px;
}
.pagenavi .p-back:before{
    content: "";
    z-index: 1;
    position: absolute;
    background: #353767;
    width: 9px;
    height: 9px;
    top: 4px;
    left: 0;
    border-radius: 10px;
}
.pagenavi_back{
  letter-spacing: 0.02em;
  font-weight: 500;
  display: inline-block;
  line-height: 38px;
}


/*　お知らせ
---------------------------------------------------------*/


.c-news_list{}
.c-news_list li{
  border-bottom: 1px solid rgba(51,51,51,0.1);
}
.c-news_list_a{
  padding: 44px 74px 44px 0;
  display: flex;
  position: relative;
  z-index: 1;
}
.c-news_list.type2 .c-news_list_a{
  display: block;
}

.c-news_list_date{
  margin-right: 35px;
  opacity: 0.5;
  color: #323232;
}
.c-news_list_ttl{
  flex: 1;
}

.c-news_list .blank1,
.c-news_list .arrow1{
  right: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
.c-news_list_date2{
  font-size: 18px;
  color: #41a884;
  font-weight: 500;
}


@media screen and (max-width: 960px){
  .c-news_list{
      border-top: 1px solid rgba(51,51,51,0.1);
  }  
  .ttl3 + .c-news_list{
    border-top: none;
  }
}


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

.c-content1{
    background: #f7f9fa;
}
.c-content1_inner{
    padding-top: 100px;
}
.c-content1_side{
  float: left;
  width: 15%;
  position: sticky;
  top: 150px;
  left: 0;
  z-index: 1;
}
.c-content1_main{
  float: right;
  width: calc(100% - 15% - 11.7%);
}

.c-content1_navi{
    padding-bottom: 180px;
}
@media screen and (max-width: 960px){
  .c-content1_side{
    float: none;
    width: auto;
    top: 110px;
    position: static;
  }
  .c-content1_main{
    float: none;
    width: auto;
  }

}


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

.c-content2{
    background: #f7f9fa;
}
.c-content2_inner{
    padding-top: 100px;
    padding-bottom: 180px;
}


/* -------------------------------- */
.c-bner{
  background: #f7f9fa;
  background: #eff2f3;
  display: flex;
}
.c-bner a{
  width: 50%;
  padding: 98px 0 98px;
  position: relative;
  z-index: 1;
}

.c-bner .arrow1{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-bner a:nth-child(1) .arrow1{right: 39px;}


.c-bner a:nth-child(1){
  padding-left: calc((100vw - 1200px) / 2 );
}
.c-bner a:nth-child(2){
  padding-right: calc((100vw - 1200px) / 2 );
  padding-left: 30px;
  border-left: 1px #eff2f3 solid;
  border-left: 1px #f7f9fa solid;
}

.c-bner_ttl{
    line-height: 1;
    position: relative;
    z-index: 1;
}
.c-bner_ttl_en{
  font-size: 48px;
  display: block;
}
.c-bner_ttl_ja{
  display: block;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.5;
  margin-top: 18px;
  color: #1e322f;
}

@media screen and (max-width: 1383px) {
  .c-bner_ttl_en{
      /* padding-top: 10.6vw; */
      /* padding-bottom: 3.5vw; */
      font-size: 3.46vw;
  }
  .c-bner a{
    padding: 7vw 3.5% !important;
  }
  .c-bner .arrow1{
    right: 0 !important;
  }
  .c-bner_ttl_ja {
      margin-top: 4.7vw;
  }

}



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

.c-list1{}
.c-list1_data{
  display: flex;
  align-items:flex-start;
}
.c-list1_head{
  border-top: 1px solid #1e322f;
  width: 320px;
  width: 26.65%;
  margin-right: 48px;
  padding-top: 31px;
}
.c-list1_main{
  border-top: 1px solid rgba(30, 50, 47,0.2);
  flex: 1;
  padding-top: 33px;
  padding-bottom: 86px;
}
.c-list1_data:last-child .c-list1_main{
  padding-bottom: 0;
}


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

#pageFooter{}



.l-foot1{
  background: #1e322f;
}
.l-foot1 a{
  color: #fff;
}
.l-foot1_inner{
  padding-top: 45px;
  padding-bottom: 55px;
  color: #fff;
  display: flex;
  justify-content:space-between;
  flex-wrap: wrap;
  margin-left: 4.5%;
  margin-right: 4.5%;
}
.l-foot1_logo{
  font-size: 25px;
}

.l-foot1_logo2{
  line-height: 1;
  font-weight: 700;
}
.l-foot1_logo2_txt1{
  font-size: 12px;
  display: block;
  letter-spacing: -0.01em;
}
.l-foot1_logo2_txt2{
  font-size: 28px;
  display: block;
  letter-spacing: 0.14em;
  margin: 9px 0 0;
}

.l-foot1_navi{
  display: flex;
  font-size: 15px;
  margin-top: 29px;
}


.l-foot1_navi a{}
.l-foot1_navi a:nth-child(n+2){
    margin-left: 53px;
}
.l-foot1_copy{
  width: 100%;
  font-size: 12px;
  margin: 17px 0 0;
}



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

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

  a:hover{
    color: #11a688;    
  }

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

  /*　ファーストビュー
  ---------------------------------------------------------*/

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

  /*　バナー
  ---------------------------------------------------------*/

  /*　ボタンアイコン類
  ---------------------------------------------------------*/


  a:hover .blank1:before{
    transform: scale(1.4);
  }

  a:hover .arrow1:before{
    transform: scale(1.4);
  }

  /*　ボタン類
  ---------------------------------------------------------*/

  .btn1:hover{}

  /*　リンクアンダーライン　ホバー
  ---------------------------------------------------------*/

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

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

    a:hover .line1_s:after,
    .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);       
      }
    }



    a:hover .line2_c,
    .line2:hover .line2_c{
    background-position: left bottom;
    background-size: 100% 1px
  }

    a:hover .line2_s,
    .line2:hover .line2_s{
    background-position: right bottom;
    background-size: 0% 1px
  }



  /*　画像ホバー
  ---------------------------------------------------------*/

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

  /*　ページナビ
  ---------------------------------------------------------*/

  /*　お知らせ
  ---------------------------------------------------------*/
  .news_tab a:hover{
      color: #37A55B;
  }

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


}


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

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


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


  button,
  select,
  textarea,
  input{}

  .font-en{
    /* font-size: 37px; */
    /* font-size: 9.8vw; */
    font-size: 15px;
}

  a{}

  .mainWidth{
    padding: 0 5%;
}
  .mainInner{}


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

  #pageHeader{}

  .l-head{
    height: 55px;
}
  .l-head_fix{
    left: 0;
    right: 0;
    top: 0;
    padding: 12px 3%;
    height: 55px;


    background: rgba(239, 242, 243, 0.5);


  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  overflow: hidden;
      border-bottom: 1px solid rgba(51,51,51,0.1);

}
  .l-head_fix:before{
    display: none;
  }
  .l-head_logo{
    font-size: 16px;
}
  .l-head_logo2{}
  .l-head_logo2_txt1{
    font-size: 10px;
}
  .l-head_logo2_txt2{
    margin: 4px 0 0;
    font-size: 23px;
}

  .l-head_main{}
  .l-head_navi{}
  .l-head_navi a{}
  .l-head_navi a:nth-child(n+2){}
  .l-head_lang{
    margin: 71px auto 0;
    width: 140px;
}
  .l-head_lang:before{}

  .l-head_lang.on:before{}

  .l-head_lang_btn{}

  .l-head_lang_btn{
    padding: 11px 0 12px;
}
  .l-head_lang_ja .l-head_lang_btn_ja{}
  .l-head_menu{
    right: 2%;
}

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



  .l-head_menu:before {}


  .l-head_menu.on:before {}
  .l-head_menu.on:after {}


  .l-head_popup{}
  .l-head_popup.on {}
  .l-head_popup_bg{
    padding: 0 5.5%;
    margin: 91px 0 0;
}
  .l-head_popup_inner{}



    

    



  /*　ファーストビュー
  ---------------------------------------------------------*/

  .l-mainv{}
  .l-mainv_inner{
    padding-top: 4.4vw;
    padding-bottom: 3vw;
}

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

  .l-breadcrumb{
    margin-top: 18px;
}
  .l-breadcrumb li{
    font-size: 10px;
}
  .l-breadcrumb li + li {
      margin: 0 0 0 30px;
  }
  .l-breadcrumb li:before{
    width: 12px;
    left: -21px;
    top: 1px;
}

  .l-breadcrumb a{}


  /*　コンテンツ
  ---------------------------------------------------------*/
  .l-content{}
  .l-content_inner{}


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

  #pageMain{}


  /*　バナー
  ---------------------------------------------------------*/

  .bnr1{}

  /*　画像 cover
  ---------------------------------------------------------*/

  img.cover{}
  img.contain{}

  /*　ボタンアイコン類
  ---------------------------------------------------------*/

  .arrow1{
    margin: 0 0 -13px 9px;
}
  .arrow1:before{}
  .arrow1:after{}


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

  .blank1{}


  .blank1:before{}

  .blank1:after{}

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


  /*　ボタン類
  ---------------------------------------------------------*/

  .btn1{}

  .btn1 .arrow1{}


  /*　タイトル
  ---------------------------------------------------------*/

  .ttl1{
    margin-bottom: 26px;
}
  .ttl1_en{
    font-size: 9.8vw;
}
  .ttl1_ja{}


  .ttl2{}
  .ttl2_en{
    font-size: 12vw;
}
  .ttl2_ja{
    font-size: 13px;
    margin-top: 11px;
}

  .ttl3{
    padding: 16px 28px;
    font-size: 20px;
}
  .ttl3:before{
    width: 4px;
    top: 15px;
    bottom: 15px;
}
  


  /*　スクロール発火アクション
  ---------------------------------------------------------*/
  .scBomb-op{}
  .scBomb-op.scBomb_anim{}

  .scBomb-up{}
  .scBomb-up.scBomb_anim{}




  /*　リンクアンダーライン　ホバー
  ---------------------------------------------------------*/

  .line1_s,
  .line1_c{}

  .line1_s:after,
  .line1_c:after{}


  .line1_s:after{}

  .line2_s,
  .line2_c {}

  .line2_s {}

  .line2_c,
  .line2_s {}

  /*　画像ホバー
  ---------------------------------------------------------*/

  .imgScale {}
  .imgOpacity{}

  /*　スライド
  ---------------------------------------------------------*/

  .scroll_bar::-webkit-scrollbar{}
  .scroll_bar::-webkit-scrollbar-track{}
  .scroll_bar::-webkit-scrollbar-thumb{}

  /*　アンカー位置調整
  ---------------------------------------------------------*/
  .anc1{}

  /*　アンカー位置調整
  ---------------------------------------------------------*/
  .link1{}

  .link1{
}
  .link1 .arrow1{}


  /*　ページナビ
  ---------------------------------------------------------*/

  .pagenavi{
    margin-top: 50px;
}
  .pagenavi .wp-pagenavi{}

  .pagenavi .extend{}
  .pagenavi .pages{}
  .pagenavi .first,
  .pagenavi .last{}

  .pagenavi .previouspostslink,
  .pagenavi .nextpostslink{}
  .pagenavi .previouspostslink .arrow1,
  .pagenavi .nextpostslink .arrow1{}
  .pagenavi .previouspostslink .arrow1{}



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



  .pagenavi .previouspostslink:before,
  .pagenavi .nextpostslink:before{
    bottom: 0;
  }



  .pagenavi .page,
  .pagenavi .current{
    width: 30px;
    line-height: 30px;
    margin: 0 3px;
}

  .pagenavi .current{}

  .pagenavi .p-back{}
  .pagenavi .p-back:before{}
  .pagenavi_back{}



  /*　お知らせ
  ---------------------------------------------------------*/


  .c-news_list{}
  .c-news_list li{}
  .c-news_list_a{
    display: block;
    padding: 22px 45px 22px 0px;
}
  .c-news_list_date{
    font-size: 13px;
}
  .c-news_list_ttl{
    /* font-size: 13px; */
}

  .c-news_list .blank1,
  .c-news_list .arrow1{
    right: 0px;
}

  .c-news_list .blank1:after{}
  .c-news_list .blank1:before{}

  .c-news_list .arrow1:after{}
  .c-news_list .arrow1:before{}




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

  .c-content1{}
  .c-content1_inner{
    padding-top: 50px;
}
  .c-content1_side{
    top: 58px;
}
  .c-content1_main{}

  .c-content1_navi{
    padding-bottom: 80px;
}


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

  .c-content2{}
  .c-content2_inner{
      padding-top: 50px;
    padding-bottom: 80px;
  }



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

  .c-bner{
    display: block;
}
  .c-bner a{
    display: block;
    width: auto;
    padding: 13.42vw 5% !important;
}

  .c-bner .arrow1{}

  .c-bner a:nth-child(1) .arrow1{}


  .c-bner a:nth-child(1){
    border-bottom: rgba(51, 51, 51,0.1) solid 1px;
}
  .c-bner a:nth-child(2){}

  .c-bner_ttl{}
  .c-bner_ttl_en{
    font-size: 8vw;
}
  .c-bner_ttl_ja{
    font-size: 13px;
    margin-top: 8px;
}

  /*　お知らせ
  ---------------------------------------------------------*/

  .c-list1{}
  .c-list1_data{
    display: block;
}
  .c-list1_head{
    width: auto;
    margin: 0 0 28px;
    padding-top: 12px;
    display: inline-block;
    padding-right: 7px;
    min-width: 254px;
}
  .c-list1_main{
    padding-top: 15px;
    padding-bottom: 67px;
}


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

  #pageFooter{}



  .l-foot1{}
  .l-foot1 a{}
  .l-foot1_inner{
    padding-top: 27px;
    padding-bottom: 27px;
}
  .l-foot1_logo{
    font-size: 16px;
}

  .l-foot1_logo2{}
  .l-foot1_logo2_txt1{
    font-size: 10px;
}
  .l-foot1_logo2_txt2{
    font-size: 23px;
    margin: 4px 0 0;
}



  .l-foot1_navi{
    display: none;
}


  .l-foot1_navi a{}
  .l-foot1_navi a:nth-child(n+2){}
  .l-foot1_copy{
    font-size: 10px;
    margin: 38px 0 0;
}

  


}


