@charset 'utf-8';

html, body {
  width: 100%;
  min-width: 1080px;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}
body {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  background: #000;
}
.navblock {display: none;}
.list {
  scroll-target-group: auto;
  display: grid;
  gap: 12px;
  a:target-before {
    color: #000;
  }
  a:target-current {
    color: #fff;
    background: #000;
    border-bottom: 4px solid #EB4827;
  }
  .navFirst a:target-current:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .navEnd a:target-current:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  a:target-after {
    color: #000;
  }
}

/* bg-movie */

.main-block {
  position: absolute;
  z-index: -999;
}
.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}
.bg {
  background: #EB4827;
  width: 100%;
  height: 100vh;
}
.text-box {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 960px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* header */

header {
  background-size: 263px;
  min-width: 1080px;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10;
}
h1 {
  width: 282px;
  position: absolute;
  padding: 0;
  text-align: center;
  margin: 0;
  top: 32%;
  left: 2%;
  z-index: 5;
}
h1 img {width: 100%;}
h1 img a:hover {opacity: 0.7;}
h2 {
  margin: auto;
  width: 100%;
  z-index: 3;
}
h2 img {width: 100%;}
h3 {
  font-size: 120px;
  line-height: 120px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 10px;
  color: #EB4827;
}
.h3_txt {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #EB4827;
}
h4 {
  font-size: 60px;
  line-height: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  margin: 100px 0 10px;
  color: #fff;
}
.h4_txt {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #fff;
}
.main_ttl {
  margin: 20px auto 0;
  width: 90%;
}
.main_ttl img {
  text-align: center;
  width: 100%;
}
.date {
  margin: 40px auto 0;
  width: 60%;
}
.date img {
  text-align: center;
  width: 100%;
}
.produce {
  margin: 4% auto 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.produce_txt {
  font-size: 16px;
  line-height: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
}
.produce_logo {
  width: 16%;
}
.produce_img {
  width: 100%;
}
.read-txt {
  font-size: 24px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  padding: 0 0 4px;
  color: #000;
}
.read-txt02 {
  font-size: 38px;
  line-height: 66px;
  text-align: center;
  font-weight: 800;
}
.line {
  display: inline-block;
  border-bottom: 1px solid #fff;
}
.line02 {
  display: inline-block;
  border-bottom: 1px solid #EB4827;
}

/* base */

.fadein {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 800ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.progress-bar {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.progress-bar-inner {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}
.bar {
  width: 100%;
  height: 4px;
  background: #EB4827;
  animation: loading 3s infinite;
  z-index: 9999;
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* スクロールダウンの位置 */

.scroll {
  color: #000;
  position: absolute;
  left: 5%;
  bottom: 10%;
  writing-mode: vertical-rl;
  font-weight: 700;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

/* 線のアニメーション部分 */

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
p {
  text-align: left;
  margin: 0;
  font-weight: 400;
}
.copy {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: fixed;
  right: 1%;
  bottom: 2%;
  writing-mode: vertical-lr;
  z-index: 5;
}
#bnr {
  margin: 0 auto;
  background: #000;
  padding: 30px 0;
  position: relative;
  width: 100%;
}
.bnr-inner {
  display: flex;
  width: 1240px;
  margin: auto;
}
.bnr-img {margin-right: 8px;}
.bnr-img:last-child {margin-right: 0;}
.bnr-img:hover {opacity: 0.8;}
.bnr-img img {width: 100%;}
#about, #message, #experience, #program, #flow, #overview, #message_ft {
  padding: 190px 20px;
  opacity: 1;
}
#fotter{padding: 80px 40px 0;}
#member {
  padding: 160px 40px;
  opacity: 1;
}
#message_ft {text-align: center;}
#target {
  padding: 160px 0 0;
  opacity: 1;
}
#about, #experience, #overview, #message_ft, #target { background: rgba(235, 72, 39, 0.9); }
#message, #program, #flow, #member, #fotter { background: rgba(0, 0, 0, 0.9); }
#about h3, #about .h3_txt, #experience h3, #experience .h3_txt, #overview h3, #overview .h3_txt, #target h3, #target .h3_txt { color: #000; }
.point { color: #EB4827; }
#about .point, #message_ft .point { color: #fff; }
#about .read-txt02, #message .read-txt, #message_ft .read-txt { color: #fff; }
#message .read-txt02, #target .read-txt02 { color: #EB4827; }
#message .read-txt02{ font-size: 52px; }
.message_list {
  margin: 40px auto 30px;
  width: 60%;
}
.message_list_txt {
  color: #EB4827;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  background: #0E0E0E;
  width: 100%;
  margin: 0px auto 2px;
  padding: 20px 10px;
  border-radius: 6px;
}
.message_ft_txt{
  font-size: 24px;
  line-height: 54px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

/* btn */

.btn-entry {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 320px;
  position: fixed;
  bottom: 2%;
  right: 4%;
  z-index: 5;
}
.btn-entry a {
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 0;
  padding: 0.8em 0;
  border: none;
  color: #EB4827;
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 83.333% */
  background: transparent;
  position: relative;
  display: inline-block;
}
.ico-entry {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.btn-entry a svg, .btn-entry a:link svg { fill: #EB4827; }
.btn-entry a:hover svg { fill: #fff; }
.btn-entry a:before {
  border-radius: 8px;
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  margin: auto;
}
.btn-entry a:hover {
  background: #EB4827;
  border-radius: 8px;
  color: #fff;
}
.entry-en {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.entry-jp {
  text-align: center;
  font-size: 11px;
  line-height: 12px;
  padding-top: 5px;
  font-weight: 700;
}
.btn-entry-fotter {
  border-radius: 8px;
  background: #EB4827;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 840px;
  margin: 80px auto 0;
}
.btn-entry-fotter a {
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 0;
  padding: 1em 0;
  border: none;
  color: #fff;
  text-align: center;
  font-family: Outfit;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  /* 83.333% */
  background: transparent;
  position: relative;
  display: inline-block;
}
.ico-entry-fotter {
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
}
.btn-entry-fotter a svg, .btn-entry-fotter a:link svg { fill: #fff; }
.btn-entry-fotter a:hover svg { fill: #EB4827; }
.btn-entry-fotter a:before {
  border-radius: 8px;
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  margin: auto;
}
.btn-entry-fotter a:hover {
  background: #fff;
  border-radius: 8px;
  color: #EB4827;
}
.entry-en-fotter {
  text-align: center;
  font-size: 46px;
  line-height: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.entry-jp-fotter {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  padding-top: 10px;
  font-weight: 700;
}
.logo-footer { width: 100%; }
.logo-footer img {
  width: 90%;
  margin-top: 160px;
}
/* EXPERIENCE */
.experience_block {
  width: 960px;
  background: #0E0E0E;
  border-radius: 10px;
  display: flex;
  margin: 0 auto 10px;
}
.experience_left {
  color: #EB4827;
  text-align: center;
  padding: 30px 10px;
  width: 130px;
}
.experience_right {
  padding-left: 30px;
  border-left: solid 2px #000;
  padding: 30px;
}
.experience_ttl {
  color: #EB4827;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px; /* 133.333% */
  margin-bottom: 15px;
}
.experience_txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.experience_point, .experience_num {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}
.experience_point {
  font-size: 23px;
  line-height: 30px;
  font-weight: 300;
}
.experience_num {
  font-size: 80px;
  line-height: 80px;
  font-weight: 100;
  width: 130px;
}

/* PROGRAM */

.program_block {
  width: 1240px;
  border-radius: 10px;
  display: flex;
  margin: 0 auto 10px;
  display: flex;
}
.program_block:last-child{ margin: 0 auto 0; }
.program_group {
  width: 100%;
  background: #252525;
  border-radius: 10px;
  margin: 0 10px 0 0;
  padding: 30px 0;
}
.program_group:last-child{ margin: 0; }
.program_ttl {
  color: #EB4827;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  border-bottom: solid 1px #EB4827;
}
.program_txt {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
  padding: 0 20px;
}

/* TARGET */

#target .read-txt { color: #fff; }
#target .read-txt02 {
  color: #fff;
  margin-bottom: 30px;
}
.img_target, .img_target img {
  width: 100%;
  margin-top: 80px;
}

/* FLOW */

.flow_block {
  width: 1240px;
  display: flex;
  margin: 0 auto 10px;
  display: flex;
}
.flow_group {
  width: 100%;
  background: #252525;
  border-radius: 10px;
  margin: 0 10px 0 0;
  padding: 50px 0 30px;
  position: relative;
}
.flow_group:last-child{ margin: 0; }
.flow-day {
  color: #EB4827;
  position: absolute;
  text-align: center;
  top: -20px;
  left: 0;
  width: 100%;
  font-size: 43px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
.flow-day-num {
  font-size: 64px;
  font-weight: 600;
  padding-left: 10px;
}
.flow_ttl {
  color: #EB4827;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;/* 105% */
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: solid 1px #EB4827;
}
.flow_txt {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  /* 130% */
  text-align: center;
  padding: 0 20px;
}
.flow_txt02 {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  /* 171.429% */
  margin: auto;
  width: 90%;
}
.flow_list { margin: 20px auto 20px; }
.flow_list_txt {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  background: #000;
  width: 90%;
  margin: 0 auto 2px;
  padding: 5px 0;
}
.triangle01, .triangle02 {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #EB4827;
  border-right: 0;
  position: absolute;
  z-index: 999;
  top: 10.5%;
}
.triangle01 { left: 32%; }
.triangle02 { left: 98%; }

/* OVERVIEW */

.overview_block {
  width: 960px;
  margin: 0 auto 40px;
}
.overview_group {
  display: flex;
  margin-bottom: 2px;
  justify-content: center;
  align-items: center;
  background: #0E0E0E;
}
.overview_ttl {
  color: #EB4827;
  font-size: 18px;
  font-weight: 900;
  line-height: 40px;
  word-wrap: break-word;
  width: 20%;
  text-align: center;
  padding: 30px 10px;
  background: #0E0E0E;
}
.overview_txt {
  background: #fff;
  color: #000;
  width: 80%;
  padding: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  word-wrap: break-word;
}
.chusyaku { font-size: 12px; }
.benefits_ttl {
  display: flex;
  color: #EB4827;
  font-size: 40px;
  font-weight: 900;
  line-height: 42px; /* 105% */
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: solid 1px #EB4827;
  justify-content: center;
  align-items: center;
}
.benefits_ls {
  display: flex;
  text-align: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 50px;
  padding-top: 5px;
}
.benefits_small {
  font-size: 30px;
  line-height: 60px;
}
.benefits_small02 {
  font-size: 30px;
  line-height: 50px;
  padding-bottom: 10px;
}
.benefits_block {
  width: 1240px;
  border-radius: 10px;
  display: flex;
  margin: 0 auto 10px;
}
.benefits_block :last-child{ margin-bottom: 0; }
.benefits_group {
  width: 49%;
  background: #0E0E0E;
  border-radius: 10px;
  margin-right: 10px;
  padding: 10px 0 30px;
}
.benefits_group02 {
  width: 100%;
  background: #0E0E0E;
  border-radius: 10px;
  margin: auto;
  padding: 10px 0 30px;
}
.benefits_group:last-child{ margin-right: 0; }
.benefits_txt {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
  padding: 0 20px;
}
.benefits_sub { text-align: center; }
.benefits_sub-inner {
  background: #EB4827;
  border-radius: 100px;
  color: #0E0E0E;
  padding: 2px 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
}
.benefits_details {
  text-align: center;
  line-height: 50px;
}
.benefits_left {
  width: 28px;
  margin-right: 10px;
}
.benefits_right {
  width: 28px;
  margin-left: 10px;
}

/* MEMBER */

.member_block_top {
  width: 1080px;
  display: flex;
  margin: 0 auto 10px;
}
.member_img_top {
  width: 17%;
  margin-bottom: 30px;
}
.member_img_top img { width: 100%; }
.member_txt_box_top{
  margin-left: 3%;
  width: 80%;
}
.member_group_top {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
}
.member_block {
  width: 1240px;
  display: flex;
  margin: 0 auto 10px;
}
.member_group {
  width: 48%;
  margin: 0 auto 30px;
  display: flex;
}
.member_img {
  width: 27%;
  margin-bottom: 30px;
}
.member_img img {
  width: 100%;
}
.member_txt_box{
  margin-left: 3%;
  width: 70%;
}
.member_ttl {
  color: #EB4827;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 2px;
  font-weight: 600;
}
.member_ttl02 {
  color: #EB4827;
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 5px;
  font-weight: 600;
}
.member_name {
  color: #fff;
  font-size: 27px;
  line-height: 27px;
  font-weight: 600;
}
.member_txt {
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
}
.member_name_en_group {
  display: flex;
  margin-bottom: 6px;
}
.member_name_en {
  line-height: 35px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  padding-left: 0;
  margin-left: 10px;
}
.nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.nav .group {
  position: relative;
  width: 188px;
  height: 188px;
  color: #fff;
}
.nav .overlap-group, .nav .overlap-group02 {
  position: relative;
  width: 188px;
  height: 188px;
  background-color: #000;
  border: 1px solid;
  border-color: #fff;
}
.nav .arrow-drop-right {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 145px;
  left: 81px;
  transform: rotate(90.00deg);
}
.nav .vector {
  position: absolute;
  width: 8px;
  height: 6px;
  top: 9px;
  left: 8px;
  transform: rotate(-90.00deg);
}
.nav .overlap-wrapper {
  margin-right: -2.00px;
  position: relative;
  width: 190px;
  height: 188px;
}
.nav .text-wrapper, .nav .text-wrapper-2, .nav .text-wrapper-3 {
  line-height: 24px;
  white-space: nowrap;
  width: 100%;
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
}
.nav .text-wrapper { top: 80px; }
.nav .text-wrapper-2 { top: 60px; }
.nav .text-wrapper-3 { top: 50px; }
.nav .group .overlap-group:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.nav .group .overlap-group:before {
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 20px;
  right: 48%;
  margin: auto;
}
.nav .group .overlap-group:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group:hover::before {
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
}
.nav .group .overlap-group02:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group02:hover::before {
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
}
.nav .group .overlap-group02:before {
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 20px;
  right: 48%;
  margin: auto;
}
.nav .group .overlap-group02:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group02:hover::before {
  border-bottom: solid 2px #000;
  border-left: solid 2px #000;
}
nav {
  width: 70%;
  position: fixed;
  top: 2%;
  right: 1%;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
nav ul {
  display: table;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  text-align: center;
}
nav ul li {
  display: table-cell;
  min-width: 50px;
  border-right: 1px solid #ccc;
  text-align: center;
}
nav ul li:first-child {
  border-left: none;
}
nav ul li:last-child {
  border-right: none;
}
nav ul li a link {
  border-radius: 0;
}
nav ul li a {
  display: block;
  padding: 20px 6px 16px;
  text-decoration: none;
  color: #000;
}
nav ul li a:hover {
  background: #fff;
  color: #000;
}
nav ul li.current {
  background: #000;
}
nav ul li.current a {
  color: #fff;
}
.navFirst a:hover {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.navEnd a:hover {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
.nav_en {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.nav_jp {
  text-align: center;
  line-height: 16px;
  font-size: 10px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/*************　画面幅が1335pxまでの時 *********************************************************************/

@media screen and (max-width:1335px) {
  
  html, body {min-width: 100%;}
  header{width: 100%;}
  footer{width: 100%;}
  .program_block, .flow_block, .benefits_block, .member_block, .member_block_top, .bnr-inner, .bnr-img img{width: 98%;}
  .bnr-img {
    width: 96%;
    margin-right: 0;
  }
  .text-box{width: 90%;}
  .benefits_small {font-size: 20px; line-height: 60px;}
  .benefits_ls{font-size:40px;}
  .benefits_small02{font-size: 24px;}
}

/*************　画面幅が1224pxまでの時 *********************************************************************/

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

  html, body {min-width: 100%;}
  header{width: 100%;}
  h1{width: 20%;}
  footer{width: 100%;}
  .nav_jp{display: none;}
  .nav_en{font-size: 14px;}
  #bnr{margin: 0 auto 0;}
  .text-box{width: 90%;}
  .benefits_small02{font-size: 24px;}
}

/*************　画面幅が1024px以下 *********************************************************************/

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

  html, body {min-width: 100%}
  header {min-width: 100% width: 100%;}
  nav{margin-right: 10px;}
  nav.pc{display: none;}
  h1{width: 30%;}
  .navToggle{display: block!important;}
  .copy {bottom: 2%; right: 1%;}
  .navblock{display: block;}
  .overview_block{width: 90%;}
  .btn-entry-fotter{width: 90%;}
  .nav_jp{display: block; margin-left: 20px;}
  .text-box{width: 90%;}
  .nav_en {
    font-size: 20px;
    line-height: 20px;
  }
  .nav_jp {
    line-height: 16px;
    font-size: 10px;
  }

  /* nav */
  
  #globalMenuSp {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    padding-top:-100px;
    background: rgba(235, 72, 39, 0.9);
    height: 100vh;
    display: none;
  }
  #globalMenuSp ul {
    margin: auto;
    padding: 80px 0 0;
    width: 100%;
  }
  #globalMenuSp ul li {
    font-size: 14px;
    padding: 0;
    text-align: center;
    margin: auto;
  }
  #globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  #globalMenuSp ul li a {
    font-weight: 700;
    
  display: flex;
  justify-content: center;
  align-items: center;
    color: #fff;
    width: 100%;
    margin:0 auto 0;
    padding: 1.5em 0;
    border-top:1px solid #F06E53;
  }
  #globalMenuSp ul li a:last-child {
    border-top:none;
    border-bottom:1px solid #F06E53;
  }
  #globalMenuSp.active {
    transform: translateY(0%);
    display: block;
  }
  .navToggle {
    display: block;
    position: fixed;
    right: 2%;
    top: 2%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 5;
    text-align: center;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 20px;
    border-bottom: solid 2px rgb(255, 255, 255);
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 15px;
  }
  .navToggle span:nth-child(1) {top: 18px;}
  .navToggle span:nth-child(2) {top: 24px;}
  .navToggle span:nth-child(3) {top: 30px;}
  .navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
  }
  .navToggle{
    border-radius: 10px;
    background: #000;
  }
  .navToggle.active{
    background: #000;
  }
  .navToggle.active span:nth-child(1) {
    top: 26px;
    left: 15px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 26px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}


/*************　画面幅が1024pxまでの時 *********************************************************************/

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

  html, body {min-width: 100%;}
  header {min-width: 100%;}
  header{width: 100%;}
  footer{width: 100%;}
  .bnr-img:first-child{margin-right: 0; margin-bottom: 0;}
  .bnr-img img{width: 100%;}
  .benefits_block{display: block;}
  .benefits_group{width: 100%; margin-bottom: 10px;}
  .overview_block, .experience_block{width: 100%;}
  .text-box{width: 90%;}
  .read-txt{font-size: 20px;}
  .member_name{
    font-size: 24px;
    line-height: 24px;
  }
  .member_name_en{font-size: 11px;}
  .program_block, .flow_block, .benefits_block, .member_block, .member_block_top{width: 100%;}
  .program_block{display: block;}
  .program_group, .benefits_group02{width: 100%;}
  .member_block {display: block;}
  .member_group {
    width: 100%;
    margin: 0 auto 40px;
  }
  .member_img {
    width: 17%;
    margin-bottom: 0;
  }
  .member_txt_box {
    margin-left: 3%;
    width: 80%;
  }
  .message_list{
    width: 98%;
    margin: 40px 0 30px;
  }
  .message_list_txt {
    width: 100%;
  }
  .program_group {
    margin: 0 auto 10px;
  }
  .program_group:last-child{
    margin: 0 auto 0;
  }
  #globalMenuSp ul{
    padding: 110px 0 0;
  }
}

/*************　画面幅が640pxまでの時 *********************************************************************/

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

/* base */

html, body {
  min-width: 100%;
}
body {
  font-size: 14px;
  line-height: 26px;
}
.produce {
  margin: 40px auto 0;
}
.produce_txt {
  font-size: 18px;
  line-height: 60px;
  margin-right: 10px;
}
.produce_logo {
  width: 45%;
}
.produce_img {
  width: 100%;
}

/* nav */
  
#globalMenuSp {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  padding-top: -100px;
  background: rgba(235, 72, 39, 0.9);
  height: 100vh;
  display: none;
}
#globalMenuSp ul {
  margin: auto;
  padding: 80px 0 0;
  width: 100%;
}
#globalMenuSp ul li {
  font-size: 14px;
  padding: 0;
  text-align: center;
  margin: auto;
}
#globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#globalMenuSp ul li a {
  font-weight: 700;
  display: block;
  color: #fff;
  width: 100%;
  margin: 0 auto 0;
  padding: 1.5em 0;
  border-top: 1px solid #F06E53;
}
#globalMenuSp ul li a:last-child {
  border-top: none;
  border-bottom: 1px solid #F06E53;
}
#globalMenuSp.active {
  transform: translateY(0%);
  display: block;
}
.navToggle {
  display: block;
  position: fixed;
  right: 2%;
  top: 1%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 5;
  text-align: center;
}
.navToggle span {
  display: block;
  position: absolute;
  width: 20px;
  border-bottom: solid 2px rgb(255, 255, 255);
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 15px;
}
.navToggle span:nth-child(1) {
  top: 18px;
}
.navToggle span:nth-child(2) {
  top: 24px;
}
.navToggle span:nth-child(3) {
  top: 30px;
}
.navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}
.navToggle {
  border-radius: 10px;
  background: #000;
}
.navToggle.active {
  background: #000;
}
.navToggle.active span:nth-child(1) {
  top: 24px;
  left: 15px;
  border-bottom: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 24px;
  border-bottom: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-entry-fotter { width: 90%; }

/* header */

header {
  width: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
}
h1 {
  width: 40%;
  padding: 0;
  top: 20%;
  left: 2%;
}
h1 img {
  width: 100%;
}
#about, #message, #experience, #program, #target, #flow, #overview, #message_ft { padding: 100px 5%; }
#member { padding: 100px 5% 100px; }
#target { padding: 100px 0 0; }
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
h3 {
  font-size: 56px;
  line-height: 50px;
  margin: 0 0 5px;
}
.h3_txt {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 50px;
}
h4 {
  font-size: 40px;
  line-height: 40px;
  margin: 0 0 5px;
}
.h4_txt {
  font-size: 13px;
  margin-bottom: 30px;
}
.main_ttl {
  margin: 20px auto 0;
  width: 70%;
}
.main_ttl img { width: 100%; }
.date {
  margin: 40px auto 0;
  width: 100%;
}
.date img { width: 100%; }
.read-txt {
  font-size: 14px;
  line-height: 30px;
  padding: 0;
}
.read-txt02 {
  font-size: 22px;
  line-height: 34px;
}
#message .read-txt02 {
  font-size: 22px;
  line-height: 34px;
}

