@charset "UTF-8";
@import url(default.css);
@import url(component.css);

/*---------------------------------------------------------
全ページ共通スタイル

メモ

・フォントサイズ目安
pc -> sp
36 -> 25
32 -> 23
28 -> 22
26 -> 20
24 -> 18
22 -> 16
18 -> 14
16 -> 13
14 -> 12




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

:root {
  /* カラー */
  --color-brown: #C67317;
  --color-beige: #F6F2EB;
  --color-khaki: #B4945C;
  --color-blue: #0033A0;
  --color-blue2: #EADFCD;
  --color-green: #68f7e1;
  --color-gray: #f8f8f8;
  --color-black: #18212b;
  --color-red: #F34722;
  --color-gradation: linear-gradient(90deg, rgba(0,45,173,1) 0%, rgba(0,186,255,1) 100%);
  --color-gradation2: linear-gradient(
    90deg,
    rgba(0,186,255,1) 0%,      /* 左端：2部分 */
    rgba(0,45,173,1) 30%,     /* 20%までは同じ色を維持 */
    /* ここで中央の色に変化。例として、両端とは異なる中間色 */
    rgba(0,45,173,1) 60%,     /* 80%位置までに中間色へ移行 */
    rgba(0,186,255,1) 80%     /* 右端：残り2部分 */
  );
    --color-border: rgb(221, 221, 221); 


  /* 角丸 */
  --radius-content: 60px;


  /* フォントウェイト */
  --font-normal: 400;
  --font-bold: 700;

  /* 再生時間 */
  --duration-main: 0.4s;

  /* 行間 */
  --line-height-main: 1.7;
  --line-height-sub: 1.5;

  /* 文字間 */
  --letter-spacing-main: 0;
  --letter-spacing-sub: 0.11em;

  /* イージング */
  --easing-opacity: cubic-bezier(0.26, 0.06, 0, 1);
  --easing-color: cubic-bezier(0.18, 0.06, 0.23, 1);
  --easing-transform: cubic-bezier(0.43, 0.05, 0.17, 1);


  /* フォント */
  --font-family-main: "Noto Sans JP", sans-serif;
  --font-family-en: "Inter", serif;
}



html{
  font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
}
@media screen and (min-width: 768px) {
  html{
    font-size: 0.69444444444vw; /* = (10 / 1440) * 100) SPデザインが1440の場合 */
  }
}
@media screen and (min-width: 1440px) {
  html{
    font-size: 10px;
  }
}




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

/* 要素設定 */
body {
  font-family: var(--font-family-main);
  font-weight: var(--font-normal);
  color: var(--color-black);
  line-height: var(--line-height-main);
  font-size: 16px;
  letter-spacing: var(--letter-spacing-main);
  background:#fff;
}

.c-font-en{
  font-family: var(--font-family-en);
  font-weight: var(--font-bold);
  letter-spacing: 0.06em;
  line-height: 1.3;
}

button,
select,
textarea,
input{
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  color: var(--color-black);
  font-size: 16px;
}

a{
  color: var(--color-black);
}

.c-ttl,
h1,h2,h3,h4,h5,h6{
  font-weight: var(--font-bold);
  line-height: var(--line-height-sub);
  letter-spacing: var(--letter-spacing-sub);
}

button,
a {
  text-decoration:none;
  transition: opacity var(--duration-main) var(--easing-opacity), 
              color var(--duration-main) var(--easing-color),
              background-color var(--duration-main) var(--easing-color),
              border-color var(--duration-main) var(--easing-color),
              box-shadow var(--duration-main) var(--easing-opacity),
              transform var(--duration-main) var(--easing-transform);
}

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


  :root {

    /* 角丸 */
    --radius-content: 3rem;

    /* 行間 */
    --line-height-main: 1.7;
    --line-height-sub: 1.5;

    /* 文字間 */
    --letter-spacing-main: 0;
    --letter-spacing-sub: 0.11em;

  }

  body {
    font-size: 1.3rem;
  }

}


/*
アイコンリスト
https://fonts.google.com/icons
*/

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

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


.l-head{
  position: relative;
  z-index: 100;
}

.l-head_main{
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: #fff; */
  display: flex;
  align-items:center;
  /* justify-content:space-between; */
  /* height: 7.3rem; */
  border-bottom: 1px solid #fff;
  transition: background var(--duration-main) var(--easing-color);
}
.l-head_main:before{
  content: "";
  z-index: -1;
  position: absolute;
  
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #18212bde;
  opacity: 0;
  transition: opacity var(--duration-main) var(--easing-color);

    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
}

.l-head_on .l-head_main:before{
    opacity: 1;  
}

.l-head_logo{
    margin-left: 52px;
    margin-right: 52px;
    width: 239px;
}
.l-head_logo_ja{
  font-size: 14px;
  letter-spacing: 0.07em;
}
.l-head_logo_en{
  font-size: 32px;
}
.l-head_logo a{
  display: block;
  color: #fff;
}
.l-head_block{
  flex: 1;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding-left: 81px;
}
.l-head .cg-search{
    margin-right: 22px;
    width: 541px;
    /* background-color: rgba(255, 255, 255,0.302); */
    /* border-radius: 100px; */
}

