@charset "UTF-8";
/* responsive min:899px */
/* block ごとに 0からCSSを作り直したものを集める */

@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 400;
  src: url("/font/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 500;
  src: url("/font/YakuHanJP/YakuHanJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP"; font-style: normal; font-display: swap;
  font-weight: 600;
  src: url("/font/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 400;
  src:  local('Noto Sans CJK JP'),
  local('NotoSansCJKjp-Regular'),
  local('NotoSansJP-Regular'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Regular.woff2') format('woff2');
}
@font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 500;
  src: local('NotoSansCJKjp-Medium'),
  local('NotoSansJP-Medium'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Medium.woff2') format('woff2');
}
@font-face {
  font-family: "NotoSansCJKjp"; font-style: normal; font-display: swap;
  font-weight: 700;
  src: local('NotoSansCJKjp-Bold'),
  local('NotoSansJP-Bold'),
  url('/font/NotoSansCJKJP/NotoSansCJKjp-Bold.woff2') format('woff2');
}


/*Reset =============================================*/
*{
  box-sizing: border-box;
  background-repeat: no-repeat;
}
html,body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,figure,figcaption,button{
  margin: 0;
  padding: 0;
}
ul,li{
list-style: none;
}
a{
text-decoration: none;
color: inherit;
}
a[href^="tel:"] {
  pointer-events: all;
}
img,svg{
vertical-align: bottom;
border: none;
width: 100%;
max-width:100%;
height:auto;
}
svg{
  /* fill: currentColor; */
  vertical-align: bottom;
}
button{
  background-color: inherit;
  border: none;
}
table {
  border-collapse: collapse;
}

[v-cloak] ,
[v-cloak] img{
  display: none;
}

/* lazyload ================================= */
.lazyload{opacity: 0;}
.lazyloaded, .lazyloading  {opacity: 1; transition: opacity 1000ms;}


/* Module =============================================*/
:root {
  --color-black: #161613;
  --color-black2: #212121;
  --color-black3: #666666;
  --color-black4: #444444;
  --color-red: #db3516;
  --color-red2: #e7404b;
  --color-red3: #ee0000;
  --color-pink: #ef7d83;
  --color-grey: #e4e1e1;
  --color-grey2: #f2f1ea;
  --color-grey-txt: #bababa;
  --color-white: #f1f0ed;
  --color-white2: #f9f9f7;
  --color-blue: #2992c9;
  --color-blue2: #0c77b0;

  --c-black: #000c12;
  --c-black2: #1e282e;
  --c-navy: #193863;
  --c-blue: #2c8abc;
  --c-gold: #b49e73;
  --c-gold2: #c7b299;
  --c-gray: #e9e5dc;
  --c-gray2: #f6f6f6;
  --c-gray3: #dcdfdf;
  --c-red: #e7404c;
  --c-bg: #f9f9f9;

  --font-comp: "Geologica","YakuHanJP",'NotoSansCJKjp',sans-serif;
  --font-ja: "YakuHanJP",'NotoSansCJKjp',sans-serif;
  --font-en: 'Geologica', sans-serif;
  --filter-w: invert(100%) saturate(377%) hue-rotate(316deg) brightness(100%) contrast(100%);
  --filter-wg: invert(96%) sepia(8%) saturate(14%) hue-rotate(314deg) brightness(86%) contrast(111%);
  --filter-red: invert(33%) sepia(39%) saturate(3362%) hue-rotate(347deg) brightness(84%) contrast(106%);
  /* --filter-blue: invert(44%) sepia(81%) saturate(479%) hue-rotate(156deg) brightness(96%) contrast(87%); */
  --filter-blue: invert(54%) sepia(113%) saturate(1475%) hue-rotate(175deg) brightness(82%) contrast(63%);
  --filter-gold: invert(68%) sepia(8%) saturate(1335%) hue-rotate(1deg) brightness(93%) contrast(88%);

  --inn-w: 2rem;
  --inn-w-minus: -2rem;

  --kv-fill-color: #fff;
}


/* font-size =============================================*/
.vw_base{
  /* font-size: 10px; */
  /* font-size: 3.125vw !important; */
  font-size: clamp(10px,3.125vw,17.5px) !important;
  box-sizing: border-box;
}
.vw_base *{
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
}
body{
  font-family: var(--font-ja);
  color: var(--c-black);
}

body.lp {
  position: relative;
}
body.lp::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: var(--color-blue2);
  background: linear-gradient(135deg, #2c8abc 0%, #0c77b0 100%);
  /* background-size: 200% 150%;
  animation: AnimationName 20s ease infinite; */
}
@keyframes AnimationName {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
.lp_wrap{
  max-width: 560px;
  margin: 0 auto;
  display: block;
  /* overflow: hidden; */
  position: relative;
  /* padding-bottom: 5em; */
  background-color: #fff;
  /* background: linear-gradient(90deg, #fff, #fafcfe); */
  z-index: 0;
}

.bg_gray {
  position: relative;
}
.bg_gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  transition: background-color 1s;
}


/* 共有パーツ =============================== */
.sec_bloc{
  padding-top: 4em;
  padding-bottom: 4em;
}
/* padding top and bottom */
.ptb05{ padding-top: .5em; padding-bottom: .5em;}
.ptb1{ padding-top: 1em; padding-bottom: 1em;}
.ptb2{ padding-top: 2em; padding-bottom: 2em;}
.ptb3{ padding-top: 3em; padding-bottom: 3em;}
.ptb4{ padding-top: 4em; padding-bottom: 4em;}
.ptb5{ padding-top: 5em; padding-bottom: 5em;}
.ptb6{ padding-top: 6em; padding-bottom: 6em;}
.ptb7{ padding-top: 7em; padding-bottom: 7em;}
.ptb8{ padding-top: 8em; padding-bottom: 8em;}
.ptb9{ padding-top: 9em; padding-bottom: 9em;}

/* padding left and right */
.plr05{ padding-left: .5em; padding-right: .5em;}
.plr1{ padding-left: 1em; padding-right: 1em;}
.plr2{ padding-left: 2em; padding-right: 2em;}
.plr3{ padding-left: 3em; padding-right: 3em;}
.plr4{ padding-left: 4em; padding-right: 4em;}
.plr5{ padding-left: 5em; padding-right: 5em;}
.plr6{ padding-left: 6em; padding-right: 6em;}
.plr7{ padding-left: 7em; padding-right: 7em;}
.plr8{ padding-left: 8em; padding-right: 8em;}
.plr9{ padding-left: 9em; padding-right: 9em;}

/* mt */
.mt05{ margin-top: .5em;}
.mt1{ margin-top: 1em;}
.mt2{ margin-top: 2em;}
.mt3{ margin-top: 3em;}
.mt4{ margin-top: 4em;}
.mt5{ margin-top: 5em;}
.mt6{ margin-top: 6em;}
.mt7{ margin-top: 7em;}
.mt8{ margin-top: 8em;}
.mt9{ margin-top: 9em;}

/* mb */
.mb05{ margin-bottom: .5em;}
.mb1{ margin-bottom: 1em;}
.mb2{ margin-bottom: 2em;}
.mb3{ margin-bottom: 3em;}
.mb4{ margin-bottom: 4em;}
.mb5{ margin-bottom: 5em;}
.mb6{ margin-bottom: 6em;}
.mb7{ margin-bottom: 7em;}
.mb8{ margin-bottom: 8em;}
.mb9{ margin-bottom: 9em;}

/* font-size */
.fz1{font-size:1em;}
.fz11{font-size:1.1em;}
.fz12{font-size:1.2em;}
.fz13{font-size:1.3em;}
.fz14{font-size:1.4em;}
.fz15{font-size:1.5em;}
.fz16{font-size:1.6em;}
.fz17{font-size:1.7em;}
.fz18{font-size:1.8em;}
.fz19{font-size:1.9em;}
.fz20{font-size:2em;}

._top0{ padding-top: 0 !important;}
._bottom0{ padding-bottom: 0 !important;}

.no_mv{
  padding-top: 6em;
}
.c_inner{
  padding-left: 2em;
  padding-right: 2em;
}
.c_wide{
  max-width: 1200px;
  margin: 0 auto;
}
.c_wide.c_inner{
  max-width: calc(1200px + (4em * 2) );
}
.max800{ max-width: 800px; margin: 0 auto; }
.max900{ max-width: 900px; margin: 0 auto; }
.max1000{ max-width: 1000px; margin: 0 auto; }
.max1200{ max-width: 1200px; margin: 0 auto; }
.max1300{ max-width: 1300px; margin: 0 auto; }
.max1400{ max-width: 1400px; margin: 0 auto; }
.pc{ display: none; }
._icon_w{ filter: var(--filter-w); }
._icon_blue{ filter: var(--filter-blue); }
.none{display: none;}
.height_img{
  height: 100%;
  width: auto;
}
.hov a{ transition: opacity .5s; }
.hov a:hover{ opacity: .7; }

.youtube_box {
  position: relative;
  margin: .5em 0 1em;
}
.youtube_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* font =============================== */
.en { font-family: var(--font-en); }
.ja { font-family: var(--font-ja); }
.comp { font-family: var(--font-comp); }
.center{ text-align: center;}
.left{ text-align: left;}
.left-center{ text-align: left;}
.center-left{ text-align: center;}
.small{font-size: .9em;}
.small2{font-size: .8em;}
.small3{font-size: .7em;}
.small4{font-size: .6em;}
.small5{font-size: .5em;}

.caution{
  position: relative;
  padding-left: 1.05em !important;
  text-indent: -1.05em;
  line-height: 1.2em;
}
.caution::before{
  content: "※";
}

.black{ color: var(--color-black);}
.red{ color: var(--c-red); }
.red2{ color: var(--color-red2); }
.red3{ color: var(--color-red3); }
/* .blue{ color: var(--color-blue); } */
.grey{ color: var(--color-grey-txt); }
.blue{ color: var(--c-blue) !important; }
.gold{ color: var(--c-gold); }
.filter_blue{ filter: var(--filter-blue); }

.block{display: block;}

.back_texture{
  position: relative;
}
.back_texture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/imgs/texture_noize.png);
  background-size: 6rem;
  /* background-size: 50%; */
  opacity: .2;
  /* mix-blend-mode: multiply; */
  z-index: -1;
}
.back_texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(243 243 243);
  z-index: -2;
}


