@charset "UTF-8";

/*外部font読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Bebas+Neue&display=swap');



/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:  2010-09-17
Author:  Richard Clark - http: //richclarkdesign.com
Twitter:  @rich_clark
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
		  box-sizing: border-box;
  -webkit-font-variant-ligatures: none;
		  font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
/*	-webkit-appearance: none;*/
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
	/*font-weight: initial;*/
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, nav ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  /*color: #000;*/
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}
input:focus,
textarea:focus {
	outline: none;
}
/* Image
---------------------------------------*/
img {
	border: 0;
	vertical-align: bottom;
	max-width: 100%;
	width: 100%;
/*	height: auto;*/
}

img[src$=".svg"] {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
	  flex-shrink: 0;
}


/*色設定*/
:root {
/*  白*/
  --white: #fff;
/*  黒*/
  --black: #000;
/*  メイン赤*/
  --red: #c30d23;
/*  メイン黃*/
  --yellow: #fff32d;
}






/* Setting-basic
---------------------------------------*/
body {
  font-family:  "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
  color: #000;
	font-size: 16px;
	letter-spacing: 0em;
/*  background: #ffffff;*/
  overflow-x: hidden;
  background-color: #FAFAFA;
}
body.confirm main, body.thanks main{
  padding-top: 100px;
}
@media all and (min-width:768px){
  body {
/*    min-width: 1240px;*/
/*      overflow-x: hidden;*/
  }
}
@media all and (max-width: 767px) {
  body {
    overflow-x:hidden;
  }
  body.confirm main, body.thanks main{
    padding-top: 50px;
  }
  body.open{
    overflow: hidden;
  }
}

/* Font
---------------------------------------*/

.serif{
	font-family:  "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	  font-weight: 400;
}

.bebas{
  font-family: "Bebas Neue", sans-serif;
}

/* Link
---------------------------------------*/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #2F2F2F;
  cursor: pointer;
}
a:active,
a:focus {
	outline: none;
}
a img {
  transition: 0.3s ease;
}
@media all and (min-width: 768px) {
  a:hover {
	opacity: 0.7;
	transition: 0.3s ease;
  cursor: pointer;
  }
}


.hide_txt{
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
	display: block;
}


/*pc sp only*/
.none {
  display: none !important;
}
.nolink {
  pointer-events: none;
}


@media all and (min-width:768px) {
  .nonePC {
	display: none !important;
  }
  .nolinkPC {
	pointer-events: none;
  }
  a[href^="TEL:"]{
    pointer-events: none;
  }
}

@media all and (max-width:767px) {
  .noneSP {
	display: none !important;
  }
  .nolinkSP {
	pointer-events: none;
  }

}




/* anchor
***************************************************************/

.anchor{
  position: absolute;
  visibility: hidden !important;
  height: 0px !important;
  pointer-events: none !important;
  margin-top: -80px !important;
}
@media all and (min-width:768px) {
}
@media all and (max-width:767px) {
  .anchor{
    margin-top: -50px !important;
  }
}




/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
	opacity: 0;
  }
  50% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}

/* main
***************************************************************/
main {
  position: relative;
  display: block;
  overflow: hidden;
  background: url(../img/bg01.jpg) center / 1784px auto repeat;
}

@media all and (min-width:768px){
  main {
/*    min-width: 1200px;*/
  }
  /*body:not(.home) main {
    padding-top: 100px;
  }*/
}


@media all and (max-width:767px) {
	/*main {
    padding-top: 0px;
	}*/
}

/* content
***************************************************************/
.inner{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
  padding-left: calc(2% + 40px);
  padding-right: calc(2% + 40px);
}
.sec{
	padding-top: 7%;
	padding-bottom: 7%;
  position: relative;
}
.white_bg{
  background-color: #fff;
}
.btn01 {
    border: 1px solid #94a7b3;
    background-color: #94a7b3;
    color: #fff;
    font-size: 24px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    position: relative;
    margin-top: 50px;
    opacity: 1;
    transition: .3s ease;
    text-align: center;
    border-radius: 50px;
    padding-right: 0.5em;
}

.btn01::after {
    content: '';
    width: 13px;
    height: 17px;
    position: absolute;
    background: url(../img/btn_arrow.svg) center / contain no-repeat;
    right: 20px;
    top: calc(50% - 8.5px);
    transform: translateX(0);
    transition: .3s ease;
}


/*--------------------PC--------------------*/
@media all and (min-width:768px){

  .inner {
      /*max-width: 1240px;
      padding-left: 20px;
      padding-right: 20px;*/
  }
  /*.scrolled .pagetop_btn:hover {
      opacity: .6;
  }*/
  .btn01:hover {
      background-color: #49718b;
      border-color: #49718b;
  }
  .btn01:hover::after {
      transform: translateX(10px);
  }

  .pagetop_btn:hover{
    background-color: #79CBD6;
  }


}

@media all and (max-width:767px){
  .inner {
      margin-left: 6%;
      margin-right: 6%;
      padding-left: 0;
      padding-right: 0;
      width: auto;
  }
  .sec{
    padding-top: 9%;
    padding-bottom: 9%;
  }
  .btn01 {
      width: 100%;
      max-width: 360px;
      height: 60px;
      margin: 40px auto 0;
      line-height: 60px;
      font-size: 15px;
  }
  .btn01::before {
      top: calc(50% + 1px);
      left: 20px;
  }
}




/* ヘッダーエリア
***************************************************************/
header {
    z-index: 1000 !important;
    position: fixed;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s ease;
    background: url(../img/head_bg.png) center center / auto 100% repeat-x;
}
header .inner {
    width: auto;
/*    max-width: 100%;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
      max-width: 1280px;
      /*padding-left: 20px;
      padding-right: 20px;*/
}


.menu_name {
    font-weight: 500;
    width: 62px;
    display: inline-flex;
    justify-content: center;
    height: 1em;
    font-size: 24px;
    letter-spacing: 0;
    position: absolute;
    left: -60px;
    top: 49%;
    padding-right: 20px;
    transform: translateY(-50%);
}
.menu_name p{
  transition: .26s;
  position: absolute;
}
.menu_name .menu_name_off {
    opacity: 1;
    margin: 0 auto;
    text-align: center;
    display: inline;
    position: absolute;
    width: 100%;
}
.menu_name .menu_name_on{
  opacity: 0;
    margin: 0 auto;
    text-align: center;
    display: inline;
    position: absolute;
    width: 100%;
}

.head .ul1 {
    display: flex;
    height: 100%;
    align-items: center;
}

.head_con_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c30d23;
  position: relative;
  color: #fff;
  font-size: 20px;
  transition: .3s ease;
  padding: 1em 0.7em;
  border-radius: 10px;
  top: 10px;
}
.head_con_contact::after{
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/arrow_r_w.svg) center / contain no-repeat;
  margin-left: 15px;
}

/*--------------------PC--------------------*/


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

  header {
    height: 120px;
    width: 100%;
    position: fixed;
    left: 0;
/*    background: transparent;*/
/*    background: #FAFAFA;*/
    display: flex;
    transition: .3s;
/*    min-width: 1240px;*/
  }
  /*header .inner {
      padding: 0 40px 0 40px;
  }*/
  header .head_body {
    width: 100%;
    height: 100%;
  }
  header .heading_logo {
      /* width: 264px; */
      width: 320px;
      height: auto;
      transition: .3s ease;
      z-index: 1;
      margin-right: 15px;
      flex-shrink: 0;
  }
  header .heading_logo a{
    padding: 0;
  }

  .toggleBtn{
    display: none;
  }
  .gNav {
    opacity: 1;
    pointer-events: initial;
    display: flex;
    justify-content: space-between;
    height: 100%;
    margin-left: auto;
    flex-shrink: 0;
    width: clamp(700px, 67%, 914px);
    font-weight: 500;
  }


  header > .inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      width: 100%;
      position: relative;
      height: 100%;
      transition: .3s ease;
  }
  .ul1 {
    display: flex;
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: 30px;
    width: 100%;
  }
  .ul1 .li1:not(.ul2_in) {
    height: 48px;
    width: 166px;
    width: calc((100% - 250px) / 4);
    font-size: 16px;
    border-right: 1px solid #B2B2B2;
    flex-shrink: 0;
  }
  .ul1 .li1:not(.ul2_in) a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ul1 .li1:not(.ul2_in) a:hover,
  .ul1 .li1:not(.ul2_in) a.active{
    color: #5CBB89;
  }
  .ul1 .li1:not(.ul2_in):nth-child(2){
    border-left: 1px solid #B2B2B2;
  }

  .ul1 .li1.current a{
    color: #5CBB89;
  }