.l-head_nav{
  display: flex;
  align-items:center;
}
.l-head_box1{}
.l-head_ttl{
    height: 110px;
    font-weight: var(--font-bold);
    padding: 0 23px;
    display: flex;
    align-items:center;

    transition: height var(--duration-main) var(--easing-transform);
}

.l-head_on .l-head_ttl{
    opacity: 1;  
    height: 90px;
}

.l-head_ttl > a,
.l-head_ttl > span{
    /* line-height: 110px; */
    color: #fff;
    line-height: 24px;
    height: 24px;
}
.l-head_ttl > a:after{
  content: attr(data-text);
  display: block;
}
.l-head_ttl > a{
    overflow: hidden;
}


.l-head_ttl > span{}

.l-head_ttl_inner{
  display: block;
}


.l-head_list{
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s,  top var(--duration-main) var(--easing-transform);
  opacity: 0;
  position: fixed;
  z-index: 1;
  top: 110px;
  bottom: 0;
  left: 0;
  /* right: 0; */
  white-space: nowrap;
  background: rgba(24, 33, 43,0.8);
  left: 0;
  right: 0;
  /* transform: translate(-50%, 0); */
  pointer-events: none;



}

.l-head_box1:hover .l-head_list{
  visibility: visible;
  transition: transform .4s, opacity .4s,  top var(--duration-main) var(--easing-transform);
  opacity: 1;

}
.l-head_on .l-head_list{
    top: 90px;
}



.l-head_list_inner{
  background: #fff;
  padding: 48px 7.2%;
  margin-left: 343px;
  border-radius: 0 0 0 50px;
  pointer-events: auto;
}



.l-head_list li{}
.l-head_list a{}

.l-head{
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}

.l-head_list{}
.l-head_list_inner{}
.l-head_ttl2{
  position: relative;
  z-index: 1;
  display: flex;
  align-items:center;
  font-weight: var(--font-bold);
  margin: 0 0 31px;
  padding-left: 42px;
}

.l-head_ttl2_ja{
  font-size: 36px;
}
.l-head_ttl2_en{
    margin-left: 21px;
}
.l-head_ttl2 .c-ttl_icon{
    top: 26px;
}
.l-head_list_data{
  display: flex;
  gap: 3.1%;
}
.l-head_list_data li{
  width: 25%;
}
.l-head_list_data_line {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.l-head_list_data a{
  display: block;
  position: relative;
  z-index: 1;
}
.l-head_list_data_img{
    overflow: hidden;
    border-radius: 20px;
    margin: 0 0 15px;
    aspect-ratio: 16 / 10;
}
.l-head_list_data_ttl{
  font-size: 2rem;
  padding-right: 3.7rem;
  white-space: normal;
}
.l-head_list_data .c-arrow1{
    width: 3rem;
    height: 3rem;
    right: 0;
    position: absolute;
    bottom: 0;
}





.l-head_navi2{
  display: none;
  /* height: 110px; */
  align-items:center;
  margin: 0 0 0 auto;
    gap: 20px;  
}
.l-head_search{
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #B2B2B2;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  overflow: hidden;
  padding: 11px 13px 14px 14px;
}
.l-head_open .l-head_search{
  opacity: 0.5;
  pointer-events: none;
}
.l-head_search:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #fff;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  border-radius: 100px;
}

.l-head_search:after{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(/common/renewal/img/common/search_close.svg) 0 0 no-repeat;
  background-size: 100% auto;
  top: 3px;
  left: 2px;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 40%;
  margin: auto;
  opacity: 0;
}
.l-head_search.on:after{
  opacity: 1;
}

.l-head_search img{
  position: relative;
  z-index: 5;
}
.l-head_search.on img{
  opacity: 0;
}


.l-head_input{
  display: none;
  background: var(--color-gradation);
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  /* height: 100px; */
  padding: 20px 40px;
}
.l-head_input.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;

}




.l-head_navi2_btn{
  display: block;
  width: 90px;
  height: 90px;
  display: block;
  /* background: #ccc; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-indent: -999px;
  border-left: solid 1px #fff;
}

.l-head_navi2_btn:after,
.l-head_navi2_btn:before{
    content: "";
    z-index: 2;
    position: absolute;
    background: #fff;
    width: 30px;
    height: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* display: block; */
    /* border-radius: 10px; */
    margin: auto;
    transition: background  var(--duration-main) var(--easing-color), top  var(--duration-main) var(--easing-transform), bottom  var(--duration-main) var(--easing-transform), transform  var(--duration-main) var(--easing-transform);
    transition-delay: 0s,  var(--duration-main),  var(--duration-main), 0s;
    overflow: hidden;
    text-decoration: -999px;
}

