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

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

メモ

・フォントサイズ
pc -> sp
110 -> 
86 -> 
84 -> 
62 -> 

54 -> 20
48 -> 20

32 -> 
28 -> 16
24 -> 16
20 -> 
18 -> 
16 -> 14
14 -> 12

・マージン


ヘッダー
z-index: 100;

        padding-top: 7rem;
        padding-bottom: 7rem;



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

:root {
  /* カラー */
  --color-black: #222;  
  --color-blue: #000325;
  --color-gray: #f4f5f7;


  --color-brown: #C67317;
  --color-khaki: #B4945C;
  --color-green: #83B058;

  --color-blue2: rgba(68, 134, 180, 0.5);
  --color-blue3: #3B6988;
  --color-blue4: #4486B4;

  --color-black2: #0C2A57;
  --color-red: #EE6552;
  --color-purple: #5931C2;
  --color-beige: #f2f1ed;
  --color-beige2: #E9E8E3;
  --color-border: #DCDBDA;

  --gradation-blue: linear-gradient(180deg, rgba(12, 42, 87, 0.1) 40%, rgba(12, 42, 87, 0) 100%);
  --gradation-red: linear-gradient(180deg, #FF1F75 0%, #F8945C 100%);
  --gradation-red2: linear-gradient(180deg, #FF1F75 0%, #F8945C 57.5%, rgba(248, 148, 92, 0) 100%);
  --gradation-red3: linear-gradient(179.49deg, #EA1F6D 0.45%, rgba(245, 168, 126, 0.9) 52.5%, rgba(245, 168, 126, 0) 99.58%);
  --gradation-purple: linear-gradient(209.43deg, #5830C2 5.93%, #A79CA7 91.2%);
  --gradation-purple2: linear-gradient(180deg, #5830C2 0%, rgba(167, 156, 167, 0.9) 46.5%, rgba(167, 156, 167, 0) 100%);




  /* 角丸 */
  --radius-s: 3px;
  --radius-m: 10px;
  --radius-l: 40px;

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

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

  /* 行間 */
  --line-height-min: 1.4;
  --line-height-sub: 1.7; 
  --line-height-main: 2.2;


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



  /* イージング */
  --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);
  /*  --easing-transform: cubic-bezier(0.55, 0.05, 0.22, 0.99);*/

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

  /* opacity */
  --opacity-font: 0.6;

/*
.roboto-flex-<uniquifier> {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}*/



  /* フォントサイズが小さくなりすぎないよう 最小値設定 */
  --f10: max(1rem,  10px);
  --f11: max(1.1rem, 11px);
  --f12: max(1.2rem, 12px);
  --f13: max(1.3rem, 12px);
  --f14: max(1.4rem, 12px);
  --f15: max(1.5rem, 13px);
  --f16: max(1.6rem, 14px);
  --f17: max(1.7rem, 14px);
  --f18: max(1.8rem, 14px);
  --f19: max(1.9rem, 14px);
  --f20: max(2rem,  14px);
  --f22: max(2.2rem, 16px);
  --f24: max(2.4rem, 18px);
  --f26: max(2.6rem, 19px);
  --f28: max(2.8rem, 21px);
  --f30: max(3.0rem, 21px);
  --f32: max(3.2rem, 22px);
  --f35: max(3.5rem, 23px);
  --f36: max(3.6rem, 24px);
  --f40: max(4rem, 28px);
  --f54: max(5.4rem, 30px);
}

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

  :root{
    --radius-s: .2rem;
    --radius-m: .5rem;
    --radius-l: 2rem;  
  }

}

html[lang="en"] {
  --font-family-main: "Roboto", sans-serif;
}

/*　フォントサイズ
---------------------------------------------------------*/

html{
  font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
  text-size-adjust: 100%;
  
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html{
  font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
}
@media screen and (min-width: 768px) {
  html{
    font-size: 0.62189054726vw; /* = (10 / 1608) * 100) SPデザインが1440の場合 */
  }
}
@media screen and (min-width: 1608px) {
  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: var(--f18);
  letter-spacing: var(--letter-spacing-main);
  /*  background: var(--color-blue) url(../img/common/noise.png);*/
  background: #fff;
}
body.bg_gray{
  background: var(--color-gray);  
}

.c-font-en{
  font-family: var(--font-family-en);
  letter-spacing: 0;
  font-variation-settings: 'wdth' 150, 'opsz' 144, 'GRAD' 150, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

}
.c-font-robo{
  font-family: var(--font-family-robo);
  letter-spacing: 0;
}

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

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

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

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);
}

/* sp */
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}


/*
アイコンリスト
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{}

.l-head_main{
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
}
.l-head_main:before{
  content: "";
  z-index: 1;
  position: absolute;
  
  top:0;
  bottom: 0;
  right:0;
  left: 0;
  height: 14.5rem;  
  background: var(--color-blue);
  transition: transform var(--duration-main) var(--easing-transform),opacity var(--duration-main) var(--easing-opacity); 
  opacity: 0; 
}

.body-navi .l-head_main:before{
  opacity: 1;
}




.l-head_main_inner{
  position: relative;
  /* background: var(--color-blue); */
  display: flex;
  z-index: 5;
  align-items:center;
  justify-content:space-between;
  height: 14.5rem;
  transition: transform var(--duration-main) var(--easing-transform);  
}