/* SECTION パーツ */
.sec_ttl,
.sec_ttl_m,
.sec_ttl_s{
  position: relative;
  font-size: 1em;
  padding: .3em 0 .6em;
}
.sec_ttl{
  width: fit-content;
}
.sec_ttl .en{
  width: fit-content;
  display: block;
  font-size: 6em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .15em;
}
.sec_ttl .ja{
  position: absolute;
  top: -.5em;
  right: -6%;
  display: block;
  font-size: .8em;
  font-weight: 500;
  padding-left: 1em;
  color: var(--c-blue);
}
.sec_ttl .ja::before{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  line-height: 1;
  width: .6em;
  height: .6em;
  background-color: currentColor;
  border-radius: 50%;
}
.sec_ttl_m .en{
  display: block;
  font-size: 4.8em;
  font-weight: 600;
  line-height: 1;
}
.sec_ttl_m .ja{
  display: block;
  font-size: 1.6em;
  margin-top: 0.3em;
}
.sec_ttl_s .en{
  display: block;
  font-size: 3em;
  font-weight: 600;
  line-height: 1;
}
.sec_ttl_s .ja{
  display: block;
  font-size: 1.3em;
  margin-top: 0.3em;
}
.sec_sub {
  font-size: 1.7em;
  font-weight: 600;
  padding: .8em 0;
}
.sec_sub p{
  padding: .2em 0;
}
.sec_copy {
  font-size: 1.8em;
  font-weight: 600;
  padding: .8em 0;
  line-height: 1.6;
  letter-spacing: .02em;
}
.sec_desc {
  font-size: 1.4em;
  padding: 1em 0;
}
.sec_desc p{
  padding: .2em 0;
}
.sec_txt{
  font-size: 1.1em;
  padding: 1em 0;
  line-height: 1.75;
}
.sec_txt p{
  padding: .3em 0;
}

.sub_sec_ttl{
  font-size: 1rem;
  padding: 1em 0;
}
.sub_sec_ttl .en{
  display: block;
  font-size: 5.5em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .15em;
}
.sub_sec_ttl .ja{
  display: block;
  font-size: 1.4em;
  margin-top: 0.3em;
}

@media (min-width: 899px) {
  .sec_ttl{
    font-size: 1.2rem;
  }
  .sec_ttl .en {
    font-size: 5em;
  }
  .sec_ttl_m .en{
    font-size: 5.8em;
  }
  .sec_copy {
    font-size: 2.6em;
    padding: .5em 0 1em;
  }
}/*  */


/* Parts ========================== */
.before_border{
  position: relative;
  padding-left: 3.2em !important;
}
.before_border::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 3em;
  height: 1px;
  background-color: currentColor;
}
.before_point{
  position: relative;
  padding-left: .8em !important;
  color: currentColor;
}
.before_point::before{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  line-height: 1;
  width: .4em;
  height: .4em;
  background-color: currentColor;
  border-radius: 50%;
}
.link_circle_arrow{
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 1rem;
  padding: 1em 0;
  transition: transform .2s;
}
._right{
  margin-left: auto;
}
._center{
  margin: auto;
}
.link_circle_arrow .txt{
  display: inline-block;
  font-family: var(--font-comp);
  font-size: 1.2rem;
  font-weight: 500;
}
.arrow_circle{
  position: relative;
  display: inline-block;
  background-color: var(--color-blue);
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  margin-left: .8em;
  overflow:hidden;
}
.arrow_circle_img{
  position: absolute;
  top: 0;
  bottom: .1em;
  left: 0;
  right: 0;
  margin: auto;
  width: 38% !important;
  max-width: 1rem;
  filter: var(--filter-w);
  transition: transform .25s ease-in, opacity .25s;
}
.arrow_circle::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 38%;
  height: 38%;
  background-image: url(/imgs/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-200%);
  opacity: 0;
  transition: transform .25s ease-out, opacity .25s ease-out;
  filter: var(--filter-w);
}
.link_circle_arrow:hover{
  transform: translateX(.3em);
}
.link_circle_arrow:hover .arrow_circle_img,
.top_cont_box:hover .arrow_circle_img{
  transform: translateX(200%);
  opacity: 0;
}
.link_circle_arrow:hover .arrow_circle::before,
.top_cont_box:hover .arrow_circle::before{
  transform: translateX(0);
  opacity: 1;
}
.arrow_circle._line{
  background-color: inherit;
  border: 1px solid var(--color-white);
}
.arrow_circle._line .arrow_circle_img{
  bottom: 0;
}

/* link_spot_circle */
.link_spot_circle{
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 1em;
  padding: 2em 0;
  transition: transform .2s;
  height: 5em;
  /* border-bottom: 1px solid #e2d7ca; */
}
.link_spot_circle .txt{
  position: relative;
  display: inline-block;
  font-family: var(--font-comp);
  font-size: 1.2em;
  font-weight: 500;
  transition: color .3s;
}
.link_spot_circle .txt::before{
  position: absolute;
  top: 130%;
  left: 0;
  content: "";
  width: calc(100% + 1.3em);
  height: 1px;
  display: block;
  background-color: var(--c-gold2);
  transition: transform .3s;
  transform-origin: left center;
}
.spot_circle{
  position: relative;
  display: inline-block;
  background-color: var(--color-blue);
  width: .6em;
  height: .6em;
  border-radius: 50%;
  margin-left: .7em;
  overflow:hidden;
  transition: width .3s , height .3s;
}
.spot_circle .arrow_circle_img{
  opacity: 0;
  transform: translateX(-200%);
}

a:hover .link_spot_circle .spot_circle,
.link_spot_circle:hover .spot_circle{
  width: 3.6em;
  height: 3.6em;
}
/* a:hover .link_spot_circle .txt,
.link_spot_circle:hover .txt{
  color: var(--color-blue);
} */
a:hover .link_spot_circle .arrow_circle_img,
.link_spot_circle:hover .arrow_circle_img{
  opacity: 1;
  transform: translateX(0);
}
a:hover .link_spot_circle .txt::before,
.link_spot_circle:hover .txt::before{
  transform: scaleX(0);
}


.link_btn{
  position: relative;
  display: block;
  width: fit-content;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-a);
  text-align: center;
  padding: 1.2em 0;
}
.link_btn.right{
  margin-left: auto;
}
.link_btn.center{
  margin: 0 auto;
}