/* btn */

.btn-entry {
  width: 50%;
  bottom: 2%;
  right: 7%;
}
.btn-entry a {
  width: 100%;
  margin: 0 auto 0;
  padding: 0.6em 0;
  font-size: 24px;
  line-height: 20px;
}
.ico-entry { right: 10px; }
.btn-entry a:before {
  width: 4px;
  height: 4px;
  border: 0;
  margin: auto;
}
.entry-en {
  font-size: 20px;
  line-height: 20px;
}
.entry-jp {
  font-size: 11px;
  line-height: 12px;
  padding-top: 5px;
}
.btn-entry-fotter {
  width: 100%;
  margin: 40px auto 0;
}
.btn-entry-fotter a {
  padding: 0.8em 0;
  font-size: 54px;
  line-height: 54px; /* 83.333% */
}
.ico-entry-fotter {
  top: 0;
  right: 22px;
  bottom: 0;
}
.btn-entry-fotter a:before {
  width: 4px;
  height: 4px;
}
.entry-en-fotter {
  font-size: 40px;
  line-height: 36px;
}
.entry-jp-fotter {
  font-size: 14px;
  line-height: 14px;
  padding-top: 3px;
  opacity: 1;
}
.logo-footer { width: 100%; }
.logo-footer img {
  width: 100%;
  margin-top: 60px;
}
.nav {
  width: 90%;
  display: inline-flex;
}
.nav .group {
  width: 50%;
  height: 15%;
}
.nav .overlap-group, .nav .overlap-group02 {
  width: 100%;
  height: 90px;
}
.nav .overlap-wrapper {
  margin-right: -2.00px;
  position: relative;
  width: 100%;
  height: 90px;
}
.nav .text-wrapper, .nav .text-wrapper-2, .nav .text-wrapper-3 {
  line-height: 18px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
}
.nav .text-wrapper { top: 35px; }
.nav .text-wrapper-2 { top: 20px; }
.nav .text-wrapper-3 { top: 20px; }
.nav .group .overlap-group:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group:before {
  bottom: 15px;
  right: 50%;
  margin: auto;
}
.nav .group .overlap-group02:hover {
  background-color: #fff;
  color: #000;
}
.nav .group .overlap-group02:before {
  bottom: 15px;
  right: 50%;
  margin: auto;
}