/*  トグル hover*/
  /*.toggleBtn:hover p span::before,
  .toggleBtn:hover p span::after {
      background: #E6372D;
  }
  .toggleBtn:hover .menu_name {
      color: #E6372D;
  }*/
  .head_con_contact:hover{
/*    background-color: #DD730A;*/
  }


}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  header {
    height: 60px;
  }
  header .inner {
      padding: 0;
      margin-left: 16px;
      width: 100%;
  }
  header .heading_logo {
/*    width: clamp(132px, 35.2vw, 190px);*/
    max-width: 132px;
    z-index: 1;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }

  .head_body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .4s ease;
  }

  .navcon_wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 13px;
  }
  .navcon_wrap a + a {
    margin-left: 10px;
  }


  .toggleBtn {
    width: 70px;
    height: 70px;
    right: 70px;
    top: 0;
    padding: 0 20px;
  }

  .toggleBtn p span::before {
      transform: translateY(-5px) rotate(0deg);
  }
  .toggleBtn p span::after {
    transform: translateY(5px) rotate(0deg);
  }

  .head_con_contact span {
      margin-bottom: 9px;
      margin-top: 5px;
  }
  /*.menu_name {
          width: 42px;
          margin: 2px auto 0;
          font-size: 18px;
          margin-top: 0;
          left: -42px;
          padding-right: 10px;
    }*/
 /* body:not(.recruit_relation).open .menu_name {
    color: #fff;
  }
*/
.gNav {
    top: 70px;
    right: 0;
    opacity: 0;
    position: absolute;
    transition: .5s ease;
/*    background: #fff;*/
    background: #FAFAFA;
    display: flex;
    justify-content: space-between;
    max-height: 100vh;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-top: 20px;
    font-weight: 500;
    pointer-events: none;
  }

  .open .gNav {
      opacity: 1;
      pointer-events: initial;
  }



  .head .ul1 {
      flex-direction: column;
  }


  .head li.li1:not(.lang_menu_wrap):not(.menu_img_wrap) {
    width: calc(100% - 60px);
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  .head li.li1:not(.lang_menu_wrap):not(.menu_img_wrap) + li.li1:not(.lang_menu_wrap):not(.menu_img_wrap) {
    border-top: 1px solid #DDDDDD;
  }

  .head li.li1:not(.lang_menu_wrap):not(.menu_img_wrap)::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: #5CBB89;
    display: block;
    margin-right: 14px;
  }

  .lang_menu_wrap {
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 0 30px;
      flex-shrink: 0;
      width: 100%;
      font-weight: 400;
      margin-top: 20px;
      font-size: 14px;
  }
  .lang_menu_wrap .menu_box_pp{
    margin-bottom: 16px;
  }
  .lang_menu_wrap .lang_menu{
    font-size: 13px;
  }
  .lang_menu_wrap .lang_menu .menu_box_jpbtn{
    font-size: 14px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .lang_menu_wrap .lang_menu .menu_box_jpbtn::before{
    content: '▶';
    width: 1em;
    height: 1em;
    font-size: 14px;
    color: #5CBB89;
    margin-right: 5px;
  }

  header .menu_box.menu_box01 {
      font-size: 18px;
      height: 56px;
      display: flex;
      align-items: center;
      width: 100%;
  }
  .head_con_contact {
    right: -6vw;
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 14px;
    top: 0;
  }
  span.menu_img {
      width: 100%;
      display: block;
      padding: 8px;
      margin-top: 20px;
  }

}

























/* mv
***************************************************************/
.mv{
  height: 100vh;
  width: 100%;
  background: url(../img/mv_bg.jpg) center / cover no-repeat;
  padding-top: 120px;
}
.mv .inner{
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    .mv_logo {
        width: clamp(230px, 30vw, 660px);
        /* max-height: 460px; */
/*        max-height: 50%;*/
    }
    .mv_txt01{
      width: clamp(300px, 34vw, 760px);
      margin-top: 4%;
      max-height: 7%;
    }
    .mv_txt02{
      width: clamp(400px, 46vw, 960px);
      margin-top: 2%;
      max-height: 7%;
    }
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .mv{
    height: calc(100vh - 60px);
    padding-top: 60px;
  }
  .mv .inner{
    width: auto;
    .mv_logo {
      width: clamp(300px, 79vw, 420px);
    }
    .mv_txt01{
      width: clamp(324px, 85vw, 453px);
      margin-top: clamp(40px, 12%, 50px);;
    }
    .mv_txt02_a{
      width: clamp(220px, 58vw, 307px);
      margin-top: 2%;
      max-height: 7%;
    }
    .mv_txt02_b{
      width: clamp(231px, 61vw, 323px);
      margin-top: 2%;
      max-height: 7%;
    }
  }

}






/* main
***************************************************************/
.sec_ttl{
  width: calc(100% - 80px);
/*  width: 100%;*/
/*  padding: 28px 20px;*/
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3%;
  margin-left: auto;
  margin-right: auto;
  background: var(--red) url(../img/bg_logo.png) right 25px center / 388px 388px no-repeat;
  img{
    max-height: 112px;
  }
}
.sec01 .sec_ttl img{
  max-height: 154px;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec_ttl{
    width: 88%;
    min-height: 90px;
    background: var(--red) url(../img/bg_logo.png) right -20px center / 42vw 42vw no-repeat;
    img{
      max-height: 56px;
    }
  }
  .sec01 .sec_ttl{
    min-height: 150px;
  }

}