._arrow{
  position: relative;
  width: fit-content;
  padding-right: 1em;
}
._arrow::after{
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 0.2em;
  top: 0.11em;
  bottom: 0;
  margin: auto;
  border-top: 0.15em solid;
  border-right: 0.15em solid;
  transform: rotateZ(45deg);
}

._link{
  position: relative;
  width: fit-content;
  padding-right: 1.1em;
}
._link::after,
._link::before{
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;

}
._link::before{
  width: 0.6em;
  height: 0.6em;
  border-top: 0.15em solid;
  border-right: 0.15em solid;
}
._link::after{
  width: calc(0.6em * 1.414);
  height: 0.13em;
  background-color: currentColor;
  transform: rotateZ(-45deg);
  right: -.01em;
}

.link_btn._border::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  bottom: .8em;
  left: 0;
  right: 0;
  margin: auto;
  /* transform: scaleX(0); */
  transform-origin: right center;
  transition: transform .2s;
}
.link_btn._border:hover::before{
  animation: border_move forwards .4s ease normal;
}
@keyframes border_move {
  0%   { transform: scaleX(100%); transform-origin: right;}
  50%  { transform: scaleX(0); transform-origin: right;}
  51%  { transform: scaleX(0);   transform-origin: left;}
  100% { transform: scaleX(100%); transform-origin: left;} 
}

.square_btn{
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
  border-radius: .2em;
  padding: 1.3em 0 1.4em;
  margin: 1em auto ;
  background-color: #2993ca;
  color: #fff;
  max-width: 22em;
}

.sq_btn {
  position: relative;
  display: block;
  max-width: 29em;
  border-radius: .2em;
  background-color: var(--color-blue);
  color: #fff;
  padding: 1.8em 0;
  margin: 1em auto;
}
.sq_btn.yellow{
  background-color: #f0bd16;;
}
.sq_btn .txt {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  padding: 0 1.8em;
}
.sq_btn .txt::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 1em;
  top: 0.11em;
  bottom: 0;
  margin: auto;
  border-top: 0.15em solid;
  border-right: 0.15em solid;
  transform: rotateZ(45deg);
}

.img_cover_black {
  position: relative;
  overflow: hidden;
}
.img_cover_black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  background: linear-gradient(180deg, rgba(1, 1, 1, .4) 0%, rgba(1, 1, 1, .7) 60%);
  mix-blend-mode: multiply;
  opacity: .4;
  z-index: 1;
}
.img_cover_black img {
  transition: transform .5s;
}
a:hover .img_cover_black img,
.img_cvr_black:hover img{
  transform: scale(1.05);
}

/* SPEECH BORDER */
.speech_border{
  position: relative;
  display: block;
  width: fit-content;
  height: 100%;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 .7em;
  margin: auto;
}
.speech_border::before,
.speech_border::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 1em;
  background-color: currentColor;
}
.speech_border::before{
  left: 0;
  transform: rotateZ(-30deg);
}
.speech_border::after{
  right: 0;
  transform: rotateZ(30deg);
}

/* LINK */
.link_circle_arrow{
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 1rem;
  padding: 1em 0;
  transition: transform .2s;
}
.link_circle_arrow._right{
  margin-left: auto;
}
.link_circle_arrow._center{
  margin: auto;
}
.link_circle_arrow .txt{
  display: inline-block;
  font-family: var(--font-comp);
  font-size: 1.2rem;
  font-weight: 500;
}
.arrow_circle{
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  margin-left: .8em;
  overflow:hidden;
}
.arrow_circle_img{
  position: absolute;
  top: 0;
  bottom: .1em;
  left: 0;
  right: 0;
  margin: auto;
  width: 38% !important;
  filter: var(--filter-blue);
  transition: transform .25s ease-in, opacity .25s;
}
.arrow_circle_img._pdf{
  width: 44%;
}
.arrow_circle::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 38%;
  height: 38%;
  background-image: url(/imgs/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-200%);
  opacity: 0;
  transition: transform .25s ease-out, opacity .25s ease-out;
  filter: var(--filter-blue);
}

.link_circle_arrow:hover{
  transform: translateX(.3em);
}
.link_circle_arrow:hover .arrow_circle_img,
.top_cont_box:hover .arrow_circle_img{
  transform: translateX(200%);
  opacity: 0;
}
.link_circle_arrow:hover .arrow_circle::before,
.top_cont_box:hover .arrow_circle::before{
  transform: translateX(0);
  opacity: 1;
}
.arrow_circle._line{
  background-color: inherit;
  border: 1px solid var(--color-white);
}
.arrow_circle._line .arrow_circle_img{
  bottom: 0;
}

/* HEADER 
======================================== */
.header_block{
  display: block;
  position: fixed;
  top: 0;
  z-index: 9998;
  width: 100%;
  pointer-events: none;
}
.header_flex{
  display: flex;
  justify-content: space-between;
  padding: 1.1em 1em;
  height: fit-content;
  transition: background-color .5s;
}
.header_logo {
  position: relative;
  display: block;
  height: 3.2em;
  aspect-ratio: 300 / 139;
  pointer-events: visible;
}
.header_logo img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
}
.header_logo_black{
  opacity: 0;
  transition: opacity .3s;
}

/* header_bg付与時 ===================*/
/* .header_bg .header_flex, */
/* .no_mv .header_flex, 
.mypage .header_flex {
  background-color: rgb(0, 0, 0, 0.3);
  background-color: rgb(50,75,90, .35);
}  */
._tel_open .header_flex, 
._panel_open .header_flex{
  background-color: transparent;
}
.header_bg .header_logo_black,
.no_mv .header_logo_black{
  opacity: 1;
}
._tel_open .header_logo_black,
._panel_open .header_logo_black{
  opacity: 0;
}
.header_bg .sp_tel_btn_img ,
.no_mv .sp_tel_btn_img {
  filter: none;
}
._tel_open .sp_tel_btn_img ,
._panel_open .sp_tel_btn_img {
  filter: var(--filter-w);
}
.header_bg .sp_nav_btn span,
.no_mv .sp_nav_btn span{
  background: #000;
}
._tel_open .sp_nav_btn span ,
._panel_open .sp_nav_btn span {
  background: #fff;
}

/* SP - BTN */
.sp_btn_wrap{
  display: none;
  gap: 1em;
  height: 3.2em;
}
.sp_tel_btn{
  position: relative;
  width: 4em;
}
.sp_tel_btn img{
  display: block;
  margin: auto;
  padding: 0 .4em .5em;
}
.sp_tel_btn_img{
  filter: var(--filter-w);
  transition: filter .3s;
}
.close_btn,
.close_btn::before{
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5em;
  height: 1px;
  background: #fff;
  margin: auto;
  transform: rotateZ(45deg);
  opacity: 0;
  transition: opacity 300ms;
}
.close_btn::before{
  content: "";
  transform: rotateZ(90deg);
}
._tel_open .sp_tel_btn img{
  opacity: 0;
}
._tel_open .close_btn,
._tel_open .close_btn::before{
  opacity: 1;
}
.sp_nav_btn{
  position: relative;
  display: block;
  width: 4em;
}
.sp_nav_btn span {
  position: absolute;
  left: 0; 
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5em;
  height: 1px;
  background: #fff;
  transition: all 300ms;
  margin: auto;
}
.sp_nav_btn span:first-child{
  top: 1.5em;
}
.sp_nav_btn span:last-child{
  top: -1.5em;
}
._panel_open .sp_nav_btn span:nth-child(2){
  opacity: 0;
}
._panel_open .sp_nav_btn span:first-child,
._panel_open .sp_nav_btn span:last-child{
  top: 0;
}
._panel_open .sp_nav_btn span:first-child{
  transform: rotateZ(45deg);
}
._panel_open  .sp_nav_btn span:last-child{
  transform: rotateZ(-45deg);
}