.l-head_navi2_btn:before {
    bottom: 15px;
}
.l-head_navi2_btn:after {
    top: 15px;
}

.l-head_navi2_btn.on:after,
.l-head_navi2_btn.on:before {
    transition: background var(--duration-main) var(--easing-color), top var(--duration-main) var(--easing-transform), bottom var(--duration-main) var(--easing-transform), transform var(--duration-main) var(--easing-transform);
    transition-delay: 0s, 0s, 0s, var(--duration-main);
}
.l-head_navi2_btn.on:before {
    bottom: 0px;
    transform: rotate(-45deg);
    /* background: var(--color-blue); */
}
.l-head_navi2_btn.on:after {
    top: 0px;
    transform: rotate(45deg);
    /* background: var(--color-blue); */
}


.l-head_navi2_main{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
}

.l-head_navi2_main:before{
  content: "";
  z-index: 2;
  position: absolute;
  background: var(--color-gradation);
  width: 50%;
  height: 90px;
  top:0;
  right:0;
  transform: translate(80px, 0);  
  transition: transform 0.4s var(--easing-transform);
}

.l-head_navi2_main.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;
}


.l-head_navi2_box{
  background: var(--color-gradation);
  width: 50%;
  margin: 0 0 0 auto;
  height: 100%;
  padding: 150px 0 80px;
  overflow-y: auto;
  transform: translate(80px, 0);
  transition: transform 0.4s var(--easing-transform);
  position: relative;
  z-index: 1;
}

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


.l-head_navi2_main.on .l-head_navi2_box{
  transform: translate(0px, 0);
}


.l-head_navi2_ttl{
    color: rgba(255,255,255,0.4);
    margin: 0 0 20px 70px;
    padding-left: 50px;
    position: relative;
    z-index: 1;
    font-weight: var(--font-bold);
}
.l-head_navi2_list + .l-head_navi2_ttl{
  margin-top: 57px;
}

.l-head_navi2_list{
    border-top: 1px solid rgba(255,255,255,0.3);
}