/* sec01
***************************************************************/
.sec01_box01 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1%;
    margin-top: 6%;
     > span{
/*      width: calc((100% - 60px - 3%) / 4 );*/
      width: calc((100% - 3%) / 4 );
     }
}
.txt01 span.bg_line {
  color: var(--red);
  background: linear-gradient(transparent 0%, var(--yellow) 0%);
  padding: 0em 0.2em 0.1em;
  margin-left: 0.2em;
  margin-right: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.txt01 {
    font-size: clamp(20px, 3vw, 60px);
    line-height: 1.74;
    text-align: center;
    font-weight: 700;
    margin-top: 2%;
}
.sec01_ttl02{
  margin-top: 8%;
    img {
      /* max-height: 183px; */
      aspect-ratio: 5.7 / 1;
    }
}
.sec01_box02 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 6%;
     > span{
      width: calc((100% - 10%) / 2 );
     }
}
.sec01_box--arrow{
  width: clamp(120px, 15.5vw, 300px) ;
  margin: 6% auto 7%;
}
.sec01_box03{
  width: 90%;
  margin:0 auto;
   .sec01_box03--img02{
    margin-top: 10%;
    display: block;
   }
   .sec01_box03--img03{
    margin-top: 3%;
    display: block;
   }
   .sec01_box03--img04{
    margin-top: 2%;
    display: block;
   }
   .sec01_box03--img05{
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    display: block;
   }
}
.conv_box01{
  display: flex;
  justify-content: center;
  margin-top: 7%;
}
.conv_box01 a{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  aspect-ratio: 355 / 100;
  width: 100%;
  max-width: 400px;
  padding-bottom: 0.5em;
}
.shiryou_btn{
  background: url(../img/btn_bg01.png) center center / 100% auto no-repeat;
}
.kengaku_btn{
  background: url(../img/btn_bg02.png) center center / 100% auto no-repeat;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .conv_box01 a + a{
    margin-left: 4%;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec01_box01 {
    flex-wrap: wrap;
    gap: 0 1%;
    margin-top: 10%;
     > span{
      width: calc((100% - 3%) / 2 );
    }
  }
  .txt01 {
    font-size: clamp(20px, 5.3vw, 40px);
    line-height: 1.5;
    margin-top: 4%;
  }
  .sec01_ttl02{
    margin-top: 20%;
      img {
        aspect-ratio: 3.5 / 1;
      }
  }
  .sec01_box02 {
    flex-direction: column;
    margin-top: 15%;
     > span{
      width: 75%;
    }
    > span + span{
      width: 100%;
      margin-top: 10%;
    }
  }
  .sec01_box--arrow{
    width: clamp(100px, 20vw, 150px);
    margin: 7% auto 8%;
  }
  .sec01_box03{
    width: 100%;
     .sec01_box03--img03{
      margin-top: 6%;
     }
     .sec01_box03--img04{
      margin-top: 6%;
     }
     .sec01_box03--img05{
      margin-top: 12%;
      width: 100%;
     }
  }

  .conv_box01{
    flex-direction: column;
    align-items: center;
    margin-top: 13.3vw;
  }
  .conv_box01 a{
    font-size: clamp(20px, 5.5vw, 30px);
    width: clamp(300px, 79vw, 400px);
    padding-bottom: 0.5em;
  }
  .conv_box01 a + a{
    margin-top: 7vw;
  }

}




/* sec02
***************************************************************/
.sec02_box01{
  margin-top: 8%;
}

.sec02 .txt02 {
    font-size: clamp(20px, 2.5vw, 60px);
    margin-top: 4%;
}
.sec02_box02{
  display: flex;
  justify-content: space-between;
  margin-top: 6%;
   > span{
    width: 49%;
   }
}
.sec02 .txt03 {
  color: var(--red);
  margin-top: 6%;
}
.sec02_box03{
  margin-top: 15%;
}
.sec02_box04{
  display: flex;
  justify-content: space-between;
  margin-top: 8%;
   > *{
    width: 48.5%;
   }
   p{
    text-align: center;
    font-weight: 700;
    line-height: 1.33;
    font-size: clamp(20px, 2.5vw, 60px);
    margin-top: 4%;
   }
   a{
    cursor: pointer;
   }
}
.sec02_box04--02 span{
  cursor: pointer;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .sec02_box04--02 span{
    opacity: 1;
    transition: .3s;
  }
  .sec02_box04--02:hover span{
    opacity: .7 !important;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec02_box01{
    width: 90%;
    margin: 10% auto 0;
  }

  .sec02 .txt02 {
    font-size: clamp(20px, 5.3vw, 40px);
    line-height: 1.5;
    margin-top: 8%;
  }
  .sec02_box02{
    flex-direction: column;
    margin-top: 10%;
     > span{
      width: 100%;
     }
      > span + span{
      margin-top: 5%;
     }
  }
  .sec02 .txt03 {
    white-space: nowrap;
    margin-top: 8%;
  }
  .sec02_box03{
    width: 90%;
    margin: 15% auto 0;
  }
  .sec02_box04{
    flex-direction: column;
    margin-top: 8%;
     > *{
      width: 100%;
     }
     p{
      line-height: 1.5;
      font-size: clamp(20px, 5.3vw, 40px);
      margin-top: 20px;
     }
  }
  .sec02_box04--02{
    margin-top: 12%;
  }

}




/* sec03
***************************************************************/

.sec03_box01{
  margin-top: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
    >span:nth-child(1) {
      display: flex;
      align-items: center;
      justify-content: center;
      img{
        width: 70%;
      }
    }
    >span:nth-child(odd){
      width: 25%;
    }
    >span:nth-child(even){
      width: 4%;
    }
}
.sec03 .txt01{
  margin-top: 4%;
}
.sec03 .txt01 span{
  color: var(--red);
}
.sec03_box02{
  display: flex;
  justify-content: space-between;
  margin-top: 6%;
   > div{
    width: 48.5%;
     p{
      background-color: var(--red);
      color: var(--white);
      text-align: center;
      height: 18%;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.1;
      font-size: clamp(20px, 2.5vw, 40px);;
      padding-bottom: 0.1em;
     }
   }
}
.sec03_box03{
  width: 70%;
  margin: 15% auto 0;
}
.sec03 .txt02{
  line-height: 1.33;
}
.sec03_box04{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2%;
  margin-top: 6%;
   > span:nth-child(1){
    width: 53%;
   }
   > span:nth-child(n + 2){
    width: 30%;
   }
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec03_box01{
    margin-top: 10%;
    flex-direction: column;
    max-width: 85%;
      >span:nth-child(1) {
        img{
          width: 30%;
        }
      }
      >span:nth-child(odd){
        width: 100%;
      }
      >span:nth-child(even){
        width: 7%;
      }
      >span + span{
        margin-top: 4%;
      }
  }
  .sec03 .txt01{
    margin-top: 8%;
  }
  .sec03_box02{
    flex-direction: column;
    margin-top: 12%;
     > div{
      width: 100%;
       p{
        height: auto;
        line-height: 1.5;
        font-size: clamp(20px, 5.3vw, 40px);
        padding: 0.3em 0;
       }
     }
     > div + div{
      margin-top: 10%;
     }
  }
  .sec03 .txt02{
    font-size: clamp(20px, 5.3vw, 40px);
    white-space: nowrap;
    line-height: 1.5;
  }
  .sec03_box04{
    flex-direction: column;
    gap: initial;
    margin-top: 12%;
     > span:nth-child(1){
      width: 100%;
     }
     > span:nth-child(n + 2){
      width: 100%;
      margin-top: 6%;
     }
  }

}




/* sec04
***************************************************************/
.sec04_box01{
  max-width: 80%;
  margin: 8% auto 0;
}
.sec04_box02{
  max-width: 90%;
  margin: 3% auto 0;
}

.sec04_box03{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 75%;
  gap: 0 2%;
  margin: 6% auto 0;
   > span:nth-child(1){
    width: 33%;
   }
   > span:nth-child(n + 2){
    width: 33%;
   }
}

.sec04_box04{
  margin-top: 8%;
  display: flex;
  justify-content: space-between;
  position: relative;
    h4{
      width: 100%;
      line-height: 1.8;
      background-color: var(--red);
      color: var(--white);
      text-align: center;
      font-size: clamp(20px, 3.2vw, 60px);
      font-weight: 600;
    }
    p{
      font-size: clamp(20px, 2.5vw, 40px);
      line-height: 1.33;
      margin-top: 6%;
    }
}
.sec04_box04--txtbox{
  width: 44%;
}
.sec04_box04--imgbox{
  display: flex;
  width: 54%;
}
.sec04_box04_img01{
  width: 100%;
}
.sec04_box04_img02{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec04_box01{
    max-width: 90%;
    margin: 10% auto 0;
  }
  .sec04_box02{
    margin: 10% auto 0;
  }

  .sec04_box03{
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 0 4%;
    margin: 12% auto 0;
     > span:nth-child(1){
      width: 48%;
     }
     > span:nth-child(n + 2){
      width: 48%;
     }
     > span:last-child{
      width: 48%;
      margin-top: 4%;
     }
  }

  .sec04_box04{
    margin-top: 12%;
    flex-direction:column;
      h4{
        line-height: 2;
        font-size: clamp(25px, 5.9vw, 45px);
      }
      p{
        font-size: clamp(20px, 5.3vw, 40px);
        line-height: 1.5;
        text-align: center;
        margin-top: 6%;
      }
  }
  .sec04_box04--txtbox{
    width: 100%;
  }
  .sec04_box04--imgbox{
    width: 100%;
    margin-top: 6%;
  }
  .sec04_box04_img02{
    left: auto;
    right: -5%;
    bottom: -3%;
    width: 85%;
  }

}




/* sec05
***************************************************************/
.sec05 h3{
  max-width: 78%;
  margin: 8% auto 0;
}
.sec05_box01{
  background-color: var(--white);
  padding: 4% 5%;
  margin-top: 8%;
}
.sec05_box01--box{
  display: flex;
    .sec05_box01_item {
      width: 100%;
        h4{
          display: flex;
          font-size: clamp(20px, 3vw, 60px);
          line-height: 1.33;
          color: var(--red);
          &::before {
            content: '';
            width: 1em;
            height: 1em;
            background: url(../img/sec05_ico.svg) center center / contain no-repeat;
            margin-right: 0.3em;
            bottom: -0.2em;
            position: relative;
          }
        }
        p{
          font-size: clamp(20px, 2.5vw, 40px);
          line-height: 1.33;
          font-weight: 700;
          padding-left: 4vw;
          margin-top: 1%;
        }
        > div{
          display: flex;
          align-items: center;
        }
    }
    .sec05_sns_wrap {
      width: 280px;
        display: flex;
        align-items: center;
        height: 6.3vw;
        margin-left: 5vw;
          a{
            height: 100%;
            flex-shrink: 0;
          }
          a + a{
            margin-left: 6%;
          }
          img {
            width: auto;
            height: 100%;
          }
    }
    & + .sec05_box01--box{
      margin-top: 3%;
    }
}
.sec05 .txt01{
  margin-top: 8%;
}
.sec05 .txt01 span{
  color: var(--white);
  padding: 0em 0.3em 0.1em;
  background: linear-gradient(transparent 0%, var(--red) 0%);
  box-decoration-break: clone;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec05 h3{
    max-width: 100%;
    margin: 10% auto 0;
  }
.sec05_box01{
  background-color: var(--white);
  padding: 5%;
}
.sec05_box01--box{
  display: flex;
    .sec05_box01_item {
      width: 100%;
        h4{
          font-size: clamp(20px, 5.3vw, 40px);
          line-height: 1.5;
          &::before {
            width: 1.3em;
            height: 1.3em;
            position: relative;
            flex-shrink: 0;
          }
        }
        p{
          font-size: clamp(15px, 4vw, 25px);
          line-height: 1.5;
          padding-left: 8.2vw;
          margin-top: 4%;
        }
        > div{
          display: block;
        }

    }
    .sec05_sns_wrap {
        height: 16vw;
        margin-left: 8.2vw;
        margin-top: 5%;
    }
    & + .sec05_box01--box{
      margin-top: 6%;
    }
}

.sec05 .txt01{
  line-height: 2;
}
.sec05 .txt01 span{
  color: var(--white);
  padding: 0em 0.3em 0.1em;
  background: linear-gradient(transparent 0%, var(--red) 0%);
  box-decoration-break: clone;
}


}





/* sec06
***************************************************************/
.sec06_box01{
  display: flex;
  justify-content: space-between;
  margin-top: 8%;
}
.sec06_box01--box{
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}
.sec06_box01--box h3{
  /*  font-size: 40px;*/
  font-size: 3.12vw;
  line-height: 1.5;
  font-weight: 700;
  color: var(--red);
}
.sec06_box01--box p{
  /*  font-size: 30px;*/
  font-size: 2.34vw;
  line-height: 1.33;
  font-weight: 700;
  margin-top: 5.5vw;
}
.sec06_box01 .link_btn {
  width: 86%;
/*  height: 12.1%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c30d23;
  font-size: 2.34vw;
  color: #fff;
  border-radius: 10px;
  transition: .3s ease;
  box-shadow: 0px 5px 0px 0px rgba(46, 46, 47, 1);
  position: relative;
/*  padding-right: 1.95vw;*/
  margin-top: auto;
  padding: 0.85em 1em 0.85em 0;
}
.sec06_box01 .link_btn::after {
  content: '';
  width: 2.35vw;
  height: 2.35vw;
  background: url(../img/arrow_r_w.svg) center / contain no-repeat;
  position: absolute;
  right: 1.17vw;
}
.sec06_box01 .link_btn + .link_btn{
  margin-top: 7.4%;
}

.sec06_box02 h3{
  max-width: 87%;
  margin: 17% auto 0;
}
.sec06_box02 ul{
  margin-top: 9%;
}
.sec06_box02 ul li + li{
  margin-top: 15px;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .sec06_box01 span{
    width: 47%;
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec06_box01{
    /*display: flex;
    justify-content: space-between;*/
    flex-direction: column;
    margin-top: 8%;
  }

  .sec06_box01--box{
  /*  display: flex;*/
    flex-direction: column;
  /*  padding-bottom: 5px;*/
  }
  .sec06_box01--box h3{
    font-size: 6.45vw;
    line-height: 1.4;
    text-align: center;
  }
  .sec06_box01--box p{
    font-size: 5.4vw;
    line-height: 1.5;
    text-align: center;
    margin-top: 3vw;
  }
  .sec06_box01--box span{
    margin-top: 12vw;
  }
.sec06_box01 .link_btn {
  width: clamp(300px, 79vw, 400px);
  font-size: clamp(20px, 5.2vw, 28px);
  border-radius: 5px;
  margin: 13.5vw auto 0;
  padding: 0.95em 1em 0.95em 0;
}
  .sec06_box01 .link_btn::after {
    width: clamp(25px, 6.65vw, 30px);
    height: clamp(25px, 6.65vw, 30px);
    right: clamp(7.5px, 2vw, 10px);
  }
  .sec06_box01 .link_btn + .link_btn{
    margin-top: 8vw;
    margin-top: clamp(30px, 8vw, 40px);
  }

  .sec06_box02 h3{
  /*  max-width: 87%;*/
    margin: 25% auto 0;
  }
  .sec06_box02 ul li + li{
    margin-top: 2.6vw;
  }

}



/* sec07
***************************************************************/
.sec07{
  max-width: 1200px;
  margin: 0 auto;
}
.sec_ttl2{
  display: flex;
}
.sec_ttl2--logo {
  width: 80px;
}
.sec_ttl2--name {
  font-size: 80px;
  font-weight: 700;
  margin-left: 0.5em;
}
.company{
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.11;
  margin-top: 60px;
}
.company dt,
.company dd{
  border-bottom: 2px solid var(--black);
  padding-bottom: 40px;
}
.company dt:not(:first-of-type),
.company dd:not(:first-of-type){
  padding-top: 40px;
}
.company dt{
  width: 25%;
}
.company dd{
  width: 75%;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec_ttl2--logo {
    width: 10.7vw;
  }
  .sec_ttl2--name {
    font-size: 10.7vw;
    margin-left: 0.25em;
  }
  .company{
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.66;
    margin-top: clamp(45px, 12vw, 60px);
  }
  .company dt,
  .company dd{
    border-bottom: 1px solid var(--black);
    padding-bottom: clamp(20px, 5.4vw, 40px);
  }
  .company dt:not(:first-of-type),
  .company dd:not(:first-of-type){
    padding-top: clamp(20px, 5.4vw, 40px);
  }
  .company dt{
    width: 30%;
  }
  .company dd{
    width: 70%;
  }
}


/* form
***************************************************************/
.form{
  max-width: 1200px;
  margin: 0 auto;
}

.form_wrap > p{
  width: 25%;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.11;
  text-align: justify;
}
.form_wrap > div.form_wrap--inner{
  width: calc(100% - 33%);
/*  background-color: var(--white);*/
}
.confirm .form_wrap > div.form_wrap--inner,
.thanks .form_wrap > div.form_wrap--inner {
    margin-left: auto;
    margin-right: auto;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .form_wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .form_wrap > p {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .section {
      margin-top: 30px;
      padding-bottom: 70px;
  }
  .form_wrap > div.form_wrap--inner {
    width: 100%;
  }
}














/* footer
***************************************************************/
.float_btn{
  background-color: #c30d23;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px,11.6vw,220px);
  height: clamp(150px,11.6vw,220px);
  border-radius: 110px;
  position: fixed;
  right: 30px;
  bottom: 20%;
  font-size: clamp(20px,1.4vw,29px);
  line-height: 1.5;
  cursor: pointer;
  transform: translateX(0);
  transition: .3s;
}
.form_in .float_btn{
  transform: translateX(120%);
}

.tottuan_img {
  position: absolute;
  /* pointer-events: none; */
  left: 10%;
  top: -60.2%;
  width: clamp(110px, 8.5vw, 160px);
  height: auto;
  animation: loop_tottuan 4s linear infinite;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, .3));
}

@keyframes loop_tottuan {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100%{
    transform: rotate(5deg);
  }
}


.foot {
  position: relative;
  z-index: 998;
}
.cRight {
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  color: var(--white);
  text-align: center;
  background-color: var(--black);
  display: block;
  padding: 13px 0;
}

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

}



@media all and (max-width:767px) {
  .float_btn {
    width: 100%;
    height: 70px;
    border-radius: initial; 
    position: fixed;
    right: 0; 
    bottom: 0;
    font-size: 20px;
    display: flex;
    padding-left: 20px;
  }
  .tottuan_img {
    left: calc(50% - 9em);
    top: -45px;
    width: 65px;
  }
  .float_btn::after{
    content: '';
    width: 25px;
    height: 25px;
    background: url(../img/arrow_r_w.svg) center / contain no-repeat;
    margin-left: 0.5em;
  }

}
@media all and (max-width:390px) {
  .float_btn {
    padding-left: 20px;
  }

}


/* 一覧に戻るボタン
***************************************************************/

.return_btn {
  background-color: #0080ff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  border-radius: 50px;
  position: relative;
  font-weight: 700;
  z-index: 1;
  font-size: 20px;
  margin-top: 60px;
}
.return_btn img {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: calc(50% - 20px);
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .return_btn{
    width: 220px;
    height: 40px;
    font-size: 16px;
    padding-right: 0.6em;
  }
  .return_btn img {
    width: 20px;
    height: 20px;
    right: 10px;
    top: calc(50% - 10px);
  }

}


/* 共通
***************************************************************/
/*.link_btn{
  display: block;
  width: 264px;
  height: 58px;
  background: #000;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: .3s ease;
  padding-left: 17px;
  padding-right: 13px;
}
.link_btn span{
  z-index: 1;
  position: relative;
}
.link_btn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #E6372D;
  transition: transform ease .3s;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}
.link_btn::after{
  content: '';
  width: 12px;
  height: 19px;
  background: url(../img/common/btn_arrow.svg) center / 100% no-repeat;
  margin-left: auto;
  z-index: 1;
  position: relative;
  transition: .3s ease;
}
*/

/*赤ver*/
/*.link_btn.link_btn_r{
  background: #E6372D;
}
.link_btn.link_btn_r::before {
  background: #fff;
}*/




/*フッター用 アロー無し*/
/*.link_btn.link_btn_02{
  justify-content: center;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}
.link_btn.link_btn_02::before {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
}
.link_btn.link_btn_02::after {
  content: none;
}*/

.sec_ttl > span{
  display: block;
}
.sec_ttl_jp{
  font-size: 18px;
  letter-spacing: -0.1em;
}
.sec_ttl_en{
  font-size: 84px;
  margin-top: 5px;
}
.sec_ttl_txt{
  font-size: 34px;
  line-height: 1.52;
  margin-top: 40px;
}
.sec_lead{
  font-size: 15px;
  line-height: 2.66;
  text-align: justify;
}
.sec_txt15{
  font-size: 15px;
  line-height: 2.4;
  text-align: justify;
}
.sec_txt16{
  font-size: 16px;
  line-height: 2.25;
  text-align: justify;
}


.under_head{
  position: relative;
}
.under_head h1{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}
.under_head .sec_ttl_jp {
    font-size: 28px;
    color: #383838;
    font-weight: 700;
    position: absolute;
/*    top: 50%;*/
    letter-spacing: 0;
    z-index: 1;
    /*left: 50%;
    transform: translateY(-50%);*/
}
.under_head .sec_ttl_en {
    font-size: 168px;
    color: #EAF4F0;
    font-weight: 400;
    margin-top: 0;
}

.under_head_txt{
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-top: 5px;
}
.under_head_mv{
  margin-top: 45px;
}

.under_head2_ttl{
  font-size: 56px;
  text-align: center;
  margin-top: 80px;
}
.under_head2 .under_head_txt{
  margin-top: 55px;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  /*.link_btn:hover::before,
  .link_btn_p:hover .link_btn::before{
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }*/
  /*赤ver*/
  /*.link_btn.link_btn_r:hover::after{
    background: url(../img/common/btn_arrow_r.svg) center / 100% no-repeat;
  }
  .link_btn.link_btn_r:hover{
    transform-origin: 0% 50%;
    transform: scaleX(1);
    color: #E6372D;
  }*/


}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .sec_ttl_jp{
    font-size: 15px;
  }
  .sec_ttl_en{
    font-size: 44px;
  }
  .sec_ttl_txt{
    font-size: 24px;
    margin-top: 20px;
  }
  .sec_lead{
    line-height: 2.13;
  }
  .sec_txt15{
    line-height: 1.86;
  }
  .sec_txt16{
    font-size: 15px;
    line-height: 2;
  }

  /*
  .under_mv_h1 .sec_ttl_en{
    font-size: 52px;
  }*/
  .under_head .sec_ttl_jp {
    font-size: 22px;
    top: 30px;
  }
  .under_head h1 {
      margin-top: 110px;
  }
  .under_head .sec_ttl_en {
    font-size: 100px;
  }
  .under_head_mv{
    width: 100vw;
    margin-top: 35px;
    margin-left: -6vw;
  }

  .under_head2_ttl{
    font-size: 22px;
    margin-top: 135px;
  }
  .under_head2 .under_head_txt{
    margin-top: 45px;
  }

}