/* SP - NAV */
.sp_tel_bloc,.sp_nav_bloc{
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow-y: scroll;
  /* background: rgb(33, 33, 33, .95); */
  background: rgba(19,25,34,.95);
}
body._tel_open,
body._panel_open{
  overflow: hidden;
}
._tel_open .sp_tel_bloc,
._panel_open .sp_nav_bloc{
  display: block;
}
.sp_nav_block {
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
  overflow: scroll;
  padding: 6em 2.2em;
  color: #dadada ;
}
.sp_tel_list{
  padding: 4em 0 1.5em;
}
.sp_tel_list_box{
  display: flex;
  align-items: center;
  padding: 1.4em 1.3em;
  /* border-bottom: solid 1px #666666; */
}
.sp_tel_ttl{
  width: 5.5em;
  font-size: 1.4em;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.sp_tel_list_tel{
  font-size: 1.7em;
  font-weight: 500;
}
.sp_tel_list_tel img{
  width: .8em;
  margin-right: .2em;
  margin-bottom: .15em;
}
.sp_tel_list_line{
  display: block;
  width: 3em;
  margin-left: auto;
  padding: 0.2em;
}
.sp_nav_icon_wrap{
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
  margin: 1em auto;
}
.sp_nav_icon_wrap a{
  width: 45%;
  padding: 1.5em .5em;
}
.sp_nav_icon_wrap  img{
  display: block;
  margin: 0 auto;
}
.sp_nav_icon_wrap a:first-child img{
  width: 76%;
}

.sp_nav_banner_wrap{
  padding: 1em .5em ;
}
.sp_nav_banner_wrap a{
  display: block;
  margin: 1.6em 0;
  border-radius: .15em;
  overflow: hidden;
}
.sp_nav_list{
  padding: 2em 0 1.5em;
}
.sp_nav_list_box{
  border-bottom: solid 1px #383838;
}
.sp_nav_list_box > a{
  display: block;
  width: 90%;
  font-size: 1.4em;
  padding: 1.2em 0;
}
.accordion_host{
  position: relative;
}
.accordion_btn,
.accordion_btn::before{
  position: absolute;
  right: .5em;
  top: 2.8em;
  display: block;
  width: 1.6em;
  height: 1.5px;
  background-color: var(--c-gold2);
  transition: transform .2s;
}
.accordion_btn::before{
  content: "";
  top: 0;
  right: 0;
  transform: rotateZ(90deg);
}
.accordion_btn.on{
  transform: rotateZ(135deg);
}
.accordion{
  display: none;
}
.accordion_list{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1.5em;
}
.accordion_list li{
  width: 50%;
}
.accordion_list li a{
  display: block;
  width: 90%;
  font-size: 1.2em;
  font-weight: 600;
  padding: 1em 0;
  /* border-top: solid 1px #666666; */
  margin-left: 1em;
}
._program li:nth-child(odd){
  width: 35%;
}
.accordion_list._program li:nth-child(even){
  width: 65%;
}


/* FOOT_BANNER
======================================== */
#footbaner{
  position: fixed;
  /* width: 38.5% !important; */
  /* max-width: 26em; */
  background: none;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: none;
  box-shadow: none;
  padding: 0 0 2.5em;
  margin: 0 0 0 auto;
  overflow: hidden;
}
.footbaner_box img{
  display: inline-block;
}
.footbaner_box{
  display: block;
  position: relative;
  /* overflow: hidden; */
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 1.6em .7em;
  border-radius: .5em 0 0 .5em;
  background-color: var(--c-gold);
  color: #fff;

  opacity: 0;
  transform: translateX(100%);
  transition: transform .5s , opacity .5s;
}
.on .footbaner_box{
  opacity: 1;
  transform: translateX(0);
}
.footbaner_box .txt{
  position: relative;
  padding-top: 1.5em;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: .2em;
}
.footbaner_box .txt img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1.1em;
}

@media(min-width:560px){
  #footbaner{
    right: calc( (100% - 560px) / 2 );
  }
}/*  */ 

/* .footbaner_box::before {
  content: "''";
  position: absolute;
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  animation: shiny-btn1 4s ease-in-out infinite;
} */

/* @keyframes shiny-btn1 {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

@media(min-width:899px){
  #footbaner{
    width: 30%;
  }
} */


/* FOOTER 
======================================== */
.footer_bloc {
  padding: 15% 0;
  /* background: #b8bcbb;
  background-image: url(/images2/f-bo.jpg); */
}
.footer_bloc.back_texture::before {
  background-color: #f0f6fc;
}
.footer_main_logo{
  width: 7em;
  margin: 1em auto;
}
.footer_main_txt{
  font-size: .8em;
  line-height: 2;
  padding: 2em;
  color: var(--c-black2);
}
.footer_main_sns_list{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  margin-left: -1em;
}
.footer_main_sns_list li{
  width: 18%;
  padding: 5.5%;
  line-height: 1.5;
}
.foot_copyright{
  font-size: 10px;
  letter-spacing: .005em;
  padding: 5em 0;
  border-bottom: none;  
  color: var(--color-black3);
  text-align: center;
}



/* TOPPAGE KEYVIS - 2024  
======================================== */
.top_keyvis_inner{
  position: relative;
  /* aspect-ratio: 390 / 784;
  padding-bottom: 2.6em;
  margin-bottom: 3em; */
  overflow: hidden;
  z-index: 0;
  width: 100%;
  aspect-ratio: 4 / 5.2;
}
.top_keyvis_inner::before{
  content: "";
  position: absolute;
  bottom: -8em;
  right: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 14em;
  transform: skewY(-20deg);

  background-color: var(--c-blue);
  background: linear-gradient(200deg, rgba(44,138,188,0.5) 0%, rgba(44,138,188,1) 45%);
}