.l-head_navi2_list li{
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.l-head_navi2_list li > a,
.l-head_navi2_list li > p{
  color: #fff;
  padding: 29px 73px;
  display: block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: var(--font-bold);
}
.l-head_navi2_list li > a{}
.l-head_navi2_list li > p{}
.l-head_navi2_open{}
.l-head_navi2_open .c-plus1{
    position: absolute;
    z-index: 1;
    right: 22px;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.l-head_navi2_open .c-plus1:before,
.l-head_navi2_open .c-plus1:after{
  background: #fff;
}
.l-head_navi2_box2{
    display: none;
}
.l-head_navi2_box2 a{
  color: rgba(255,255,255,0.5);
  padding: 29px 73px 29px 89px;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

.l-head_navi2_open.on .c-plus1:after{
  display: none;
}

.l-head_navi2_list a:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 31px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.l-head_sns{
  display: flex;
  align-items:center;
  justify-content:center;
  margin-top: 70px;
}
.l-head_sns_ttl{
    font-weight: var(--font-bold);
    margin-right: 17px;
    color: #fff;
}
.l-head_sns_list{
  display: flex;
  align-items:center;
  gap: 20px;
}
.l-head_sns_list a{
  background-color: rgb(24, 33, 43);  
  border-radius: 100px;
}
.l-head_sns_list img{
  width: 100%;
}




/* hover */

@media (hover: hover) and (pointer: fine) {

  a:hover .l-head_ttl_inner{
    margin-top: -24px;
    transition: margin-top 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;

  }



}



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

  .l-head_logo {
      margin-left: 28px;
      margin-right: 28px;
      width: 219px;
  }
  .l-head_block {
      padding-left: 32px;
  }
  .l-head_ttl {
      padding: 0 15px;
  }  
  .l-head_list_inner {
      margin-left: 275px;
  }  

}

@media screen and (max-width: 1615px) {
  .l-head_list_data_ttl{
    font-size: 1.7rem;
}
}


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

  .l-head_logo {
      margin-left: 28px;
      width: 175px;
  }
  .l-head_block {
      padding-left: 9px;
  }
  .l-head_ttl {
  }  
  .l-head_logo_ja{
    font-size: 11px;
}
  .l-head_logo_en{
    font-size: 25px;
}
  .l-head .cg-search{
      width: 502px;
  }
  .l-head_list_inner {
      margin-left: 233px;
  } 

}


@media screen and (max-width: 1400px) {
    .l-head .cg-search {
        width: 402px;
    }
    .l-head_ttl{
      font-size: 14px;
    }
}


@media screen and (max-width: 1250px) {
  .l-head .cg-search{
    display: none;
  }

  .l-head .l-head_input .cg-search{
    display: flex;
    margin: 0;
    width: 100%;
  }  
  .l-head_nav{
    display: none;
  }
  .l-head_navi2{
    display: flex;
  }  
  .l-head_input{
    display: block;
  }
  .l-head_navi2_main{
    display: block;
  }


}



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

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


  .l-head{}

  .l-head_main{}
  .l-head_main:before{}

  .l-head_on .l-head_main:before{}

  .l-head_logo{
    margin-left: 1.2rem;
    width: 17rem;
}
  .l-head_logo_ja{
    font-size: 1rem;
}
  .l-head_logo_en{
    font-size: 2.2rem;
    line-height: 1;
}
  .l-head_logo a{}
  .l-head_block{
    border-left: none;
}
  .l-head .cg-search{}

  .l-head_nav{}
  .l-head_box1{}
  .l-head_ttl{}

  .l-head_on .l-head_ttl{}

  .l-head_ttl > a,
  .l-head_ttl > span{}
  .l-head_ttl > a:after{}
  .l-head_ttl > a{}


  .l-head_ttl > span{}

  .l-head_ttl_inner{}


  .l-head_list{}

  .l-head_box1:hover .l-head_list{}
  .l-head_on .l-head_list{}



  .l-head_list_inner{}



  .l-head_list li{}
  .l-head_list a{}

  .l-head{}

  .l-head_list{}
  .l-head_list_inner{}
  .l-head_ttl2{}

  .l-head_ttl2_ja{}
  .l-head_ttl2_en{}
  .l-head_ttl2 .c-ttl_icon{}
  .l-head_list_data{}
  .l-head_list_data li{}
  .l-head_list_data a{}
  .l-head_list_data_img{}
  .l-head_list_data_ttl{}
  .l-head_list_data .c-arrow1{}





  .l-head_navi2{
    gap: 0.9rem;
}
  .l-head_search{
    width: 4rem;
    height: 4rem;
    padding: 0.6rem 0.9rem 0.3rem 1rem;
}
  .l-head_search:before{
    top: 4px;
    bottom: 4px;
    right: 4px;
    left: 4px;
}

  .l-head_search:after{}
  .l-head_search.on:after{}

  .l-head_search img{}
  .l-head_search.on img{}


  .l-head_input{
    top: 5.5rem;
    padding: 2rem 2rem;
}
  .l-head_input.on{}




  .l-head_navi2_btn{
    width: 5.5rem;
    height: 5.5rem;
}

  .l-head_navi2_btn:after,
  .l-head_navi2_btn:before{
    width: 2.1rem;
    height: 0.2rem;
}

  .l-head_navi2_btn:before {
    bottom: 1.1rem;
}
  .l-head_navi2_btn:after {
    top: 1.1rem;
}

  .l-head_navi2_btn.on:after,
  .l-head_navi2_btn.on:before {}
  .l-head_navi2_btn.on:before {}
  .l-head_navi2_btn.on:after {}


  .l-head_navi2_main{}
  .l-head_navi2_main:before{
    width: auto;
    left: 0;
    height: 5.5rem;
  }

  .l-head_navi2_main.on{}


  .l-head_navi2_box{
    width: auto;
    padding: 8.9rem 0 8rem;
}

  .l-head_navi2_main.on .l-head_navi2_box{}


  .l-head_navi2_ttl{
    margin: 0 0 1rem 1.4rem;
    padding-left: 28px;
}
  .l-head_navi2_list + .l-head_navi2_ttl{
    margin-top: 47px;
}

  .l-head_navi2_list{}

  .l-head_navi2_list li{}
  .l-head_navi2_list li > a,
  .l-head_navi2_list li > p{
    padding: 1.9rem 4.4rem;
}
  .l-head_navi2_list li > a{}
  .l-head_navi2_list li > p{}
  .l-head_navi2_open{}
  .l-head_navi2_open .c-plus1{
    right: 1.7rem;
    width: 1.5rem;
    height: 1.5rem;
}
  .l-head_navi2_open .c-plus1:before,
  .l-head_navi2_open .c-plus1:after{}
  .l-head_navi2_box2{}
  .l-head_navi2_box2 a{
    padding: 19px 50px 19px 59px;
}

  .l-head_navi2_list a:before{
    width: 0.8rem;
    height: 0.8rem;
    right: 2.1rem;
}

  .l-head_sns{
    margin-top: 5.2rem;
}
  .l-head_sns_ttl{
    margin-right: 1.7rem;
}
  .l-head_sns_list{
    gap: 1.3rem;
}
  .l-head_sns_list a{
    width: 4.5rem;
}
  .l-head_sns_list img{}  
}


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

/* sp */
@media screen and (max-width: 767px) {
}

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

.l-breadcrumb{
    display: flex;
    /* justify-content:flex-end; */
    margin-top: 85px;
    /* flex-wrap: wrap; */
    color: rgba(255,255,255,0.5);
}

.l-mainv_mes + .l-breadcrumb{
    margin-top: 60px;
}

.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: #fff;
  right: -11px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 12px;
  margin: auto;
}

.l-breadcrumb li:last-child:before {
  display: none;
}