/* barAnime
***************************************************************/
.barAnime {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  position: relative;
  z-index: 0;
}
.barAnime::after, .barAnime::before {
  background: #E6372D;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -0.1em;
  /*top: 0;*/
  top: -1px;
  width: calc(100% + 0.1em);
}
.barAnime::after{
  background: #fff;
  /*height: calc(100% + 2px);
  top: -1px;*/
}
.barAnime.scrollin::after, .barAnime.scrollin::before {
  transition: width .4s cubic-bezier(.65,0,.35,1) .4s;
  width: 0;
}
.barAnime.scrollin::after{
  transition-delay: 0s;
}

.barAnime_w{
  display: inline-block;
  transform: translate3d(0, 0, 0);
  position: relative;
  z-index: 0;
}
.barAnime_w:before {
  background: #fff;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -0.1em;
  top: -1px;
  width: calc(100% + 0.1em);
}

.barAnime_w.scrollin::before {
  transition: width .4s cubic-bezier(.65,0,.35,1) .4s;
  width: 0;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .barAnime_w.action.bardelay::before{
    transition-delay: .7s;
  }

  .barAnime.bardelay1::before{
    transition-delay: .65s;
  }
  .barAnime.bardelay1::after{
    transition-delay: .25s;
  }
  .barAnime.bardelay2::before{
    transition-delay: .9s;
  }
  .barAnime.bardelay2::after{
    transition-delay: .5s;
  }
  .barAnime.bardelay3::before{
    transition-delay: 1.15s;
  }
  .barAnime.bardelay3::after{
    transition-delay: 0.75s;
  }
  .barAnime.bardelay4::before{
    transition-delay: 1.4s;
  }
  .barAnime.bardelay4::after{
    transition-delay: 1s;
  }
  .barAnime.bardelay5::before{
    transition-delay: 1.65s;
  }
  .barAnime.bardelay5::after{
    transition-delay: 1.25s;
  }

}