.navi-up .l-head_main:before,
.navi-up .l-head_main_inner{
  transform: translate(0px, -14.5rem);
}


.l-head_logo{
  margin-left: 4rem;
  width: 32rem;
  transition: opacity var(--duration-main) var(--easing-opacity);
  pointer-events: auto;
}
.l-head_side{
  display: flex;
  align-items:center;
  margin-right: 3rem;
  pointer-events: auto;
}
.l-head_lang{
    margin-right: 3rem;
    color: #fff;
    font-size: 1.6rem;
    border: #fff solid 1px;
    border-radius: 10rem;
    padding: 0.6rem 2.7rem 0.6rem 1.4rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: opacity var(--duration-main) var(--easing-opacity);    
}
.l-head_lang:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0.2rem;
  right: 1rem;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}
.l-head_request{
  margin-right: 3rem;
  color: #fff;
  /* border: #fff solid 1px; */
  border-radius: 10rem;
  transition: opacity var(--duration-main) var(--easing-opacity);
  padding: 0 4rem 0;
  display: inline-flex;
  height: 6rem;
  font-size: 1.5rem;
  color: #fff;
  align-items: center;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(7.5px);
}
.l-head_contact{
    margin-right: 3.5rem;
    font-weight: var(--font-bold);
    font-size: 1.5rem;
}


  .l-head_menu{
    display: block;
    position: relative;
    z-index: 1;
    top: 0;
    right: 0;
    width: 10.4rem;
    height: 6.4rem;
    /* background: #2EA2FA; */
    overflow: hidden;
    text-indent: -99rem;

    transition: opacity var(--duration-main) var(--easing-opacity);
  }

.l-head_menu:after,
.l-head_menu:before,
.l-head_menu span:before {
    content: "";
    z-index: 2;
    position: absolute;
    background: #fff;
    width: 8.2rem;
    height: 1px;
    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_menu:before {
    bottom: 1.6rem;
}
.l-head_menu:after {
    top: 1.6rem;
}

.l-head_menu span:before {
    transition: opacity 1ms ease;
    transition-delay: var(--duration-main);
    opacity: 1;
    z-index: 1;
}



.l-head_menu.on:after, .l-head_menu.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_menu.on:before {
    bottom: 0px;
    transform: rotate(-10deg);
    /* background: var(--color-blue); */
}
.l-head_menu.on:after {
    top: 0px;
    transform: rotate(10deg);
    /* background: var(--color-blue); */
}
.l-head_menu.on span:before {
  opacity: 0;
}

  .l-head_menu.on{
  }



.l-popup{
  background: #3e3f4c;
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  transform: scale(0.9);
  opacity: 0;
  pointer-events: auto;
}
.l-popup.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  transform: scale(1);
  opacity: 1;
}