.slide_ttl {
  position: absolute;
  top: 18%;
  left: 6%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.3em;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--c-bg);
  z-index: 5;
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* transition: opacity .5s; */
}
.slide_ttl .line{
  display: block;
  height: fit-content;
  /* padding: 0 .1em; */
  filter: drop-shadow(0 0 .5em #333);
}
.slide_ttl .line._02 {
  margin-top: 4em;
}
.slide_media{
  width: 100%;
  height: 100%;
  /* aspect-ratio: 4 / 6; */
  width: 100%;
  background-color: var(--c-blue);
}
.slide_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp_keyvis_trial{
  position: absolute;
  bottom: 3em;
  right: 1.5em;
  z-index: 10;
  width: 10.5em;
}

.top_keyvis_ttl_box{
  background-color: var(--c-blue);
  padding: 0 2em 3em;
  margin-top: -1.8em;
  color: #fff;
}
.lp_keyvis_ttl{
  text-align: center;
}
.lp_keyvis_ttl img{
  display: block;
  width: 60%;
  margin: .6em auto 1.5em;
}
.top_keyvis_campaign_ttl{
  position: relative;
  width: fit-content;
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  padding: .7em 0;
  margin: auto;
}
.top_keyvis_campaign_ttl ._script{
  position: absolute;
  right: 73%;
  top: 5%;
  width: 5em;
  transform: rotateZ(-18deg);
}
.top_keyvis_campaign_list{
  display: flex;
  gap: 5%;
}


/* INTRO
======================================== */
.sec_lp_intro{
  position: relative;
  background-color: #f0f6fc;
  background: linear-gradient(to right, #f7fdff 0%, #eaf3fb 100%);
}
.lp_intro_ttl{
  font-size: 2.3em;
  line-height: 1.4;
  letter-spacing: .03em;
  color: var(--c-blue);
  text-align: center;
  padding: .5em 0;
}
.lp_intro_list{
  padding: 1.5em 1em;
}
.lp_intro_list_box{
  font-size: 1.6em;
  font-weight: 500;
  padding: .6em 0 ;
}
.lp_intro_list_box .txt{
  position: relative;
  display: block;
  padding-left: 1.9em;
}
.checkbox{
  position: absolute;
  left: 0;
  top: .1em;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.2em;
  height: 1.2em;
  border: 1.5px solid var(--c-gold);
}
.checkbox::before {
  position: absolute;
  right: -.1em;
  bottom: .3em;
  content: "";
  display: block;
  width: .5em;
  height: 1.1em;
  color: var(--c-red);
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotateZ(45deg);
}
.sec_lp_intro_cursol{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.4em;
  margin: auto;
  width: 3.6em;
}


/* POINT
======================================== */
.lp_point_ttl_block_1{
  position: relative;
  padding: 2em 0 3em;
}
.lp_point_ttl_copy{
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: .02em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: .5em 0 1.5em;
  margin: auto;
}
.lp_point_ttl_copy .line {
  display: block;
  height: fit-content;
}

/* LOOP ==================*/
.loop_box{
  position: absolute;
  top: 0;
  bottom: 3em;
  margin: auto;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  /* background-color: var(--c-black2); */
  z-index: -1;
}
.loop_box_inner{
  display: flex;
  filter: var(--filter-blue);
  opacity: .09;
}
/* .loop_txt{
  white-space: nowrap;
  animation :infinity-scroll-left 30s infinite linear 0.5s both;
} */
.loop_box_inner img {
  width: inherit;
  max-width: inherit;
  height: 8em;
  width: auto;
  padding-right: 3.5em;
  animation: infinity-scroll-left 10s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.lp_point_ttl_block_2{
  position: relative;
  background-color: var(--c-blue);
  padding: 5em 0;
  color: #fff;
}
.lp_point_ttl{
  font-size: 2.4em;
  letter-spacing: .05em;
  text-align: center;
}
.lp_point_ttl .en{
  display: block;
  font-size: .7em;
  font-weight: 600;
  margin-top: .4em;
  margin-bottom: .6em;
}
.lp_point_ttl .ja{
  letter-spacing: .02em;
}
.lp_point_ttl .speech_border{
  color: #ddedf4;
  margin-top: .4em;
  margin-bottom: .6em;
  letter-spacing: 0;
}
.block_2_cursol{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.4em;
  margin: auto;
  width: 3.6em;
  z-index: 1;
}


/* FEATURE
======================================== */
.sec_lp_feature{
  background-color: #f9f9f5;

  display: flex;
}
.bottom_triangle{
  position: relative;
  margin-bottom: 7em;
}
.bottom_triangle::after{
  content: "";
  position: absolute;
  top: 99.99%;
  width: 100%;

  aspect-ratio: 1/cos(82deg);
  clip-path: polygon(50% 100%,100% 0,0 0);
  background-color: #f9f9f5;
}
.bottom_triangle::before{
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 7em;
  background-color: var(--c-blue);
}

.top_feature_list {
  padding: 2em 0 0;
}
.top_feature_list_box{
  padding: 3em 0 1em;
}
.top_feature_img_wrap{
  position: relative;
  padding: 4em 0 .5em;
}
.top_feature_img {
  width: calc(100% + 2em);
  max-width: initial;
  border-radius: 1em 0 0 1em;
}
.top_feature_img_num{
  position: absolute;
  top: -.15em;
  left: -.15em;
  color: var(--c-blue);
  font-size: 8.5em;
  line-height: 1;
  z-index: 1;
}
.top_feature_img_num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 88%;
  display: block;
  width: .9em;
  aspect-ratio: 300 / 88;
  background-image: url(/imgs/text_point.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotateZ(-15deg);
}
.top_feature_text_wrap{
  padding: 1em 0;
}
.top_feature_sub{
  position: relative;
  display: block;
  width: fit-content;
  color: var(--c-gold);
  font-size: 1.3em;
  padding: .6em 0 .6em 3.2em;
  /* margin-left: auto; */
}
.top_feature_sub::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 3em;
  height: 1px;
  background-color: currentColor;
}
.top_feature_ttl{
  font-size: 2.4em;
  line-height: 1.5;
  padding: .2em 0;
  letter-spacing: .02em;
}
.top_feature_ttl .blue{
  display: block;
  font-size: 0.7em;
  margin-bottom: 0.3em;
}
.top_feature_txt{
  font-size: 1.1em;
  padding: .5em 0;
  line-height: 1.75;
}
.top_feature_txt p{
  padding: .3em 0;
}

.top_feature_link_btn {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 1em;
  font-weight: 300;
  text-align: center;
  padding: .5em 0;
}
.top_feature_link_btn._arrow {
  position: relative;
  width: fit-content;
  padding-right: 1em;
  transition: transform .3s;
}
.top_feature_link_btn._arrow::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 0.2em;
  top: 0.11em;
  bottom: 0;
  margin: auto;
  border-top: 0.15em solid;
  border-right: 0.15em solid;
  transform: rotateZ(45deg);
}
.top_feature_link_btn._arrow:hover,
a:hover .top_feature_link_btn._arrow{
  transform: translate( .3em );
}

.sec_top_feature{
  overflow: hidden;
}



/* LP FEATURE
======================================== */
.lp_feature_ttl{
  font-size: 1rem;
  text-align: center;
  padding: 1em 0;
}
.lp_feature_ttl span{
  display: block;
}
.lp_feature_ttl .en{
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-gold);
}
.lp_feature_ttl .ja{
  font-size: 2.6em;
  line-height: 1.4;
  letter-spacing: .1em;
  margin: .4em 0;
}
.lp_feature_ttl .ja2{
  position: relative;
  font-size: 1.4em;
  letter-spacing: .1em;
  padding-top: 1.2em;
  margin-top: 1.2em;
}
.lp_feature_ttl .ja2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 2em;
  height: 1.5px;
  background-color: var(--c-gold);
}

.sticky_txt{
  position: sticky;
  top: 0;
  left: 0;
  height: 45em;
}
.sticky_txt .txt{
  position: absolute;
  top: -.8rem;
  left: 0;
  z-index: -1;
  font-size: 10em;
  font-weight: 500;
  line-height: .7;
  letter-spacing: .02em;
  writing-mode: vertical-rl;
  opacity: .1;
}

.lp_feat_list{
  padding: 2em 0 0;
  text-align: center;
}
.lp_feat_list_box{
  padding: 2em 0;
}
.lp_feat_img {
  width: 100%;
  aspect-ratio: 1.4/1;
}
.lp_feat_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp_feat_list_num{
  display: block;
  font-size: 7em;
  line-height: .7;
  color: var(--c-gold);
  margin-top: -.35em;
}
.lp_feat_list_ttl{
  font-size: 2.2em;
  padding: .5em 0 0;
}

/* USER VOICE
======================================== */
.sec_lp_voice,
.sec_lp_voice.bottom_triangle::after{
  background-color: var(--c-blue);
}
.sec_lp_voice {
  padding: 1.5em 0;
}
.sec_lp_voice .lp_point_ttl{
  color: #fff;
}
.sec_lp_voice.bottom_triangle::before{
  background-color: #f0f6fc;
  background: linear-gradient(to right, #f7fdff 0%, #eaf3fb 100%);
}
.lp_voice_list{
  padding: 3em 0 0;
}
.lp_voice_list_box{
  position: relative;
  padding: 0 0 0 1.6em;
  margin: 1em 0 2.2em;
}
.lp_voice_list_num{
  position: absolute;
  top: 1.5em;
  left: -.7em;
  z-index: 1;
  display: flex;
  width: fit-content;
  background-color: var(--c-gold);
  color: #fff;
  font-size: 1.1em;
  text-align: center;
  width: 4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lp_voice_list_num span{
  display: block;
}
.lp_voice_list_num .txt{
  font-size: 0.7em;
  line-height: 1.4;
}
.lp_voice_list_num .num{
  font-size: 1.6em;
  line-height: 1;
}
.lp_voice_list_inner{
  position: relative;
  background-color: #fff;
  border-radius: .5em;
  padding: 1.8em 1.5em;
}
.lp_voice_list_ttl{
  font-size: 1.4em;
  padding-left: 1em;
}
.lp_voice_list_txt{
  font-size: 1.05em;
  line-height: 1.7em;
  padding: 1.4em 0 0;
  margin-top: 1.5em;
  border-top: 1px solid var(--c-gold2);
}
.lp_voice_list_speaker{
  font-size: 1.05em;
  text-align: right;
  color: #fff;
  padding: .5em 0;
}
.lp_voice_list_inner:after{
  position: absolute;
  top: 96%;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 3.5em;
  height: 3.5em;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-radius: .5em;
}

.lp_voice_list_box:nth-child(even){
  padding: 0 1.6em 0 0 ;
}
.lp_voice_list_box:nth-child(even) .lp_voice_list_num{
  left: initial;
  right: -.7em;
}
.lp_voice_list_box:nth-child(even) .lp_voice_list_ttl{
  padding-left: 0;
}
.lp_voice_list_box:nth-child(even) .lp_voice_list_speaker{
  text-align: left;
}
.lp_voice_list_box:nth-child(even) .lp_voice_list_inner:after{
  transform: rotateY(180deg);
}

/* TRIAL
======================================== */
.sec_lp_trial{
  background-color: #f0f6fc;
  background: linear-gradient(to right, #f7fdff 0%, #eaf3fb 100%);
  padding-top: 1.5em;
  padding-bottom: 0;
}
.sec_lp_trial .lp_point_ttl .en{
  color: var(--c-blue);
}
.lp_trial_desc{
  font-size: 1.1em;
  font-weight: 500;
  padding: 1.5em 0;
  line-height: 1.7;
}
.lp_trial_desc p {
  padding: .2em 0;
}

.trial_sub_ttl {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  color: var(--c-blue);
}
.trial_flow_list{
  padding: 1.5em 0 0;
}
.trial_flow_list_box{
  display: flex;
  gap: 1.2em;
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: .5em;
  margin-bottom: 4em;
  padding: 3em 2em 3em 1.5em;
}
.trial_flow_list_box::after{
  content: "";
  position: absolute;
  top: calc(100% + .4em);
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 2em;
  height: 2em;
  border-left: 2px solid var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
  transform: rotate(-45deg) skew(15deg, 15deg);
}


.trial_flow_img_wrap{
  margin: 0 0 .3em;
}
.trial_flow_num{
  position: relative;
  writing-mode: vertical-rl;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--c-blue);
}
.trial_flow_num::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 1px;
  height: calc(100% - 5em);
  background-color: var(--c-blue);
  opacity: .5;

  animation: scrollDown 5s ease-in-out forwards infinite;
}
@keyframes scrollDown {
  0%   { transform-origin: bottom center; transform: scaleY(1);}
  12%  { transform-origin: bottom center; transform: scaleY(0);}
  13%  { transform-origin: top center; transform: scaleY(0);}
  24%  { transform-origin: top center; transform: scaleY(1);}
  100% { transform-origin: top center; transform: scaleY(1);}
}

.trial_flow_ttl{
  font-size: 1.7em;
  letter-spacing: .02em;
  padding: .5em 0;
  line-height: 1.6;
}
.trial_flow_time{
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.trial_flow_desc{
  line-height: 1.6;
  padding: .5em 0 0;
}

.trial_flow_list_last_img{
  width: calc(100% + 4em);
  aspect-ratio: 3 / 2;
  margin-left: -2em;
  margin-bottom: 1em;
}
.trial_flow_list_last_img_txt {
  position: absolute;
  top: -2em;
  left: 1em;
  width: 11.5em;
}
.trial_flow_list_last_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.trial_flow_last_ttl {
  font-size: 1.9em;
  letter-spacing: .02em;
  padding: .6em 0;
}
.trial_flow_last_desc{
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  padding: .5em 0;
}
.under_line{
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto .2em;
}
.under_line::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--c-blue);

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s;
}
.on.under_line::before{
  transform: scaleX(1);
}