.l-breadcrumb li {
  margin: 0 24px 0 0;
}
.l-breadcrumb a{color: #fff;}

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

  .l-mainv_mes + .l-breadcrumb{}

  .l-breadcrumb{
    margin-top: 4rem;
    /* margin-left: 8%; */
    /* position: absolute; */
    bottom: 1rem;
    left: calc((100% - 100vw) / 2);
    right: calc((100% - 100vw) / 2);
    overflow-x: auto;
    flex-wrap: wrap;
}
  /* .l-breadcrumb:before,
  .l-breadcrumb:after{
    content: "";
    width: 7%;
    height: 5px;
    flex-shrink: 0;
  } */

  .l-breadcrumb li{
        flex-shrink: 0;    
  }

  .l-breadcrumb li:before {}
  .l-breadcrumb li:first-child:before{}


  .l-breadcrumb li + li {}
  .l-breadcrumb a{}  
}



/*　コンテンツ幅
---------------------------------------------------------*/

.l-main{
  position: relative;
  z-index: 1;
}

.l-main:before{

  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.4);
}



.l-width{
  padding: 0 6.5%;
}
.l-inner1{
    max-width: 1620rem;
    margin: 0 auto;
}
.l-inner2{
    /* max-width: 126.3rem; */
    margin: 0 9rem;
}

/* sp */
@media screen and (max-width: 767px) {
}


/*　コンテンツ
---------------------------------------------------------*/
.l-content{
    /* padding-left: max(5.6%, 70px); */
    /* padding-right: max(5.6%, 70px); */
    padding-left: 5.6%;
    padding-right: 5.6%;
}
.l-content_inner{
  max-width: 1280px;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}




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

  .l-content{
      padding-left: 7%;
      padding-right: 7%;
  }
  .l-content_inner{
    max-width: 1280px;
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
  }


}

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

.l-standard{
    background: var(--color-gray);
}
.l-standard_inner{
    padding-top: 99px;
    padding-bottom: 170px;
}

.l-standard-box{}
* + .l-standard-box{
    margin-top: 80px;
}
.l-standard-box.c-ttl3{
  margin-top: 80px;
}

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

  .l-standard{
    overflow: hidden;
}
  .l-standard_inner{
      padding-top: 6rem;
      padding-bottom: 14.6rem;
  }
  .l-standard-box{}

  * + .l-standard-box{
    margin-top: 5rem;
}
.l-standard-box.c-ttl3{
  margin-top: 5rem;
}

}



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

.l-standard-main{
  float: left;
  width: calc(100% - 34rem);
}
.l-standard-main.l-standard-main-search {
  width: 100%;
}
.l-standard-navi{
  float: right;
  width: 26rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
}

@media screen and (max-width: 1000px) {
  .l-standard-main{
    float: none;
    width: auto;
  }

  .l-standard-navi{
    float: none;
    width: auto;
    margin-top: 10rem;

  }
}


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

  .l-standard-main{
    float: none;
    width: auto;
  }
  .l-standard-navi{
    float: none;
    width: auto;
    margin-top: 7rem;
    gap: 6.3rem;
  }


}


/*　下層メインビジュアル
---------------------------------------------------------*/


.l-mainv{
  background: url(/common/renewal/img/common/mainv_bg1.png) 50% 50% no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.l-mainv_inner{
    padding-top: 173px;
    padding-bottom: 21px;
    position: relative;
    z-index: 10;
}
.l-mainv_ttl{
  position: relative;
  z-index: 1;
}
.l-mainv_ttl .c-ttl_icon{
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 8px;
}
.l-mainv_ttl_en{
    display: block;
    padding: 0 0 0 38px;
    letter-spacing: 0.01em;
}
.l-mainv_ttl_ja{
    display: block;
    font-size: 40px;
    margin-top: 12px;
    line-height: 1.4;
}
.l-mainv_mes{
  font-size: 14px;
  margin-top: 10px;
}
.l-mainv_bg{
    position: absolute;
    z-index: 2;
    right: 0;
    top: -83px;
    width: 123%;
}


.l-mainv_en1{
    display: block;
    width: 720px;
    height: 675px;
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    top: -268px;
    right: -145px;
}
.l-mainv_en1 span{
    display: block;
    background: var(--color-green);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    opacity: 0.9;
    filter: blur(150px);
}


.l-mainv_en2{
    display: block;
    width: 708px;
    height: 665px;
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    bottom: -441px;
    left: -252px;
}
.l-mainv_en2 span{
    display: block;
    background: var(--color-red);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    opacity: 0.9;
    filter: blur(150px);
}


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

  .l-mainv{
    background-image: url(/common/renewal/img/common/mainv_bg1_sp.png);    
  }
  .l-mainv:before{}
  .l-mainv_inner{
    padding-top: 9.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 24rem;
}
  .l-mainv_ttl{}
  .l-mainv_ttl .c-ttl_icon{
    left: 1rem;
    top: 0.7rem;
}
  .l-mainv_ttl_en{
    font-size: 1.2rem;
    padding: 0 0 0 3rem;
}
  .l-mainv_ttl_ja{
    font-size: 2.5rem;
    margin-top: 0.5rem;
    line-height: 1.2;
}
  .l-mainv_mes{
    line-height: 1.5;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}
  .l-mainv_bg{
    top: 9rem;
    width: 149%;
    right: auto;
    left: -12rem;
}


  .l-mainv_en1{
    width: 26rem;
    height: 20rem;
    top: 0;
    right: 0;
}
  .l-mainv_en1 span{}


  .l-mainv_en2{
    width: 40rem;
    height: 30rem;
    left: -139px;
    bottom: -15rem;
}
  .l-mainv_en2 span{}

  
}