@keyframes passing-bar{
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes passing-txt{
  0% {
        opacity:0;
    }
  50% {
        opacity:0;
    }
  100% {
        opacity:1;
    }
}

/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .barAnime.bardelay1_sp::before{
    transition-delay: .65s;
  }
  .barAnime.bardelay1_sp::after{
    transition-delay: .25s;
  }

}

/* under_mv2 　★★★ go_scrollアリ
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .under_mv2{
    padding: 20px 90px 95px;
    position: relative;
  }
  .under_mv2::after{
    content: '';
    width: 100%;
    height: 410px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    z-index: -1;
  }
  .under_mv2_bg{
    width: 100%;
    height: 624px;
    position: relative;
  }
  .under_mv2_bg .under_mv_h1{
    color: #fff;
    z-index: 1;
    position: relative;
    padding-top: 65px;
  }
  .under_mv2_bg .under_mv_h1 .sec_ttl_jp{
    font-size: 22px;
  }
  .under_mv2_bg .under_mv_h1 .sec_ttl_en{
    font-size: 100px;
  }
  .under_mv2 .go_scroll{
    display: inline-block;
    position: absolute;
    right: 25px;
    bottom: 40px;
    z-index: 2;
    padding: 10px 10px 127px;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: 0.2s;
    overflow: hidden;
  }
  .under_mv2 .go_scroll::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    height: 112px;
    background: #fff;
    -webkit-animation: go_scrollanim 2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: go_scrollanim 2s cubic-bezier(1, 0, 0, 1) infinite;
  }

  @-webkit-keyframes go_scrollanim {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

  @keyframes go_scrollanim {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .under_mv2{
    padding-bottom: 0;
  }
  .under_mv2_img{
    margin-top: 30px;
  }
}





/* menu recruit分　.recruit_relation
***************************************************************/