/* TOP TRIAL 
================================================ */
.top_trial_block{
  position: relative;
  display: block;
  margin: 1em auto 5em;
  aspect-ratio: 6 / 5;
  width: 90%;
}
.top_trial_block.trgr {
  transform: scale(.8);
  opacity: 0;
  transition: transform .5s, opacity .3s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.top_trial_block.trgr.on {
  transform: scale(1);
  opacity: 1;
}

.top_trial_block_inner{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  z-index: 5;
  color: #fff;
  padding: 3.5em 0 2em;
}
.top_trial_ttl{
  font-size: 3.2em;
  letter-spacing: .1em;
  line-height: 1.2;  
  padding-bottom: .15em;
}
.top_trial_caption{
  display: block;
  font-size: 1.4em;
  font-weight: 500;
  margin: 1em 0;
}
.top_trial_txt{
  font-size: 1.3em;
  letter-spacing: .05em;
}

.top_trial_img_box{
  position: relative;
  /* width: calc(100% + 4em);
  margin-left: -2em; */
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.top_trial_img_box img{
  transition: transform .5s;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}
.top_trial_img_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-gold);
  mix-blend-mode: screen;
  opacity: .5;
  z-index: 1;
  transition: opacity .5s;
}
.top_trial_img_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-gold);
  mix-blend-mode: multiply;
  opacity: .8;
  z-index: 1;
  transition: opacity .5s;
}

.top_trial_block .arrow_circle_img{
  filter: var(--filter-gold);
}

/* TRIAL MODAL
================================================ */
.modal_trial_wrap{
  visibility: hidden;
}
.modal_on .modal_trial_wrap{
  visibility: visible;

  position: fixed;
  z-index: 10000;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
}
.modal_trial_nav{
  position: fixed;
  top: 0;
  bottom:  0;
  left: 0;
  right: 0;
  z-index: 10000;
  margin: auto;
  width: 90%;
  height: 90vh;
  max-width: 500px;
  max-height: 50em;
  margin: auto;
  background-color: #fff;
  border-radius: .5em;

  overflow-y: scroll;
  filter: drop-shadow(0 0 1em rgba(0,0,0,.3) );

  transform: translateY(1em) scale(.95);
  opacity: 0;
  transition: opacity .3s , transform .3s;
}
.modal_on .modal_trial_nav{
  transform: translateY(0);
  opacity: 1;
}
.modal_trial_nav_outer{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.modal_trial_nav_inner{
  width: 100%;
  height: 100%;
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  padding: .5em 2em;
}
.modal_trial_nav_wrap{
  padding: 3em 0;
}
.modal_trial_nav_wrap + .modal_trial_nav_wrap{
  padding-top: 0;
}
.modal_trial_nav_ttl{
  text-align: center;
  padding: 0 0 .6em;
}
.trial_close_btn{
  position: absolute;
  top: 1em;
  right: 1.2em;
  display: block;
  width: 2em;
  height: 2em;
}
.trial_close_btn::before,
.trial_close_btn::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 100%;
  background-color: #aaa;
}
.trial_close_btn::before{
  transform: rotateZ(45deg);
}
.trial_close_btn::after{
  transform: rotateZ(-45deg);
}
.btn_trial_btn{
  display: block;
  padding: 1.6em;
  background-color: var(--c-blue);
  color: #fff;
  text-align: center;
  border-radius: .2em;
}
.btn_trial_btn .txt{
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: .05em;
}
.btn_trial_btn img{
  display: inline-block;
  width: 1.2em;
  vertical-align: -.18em;
  margin-right: 0.4em;
}

.modal_tel_list_box{
  display: flex;
  align-items: center;
  padding: .6em 1em;
}
.modal_tel_list_tel,
.modal_tel_list_line{
  display: block;
  padding: .6em 2.6em;
  border: 1px solid var(--color-grey);
  border-radius: .2em;
}
.modal_tel_list_tel img,
.modal_tel_list_line img{
  display: block;
  height: 2.1em;
}
.modal_tel_ttl{
  font-size: 1.3em;
  margin-right: auto;
}
.modal_tel_list_tel img{
  filter: brightness(0);
}
.modal_tel_list_line{
  margin-left: .5em;
}


/* LP MAJOR
================================================ */
.sec_lp_major{
  padding-top: 0;
  background-color: var(--c-blue);
}
.lp_major_img{
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
}
.lp_major_img::before{
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;

  background: linear-gradient(180deg, rgba(44,138,188,0) 35%, rgba(44,138,188,1) 95%);
}
.lp_major_img::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  margin: auto;
  display: block;
  width: 100%;
  height: 10em;
  background-image: url(/lp_new/imgs/lp_major_txt.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.lp_major_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp_major_ttl{
  position: relative;
  font-size: 2em;
  letter-spacing: .05em;
  text-align: center;
  color: #fff;
  padding: .5em 0;
}

.top_debut_list{
  padding: 1em 0 2em;
  color: var(--c-black);
}
.debut_splide_wrap{
  padding: 2em 0 7em;
  max-width: 1300px;
  margin: auto;
}
.top_debut_list_box{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 95%;
  padding: 1.5em 0;
  margin-left: auto;
  color: #fff;
}
.top_debut_list_box::before, 
.top_debut_list_box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white2);
  opacity: .2;
}

.top_debut_list_ttl{
  position: relative;
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 0.3em;
}
.top_debut_list_ttl::before{
  content: "";
  position: absolute;
  left: -.6em;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: .18em;
  aspect-ratio: 1/2;
  background-image: url(/imgs/arrow_tri_right.svg);
  background-repeat: no-repeat;
  background-position: center right;
  filter: var(--filter-gold);
}
.top_debut_list_txt {
  font-size: 1em;
  line-height: 1.4;
  /* color: var(--c-black2); */
}
.top_debut_img {
  position: absolute;
  bottom: 1.45em;
  right: 5.2em;
  width: 25%;
  aspect-ratio: 1 / 1;
}
.top_debut_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.top_debut_list_link {
  width: 4.5em;
  font-size: .8em;
  /* color: var(--c-blue); */
}