/*　サイドナビ
---------------------------------------------------------*/


/* sp */
@media screen and (max-width: 767px) {
}


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

.l-foot{
  position: relative;
  z-index: 5;
}
.l-foot1{
  margin-top: -52px;
  background: #fff;
  padding-left: max(5.6%, 70px);
  padding-right: max(5.6%, 70px);
  border-radius: var(--radius-content) var(--radius-content) 0 0;
  position: relative;
  z-index: 5;
}
.l-foot1_inner{
    max-width: 1620px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 137px;
}
.l-foot1_list{
  display: flex;
  gap: 2%;
}
.l-foot1_list li{
  width: 33.33%;
}
.l-foot1_list a{
  display: flex;
  align-items:center;
  color: #fff;
  border-radius: 20px;
  background-image: -moz-linear-gradient( 121.232deg, rgb(0,129,220) 0%, rgb(0,174,239) 100%);
  background-image: -webkit-linear-gradient( 121.232deg, rgb(0,129,220) 0%, rgb(0,174,239) 100%);
  background-image: -ms-linear-gradient( 121.232deg, rgb(0,129,220) 0%, rgb(0,174,239) 100%);
  border-radius: 20px;
  padding: 23px 3.7rem;
}
.l-foot1_list_img{
  width: 8.6rem;
  position: relative;
  z-index: 1;
  margin: 0 2.7rem 0 0;
}
.l-foot1_list_img img{
  position: relative;
  z-index: 5;

}
.l-foot1_list_img:before{
  content: "";
  z-index: 1;
  position: absolute;
  border-radius: 500px;
  background-color: rgb(255 255 255);
  opacity: 0.2;
  top: -8px;
  bottom: -8px;
  right: -8px;
  left: -8px;
}
.l-foot1_list_img:after{
  content: "";
  z-index: 2;
  position: absolute;
  
  border-radius: 500px;
  background-color: #fff;

  top:0;
  bottom: 0;
  right:0;
  left: 0;
}



.l-foot1_list_main{
  flex: 1;
}
.l-foot1_list_ttl{
  font-size: 2rem;
}
.l-foot1_list_en{
    font-size: 1.6rem;
}


.l-foot2{
  position: relative;
  z-index: 10;
  margin-top: -52px;
  background: #434343;
  padding-left: max(5.6%, 70px);
  padding-right: max(5.6%, 70px);
  border-radius: var(--radius-content) var(--radius-content) 0 0;
  color: #fff;
}
.l-foot2_inner{
    max-width: 1620px;
    margin: 0 auto;
    padding-top: 102px;
    padding-bottom: 58px;
    /* color: #fff; */
}
.l-foot2_head{
  display: flex;
  align-items:center;
  justify-content:space-between;
}
.l-foot2_logo{
    font-weight: var(--font-bold);
    width: 250px;
}
.l-foot2_logo_ja{
  display: block;
  font-size: 18px;
  letter-spacing: 0.15em;
}
.l-foot2_logo_en{
  display: block;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-top: 9px;
}
.l-foot2_sns{
  display: flex;
  align-items:center;
}
.l-foot2_sns_ttl{
    font-weight: var(--font-bold);
    margin-right: 17px;
}
.l-foot2_sns_list{
  display: flex;
  align-items:center;
  gap: 20px;
}
.l-foot2_sns_list a{
  background-color: rgb(24, 33, 43);  
  border-radius: 100px;
}
.l-foot2_sns_list img{
  width: 100%;
}



.l-foot2_main{
  display: flex;
  margin-top: 109px;
  gap: 23px 5%;
}
.l-foot2_box{}
.l-foot2_box.-col1{
  width: 25%;
}
.l-foot2_box.-col2{
  width: 50%;
}
.l-foot2_box_ttl{
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 15px 29px;
  border-bottom: solid 1px rgba(255, 255, 255,0.302);
  margin-bottom: 37px;
}
.l-foot2_box_ttl .c-ttl_icon{width: 7px;height: 7px;left: 8px;}
.l-foot2_box_ttl .c-ttl_icon:before{top: -7px;left: -7px;right: -7px;bottom: -7px;}
.l-foot2_box_link1{
    padding: 0 0 0 37px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    
}
.l-foot2_box_link1 > li{}
.l-foot2_box_link1 > li > p,
.l-foot2_box_link1 > li > a{
  color: #fff;
  font-weight: var(--font-bold);
}