body.recruit_relation header#head .heading_logo {
  width: auto;
  display: flex;
  align-items: center;
}
body.recruit_relation .menu_list_wrap2 {
    padding: 80px 45px 55px 60px;
}
body.recruit_relation .head_con_wrap{
  z-index: 1;
  transition: .3s;
}
body.recruit_relation.open .head_con_wrap{
  z-index: -1;
}
body.recruit_relation .menu_list_wrap2 .menu_ttl{
  font-size: 18px;
  letter-spacing: 0;
}
body.recruit_relation .menu_list_wrap2 .ul1 {
    /*height: 216px;*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 15px;

    height: 166px;
}
body.recruit_relation .menu_list_wrap2 .ul1 a{
  height: 54px;
  font-size: 18px;
  padding-left: 14px;
  width: 50%;
}
body.recruit_relation .menu_list_wrap2 .ul1 a.menu_box04{
  white-space: nowrap;
}
/*body.recruit_relation .menu_list_wrap2 .ul1 a:nth-child(1) {
    width: 207px;
}*/

body.recruit_relation .gNav {
    /* width: auto; */
    height: auto;
    width: 510px;
}
body.recruit_relation header a.menu_box.menu_box01::after{
  content: none;
}

body.recruit_relation .menu_list_wrap2 .ul1 a{

}
body.recruit_relation .menu_list_wrap2 .ul1 a::before{
    content: '';
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 10px;
    /*margin-right: 7px;*/
    transition: .3s ease;
    position: absolute;
    left: 0;
}

body.recruit_relation .menu_list_wrap2_sub{
  border-top: 2px solid #000;
  display: flex;
  padding-top: 35px;
  margin-top: 25px;
  width: 393px;
}
body.recruit_relation .menu_list_wrap2_sub li a{
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.43;
  display: flex;
  align-items: center;
  height: 100%;
    transform: scale(1.0);
    transition: .3s ease;
}
body.recruit_relation .menu_list_wrap2_sub .insta_btn a::before{
    content: '';
    width: 50px;
    height: 50px;
    background: #000 url(../img/common/insta_ico.svg) center / 21px 21px no-repeat;
    border-radius: 50px;
    display: block;
    margin-right: 10px;
    transition: .3s ease;
}
body.recruit_relation .menu_list_wrap2_sub .mail_btn a::before{
    content: '';
    width: 50px;
    height: 50px;
    background: #E6372D url(../img/common/mail_ico.svg) center / 23px 16px no-repeat;
    border-radius: 50px;
    display: block;
    margin-right: 10px;
    transition: .3s ease;
}



body.recruit_relation .foot_cotent01 {
  align-items: flex-start;
}
body.recruit_relation .foot_nav {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
}
body.recruit_relation .foot_logo_wrap {
    width: 135px;
    margin-right: 125px;
    text-align: center;
}
body.recruit_relation .foot_nav .ul1 li {
}
body.recruit_relation .foot_nav .ul1 li a {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: 255px;
  height: 38px;
  margin-top: 15px;
}
body.recruit_relation .foot_nav .ul1 a::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 10px;
    margin-right: 7px;
    transition: .3s ease;
}

body.recruit_relation .foot_nav_sns{
  display: flex;
  flex-direction: column;
}
body.recruit_relation .foot_nav_sns li a{
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.43;
  display: flex;
  align-items: center;
  height: 100%;
    transform: scale(1.0);
    transition: .3s ease;
    color: #fff;
}
body.recruit_relation .foot_nav_sns .insta_btn a::before{
    content: '';
    width: 50px;
    height: 50px;
    background: #fff url(../img/common/insta_ico_b.svg) center / 21px 21px no-repeat;
    border-radius: 50px;
    display: block;
    margin-right: 10px;
    transition: .3s ease;
}
body.recruit_relation .foot_nav_sns .mail_btn a::before{
    content: '';
    width: 50px;
    height: 50px;
    background: #E6372D url(../img/common/mail_ico.svg) center / 23px 16px no-repeat;
    border-radius: 50px;
    display: block;
    margin-right: 10px;
    transition: .3s ease;
}