/* SPLIDE  ===================*/
.debut_splide_wrap .splide__pagination {
  justify-content: flex-start;
  width: 100%;
  bottom: -3.9em;
  /* right: initial; */
  left: 0;
  padding: 0 2em 0 9em;
}
.debut_splide_wrap .splide__pagination__page {
  position: relative;
  display: block;
  width: 3.5em;
  height: .3em;
  border-radius: 0;
  margin: .4em;
  cursor: pointer;
  transition: var(--transition);
  background-color: rgba(200, 200, 200, 0.8);
  opacity: .8;
}
.debut_splide_wrap .splide__pagination__page.is-active {
  /* background-color: var(--c-blue); */
  transform: scale(1);
  z-index: 1;
}
.debut_splide_wrap .splide__pagination__page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--c-gold2);
}
.debut_splide_wrap .splide__pagination__page.is-active::before {
  width: 100%;
  transition: width 4s ease;
}
.debut_splide_wrap .splide__arrow {
  top: initial;
  bottom: -5.5rem;
  background: transparent;
}
.debut_splide_wrap .splide__arrow svg {
  fill: var(--c-blue);
}
.debut_splide_wrap .splide__arrow--prev {
  left: 2.5em;
}
.debut_splide_wrap .splide__arrow--next {
  left: 4.5em;
  right: initial;
}

.debut_splide_wrap .top_debut_list_box {
  opacity: 0;
  transform: translateX(.5em);
  transition: transform .5s ease-out , opacity .4s;
}
.debut_splide_wrap .splide__slide[class*=-active] .top_debut_list_box {
  transition-delay: 0s;
  transform: translateX(0);
  opacity: 1;
  transition: transform .5s ease-out , opacity .4s;
}
.debut_splide_wrap .splide__slide[class*=-active] .splide__slide__row:first-child .top_debut_list_box {
  transition-delay: 0;
}
.debut_splide_wrap .splide__slide[class*=-active] .splide__slide__row:nth-child(2) .top_debut_list_box {
  transition-delay: .2s;
}
.debut_splide_wrap .splide__slide[class*=-active] .splide__slide__row:nth-child(3) .top_debut_list_box {
  transition-delay: .4s;
}
.debut_splide_wrap .splide__slide[class*=-active] .splide__slide__row:nth-child(4) .top_debut_list_box {
  transition-delay: .6s;
}
/* .debut_splide_wrap .splide__slide[class*=-active] .slide-title {
  animation: mv01-fadeIn 2s 0.5s var(--easing) both;
} */
/* @keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
} */



/* LP COURSE
============================================ */
.lp_course_ttl{
  font-size: 1em;
  text-align: center;
  padding: 1em 0;
}
.lp_course_ttl .en {
  display: block;
  font-size: 4.2em;
  font-weight: 600;
  line-height: 1.2;
}
.lp_course_ttl .ja {
  font-size: 1.1em;
  font-weight: 500;
}
.lp_course_desc{
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  padding: 1em 0;
  letter-spacing: .03em;
  line-height: 1.6;
}

/* .cource_tab_contents .c_inner {
  padding-left: 2.5em;
  padding-right: 2.5em;
}*/
.tab_contents_st{
  margin-top: 2em;
}
.tab_contents_st .c_inner {
  background-color: #f9f9f9;
  padding: 5em 2em 3em;
  margin-top: -5.5em;
}
.tab_contents_baloon {
  position: relative;
  width: fit-content;
  background-color: var(--c-blue);
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: .03em;
  padding: .4em 2em .5em;
  margin: 0 auto 2em;
}
.tab_contents_baloon::after{
  position: absolute;
  top: 96%;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 1.1em;
  height: 1.1em;
  background-color: var(--c-blue);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.course_name_ttl {
  font-size: 1em;
  padding: 1.2em 0;
  text-align: center;
}
.course_name_ttl .en {
  display: block;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.2;
}
.course_name_ttl .ja {
  font-size: 1.3em;
}
.corse_box_txt {
  font-size: 1.15em;
  font-weight: 500;
  padding: .5em 0;
  line-height: 1.7;
}
.corse_box_txt p, .corse_box_caution p {
  padding: .2em 0;
}
.course_sub_ttl {
  position: relative;
  font-size: 1.4em;
  padding: .3em 0 .3em 1em;
}
.course_sub_ttl::before {
  position: absolute;
  left: .2em;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  line-height: 1;
  width: .4em;
  height: .4em;
  background-color: currentColor;
  border-radius: 50%;
  color: var(--c-blue);
}

.course_price_box{
  padding: 1em 0;
}
.course_price_box + .course_price_box{
  padding-top: 0;
}
.course_price_table_wrap{
  padding: .6em 0;
}
.course_price_table{
  width: 100%;
  background-color: #fff;
  text-align: center;
}
._light thead{
  background-color: var(--color-blue);
}
._pro thead{
  background-color: var(--color-red2);
}

.course_price_table thead{
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1.2;
  /* color: #fff; */
  /* background-color: var(--c-blue); */
  background-color: #f1f1f1;
}
._option .course_price_table thead{
  background-color: #fff8f8;
}
.course_price_table tbody{
  font-size: 1.1em;
  font-weight: 500;
  font-family: var(--font-comp);
}
.course_price_table th,
.course_price_table td{
  border: 1px solid #dfdfdf;
  padding: .8em .4em;
}
.course_price_table th .small2{
  font-size: .8em;
  font-weight: 400;
}
.course_price_table td .small2 ~ .small2{
  font-size: .7em;
  font-weight: 400;
}
.course_price_table._option thead ,
.course_price_table._option tbody {
  font-size: 1.2em;
}
.price_th_ttl {
  display: block;
  width: fit-content;
  padding: 0 .8em .1em;
  border-radius: .1em;
  margin: 0 auto .7em;
  text-decoration: underline;
  text-underline-offset: .25em;
}
/* .cource_pl{
  padding-left: 1.3em;
} */
.pro_course_page .top_trial_block {
  margin: 3em auto;
}
.course_tab_img{
  margin: .7em 0;
}
/* course  illust */
.cource_illust_box{
  display: flex;
  gap: 4%;
  padding: 1em 0;
  color: var(--c-blue);
}
.cource_illust_box_list{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30.666666%;
  aspect-ratio: 1/1;
  border: 1px solid #9cc5da ;
  border-radius: 50%;
  text-align: center;
  padding-bottom: .2em;
  background-color: #fff;
}
.cource_illust_box_list.red{
  border: 1px solid #e39ca1 ;
}
.cource_illust_box_list .en{
  display: flex;
  align-items: center;
  font-size: 0.8em;
  font-weight: 800;
  line-height: 1.1;
  min-height: 2.5em;
  padding: .4em 0;
}
.cource_illust_box_list .comp{
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.25;
  min-height: 4em;
  padding-bottom: .2em;
}
.cource_illust_box_list .plus{
  display: block;
  line-height: .7;
  margin-bottom: .1em;
}
.cource_illust_box_list:not(:last-child)::before{
  position: absolute;
  left: 100%;
  content: "";
  display: block;
  width: 14%;
  height: 1px;
  background-color: #9cc5da;
}
#tab_light_contents .cource_illust_box{
  color: var(--c-gold);
}
#tab_light_contents .cource_illust_box_list{
  border: 1px solid var(--c-gold2) ;
}