.l-popup_inner{
  position: absolute;
  z-index: 1;
  top: 9rem;
  bottom: 9rem;
  left: 11rem;
  right: 11rem;
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  align-items:center;
}
.l-popup_inner2{
  flex: 1;
  display: flex;
  justify-content:space-between;
}
.l-popup_box1{
    width: 67rem;
    overflow: auto;
}
.l-popup_navi{}
.l-popup_navi li{
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.l-popup_navi_ttl{
  color: #fff;
  display: flex;
  align-items:center;
  /* padding: 2.39rem 0; */
  min-height: 10rem;
}


.l-popup_navi_ttl.-btn{
}
.l-popup_navi_ttl .c-plus{
  width: 24px;
  height: 3rem;
  transition: opacity var(--duration-main) var(--easing-opacity);  
}
.l-popup_navi_ttl .c-plus1:after, 
.l-popup_navi_ttl .c-plus1:before{
    left: 20%;
    right: 20%;  
}

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


.l-popup_navi_ttl_en{
  font-weight: var(--font-bold);
  font-size: var(--f24);
  line-height: var(--line-height-min);
  text-transform: uppercase;
  width: 58.5%;
  transition: opacity var(--duration-main) var(--easing-opacity);
}
.l-popup_navi_ttl_ja{
  font-size: var(--f17);
  line-height: var(--line-height-min);
  flex: 1;
  margin-left: 14px;
  transition: opacity var(--duration-main) var(--easing-opacity);  
}
.l-popup_navi_list{
    display: none;
    padding-bottom: 3rem;
}
.l-popup_navi_list_inner{
    margin-left: calc(58.5% + 14px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.l-popup_navi_list a{
  color: #fff;
  font-size: var(--f15);
  transition: opacity var(--duration-main) var(--easing-opacity);  
}
html[lang="en"] .l-popup_navi_list a{
  text-transform: uppercase;
}

.l-popup_box2{
    width: 67rem;
}
.l-popup_box3{
    position: absolute;
    z-index: 1;
    bottom: 4.5rem;
    left: 5.5%;
    right: 5.5%;
    left: 11rem;
    right: 11rem;
    max-width: 144rem;
    margin: 0 auto;
    display: flex;
    justify-content:flex-end;
    pointer-events: none;
}
.l-popup_box3_inner{
    pointer-events: auto;
}
.l-head_sns{
    display: flex;
    gap: 0 8px;
    justify-content:flex-end;
}
.l-head_sns a{
  color: #fff;  
}
.l-head_link1{
    text-align: right;
    line-height: 1;
    margin-right: 4px;
    margin-top: 10px;
}
.l-head_link1 a{
  color: #fff;
  font-size: var(--f14);
}


@media only screen and (max-width: 1350px) {
  .l-popup_navi_list_inner{
    grid-template-columns: 1fr;
  }
}

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


  .l-popup_navi_list a:hover,
  .l-popup_navi_ttl .c-plus:hover,
  a:hover .l-popup_navi_ttl_en,
  a:hover .l-popup_navi_ttl_ja,
  .l-head_logo:hover,
  .l-head_request:hover,
  .l-head_lang:hover,
  .l-head_menu:hover{
    opacity: 0.6;
  }


  
}


/* sp */
@media only screen and (max-width: 767px) {
  .l-head{}
  .l-head_main{}
  .l-head_main:before{
    height: 7.5rem;
}
  .l-head_main_inner{
    height: 7.5rem;
}
  .navi-up .l-head_main:before,
  .navi-up .l-head_main_inner{}
  .l-head_logo{
    margin-left: 2rem;
    width: 14rem;
    width: 13rem;
    margin-left: 1.5rem;
}
  .l-head_side{
    margin-right: 2rem;
    margin-right: 1.5rem;
}
  .l-head_lang{
    font-size: 1rem;
    padding: 0.4rem 1.9rem 0.5rem 0.9rem;
    margin-right: 1rem;
}
  .l-head_lang:before{
    width: .5rem;
    height: .5rem;
    right: .8rem;
    bottom: 0.3rem;
}
  .l-head_request{
    font-size: 1rem;
    margin-right: 1rem;
    padding: 0 0.6rem 0;
    height: 3rem;
    line-height: 1;
    text-align: center;
    border-radius: 1rem;
}
  .l-head_contact{
    display: none;
}
    .l-head_menu{
    width: 4.2rem;
    height: 2.4rem;
}
  .l-head_menu:after,
  .l-head_menu:before,
  .l-head_menu span:before {
    width: 4.2rem;
}
  .l-head_menu:before {
    bottom: 1rem;
}
  .l-head_menu:after {
    top: 1rem;
}
  .l-head_menu span:before {}
  .l-head_menu.on:after, .l-head_menu.on:before {}
  .l-head_menu.on:before {}
  .l-head_menu.on:after {}
  .l-head_menu.on span:before {}
    .l-head_menu.on{}
  .l-popup{overflow: scroll;padding-top: 10rem;padding-bottom: 3rem;}
  .l-popup.on{}
  .l-popup_inner{
    left: 0;
    right: 0;
    position: static;
    display: block;
    margin: 0 2rem;
    top: 10rem;
}
  .l-popup_inner2{
    display: block;
  }
  .l-popup_box1{
    width: auto;
}
  .l-popup_navi{}
  .l-popup_navi li{}
  .l-popup_navi_ttl{
    padding: 2.02rem 0;
}
  .l-popup_navi_ttl.-btn{}
  .l-popup_navi_ttl .c-plus{}
  .l-popup_navi_ttl.on .c-plus1:after{}
  .l-popup_navi_ttl_en{
    font-size: 1.4rem;
    width: 53.5%;
}
  .l-popup_navi_ttl_ja{
    font-size: 1.1rem;
}
  .l-popup_navi_list{}
  .l-popup_navi_list_inner{
    grid-template-columns: 1fr 1fr;
    margin: 0;
}
  .l-popup_navi_list a{
    font-size: 1.1rem;
}
  .l-popup_box2{
    width: auto;
}
  .l-popup_box3{
    position: static;
    margin: 2rem 2rem 0;
    bottom: auto;
    left: 0;
    right: 0;
}

  .l-popup_box3_inner{}
  .l-head_sns{}
  .l-head_sns a{}
  .l-head_link1{}
  .l-head_link1 a{}

}


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

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

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

.l-breadcrumb{
    display: flex;
    /* justify-content:flex-end; */
    margin-top: 5.4vw;
    margin-bottom: 29px;
    margin-left: 12.5%;
    margin-right: 12.5%;
    flex-wrap: wrap;
}
.l-breadcrumb li{
    font-size: var(--f12);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.l-breadcrumb li:before {
    content: "";
    z-index: 1;
    position: absolute;
    background: url(../img/common/icon1.svg) 0 0 no-repeat;
    background-size: contain;
    width: 14px;
    height: 17px;
    top: 4px;
    left: -24px;
}
.l-breadcrumb li:first-child:before{
  display: none;
}


.l-breadcrumb li + li {
    margin: 0 0 0 34px;
}
.l-breadcrumb a{
    /* opacity: 0.5; */
    color: #A7A59B;
    text-decoration: underline;
}

/* hover */

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

}

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

  .l-breadcrumb{
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 16px;
}
  .l-breadcrumb li{
    font-size: var(--f10);
}
  .l-breadcrumb li:before {
    width: 11px;
    height: 9px;
    left: -17px;
}
  .l-breadcrumb li:first-child:before{}
  .l-breadcrumb li + li {
    margin: 0 0 0 23px;
}
  .l-breadcrumb a{}
}



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

.l-width{
  padding: 0 5.5%;
}
.l-inner1{
    max-width: 143rem;
    margin: 0 auto;
}
.l-inner2{
    max-width: 121.5rem;
    margin: 0 auto;
}
.l-inner3{
    max-width: 100rem;
    margin: 0 auto;
}

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


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

.l-content{}
.l-content_inner{
    padding-bottom: 1.2rem;
    padding-top: 1.23rem;
}

.l-content + .l-content{}
.l-content + .l-content .l-content_inner{
    padding-top: 0;
}


.l-content_navi{
  float: left;
  width: 2.42rem;
  position: sticky;
  top: 0.5rem;
  left: 0;
  z-index: 1;
}
.l-content_main{
  float: right;
  width: calc(100% - 3.21rem);
}



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

  .l-content{}
  .l-content_inner{padding-bottom: 0.6rem;padding-top: 0.5rem;}

  .l-content + .l-content{}
  .l-content + .l-content .l-content_inner{}


  .l-content_navi{
    float: none;
    width: auto;
    position: static;
    margin-bottom: 0.4rem;
}
  .l-content_main{
    float: none;
    width: auto;
}


}

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