body.recruit_relation .foot_under_wrap{
  display: flex;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 2px solid #333333;
}
body.recruit_relation .cRight {
    margin-top: auto;
    margin-left: auto;
    position: relative;
    display: block;
}
body.recruit_relation .corpo_link{
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  position: relative;
}
body.recruit_relation .corpo_link::before {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -8px;
    position: absolute;
    display: block;
    background-color: #fff;
    transition: .3s ease;
}
body.recruit_relation .corpo_link::after{
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/common/out_link.svg) center / 12px 12px no-repeat;
    display: block;
    margin-left: 15px;
    transition: .3s ease;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px){

  body.recruit_relation .barl.heading_logo--txt {
    font-size: 18px;
    margin-left: 20px;
    letter-spacing: 0;
  }
  /*body.recruit_relation .menu_list_wrap2 .ul1 a:hover::before{
      background: #E6372D;
  }*/

  body.recruit_relation .menu_list_wrap2 .ul1 a:hover::before{
    background-color: #E6372D;
  }
  body.recruit_relation .menu_list_wrap2_sub li a:hover{
      color: #E6372D;
  }
  body.recruit_relation .menu_list_wrap2_sub li a:hover::before{
    transform: scale(1.1);
  }
  body.recruit_relation .menu_list_wrap2_sub li + li{
    margin-left: 30px;
  }
  body.recruit_relation .head_con_wrap {
    right: 195px;
    top: 27px;
    width: auto;
    height: auto;
  }
  body.recruit_relation .head_con_wrap a{
    width: 138px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
  }
  body.recruit_relation .head_con_wrap a.head_con_wrap--contact--shinsotsu{
    background-color: #E6372D;
  }
  body.recruit_relation .head_con_wrap a.head_con_wrap--contact--shinsotsu:hover{
    background-color: #fff;
    color: #E6372D;
  }
  body.recruit_relation .head_con_wrap a.head_con_wrap--contact--chuuto{
    background-color: #000;
  }
  body.recruit_relation .head_con_wrap a.head_con_wrap--contact--chuuto:hover{
    background-color: #fff;
    color: #E6372D;
  }
  body.recruit_relation .foot_nav {
      height: 210px;
      width: 471px;
      margin-right: auto;
  }
  body.recruit_relation .foot_nav .ul1 a:hover::before{
    background-color: #E6372D;
  }
  body.recruit_relation .foot_nav .ul1 a:nth-child(1),
  body.recruit_relation .foot_nav .ul1 a:nth-child(5)  {
    margin-top: 0;
  }
  body.recruit_relation .foot_nav .ul1 a:nth-child(4) {
    width: 325px;
  }
  body.recruit_relation .foot_nav .ul1 a:nth-child(5),
  body.recruit_relation .foot_nav .ul1 a:nth-child(6),
  body.recruit_relation .foot_nav .ul1 a:nth-child(7){
    margin-left: -60px;
  }
  body.recruit_relation .foot_nav ul li {
    height: 210px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }



  body.recruit_relation .foot_nav_sns li a:hover{
      color: #E6372D;
  }
  body.recruit_relation .foot_nav_sns li a:hover::before{
    transform: scale(1.1);
  }
  body.recruit_relation .foot_nav_sns li + li{
    margin-top: 30px;
  }
  body.recruit_relation .foot .barl.heading_logo--txt {
      font-size: 20px;
      margin-left: auto;
      letter-spacing: 0;
      margin-top: 20px;
      display: block;
  }

  body.recruit_relation .corpo_link:hover{
    color: #E6372D;
  }
  body.recruit_relation .corpo_link:hover::before {
      background-color: #E6372D;
  }
  body.recruit_relation .corpo_link:hover::after{
      background: url(../img/common/out_link_r.svg) center / 12px 12px no-repeat;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
      body.recruit_relation .head_confix_wrap {
    transition: transform 0.3s ease;
    bottom: -100px;
  }

    body.recruit_relation .head_confix_wrap.slide-out {
    transform: translateY(-100px);
  }

    body.recruit_relation .head_confix_wrap.slide-in {
    transform: translateY(0);
  }

body.recruit_relation header#head .heading_logo {
    max-width: 219px;
    padding-bottom: 0;
}
body.recruit_relation header#head .heading_logo a {
    max-width: 136px;
}
body.recruit_relation header#head span.barl.heading_logo--txt {
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
    letter-spacing: 0;
}
  body.recruit_relation .gNav {
    height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 0;
  }
  body.recruit_relation header .menu_box.menu_box01 {
        color: #000;
        font-weight: 700;
  }
  body.recruit_relation .menu_list_wrap2 {
    padding: 0;
    width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
  body.recruit_relation .menu_list_wrap2 .ul1 {
    height: auto;
    margin-top: 0;
    align-items: flex-start;
  }
  body.recruit_relation .menu_list_wrap2 .ul1 a::before {
      margin-right: 10px;
  }
  body.recruit_relation .menu_list_wrap2_sub {
    border-top: 2px solid #000;
    display: flex;
    padding-top: 35px;
    margin-top: 25px;
    flex-direction: column;
    padding-left: 3px;
  }
  body.recruit_relation .menu_list_wrap2_sub li a {
    font-size: 16px;
  }
  body.recruit_relation .menu_list_wrap2_sub li + li{
    margin-top: 17px;
  }
  body.recruit_relation .menu_list_wrap2_sub .insta_btn a::before {
    width: 40px;
    height: 40px;
    background: #000 url(../img/common/insta_ico.svg) center / 16px 16px no-repeat;
  }
  body.recruit_relation .menu_list_wrap2_sub .mail_btn a::before {
    width: 40px;
    height: 40px;
    background: #E6372D url(../img/common/mail_ico.svg) center / 18px 12px no-repeat;
  }
  body.recruit_relation .menu_list_wrap2_inner {
    padding: 80px 0;
  }
  body.recruit_relation.open header .head_confix_wrap {
    opacity: 0;
    pointer-events: none;
  }
  body.recruit_relation .foot {
      padding-bottom: 105px;
  }
  body.recruit_relation .foot_cotent01 {
      flex-direction: row;
  }
  body.recruit_relation .foot_cotent {
    width: 320px;
    margin: 0 auto;
  }
  body.recruit_relation .foot_under_wrap {
    padding-top: 0px;
    margin-top: 35px;
    border-top: none;
    text-align: center;
  }
  body.recruit_relation .cRight {
    margin-right: auto;
  }
  body.recruit_relation .foot_logo_wrap {
    width: 105px;
    margin-right: auto;
  }
  body.recruit_relation .foot .barl.heading_logo--txt {
      font-size: 16px;
      letter-spacing: -0.025em;
      margin-top: 15px;
      display: block;
  }
  body.recruit_relation .foot_nav_sns {
    height: 138px;
  }
  body.recruit_relation .foot_nav_sns li a {
    font-size: 16px;
    letter-spacing: -0.025em;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
  }
  body.recruit_relation .foot_nav_sns .insta_btn a::before {
    width: 38px;
    height: 38px;
    background: #fff url(../img/common/insta_ico_b.svg) center / 15px 15px no-repeat;
    margin-right: 8px;
  }
  body.recruit_relation .foot_nav_sns .mail_btn a::before {
    width: 38px;
    height: 38px;
    background: #E6372D url(../img/common/mail_ico.svg) center / 17px 12px no-repeat;
    margin-right: 8px;
  }
  body.recruit_relation .foot_nav_sns li + li{
    margin-top: 19px;
  }
  body.recruit_relation .foot_nav_sns li a.corpo_link {
    font-size: 14px;
    letter-spacing: 0;
  }
  body.recruit_relation .foot_nav_sns li:nth-child(3) {
    margin-top: auto;
  }
  body.recruit_relation .corpo_link::after {
    margin-left: auto;
  }
}


/* con_btn
***************************************************************/
.con_btn{
  width: 504px;
  height: 98px;
  background-color: #E0A039;
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 95px;
}
.con_btn::after{
  content: '';
  width: 24px;
  height: 27px;
  background: url(../img/common/arrow_w.svg) center / contain no-repeat;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
}

.btn_w{
  background-color: #fff;
  border: 2px solid #5CBB89;
  color: #5CBB89;
}
.btn_w::after{
  background: url(../img/common/arrow_g.svg) center / contain no-repeat;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .con_btn:hover{
    background-color: #DD730A;
  }
  .btn_w:hover{
    background-color: #5CBB89;
    color: #fff;
  }
  .btn_w:hover::after{
    background: url(../img/common/arrow_w.svg) center / contain no-repeat;
  }

}

/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .con_btn{
    width: 247px;
    height: 58px;
    font-size: 16px;
    line-height: 1.25;
    padding-left: 15px;
    margin-top: 35px;
  }
  .con_btn::after{
    width: 19px;
    height: 21px;
    right: 17px;
  }

}