.l-foot2_box_link1 > li > a .c-line_non {
    --line-color: #fff;
}

.l-foot2_box_link2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  padding: 0 0 0 15px;
  margin-top: 13px;
}
.l-foot2_box_link2 > li{}
.l-foot2_box_link2 > li > a{
  color: rgba(255, 255, 255, 0.502);
  font-weight: var(--font-bold);
}

.l-foot2_box_link2 > li > a .c-line_non {
    --line-color: rgba(255, 255, 255, 0.502);
}

.l-foot2_box2{
  display: flex;
  gap: 10px;
}
.l-foot2_box2 > *:nth-child(1){
  flex: 1;
}
.l-foot2_box2 > *:nth-child(2){
  width: 63%;
}

.l-foot2_denkei{
  background: #363636;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.502);
  display: flex;
  align-items:center;
  margin-top: 102px;
  padding: 5.6rem 4rem;
}

.l-foot2_denkei_img{
    width: 28rem;
    margin-right: 2.3%;
    margin-right: 3.5rem;
}

.l-foot2_denkei_mes{
  flex: 1;
  font-size: 15px;
}

.l-foot2_links{
  display: flex;
  justify-content:center;
  gap: 26px;
  margin-top: 37px;
  font-size: max(1.6rem,10px);
}
.l-foot2_links a{
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.502);
  font-weight: var(--font-bold);
}

.l-foot2_links a:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: rgba(255, 255, 255, 0.502);
  width: 1px;
  height: 16px;
  top:0;
  bottom: 0;
  right: -13px;
  margin: auto;
}
.l-foot2_links a:last-child:before{
  display: none;
}

.l-foot2_links a .c-line_non {
    --line-color: rgba(255, 255, 255, 0.502);
}

.l-foot_addr{
  text-align: center;
  font-size: 11px;
  border-top: solid 1px rgba(255, 255, 255, 0.302);
  color: rgba(255, 255, 255, 0.502);
  padding: 37px 0;
}



/* hover */

@media (hover: hover) and (pointer: fine) {

    .l-foot1_list a:hover{
        opacity: 0.7;
    }
    .l-foot2_sns_list a:hover{
      transform: scale(1.1);
    }

}



@media screen and (max-width: 1200px) {
  .l-foot2_main{
    flex-wrap: wrap;
  }
  .l-foot2_box.-col1{
    width: 47%;
}
  .l-foot2_box.-col2{
    width: 100%;
}    
  .l-foot2_box2 > *:nth-child(2){
    width: auto;
    flex: 1;
  }
  .l-foot2_box2 {
      gap: 0 5%;
  }  
}


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


  .l-foot{}
  .l-foot1{
    margin-top: -5.5rem;
    padding-left: 7%;
    padding-right: 7%;
}
  .l-foot1_inner{
    padding-top: 7rem;
    padding-bottom: 11.2rem;
}
  .l-foot1_list{
    flex-direction: column;
    gap: 1rem 0;
}
  .l-foot1_list li{
    width: auto;
}
  .l-foot1_list a{
    border-radius: 1rem;
    padding: 2.1rem 1.8rem;
}
  .l-foot1_list_img{
    width: 7.8rem;
}
  .l-foot1_list_img img{}
  .l-foot1_list_img:before{
    top: -0.8rem;
    bottom: -0.8rem;
    right: -0.8rem;
    left: -0.8rem;
}
  .l-foot1_list_img:after{}



  .l-foot1_list_main{}
  .l-foot1_list_ttl{}
  .l-foot1_list_en{
    font-size: 1.3rem;
}


  .l-foot2{
    margin-top: -5.5rem;
    padding-left: 7%;
    padding-right: 7%;
}
  .l-foot2_inner{
    padding-top: 6rem;
    padding-bottom: 3.6rem;
}
  .l-foot2_head{
    /* display: block; */
    flex-direction: column;
}
  .l-foot2_logo{
    white-space: nowrap;
}
  .l-foot2_logo_ja{
    font-size: 1rem;
    letter-spacing: 0.23em;
}
  .l-foot2_logo_en{
    font-size: 2.5rem;
    letter-spacing: 0.09em;
    margin-top: 0.6rem;
}
  .l-foot2_sns{
    margin-top: 3.3rem;
}
  .l-foot2_sns_ttl{
    font-size: 1.3rem;
    margin-right: 1.8rem;
}
  .l-foot2_sns_list{
    gap: 1.2rem;
}
  .l-foot2_sns_list a{width: 4.4rem;}


  .l-foot2_main{
    display: block;
    margin-top: 4rem;
}
  .l-foot2_box{}
  .l-foot2_box + .l-foot2_box{
    margin-top: 4rem;
  }
  .l-foot2_box.-col1{
    width: auto;
}
  .l-foot2_box.-col2{}
  .l-foot2_box_ttl{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 0 0 1rem 2.3rem;
}
  .l-foot2_box_ttl .c-ttl_icon{
    width: 0.5rem;
    height: 0.5rem;
    left: 0.5rem;
}
  .l-foot2_box_ttl .c-ttl_icon:before{
    top: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
}
  .l-foot2_box_link1{
    gap: 0.8rem;
    padding: 0 0 0 2.5rem;
}
  .l-foot2_box_link1.-sp_col2{
    grid-template-columns: 1fr 1fr;
}
  .l-foot2_box_link1 > li{}
  .l-foot2_box_link1 > li > p,
  .l-foot2_box_link1 > li > a{}

  .l-foot2_box_link2{}
  .l-foot2_box_link2.-sp_col2{
    gap: 11px;
    padding: 0;
    margin-top: 13px;
    grid-template-columns: 1fr 1fr;
}
  .l-foot2_box_link2 > li{}
  .l-foot2_box_link2 > li > a{}

  .l-foot2_box2{
    display: block;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
  .l-foot2_box2 > *:nth-child(1){}
  .l-foot2_box2 > *:nth-child(2){}

  .l-foot2_denkei{
    display: block;
    border-radius: 3rem;
    margin-top: 3.5rem;
    padding: 2rem 2rem;
}

  .l-foot2_denkei_img{
    margin: 0 auto 2rem;
    width: 49%;
}

  .l-foot2_denkei_mes{
    font-size: 1.3rem;
}

  .l-foot2_links{
    flex-wrap: wrap;
    gap: 0.8rem 3rem;
    margin-top: 3.4rem;
    font-size: 1.3rem;
}
  .l-foot2_links a{}
  .l-foot2_links a:before{
    right: -1.7rem;
    height: 1.3rem;
}

  .l-foot_addr{
    padding: 2.2rem 0;
    font-size: 0.8rem;
}

  
}