.l-mainv{
  color: #fff;
  background: var(--color-blue);
  height: 60rem;
  display: flex;
  align-items:center;
  padding-top: 18rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.l-mainv:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/mainv_bg.svg) 0 0 no-repeat;
  background-size: cover;
  bottom: 0;
  right:0;
  left: 0;
  top: 0;

  transition: opacity 1.5s cubic-bezier(0.26, 0.06, 0, 1), transform 1.5s cubic-bezier(0.26, 0.06, 0, 1);
  transform: scale(1.1);
  transform-origin: bottom left;  

}
.link_anim .l-mainv:before{
  transform: scale(1);
  transform-origin: bottom left;  
}

.l-mainv_ttl{
    margin-left: 16rem;
    position: relative;
    z-index: 10;
}
.l-mainv_ttl_ja{
  display: block;
  font-size: var(--f24);
  line-height: 170%;
  margin-bottom: 0.5rem;
}
.l-mainv_ttl_en{
  font-size: 9.6rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.l-mainv_news{
    margin: 0 16.4rem;
}
.l-mainv_news_data{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.l-mainv_news_date{
    width: 86px;
    font-size: var(--f14);
    opacity: var(--opacity-font);  
}
.l-mainv_news_cat{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;  
}
.l-mainv_news_cat span{
    border: solid 1px #fff;
    font-size: var(--f14);
    line-height: 1;
    padding: 5px 6px;
}
.l-mainv_news_ttl{
  font-size: var(--f36);
}


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

  .l-mainv{
    padding-top: 7rem;
    height: 21rem;
}
  .l-mainv.-news{
    height: auto;
    padding-top: 10rem;
    padding-bottom: 3rem;
  }
  .l-mainv:before{}
  .l-mainv_ttl{
    margin-left: 1.5rem;
}
  .l-mainv_ttl_ja{
    font-size: 1.6rem;
}
  .l-mainv_ttl_en{
    font-size: 2.4rem;
}

  .l-mainv_news{
    margin: 0 3rem;
}
  .l-mainv_news_data{
    margin-bottom: 1rem;
}
  .l-mainv_news_date{
    font-size: 1.2rem;
    width: 8rem;
}
  .l-mainv_news_cat{}
  .l-mainv_news_cat span{
    font-size: 1.2rem;
}
  .l-mainv_news_ttl{
    font-size: 2rem;
}


}


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

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


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

.l-foot{}
.l-foot .c-link a[target="_blank"]:after{
    background-image: url(../img/common/icon_blank_w.svg);
}
.l-contact{
  position: relative;
  z-index: 1;
  background: var(--color-blue);
  height: 42.4vw;
  overflow: hidden;
}
.l-contact_inner{
    text-align: center;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 8.5vw;
}
.l-contact_ttl{
    margin-bottom: 2.6rem;
    font-size: 10rem;
    font-size: 5.208vw;
    opacity: var(--opacity-font);
    color: #fff;
    line-height: 1;
    font-weight: var(--font-bold);
    position: relative;
    z-index: 1;
}
.l-contact_mes{
    color: #fff;
    font-size: var(--f20);
    margin-top: 1vw;
}
.l-contact_bg{
    position: absolute;
    z-index: 1;
    width: 80.52vw;
    height: 80.52vw;
    border-radius: 10000rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -46.76vw;
}
.l-contact_dotto{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation-name: foot_senkou;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.l-contact_dotto:before{
    content: "";
    z-index: 1;
    position: absolute;
    width: 20.58px;
    height: 4.47px;
    background: #FFFFFF;
    border-radius: 100px;
    top: -2px;
    left: 0;
    right: 0;
    margin: auto;
}
.l-contact_dotto:after{
    content: "";
    z-index: 1;
    position: absolute;
    width: 48.27px;
    height: 8.96px;
    background: #4893ED;
    filter: blur(10px);
    border-radius: 100px;
    top: -2px;
    left: 0;
    right: 10px;
    margin: auto;
}
@keyframes foot_senkou{
    0%{ transform: rotate(0deg); }
    100%{ transform: rotate(360deg); }
}

.l-contact_arrow{
    background: url(../img/common/arrow2_w.svg) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 6;
    width: 6vw;
    height: 5vw;
    top: 0.4vw;
    right: -8.4vw;

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

.l-foot1{
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}
.l-foot1:before{
  content: "";
  z-index: 1;
  position: absolute;
  top: -54rem;
  bottom: 0;
  right:0;
  left: 0;
  background: radial-gradient(59.1% 97.08% at 9.73% 125.82%, #030114 14.42%, #0A0247 38.94%, #649DE9 100%);
}
.l-foot1_inner{
  max-width: 157rem;
  margin: 0 auto;
  padding-top: 16rem;
  padding-bottom: 9rem;
}
.l-foot1_head{
  position: relative;
  z-index: 5;
  margin-bottom: 11.2rem;
}

.l-foot1_logo{
    display: block;
    width: 32rem;
}

.l-foot1_main{
  position: relative;
  z-index: 5;
  display: flex;
  gap: 0 10rem;
}
.l-foot1_box{}

.l-foot1_box:not(:nth-child(n+4)){
  flex: 1;  
}
.l-foot1_box:nth-child(4){width: 13%;}



.l-foot1_box_ttl{
  color: #fff;
  margin-bottom: 1.4rem;
  display: block;
  font-size: var(--f18);
  line-height: var(--line-height-min);
}

.l-foot1_box_list{}
.l-foot1_box_list a{
  color: #fff;
  display: block;
  border-bottom:  1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--f13);
  padding: 1.06rem 0;
}

html[lang="en"] .l-foot1_box_list a,
html[lang="en"] .l-foot1_box_ttl{
  text-transform: uppercase;
}


.l-foot1_box.-box2{
}
.l-foot1_box2{}
.l-foot1_box2 + .l-foot1_box2{
  margin-top: 4.7rem;
}


.l-foot1_foot{
  margin-top: 19rem;
  position: relative;
  z-index: 5;
}
.l-foot1_hoge{
  display: flex;
  justify-content:space-between;
  align-items:flex-end;
}
.l-foot1_beyond{
  /* font-weight: 500; */
  /* font-size: var(--f54); */
  line-height: 1.1;
  /* text-transform: uppercase; */
  width: 108.1rem;
}
.l-foot1_said{}
.l-foot1_sns{
  display: flex;
  gap: 0 8px;
    justify-content:flex-end;  
}
.l-foot1_sns a{}
.l-foot1_link1{text-align: right;}
.l-foot1_link1 a{
    font-size: var(--f14);
    color: #fff;
    text-decoration: underline;
}



.l-foot1_link2{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  font-size: var(--f14);
  margin-top: 6rem;

  display: flex;
  justify-content:space-between;
}

html[lang="en"] .l-foot1_link2{
  justify-content:flex-start;
}

.l-foot1_link2 a{
    color: #fff;
    text-decoration: none;
}
.l-foot1_addr{
    font-size: var(--f12);
    text-align: right;
    margin-top: 4.5rem;
}
.l-foot1_copy{}



@media only screen and (max-width: 1150px) {
  .l-foot1_link2{
    justify-content:flex-start;
    gap: 0 4rem;
  }
  
}


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

  a:hover .l-contact_arrow{
    transform: translate(1rem,-1rem);
  }
}

/* sp */
@media only screen and (max-width: 767px) {
  .l-foot{}
  .l-contact{
    height: 61.4vw;
}
  .l-contact_inner{
    bottom: 9.5vw;
}
  .l-contact_ttl{font-size: 2.6rem;padding-right: 2rem;}
  .l-contact_mes{
    font-size: 1.2rem;
  }
  .l-contact_bg{
    width: 94.52vw;
    height: 94.52vw;
    bottom: -49.76vw;
}
  .l-contact_dotto{}
  .l-contact_dotto:before{
        width: 9px;
        height: 2.5px;
        top: -1px;     
  }
  .l-contact_dotto:after{}
  .l-contact_arrow{
    width: 8vw;
    height: 8vw;
    top: 0vw;
    right: -5.4vw;
}
  .l-foot1{}
  .l-foot1:before{}
  .l-foot1_inner{
    padding-top: 6rem;
    padding-bottom: 3rem;
}
  .l-foot1_head{
    margin-bottom: 5rem;
}
  .l-foot1_logo{
    margin: 0 auto;
    width: 28rem;
}
  .l-foot1_main{
    flex-wrap: wrap;
    gap: 3rem 0;
}
  .l-foot1_box{}
  .l-foot1_box:not(:last-child){
    width: 50%;
    flex: 0 1 auto;
}
  .l-foot1_box_ttl{
    font-size: 1.4rem;
    margin-bottom: 0;
}
  .l-foot1_box_list{
    display: none;
}
  .l-foot1_box_list a{}
  .l-foot1_box.-box2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 0;
}
  .l-foot1_box2{
    width: 50%;
}
  .l-foot1_box2 + .l-foot1_box2{
    margin-top: 0;
}
  .l-foot1_foot{
    margin-top: 5rem;
}
  .l-foot1_hoge{}
  .l-foot1_beyond{
    font-size: 1.76rem;
    position: absolute;
    bottom: 7rem;
    width: auto;
}
  .l-foot1_said{}
  .l-foot1_sns{
    justify-content: flex-start;
}
  .l-foot1_sns a{}
  .l-foot1_link1{
    text-align: left;
}
  .l-foot1_link1 a{}
  .l-foot1_link2{
    margin-top: 4.5rem;
    flex-direction: column;
    gap: 1.4rem 0;
}
  .l-foot1_link2 a{
    font-size: 1.1rem;
}
  .l-foot1_addr{
    text-align: center;
    font-size: 1rem;
    margin-top: 14.5rem;
}
  .l-foot1_copy{
}

}


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

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;
  }


}

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

@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;
	}
  html{
    font-size: 60%;
  }

	body{
		width:1100px;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	}


}