.support_link_block{
  position: relative;
  width: 100%;
  display: block;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  border-radius: .3em;
  margin: 2em 0;
}
.support_link_block .link_circle_box {
  position: absolute;
  z-index: 1;
  right: 1.5em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.support_link_txt{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  height: fit-content;
  font-size: 1.5em;
  font-weight: 600;
  z-index: 1;
}
.support_link_img {
  width: 100%;
  aspect-ratio: 2.4 / 1;
}
.support_link_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .4;
  filter: url(data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix'values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale);
  -webkit-filter: grayscale(100%);
  transition: opacity 1s, transform .5s;
}
.support_link_block:hover .support_link_img img {
  opacity: .5;
  filter: none;
  -webkit-filter: grayscale(0%);
  transform: scale(1.1);
}

/* COURSE STYLE GENRE LIST ========== */
.course_sg_list_wrap{
  padding: 1.5em 0 3em;
  border-top: 1px solid var(--color-blue);
  margin: 1em 0;
}
.course_sg_ttl{
  font-size: 1em;
  padding: 0 0 2em;
}
.course_sg_ttl .en{
  font-size: 3em;
  font-weight: 500;
  display: block;
  color: var(--c-blue);
}
.course_sg_ttl .ja{
  color: var(--c-black2);
}
.course_sg_list_box{
  padding: .3em 0;
}
.course_sg_list_ttl{
  position: relative;
  font-size: 1.3em;
  padding: 0 0 .1em 1em;
  transition: color .3s , margin .3s;
}
.course_sg_list_ttl::before,
.course_sg_list_ttl::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: .7em;
  height: 1.5px;
  background-color: var(--c-blue);
}
.course_sg_list_ttl::after{
  transform: rotateZ(90deg);
  transition: transform .3s;
}
.course_sg_list_ttl.open::after{
  transform: rotateZ(180deg);
}
/* .course_sg_list_ttl:hover, */
.course_sg_list_ttl.open {
  color: var(--c-blue);
}
.course_sg_list_ttl.open {
  margin-top: .5em;
}
.course_sg_list_txt{
  display: none;
  padding: .4em 0 1em;
  line-height: 1.6;
}
.course_sg_list_txt p{
  font-size: 1.05em;
  padding: .4em 0;
}
.course_sg_list_txt .top_feature_link_btn{
  margin-top: 0.2em;
}
.course_sg_pc_flex{
  padding-top: 3em;
}

/* COURSE STYLE GENRE LIST ========== */
.lp_course_special{
  padding: 2.5em 1.5em .5em;
  margin: 2em 0 1em;
  background-color: var(--c-blue);
  background: linear-gradient( 135deg, #2c8abc 0%, #0c77b0 100%);
  color: #fff;
}
.lp_course_special_ttl{
  position: relative;
  font-size: 1.9em;
  text-align: center;
  margin-top: .5em;
  z-index: 1;
}
.lp_course_special_ttl::after{
  content: "";
  position: absolute;
  left: -.6em;
  top: -1.6em;
  display: block;
  width: 100%;
  height: 4em;
  background-image: url(/lp_new/imgs/text_special.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

.lp_bene_list{
  margin-top: 1em;
}
.lp_bene_sub,
.lp_bene_txt{
  display: none;
}
.lp_bene_list_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6em 0;
  border-bottom: 1px solid #7daec8;
}
.lp_bene_list_box:last-child{
  border-bottom: none;
}
.lp_bene_img_wrap{
  display: block;
  width: 6.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow:hidden;
}
.lp_bene_img_wrap img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.lp_bene_detail_wrap{
  position: relative;
  width: calc(100% - 7.8em);
}
.lp_bene_detail_wrap .num{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  font-size: 7.5em;
  font-weight: 300;
  opacity: .1;
}
.lp_bene_ttl{
  font-size: 1.45em;
}
.lp_bene_price{
  font-size: 1.1em;
  margin-top: 0.2em;
}

.open_contents{
  display: none;
}
.course_sub_block{
  padding: 1px 0;
}
.course_sub_head{
  position: relative;
}
.course_sub_head_icon{
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  display: block;
  width: 2em;
  height: 1.5px;
  background-color: #fff;
  transition: transform .2s;
}
.course_sub_head_icon::before{
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 2em;
  background-color: #fff;
}
.open .course_sub_head_icon{
  transform: rotateZ(135deg);
}
.course_sub_head_img{
  position: relative;
  z-index: 1;
}
.course_sub_head_img::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-blue);
  mix-blend-mode: color;
}
.course_sub_head_img::after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-blue);
  mix-blend-mode: multiply;
  opacity: .9;
}
._pro .course_sub_head_img::before{
  background-color: var(--c-gold);
}
._pro .course_sub_head_img::after{
  background-color: var(--c-gold);
}
.course_sub_head_ttl{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 1em;
  height: fit-content;
  color: #fff;
  font-size: 1em;
  z-index: 2;
}
.course_sub_head_ttl span{
  display: block;
}
.course_sub_head_ttl .txt {
  margin-bottom: 0.2em;
}
.course_sub_head_ttl .en {
  display: block;
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.2;
}
.course_sub_head_ttl .ja {
  font-size: 1.3em;
}
.course_sub_head_img{
  width: 100%;
  aspect-ratio: 2.5/1;
}
.course_sub_head_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -1em;
}

.course_sub_body{
  padding: 1.5em;
  background-color: #e8f7ff;
}
._pro + .course_sub_body{
  background-color: #f8f3ea;
}

/* LP LOCATION
============================================ */
.sec_lp_location{
  background-color: var(--c-blue);
}
.lp_location_list{
  padding: 1em 0;
  opacity: 0;
  transition: opacity .5s;
}
.lp_location_list.slick-initialized{
  opacity: 1;
}
.lp_location_list_box {
  /* padding: 0 1em; */
  transform: scale(.88);
  transition: transform .5s ease;
}
.lp_location_list_box.slick-current{
  transform: scale(1);
}
.lp_location_ttl {
  font-size: 1em;
  padding: 1em 0;
  color: #fff;
}
.lp_location_ttl .en {
  display: block;
  font-size: 5em;
  font-weight: 600;
  line-height: 1.2;
}
.lp_location_ttl .ja {
  font-size: 1.1em;
}
.lp_location_desc {
  font-size: 1.6em;
  font-weight: 600;
  padding: 1em 0;
  letter-spacing: .03em;
  line-height: 1.6;
  color: #fff;
}
.lp_location_list_img{
  position: relative;
}
.lp_location_list_img img {
  filter: brightness(0.9);
}
.lp_location_list_img figcaption{
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 3em;
  font-weight: 300;
  line-height: .7;
  color: #fff;
}
.lp_location_list_detail{
  background-color: #fff;
  padding: 1.5em 1.5em 1em;
}
.lp_location_list_ttl{
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 0 0 .5em;
}
.lp_location_list_ttl ._line1{
  display: block;
}
.lp_location_list_ttl ._line2{
  font-size: 2.2em;
  line-height: 1.3;
}
.lp_location_tel{
  display: flex;
  align-items: center;
  padding: .3em 0 0;
}
.lp_location_tel .en{
  display: block;
  font-size: 2.1em;
}
.lp_location_tel ._line {
  display: block;
  width: 3.2em;
  padding: 0 .5em .2em;
  margin-left: 0.2em;
  filter: brightness(0) grayscale(1);
}
.lp_location_add{
  font-size: .9em;
  padding: .8em 0 0;
}

.lp_location_list_detail .link_circle_arrow .txt {
  font-size: 1.2em;
}
.lp_location_list_detail .link_circle_arrow{
  font-size: .8em;
}
.lp_location_list_detail .link_circle_arrow{
  color: var(--c-blue);
}
.lp_location_list_detail .arrow_circle{
  background-color: var(--c-blue);
}
.lp_location_list_detail .arrow_circle_img,
.lp_location_list_detail .arrow_circle::before{
  filter: var(--filter-w);
}

/* SLICK */
.lp_location_list.slick-dotted.slick-slider{
  margin-bottom: 4em;
}
.lp_location_list .slick-dots{
  bottom: -2.5em;
}
.lp_location_list .slick-dots li {
  width: 2px;
  height: 1.8em;
}
.lp_location_list .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0 1em;
}
.lp_location_list .slick-dots li button:before{
  content: "";
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 75%;
  background-color: #fff;
  transition: height .5s , opacity .5s;
}
.lp_location_list .slick-dots li.slick-active button:before{
  opacity: .9;
  height: 100%;
}
.lp_location_list .slick-prev, 
.lp_location_list .slick-next {
  top: calc(100% + 1.45rem);
  z-index: 10;
}
.lp_location_list .slick-prev {
  left: -10rem;
  right: 0;
  margin: auto;
}
.lp_location_list .slick-prev::before {
  content: '<';
}
.lp_location_list .slick-prev::before ,
.lp_location_list .slick-next::before {
  font-size: 1.6rem;
}
.lp_location_list .slick-next {
  left: 0;
  right: -10rem;
  margin: auto;
}
.lp_location_list .slick-next::before {
  content: '>';
}