/* content_ttl_wrap
***************************************************************/
.content_ttl{
  display: flex;
  align-items: center;
  position: relative;
}
.content_ttl::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #5CBB89;
  margin: 0px 1.25em 0 0;
  flex-shrink: 0;
}
.content_ttl span{
  font-size: 28px;
  color: #5CBB89;
  display: flex;
  align-items: center;
  padding-top: 6px;
  margin-right: 0.75em;
}
.content_ttl h2{
  font-size: 28px;
}
.content_txt{
  font-size: 16px;
  line-height: 1.63;
  margin-left: 65px;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .content_ttl_wrap{
    display: flex;
    align-items: center;
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .content_ttl::before {
    margin: 0px 1em 0 0;
  }
  .content_ttl h2{
    font-size: 24px;
  }
  .content_txt{
    font-size: 15px;
    line-height: 1.73;
    margin-left: 0;
    margin-top: 20px;
  }

}







/* フェード
***************************************************************/

/*.action.up.scrollin,
.action.left.scrollin,
.action.right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.action.mv_up.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}*/

@media all and (min-width: 768px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 100px);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.right {
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.mv_up{
    opacity: 0;
    transform: translateY(30px);
  }
  .action3.mv_up{
    opacity: 0;
    transform: translateY(30px);
  }

  .loadend .action.mv_up.scrollin{
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 1200ms,transform 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 600ms;
  }
  .loadend .action.mv_fade.scrollin{
    opacity: 1;
  }
  .loadend .action3.mv_up.scrollin{
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 1200ms,transform 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 600ms;
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }

  .action.fade {
    opacity: 0;
    transition: opacity 1000ms ease 0.5s;
  }
  .action.fade.scrollin{
      opacity: 1;
  }
  .action.delay1 {
    transition: opacity 1000ms ease 0.5s, transform 1000ms ease 0.5s;
  }
  .action.delay2 {
    transition: opacity 1000ms ease 0.75s, transform 1000ms ease 0.75s;
  }
  .action.delay3 {
  transition: opacity 1000ms ease 1s, transform 1000ms ease 1s;
  }
  .action.delay4 {
  transition: opacity 1000ms ease 1.25s, transform 1000ms ease 1.25s;
  }
  .action.delay5 {
  transition: opacity 1000ms ease 1.5s, transform 1000ms ease 1.5s;
  }

  @keyframes blur {
    0% {
      opacity: 0;
      -ms-filter: blur(6px);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      -ms-filter: blur(0);
      filter: blur(0);
    }
  }
  .blur {
    opacity: 0;
  }
  .scrollin.blur {
    animation: blur 1s ease-in-out 0.2s forwards;
  }
  .scrollin.blur.delay1 {
    animation: blur 1s ease-in-out 0.7s forwards;
  }
  .scrollin.blur.delay2 {
    animation: blur 1s ease-in-out 1.2s forwards;
  }
  .scrollin.blur.delay3 {
    animation: blur 1s ease-in-out 1.7s forwards;
  }
  .scrollin.blur.delay4 {
    animation: blur 1s ease-in-out 2.2s forwards;
  }
  .scrollin.blur.delay5 {
    animation: blur 1s ease-in-out 2.7s forwards;
  }
  .scrollin.blur.delay6 {
    animation: blur 1s ease-in-out 3.2s forwards;
  }
  .scrollin.blur.delay7 {
    animation: blur 1s ease-in-out 3.7s forwards;
  }
  .scrollin.blur.delay8 {
    animation: blur 1s ease-in-out 4.2s forwards;
  }
  .scrollin.blur.delay9 {
    animation: blur 1s ease-in-out 4.7s forwards;
  }
  .scrollin.blur.delay10 {
    animation: blur 1s ease-in-out 5.2s forwards;
  }
}

@media all and (max-width: 767px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }



  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
  .action.fade_sp {
    opacity: 0;
    transition: opacity 1000ms ease 0.5s;
  }
  .action.fade_sp.scrollin{
      opacity: 1;
  }
  .action.delay1_sp {
    transition: opacity 750ms ease 0.5s, transform 750ms ease 0.5s;
  }
  .action.delay2_sp {
    transition: opacity 750ms ease 0.75s, transform 750ms ease 0.75s;
  }
  .action.delay3_sp {
  transition: opacity 750ms ease 1s, transform 750ms ease 1s;
  }
  .action.delay4_sp {
  transition: opacity 750ms ease 1.25s, transform 750ms ease 1.25s;
  }
  .action.delay5_sp {
  transition: opacity 750ms ease 1.5s, transform 750ms ease 1.5s;
  }

  @keyframes blur {
    0% {
      opacity: 0;
      -ms-filter: blur(6px);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      -ms-filter: blur(0);
      filter: blur(0);
    }
  }
  .blur_sp {
    opacity: 0;
  }
  .scrollin.blur_sp {
    animation: blur 0.75s ease-in-out 0.2s forwards;
  }
  .scrollin.blur_sp.delay1_sp {
    animation: blur 0.75s ease-in-out 0.7s forwards;
  }
  .scrollin.blur_sp.delay2_sp {
    animation: blur 0.75s ease-in-out 1.2s forwards;
  }
  .scrollin.blur_sp.delay3_sp {
    animation: blur 0.75s ease-in-out 1.7s forwards;
  }
  .scrollin.blur_sp.delay4_sp {
    animation: blur 0.75s ease-in-out 2.2s forwards;
  }
  .scrollin.blur_sp.delay5_sp {
    animation: blur 0.75s ease-in-out 2.7s forwards;
  }
  .scrollin.blur_sp.delay6_sp {
    animation: blur 0.75s ease-in-out 3.2s forwards;
  }
  .scrollin.blur_sp.delay7_sp {
    animation: blur 0.75s ease-in-out 3.7s forwards;
  }
  .scrollin.blur_sp.delay8_sp {
    animation: blur 0.75s ease-in-out 4.2s forwards;
  }
  .scrollin.blur_sp.delay9_sp {
    animation: blur 0.75s ease-in-out 4.7s forwards;
  }
  .scrollin.blur_sp.delay10_sp {
    animation: blur 0.75s ease-in-out 5.2s forwards;
  }
}




/* aaa
***************************************************************/
.wrap_wrap{
  display: none;
}
.formContent{
  border-bottom: 2px solid var(--black);
  padding-bottom: 1em;
  margin-bottom: 1.4em;
}
.formContent:not(.radioForm) .formContent--content {
    display: flex;
    flex-direction: column;
}

.formContent--ttl {
    font-size: 18px;
    font-weight: 700;
}
.formContent--content {
    margin-top: 0.7em;
    font-size: 18px;
    font-weight: 400;
}
.formContent--content label {
    display: inline-flex;
    align-items: center;
}
.formContent--content label + label {
  margin-left: 0.6em;
}
span.error{
  color: red;
  margin-top: 0.4em;
  display: block;
  font-size: 17px;
}
input, select {
    font-size: 18px;
    padding: 0.5em;
    border: none;
    border-radius: 0;
}
textarea {
    font-size: 18px;
    line-height: 1.6;
    padding: 0.5em;
    border: none;
    border-radius: 0;
}
::placeholder {
  color: #aaa;
}
.requ {
    background-color: var(--red);
    color: #fff;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3em 1em;
    font-size: 14px;
    margin-left: 0.8em;
    border-radius: 3px;
}
.pp_wrap{
  background-color: #fff;
  padding: 30px;
}
.pp_txt{
  font-size: 15px;
  text-align: center;
}
.pp_inner{
  font-size: 14px;
  height: 100px;
  overflow-y: scroll;
  line-height: 1.6;
  margin-top: 2em;
}

.submit_wrap{
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit_wrap button {
    color: #fff;
    background-color: var(--red);
    cursor: pointer;
    border: none;
    width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    transition: .3s;
  opacity: 1;
}
.confirm .textareaForm .formContent--content{
  line-height: 1.6;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .submit_wrap button:hover {
    opacity: .7;
  }
  .submit_wrap .back_btn{
    margin-left:30px;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .formContent--content {
    font-size: 16px;
  }
  .formContent--ttl {
    font-size: 16px;
    font-weight: 600;
  }
  input, select {
    font-size: 16px;
  }
  .requ {
    padding: 0.3em 0.8em;
    font-size: 13px;
  }
  .submit_wrap button {
    width: 280px;
    height: 70px;
    font-size: 18px;
  }
  .submit_wrap {
    margin-top: 30px;
    flex-direction: column;
  }
  span.next_btn {
    order: 2;
    margin-top: 20px;
  }
}





/* thanks
***************************************************************/
.thanks #content h2{
  font-size: 32px;
}
.thanks #content p{
  font-size: 18px;
  line-height: 1.6;
}
.thanks #content h2 + p{
  margin-top: 2em;
}
.thanks #content p + p{
  margin-top: 1.4em;
}
.thanks #content p:has(a){
  margin-top: 1em;
}
.thanks .back_top{
  font-weight: 700;
  font-size: 20px;
  margin-top: 30px;
  display: block;
}
/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .thanks .section {
      padding-bottom: 20px;
  }
  .thanks #content h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .thanks #content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .thanks .back_top {
    font-size: 18px;
    margin-top: -20px;
  }
}


/* aaa
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
}