/* page */

.header02 {
  background: url("../img/mv_sp02.jpg") no-repeat;
  background-size: 100%;
  width: 100%;
  height: 240px;
  position: absolute;
  top: 0;
}

/* button */

.btn-contact a {
  width: 90%;
  margin: 20px auto 0;
  padding: 1.5em 0;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  background: transparent;
  position: relative;
  display: inline-block;
}
.btn-contact a:before {
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.btn-contact a:hover {
  background-color: #fff;
  color: #343434;
}
.btn-contact a:hover::before {
  border-top: solid 2px #343434;
  border-right: solid 2px #343434;
}
#bnr {
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  width: 100%;
}
.bnr-inner {
  width: 96%;
  margin: auto;
}
.bnr-inner_sp {
  width: 50%;
  margin: auto;
}
.bnr-img {
  margin: auto;
  width: 95%;
}
.bnr-img:last-child, .bnr-img:first-child { margin: auto; }
.bnr-img img { width: 100%; }

/* video */

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh;
}
.text-box {
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.scroll {
  left: 5%;
  bottom: 10%;
}

/* EXPERIENCE */

.experience_block {
  width: 100%;
  margin: 0 auto 10px;
}
.experience_left {
  padding: 20px 8px;
  width: 60px;
}
.experience_right {
  padding-left: 30px;
  border-left: solid 2px #000;
  padding: 20px;
}
.experience_ttl {
  font-size: 18px;
  line-height: 22px;
  /* 133.333% */
}
.experience_txt {
  font-size: 14px;
  line-height: 22px;
}
.experience_point {
  font-size: 13px;
  line-height: 20px;
  width: 60px;
}
.experience_num {
  font-size: 42px;
  line-height: 42px;
  width: 60px;
}

/* PROGRAM */

.program_block {
  width: 100%;
  margin: 0 auto 10px;
  display: block;
}
.program_group {
  width: 100%;
  margin: 0 auto 10px;
  padding: 30px 0;
}
.program_group:last-child{
  margin: 0 auto 0;
}
.program_ttl {
  font-size: 21px;
  font-weight: 700;
  line-height: 20px;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.program_txt {
  font-size: 14px;
  line-height: 24px;
  padding: 0 20px;
}

/* FLOW */

.flow_block {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.flow_group {
  width: 100%;
  margin: 0 auto 60px;
  padding: 30px 0;
}
.flow_ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  /* 105% */
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.flow_txt {
  font-size: 18px;
  line-height: 26px;
  padding: 0 20px;
}
.flow_txt02 {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  /* 171.429% */
  width: 90%;
}
.flow_list {
  margin: 20px auto 20px;
}
.flow_list_txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  width: 90%;
  margin: 0 auto 2px;
  padding: 5px 0;
}

/* OVERVIEW */

.overview_block {
  width: 100%;
  margin: 0 auto 40px;
}
.overview_group {
  margin-bottom: 2px;
}
.overview_ttl {
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  width: 30%;
  padding: 30px 20px;
}
.overview_txt {
  width: 70%;
  padding: 30px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.benefits_ttl {
  display: flex;
  font-size: 40px;
  line-height: 42px;
  /* 105% */
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.benefits_ls {
  font-size: 42px;
  padding-top: 5px;
}
.benefits_small {
  font-size: 22px;
  line-height: 60px;
}
.benefits_small02 {
  font-size: 23px;
  line-height: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.benefits_block {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.benefits_group {
  width: 100%;
  margin: 0 auto 10px;
  padding: 16px 0 30px;
}
.benefits_group:last-child{
  margin: 0 auto;
}
.benefits_txt {
  font-size: 16px;
  line-height: 24px;
  padding: 0 10px;
}
.benefits_sub {
  line-height: 20px;
}
.benefits_sub-inner {
  padding: 2px 20px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.benefits_details {
  line-height: 50px;
}
.benefits_left {
  width: 32px;
  margin-right: 10px;
}
.benefits_right {
  width: 32px;
  margin-left: 10px;
}

/* MEMBER */

.member_block_top {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.member_img_top {
  width: 45%;
  margin:0 auto 30px;
}
.member_txt_box_top{
  margin-left: 0;
  width: 100%;
}
.member_group_top {
  width: 100%;
  margin: 0 auto 50px;
  display: block;
}
.member_block {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.member_group {
  display: block;
  width: 100%;
  margin: 0 auto 50px;
}
.member_ttl {
  font-size: 14px;
  line-height: 14px;
  padding-bottom: 5px;
  text-align: center;
}
.member_ttl02{
  text-align: center;
}
.member_name {
  font-size: 26px;
  line-height: 30px;
}
.member_txt {
  font-size: 13px;
  line-height: 24px;
  margin-top: 5px;
}
.member_name_en {
  line-height: 35px;
  font-weight: 700;
  margin-left: 10px;
}
.member_img {
  width: 45%;
  margin:0 auto 30px;
}
.member_txt_box{
  margin-left: 0;
  width: 100%;
}
.member_name_en_group {
  margin-bottom: 6px;
  justify-content: center;
  align-items: center;
}
.mt80{
  margin-top: 80px;
}
.triangle01, .triangle02 {
  width: 0;
  height: 0;
  border-style: solid;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 22px solid #EB4827;
  border-bottom: 0;
  position: absolute;
  z-index: 999;
  top: 54px;
}
.triangle01 {
  left: 47%;
  top: 32%;
}
.triangle02 {
  left: 47%;
  top: 98%;
}
#globalMenuSp ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_jp {
  margin-left: 20px;
  display: block;
}
.nav_en {
  font-size: 20px;
  line-height: 20px;
}
.nav_jp {
  line-height: 16px;
  font-size: 10px;
}
.flow-day {
  top: -20px;
  left: 0;
  width: 100%;
  font-size: 30px;
}
.flow-day-num {
  font-size: 42px;
  padding-left: 4px;
}
.img_target, .img_target img {
  margin-top: 30px;
}
.message_list{
  width: 100%;
  margin: 20px 0 15px;
}
.message_list_txt {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  padding: 16px 0px;
}
.message_ft_txt{
  font-size: 14px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 5px;
}
#target .read-txt02{
  margin-top: 10px;
  margin-bottom: 15px;
}
  
}