/*---------------------------------------------------------
  表示非表示
---------------------------------------------------------*/

html body .sp-block,html body .sp-inline,html body .sp-inlineB,html body .sp-flex{
  display: none;
}

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

  html body .sp-none{
    display: none;
  }
  html body .sp-block{
    display: block;
  }  
  html body .sp-flex {
    display: flex;
  }  
  html body .sp-inline {
    display: inline;
  }
  html body .sp-inlineB {
    display: inline-block;
  }  
  html body .sp-brNone br{
    display: none;
  }


}



.editor blockquote > *:first-child,
.editor > *:first-child{
  margin-top: 0 !important;
}

.editor blockquote > *:last-child,
.editor > *:last-child{
  margin-bottom: 0 !important;
}

.editor a{
    text-decoration: underline;
    color: var(--color-blue);
}

.editor a[target="_blank"]:after{
  content: "";
  z-index: 10;
  position: relative;
  background:  url(/common/renewal/img/common/icon_blank.svg) 50% 50% no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 1px;
  right: 0;
  margin: 0 5px 0 3px;
  display: inline-block;
  /* border-radius: 100px; */
}
.editor a[href$=".pdf"]{text-decoration: none;color: var(--color-black);}

.editor a[href$=".pdf"]:after{
  content: "PDF";
  background: var(--color-blue);
  color: #fff;
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 1;
  padding: 3px 9px;
  top: 0;
}
.editor a[href$=".pdf"]:before{
  content: '';
  display: inline-block;
  position: relative;
  top: -1px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid #1d6eb7;
  border-right: 2px solid #1d6eb7;
  transform: rotate(45deg);
  margin-right: 10px;
}

.editor p{}
.editor p + p{
  margin-top: 20px;
}

.editor p:after {
    display: block;
    content: "";
    clear: both;
}



.editor > div,
.editor .c-tableset{
  margin-top: 74px;
  margin-bottom: 74px;
}
.editor .c-list1{
  margin-top: 40px;
  margin-bottom: 40px;
}




/* hover --------------------------------------- */


@media (hover: hover) and (pointer: fine) {
  .editor a:hover{
    text-decoration: none; 
  }

  .editor a[href$=".pdf"]:hover{
    text-decoration: underline;    
  }


}


/* sp --------------------------------------- */

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



  .editor{
}


  .editor a{}

  .editor a[target="_blank"]:after{
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.1rem;
    margin: 0 0.5rem 0 0.3rem;
  }
  .editor a[href$=".pdf"]{}

  .editor a[href$=".pdf"]:after{
    font-size: 1.3rem;
    padding: 3px 9px;
    width: auto;
    height: auto;
  }
  .editor a[href$=".pdf"]:before{
    top: -0.1rem;
    bottom: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 1rem;
  }

  .editor p{}
  .editor p + p{
    margin-top: 2rem;
  }


  .editor > div,  
  .editor .c-tableset{
     margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .editor .c-list1{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }



}


/*---------------------------------------------------------
  印刷設定
---------------------------------------------------------*/

@media print{

	:root {
		--font-family-main: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
		--font-family-en: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	}

	body{
		width:1100px;
	}


}




