@charset "utf-8";
/* CSS Document */
/************************************************************ font */
/*Noto Sans（日本語）*/
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../font/NotoSansJP-Thin.woff2") format('woff2'), url("../font/NotoSansJP-Thin.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/NotoSansJP-Light.woff2") format('woff2'), url("../font/NotoSansJP-Light.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format('woff2'), url("../font/NotoSansJP-Regular.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/NotoSansJP-Medium.woff2") format('woff2'), url("../font/NotoSansJP-Medium.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format('woff2'), url("../font/NotoSansJP-Bold.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../font/NotoSansJP-Black.woff2") format('woff2'), url("../font/NotoSansJP-Black.woff") format('woff');
}
/************************************************************ */
* {
  font-size: 100%;
  color: #333;
  box-sizing: border-box;
  font-family: 'NotoSans JP', 'Hiragino Sans W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.7rem;
  line-height: 2.4;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  background-color: #fcfcfc;
}
/* ------------------------------ レスポンシブ */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* ------------------------------ 動画（ショートは320pxループ固定）*/
.movie {
  width: 100%;
  max-width: 840px;
  aspect-ratio: 16 / 9; /*比率*/
}
/* ------------------------------ img */
img {
  max-width: 100%;
  height: auto;
}
/* ------------------------------ hover*/
a {
  text-decoration: none;
  transition: .4s;
}
a:hover {}
/**/
a img {
  transition: .4s;
}
a:hover img {
  opacity: 0.8;
}
/* ------------------------------ color */
.red {
  color: #FF0000;
}
/* ------------------------------ position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ------------------------------ float */
.f_left {
  float: left;
}
.f_right {
  float: right;
}
.f_left img {
  margin: 0 20px 0 0;
}
.f_right img {
  margin: 0 0 0 20px;
}
/* ------------------------------ 解除*/
hr.clear {
  clear: both;
  height: 1px;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
.clear {
  clear: both;
}
/* ------------------------------ ボタン */
.btn {
  background: rgba(153, 122, 181, 1);
  background: linear-gradient(90deg, rgba(153, 122, 181, 1) 0%, rgba(56, 223, 225, 1) 100%);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4em;
  display: block;
  width: 100%;
  margin: 10px;
  padding: 20px 60px;
  border-radius: 100vh;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1439px) {
  .btn {
    font-size: 2.0rem;
    padding: 20px 40px;
  }
}
.btn {
  position: relative;
}
.btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transition: .4s;
}
.btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
}
.btn:hover::after {
  right: 10px;
}
/* ------------------------------ ボタン（横）*/
ul.btn_wrap {
  margin: 40px 0 30px 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
ul.btn_wrap li {
  width: 100%;
  margin: 0 20px;
}
/* ------------------------------ color */
.red {
  /*color: #D80000;*/
}
/* --------------------------------------------------------- table*/
table {
  width: 100% !important;
  margin: 40px 0;
  border-collapse: collapse;
  /*border: 1px solid #CDCDCD;*/
}
table tr {}
table th, table td {
  padding: 15px;
  /*border: 1px solid #CDCDCD;*/
  border-bottom: 2px solid #CDCDCD;
  border-left: 2px solid #CDCDCD;
  text-align: center;
}
table th {
  background-color: #EFF6FB;
}
table thead th:first-child {
  border-left: none;
}
table tbody th {
  background-color: #EFF6FB;
  border-left: none;
}
table tbody td:first-child {
  border-left: none;
}
table td {
  width: auto !important;
}
table th p, table td p {
  margin: 0;
  padding: 0;
}
/************************************************************ aside*/
aside {}
aside .inner {
  background-color: #3584c6;
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  width: 100px;
  height: 100vh;
  margin: 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/**/
#side_nav {}
#side_nav ul {
  position: relative;
}
#side_nav ul li {
  padding: 40px 0;
  position: relative;
}
#side_nav ul li::after {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-bottom: 1px dashed #fff;
}
#side_nav ul li:last-child::after {
  display: none;
}
#side_nav ul li a {
  width: 100%;
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 4.2em;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: -0.4em;
  position: relative;
}
@media screen and (max-width: 1439px) {
  #side_nav ul li a {
    font-size: 2.0rem;
    line-height: 5.0em;
  }
}
#side_nav ul li a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
#side_nav ul li:nth-child(1) a {
  padding: 60px 0 0 0;
}
#side_nav ul li:nth-child(2) a {
  padding: 70px 0 0 0;
}
@media screen and (max-width: 1439px) {
  #side_nav ul li:nth-child(1) a {
    padding: 55px 0 0 0;
  }
  #side_nav ul li:nth-child(2) a {
    padding: 60px 0 0 0;
  }
}
/**/
#side_nav ul li:nth-child(1) a::before {
  position: absolute;
  content: "";
  left: 5px;
  background-image: url("../img/icon_entry.png");
  width: 96px;
  height: 49px;
}
#side_nav ul li:nth-child(2) a::before {
  position: absolute;
  content: "";
  left: -15px;
  background-image: url("../img/icon_epi.png");
  width: 85px;
  height: 56px;
}
@media screen and (max-width: 1439px) {
  #side_nav ul li:nth-child(1) a::before {
    background-size: 38px;
  }
  #side_nav ul li:nth-child(2) a::before {
    background-size: 35px;
  }
}
/**/
#side_nav ul li.pagetop a {
  list-style: none;
  position: absolute;
  content: "";
  background: linear-gradient(-227deg, rgba(153, 122, 181, .5) 0%, rgba(56, 223, 225, .5) 100%);
  position: fixed; /* 画面に対して固定 */
  bottom: 0; /* 画面下部から0pxの位置 */
  right: 0;
  width: 100px;
  height: 100px;
  padding: 1rem;
}
#side_nav ul li.pagetop a img {
  position: absolute;
  content: "";
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 20px;
}
/************************************************************ container*/
#container {
  position: relative;
  margin: 0 100px 0 0;
}
/************************************************************ header*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
#header {}
#header .inner {
  margin: 40px 30px;
}
/* ------------------------------ h1*/
#header .inner h1, #header .inner .logo {}
#header .inner h1 a, #header .inner .logo a {}
#header .inner h1 a img, #header .inner .logo a img {}
/* ------------------------------ nav*/
nav {
  /*position: fixed;
  top: 0;
  left: 0;
  z-index: 100;*/
}
nav .toggle {
  display: none;
}
/************************************************************ main*/
main {}
#main {}
#main .inner {}
/* ------------------------------ h*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
}
/**/
h1 {}
h2 {}
h3 {}
h4 {}
h5 {}
h6 {}
/* ------------------------------ mainimg*/
#mainimg {}
#mainimg inner {}
/* ---------- h*/
#mainimg h2 {}
#mainimg h3 {}
/* ---------- slider*/
#mainimg .slider_wrap {
  position: relative;
  margin: 0 auto;
}
#mainimg .slider_wrap .bx-wrapper {
  margin: 0 auto;
}
#mainimg .slider_wrap .bx-wrapper .bx-viewport {}
/**/
#mainimg .slider_wrap .slider li {
  text-align: center;
  width: 100%;
}
#mainimg .slider_wrap .slider li img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: 30% 40%;
}
/**/
#mainimg .slider_wrap .catch {
  position: absolute;
  bottom: -10px;
  width: 100%;
  z-index: 20;
}
#mainimg .slider_wrap .catch span {
  color: #fff;
  font-size: 14rem;
  font-weight: 800;
  display: block;
  line-height: 1.0em;
}
@media screen and (max-width: 1439px) {
  #mainimg .slider_wrap .catch span {
    font-size: 11rem;
  }
}
#mainimg .slider_wrap .catch span:first-of-type {
  margin: 0 0 0 -70px;
}
/**/
#mainimg .slider_wrap .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: linear-gradient(180deg, #fff 0, transparent 30%, transparent 60%, rgba(53, 132, 198, 9) 100%);
  opacity: 0.4;
  z-index: 10;
}
/* ------------------------------ nav*/
nav {}
nav .nav {
  background-color: #53b6f9;
}
nav .nav ul {
  list-style: none;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
nav .nav ul li {
  width: 100%;
  padding: 0 0 20px 0;
  text-align: center;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  height: 140px;
  transition: .4s;
}
nav .nav ul li a {
  width: 100%;
  color: #286395;
  position: relative;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6em;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  nav .nav ul li a {
    font-size: 1.8rem;
  }
}
nav .nav ul li a::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 25%;
  right: 0;
  border-right: 1px dashed #286395;
}
nav .nav ul li:last-child a::before {
  border-right: none;
}
nav .nav ul li a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-color: #286395;
  border-radius: 50%;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(.5, 1);
  transition: transform 0.5s;
}
/**/
nav .nav ul li a.on, nav .nav ul li:hover a {
  color: #fff;
}
nav .nav ul li a.on::after, nav .nav ul li:hover a::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 10px;
  background-color: #fff;
  border-radius: 100vh;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1, 1)
}
/* ------------------------------ trial*/
#trial {
  width: 100%;
  height: 580px;
  position: relative;
  z-index: 10;
}
#trial .inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: left 10%;
  background-size: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
#trial .inner::before {
  position: absolute;
  content: "TRIAL\AMEMBERSHIP";
  white-space: pre;
  width: 50%;
  bottom: 0;
  left: 0;
  z-index: 100;
  color: rgba(53, 132, 198, .5);
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.0em;
}
@media screen and (max-width: 1439px) {
  #trial .inner::before {
    font-size: 10rem;
  }
}
/**/
#trial .inner p {
  width: 100%;
}
#trial .inner p img {
  width: 100%;
  max-width: 900px;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
  position: relative;
  z-index: 20;
  overflow: hidden;
}
/**/
#trial .inner div {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 40;
}
#trial .inner div ul {
  list-style: none;
  position: absolute;
  width: 420px;
  top: 25%;
  left: 25%;
}
#trial .inner div ul li {
  width: 100%;
  margin: 0 auto;
}
#trial .inner div ul li a {
  width: 100%;
  margin: 10px;
  padding: 24px 0;
  text-align: center;
  line-height: 2.0em;
  font-size: 2.5rem;
}
/* ------------------------------ special*/
#special {
  width: 100%;
  padding: 80px 0;
}
#special .inner {
  position: relative;
  width: calc(100% - 40px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(53, 132, 198, .1) 0%, rgba(56, 223, 225, .1) 60%);
}
#special .inner::before {
  position: absolute;
  content: "";
  background-image: url("../img/special_medal.png");
  background-repeat: no-repeat;
  width: 140px;
  height: 240px;
  top: -30px;
  left: -40px;
  z-index: 10;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}
/* ---------- h*/
#special h2 {
  position: relative;
  margin: 80px 0 0 0;
  display: inline-block;
}
#special h2 span {
  position: relative;
  margin: 0;
  padding: 8px 120px 10px 160px;
  display: inline-block;
  background: #3584c6;
  clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 0% 100%);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
#special h2:after {
  position: absolute;
  width: 50px;
  height: 4px;
  content: '';
  border-radius: 100vh;
  background: #38dfe1;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 10;
}
/**/
#special .text {
  width: calc(100% - 240px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}
/**/
#special h3 {
  color: #3584c6;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 4.2rem;
  padding-bottom: 10px;
}
#special h4 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1rem;
  margin-bottom: 20px;
  padding: 6px 20px;
  border-radius: 2.1rem;
  display: inline-block;
  background: #3584c6;
}
#special .explanation {
  background-color: #FBFEFE;
  margin-bottom: 40px;
  padding: 20px 40px;
  border-radius: 10px;
}
#special .explanation ul {
  margin-left: 20px;
}
#special .service {
  margin-left: 20px;
  margin-bottom: 40px;
}
#special .ex_all {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#special .ex_1, #special .ex_2 {
  background-color: #FBFEFE;
  padding: 30px 20px;
  border-radius: 10px;
}
#special .ex_1 {
  margin-right: 20px;
}
#special .ex_2 {
  margin-left: 20px;
}
/* ---------- ul*/
/*#special ul {
  margin: 40px 0 30px 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
#special ul li {
  width: 100%;
  margin: 0 20px;
}*/
/* ------------------------------ interview*/
#interview {
  padding: 80px 0;
}
#interview .inner {
  width: calc(100% - 240px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 40px auto;
}
/* ---------- h*/
#interview .inner .head {
  position: relative;
}
#interview .inner .head:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #E91E63, transparent);
  background: linear-gradient(90deg, rgba(153, 122, 181, 1) 60%, rgba(56, 223, 225, 1) 80%, transparent 100%);
  right: 0;
  bottom: 40px;
  z-index: -1;
}
#interview .inner .head h2 {
  position: relative;
  display: inline;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1.2em;
  padding: 0 20px 0 0;
  background-color: #fcfcfc;
}
#interview .inner .head span {
  margin: 0 0 0 40px;
  font-size: 2.6rem;
  display: inline;
  position: relative;
  width: 100%;
  color: #666;
}
/* ---------- slider*/
#interview .interview_wrap {
  position: relative;
  margin: 0 auto 60px;
}
#interview .interview_wrap .bx-wrapper {
  margin: 0 auto;
  padding: 0;
}
#interview .interview_wrap .bx-wrapper .bx-viewport {}
/**/
#interview .interview_wrap .bx-wrapper .bx-controls-direction {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#interview .interview_wrap .bx-wrapper .bx-controls-direction a {
  position: absolute;
  outline: 0;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  z-index: 9999;
  top: -35px;
}
#interview .interview_wrap .bx-wrapper .bx-prev {
  left: auto;
  right: 180px !important;
  background: url("../img/arrow_prev.png") no-repeat 0 0;
}
#interview .interview_wrap .bx-wrapper .bx-next {
  right: 0 !important;
  background: url("../img/arrow_next.png") no-repeat 0 0;
}
/* pager */
#interview .interview_wrap .bx-pager, #interview .interview_wrap .bx-controls-auto {
  position: absolute;
  width: 100%;
}
#interview .interview_wrap .bx-pager.bx-default-pager a {
  border: 1px solid #3584c6;
  background: #fff;
  text-align: center;
  font-family: Arial;
  font-weight: bold;
  width: 8px;
  height: 8px;
  margin: 0 7px;
}
#interview .interview_wrap .bx-pager.bx-default-pager a:hover, #interview .interview_wrap .bx-pager.bx-default-pager a.active, #interview .interview_wrap .bx-pager.bx-default-pager a:focus {
  border: 1px solid #3584c6;
  background: #3584c6;
}
#interview .interview_wrap .bx-wrapper .bx-pager-item, #interview .interview_wrap .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
#interview .interview_wrap .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* ---------- カウント*/
#interview .slide_num {
  width: 100%;
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 0 0;
  text-align: right;
}
#interview .slide_num span {
  position: relative;
  color: #999;
  font-size: 2.4rem;
  margin: 0 0 0 30px;
  top: 0;
}
/*表示中*/
#interview .slide_num .now {}
/*総数*/
#interview .slide_num .all {}
/*スラッシュ*/
#interview .slide_num .all::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: #999;
  width: 1px;
  height: 1.4em;
  top: 0.1em;
  left: -0.6em;
  vertical-align: middle;
  transform: rotate(25deg);
}
/* ---------- 中身*/
#interview .interview_wrap .interview {
  display: -webkit-flex;
  display: flex;
}
#interview .interview_wrap .interview li {
  width: 100%;
  /*height: 100vh;*/
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  background-size: 600px;
  background-position: -100px -60px;
  background-repeat: no-repeat;
  float: none;
}
@media screen and (max-width: 1439px) {
  #interview .interview_wrap .interview li {
    background-size: 500px;
    background-position: -80px -30px;
  }
}
#interview .interview_wrap .interview li.no1 {
  background-image: url("../../img/mukae.png");
}
#interview .interview_wrap .interview li.no2 {
  background-image: url("../../img/iwanaga.png");
}
#interview .interview_wrap .interview li.no3 {
  background-image: url("../../img/matsunaga.png");
}
#interview .interview_wrap .interview li.no4 {
  background-image: url("../../img/takada.png");
}
#interview .interview_wrap .interview li.no5 {
  background-image: url("../../img/aono.png");
}
#interview .interview_wrap .interview li.no6 {
  background-image: url("../../img/matsumoto.png");
}
#interview .interview_wrap .interview li.no7 {
  background-image: url("../../img/makita.png");
}
#interview .interview_wrap .interview li.no8 {
  background-image: url("../../img/izumikawa.png");
}
#interview .interview_wrap .interview li.no9 {
  background-image: url("../../img/shimizu.png");
}
#interview .interview_wrap .interview li.no10 {
  background-image: url("../../img/kikuchi.png");
}
#interview .interview_wrap .interview li.no11 {
  background-image: url("../../img/izumo.png");
}
#interview .interview_wrap .interview li.no12 {
  background-image: url("../../img/iwamoto.png");
}
#interview .interview_wrap .interview li.no13 {
  background-image: url("../../img/shindou.png");
}
#interview .interview_wrap .interview li.no14 {
  background-image: url("../../img/komiya.png");
}
#interview .interview_wrap .interview li.no15 {
  background-image: url("../../img/tsubata.png");
}
/**/
#interview .interview_wrap .interview li .text {
  width: 80%;
  max-width: 950px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1439px) {
  #interview .interview_wrap .interview li .text {
    width: 65%;
  }
}
#interview .interview_wrap .interview li .text h3 {
  margin: 20px 40px;
  color: #3584c6;
  font-size: 2.4rem;
  line-height: 1.4em;
  font-weight: 600;
}
#interview .interview_wrap .interview li .text h3 span {
  color: #3584c6;
  font-size: 1.2rem;
  display: block;
}
/**/
#interview .interview_wrap .interview li .message {
  margin: 0;
  padding: 30px 40px;
  background-color: #3584c6;
  width: 100%;
}
#interview .interview_wrap .interview li .message p {
  color: #fff;
  font-size: 1.4rem;
}
/* ------------------------------ stepguide*/
#stepguide {
  width: 100%;
}
#stepguide .stepguide {
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(53, 132, 198, .1) 0%, rgba(56, 223, 225, .1) 60%);
}
#stepguide .stepguide .inner {
  width: calc(100% - 240px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 40px auto;
}
/* ---------- h*/
#stepguide .stepguide .inner .head {
  position: relative;
}
#stepguide .stepguide .inner .head:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #E91E63, transparent);
  background: linear-gradient(90deg, rgba(153, 122, 181, 1) 60%, rgba(56, 223, 225, 1) 80%, transparent 100%);
  right: 0;
  bottom: 40px;
  z-index: -1;
}
#stepguide .stepguide .inner .head h2 {
  position: relative;
  display: inline;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1.2em;
  padding: 0 20px 0 0;
  background-color: #E7F1F7;
  background: linear-gradient(to right, #E7F1F7, #E8F8F9);
}
#stepguide .stepguide .inner .head span {
  margin: 0 0 0 40px;
  font-size: 2.6rem;
  display: inline;
  position: relative;
  width: 100%;
  color: #666;
}
#stepguide .stepguide .flow {
  width: 100%;
  margin: 40px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
#stepguide .stepguide .flow::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 5px;
  top: 39px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(167, 131, 204, 1) 0%, rgba(64, 138, 201, 1) 50%, rgba(67, 225, 227, 1) 100%);
  z-index: -1;
}
#stepguide .stepguide .flow .box {
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
#stepguide .stepguide .flow .box h3 {
  font-size: 1.9rem;
  line-height: 1.4em;
  font-weight: 600;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
#stepguide .stepguide .flow .box h3 span {
  font-size: 0.9rem;
  line-height: 1.4em;
  color: #fff;
  display: block;
}
#stepguide .stepguide .flow .box:first-of-type h3 {
  background: #A783CC;
}
#stepguide .stepguide .flow .box:nth-of-type(2) h3 {
  background: #408AC9;
}
#stepguide .stepguide .flow .box:nth-of-type(3) h3 {
  background: #41BCD8;
  padding: 15px 0 0 0;
  display: block;
}
#stepguide .stepguide .flow .box:nth-of-type(4) h3 {
  background: #43E1E3;
}
#stepguide .stepguide .flow .box p {
  font-size: 1.6rem;
}
/* ---------- member*/
#stepguide .member {
  width: calc(100% - 40px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}
/* ---------- h*/
#stepguide .member h2 {
  text-align: center;
  margin: 20px 0;
}
#stepguide .member h2 span {
  margin: 0;
  padding: 8px 20px 10px 20px;
  background: #3584c6;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
#stepguide .member h3 {
  position: relative;
  margin: 10px 0;
  padding: 0.5em 0 0 1.4em;
  font-size: 1.8rem;
  font-weight: 600;
}
#stepguide .member h3::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 4px;
  top: calc(50% + 4px);
  left: -4px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background: #3584c6;
  border-radius: 100vh;
}
#stepguide .member h4 {
  position: relative;
  color: #3584c6;
  margin: 10px 0;
  padding: 0.5em 0 0 0;
  font-size: 1.8rem;
  font-weight: 600;
}
#stepguide .member p.indent {
  padding-left: 20px;
}
/**/
#stepguide .member table {}
/* ------------------------------ qa*/
#epi {
  padding: 80px 0;
}
#epi .inner {
  width: calc(100% - 40px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
}
/* ---------- h*/
#epi .inner .head {
  position: relative;
}
#epi .inner .head:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #E91E63, transparent);
  background: linear-gradient(90deg, rgba(153, 122, 181, 1) 60%, rgba(56, 223, 225, 1) 80%, transparent 100%);
  right: 0;
  bottom: 40px;
  z-index: -1;
}
#epi .inner .head h2 {
  position: relative;
  display: inline;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1.2em;
  padding: 0 20px 0 0;
  background-color: #fcfcfc;
}
#epi .inner .head span {
  margin: 0 0 0 40px;
  font-size: 2.6rem;
  display: inline;
  position: relative;
  width: 100%;
  color: #666;
}
/**/
#epi h3 {
  position: relative;
  margin: 10px 0;
  padding: 0.5em 0 0 1.4em;
  font-size: 1.8rem;
  font-weight: 600;
}
#epi h3::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 4px;
  top: calc(50% + 4px);
  left: -4px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background: #3584c6;
  border-radius: 100vh;
}
#epi h4 {
  position: relative;
  color: #3584c6;
  margin: 10px 0 0;
  padding: 0.5em 0 0 0;
  font-size: 1.8rem;
  font-weight: 600;
}
#epi p.text {}
/**/
#epi details {
  display: block;
  position: relative;
  margin: 10px 0 30px;
}
#epi details summary {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 15px 50px 15px 25px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(167, 131, 204, 1) 0%, rgba(64, 138, 201, 1) 100%);
}
#epi details summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  border-style: solid;
  border-width: 8px 16px 8px 0;
  border-color: transparent rgba(167, 131, 204, 1) transparent transparent;
  translate: 100% -50%;
}
#epi details summary span {
  color: #fff;
  display: inline-block;
  margin: 0 10px 0 0;
}
#epi details summary::marker, #epi summary::-webkit-details-marker {
  display: none;
}
/* 開閉アイコン */
#epi summary::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .5s;
  content: '';
}
#epi details[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}
#epi details div {
  margin-top: 10px;
  padding: 15px 50px;
  font-size: 1.8rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(167, 131, 204, .1) 0%, rgba(64, 138, 201, .1) 100%);
}
#epi details div::before {
  content: "";
  position: absolute;
  top: 70%;
  right: 0px;
  border-style: solid;
  border-width: 8px 0 8px 15px;
  border-color: transparent transparent transparent rgba(64, 138, 201, .1);
  translate: 100% -50%;
}
#epi details div span {
  color: #3584c6;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4em;
  display: inline-block;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1439px) {
  #epi details div span {
    font-size: 2.0rem;
  }
}
#epi details div p {
  font-size: 1.5rem;
  line-height: 1.4em;
  display: inline;
}
/* ------------------------------ vision*/
/* ---------- slider*/
#vision .vision_wrap {
  position: relative;
  margin: 0 auto;
}
#vision .vision_wrap .bx-wrapper {
  margin: 0 auto;
  padding: 0;
}
/**/
#vision .vision {
  width: 100%;
  height: 580px;
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, rgba(167, 131, 204, .2) 0%, rgba(64, 138, 201, .2) 20%);
}
#vision .vision li {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: left 10%;
  background-size: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
#vision .vision li::before {
  position: absolute;
  white-space: pre;
  width: 50%;
  bottom: 0;
  left: 0;
  z-index: 100;
  color: rgba(162, 124, 201, .5);
  font-size: 12rem;
  font-weight: 800;
  line-height: 1.0em;
}
@media screen and (max-width: 1439px) {
  #vision .vision li::before {
    font-size: 10rem;
  }
}
#vision .vision li.detail1::before {
  content: "SUMMARY\A　  VISION";
}
#vision .vision li.detail2::before {
  content: "SUMMARY\A　  VISION";
}
#vision .vision li.detail3::before {
  content: "SUMMARY\A　  VISION";
}
/**/
#vision .vision li p {
  width: 100%;
}
#vision .vision li p img {
  width: 100%;
  max-width: 900px;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  position: relative;
  z-index: 50;
  overflow: hidden;
}
#vision .vision li div {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 40;
}
#vision .vision li div ul {
  list-style: none;
  position: absolute;
  width: 420px;
  top: 25%;
}
#vision .vision li div ul li {
  width: 100%;
  margin: 0 auto;
}
#vision .vision li div ul li a {
  width: 100%;
  margin: 10px;
  padding: 24px 0;
  text-align: center;
}
/*************/
/* ---------- h*/
#vision h2 {
  position: relative;
  margin: 80px 0 0 -30px;
  display: inline-block;
  z-index: -1;
}
#vision h2 span {
  position: relative;
  margin: 0;
  padding: 8px 120px 10px 90px;
  display: inline-block;
  background: #a27cc9;
  clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 0% 100%);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
#vision h2:after {
  position: absolute;
  width: 50px;
  height: 4px;
  content: '';
  border-radius: 100vh;
  background: #fff;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 10;
}
/**/
#vision .vision li h3 {
  margin: 50px 0 40px 10px;
  color: rgba(162, 124, 201, .5);
  font-size: 11rem;
  font-weight: 800;
  line-height: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
#vision .vision li h3 span {
  position: relative;
  line-height: 1.2;
  margin: 0 0.25em;
  padding: 0.25em 4em;
  display: inline-block;
  top: 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 1439px) {
  #vision .vision li h3 span {
    padding: 0.25em 3em;
    font-size: 2.2rem;
  }
}
#vision .vision li h3 span:before, #vision .vision li h3 span:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 60%;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  display: inline-block;
}
#vision .vision li h3 span:before {
  border-left: solid 2px #ccc;
  border-top: solid 2px #ccc;
  border-bottom: solid 2px #ccc;
  left: 0;
}
#vision .vision li h3 span:after {
  content: '';
  border-top: solid 2px #ccc;
  border-right: solid 2px #ccc;
  border-bottom: solid 2px #ccc;
  right: 0;
}
/**/
#vision .vision li div p {
  margin: 0 auto;
  width: calc(100% - 160px);
}
/* ---------- カウント*/
#vision .vision_slide_num {
  width: 100%;
  max-width: calc(100% - 100px);
  margin: 0 auto;
  padding: 0;
  text-align: right;
}
#vision .vision_slide_num span {
  position: relative;
  color: #999;
  font-size: 1.8rem;
  margin: 0 0 0 30px;
  top: -60px;
  z-index: 100;
}
/*スラッシュ*/
#vision .vision_slide_num .all::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: #999;
  width: 1px;
  height: 1.8em;
  top: 0em;
  left: -0.9em;
  vertical-align: middle;
  transform: rotate(25deg);
}
/* ------------------------------ activity*/
#activity {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 0;
}
#activity .inner {
  width: 100%;
  margin: 0 auto;
}
/* ---------- h*/
#activity h2 {
  position: relative;
  margin: 80px 0 0 0;
  display: inline-block;
}
#activity h2 span {
  position: relative;
  margin: 0;
  padding: 8px 100px 10px 55px;
  display: inline-block;
  background: #a27cc9;
  clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 0% 100%);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
#activity h2:after {
  position: absolute;
  width: 50px;
  height: 4px;
  content: '';
  border-radius: 100vh;
  background: #38dfe1;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 10;
}
#activity h3 {
  position: relative;
  margin: 0 0 10px -30px;
  padding: 0 0 0 0.6em;
  font-size: 2.4rem;
  font-weight: 600;
}
#activity h3::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 4px;
  top: calc(50% + 2px);
  left: -10px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background: #fff;
  border-radius: 100vh;
}
/**/
#activity .activity_wrap {
  width: calc(100% - 40px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 50px auto;
}
#activity .activity {
  height: 100%;
}
#activity .activity li {
  position: relative;
  height: 100%;
  padding: 40px 110px 50px 110px;
  background: linear-gradient(90deg, rgba(167, 131, 204, .2) 0%, rgba(64, 138, 201, .2) 100%);
}
#activity .activity li p {
  margin: 0 auto;
  font-size: 1.6rem;
}
/**/
#activity .activity_wrap .bx-wrapper .bx-controls-direction {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#activity .activity_wrap .bx-wrapper .bx-controls-direction a {
  position: absolute;
  /*  margin-top: -16px;*/
  outline: 0;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  z-index: 9999;
  top: calc(50% + 20px);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
#activity .activity_wrap .bx-wrapper .bx-prev {
  left: 30px !important;
  background: url("../img/activity_prev.png") no-repeat 0 0;
}
#activity .activity_wrap .bx-wrapper .bx-next {
  right: 30px !important;
  background: url("../img/activity_next.png") no-repeat 0 0;
}
/* pager */
#activity .activity_wrap .bx-pager, #activity .activity_wrap .bx-controls-auto {
  position: absolute;
  width: 100%;
}
#activity .activity_wrap .bx-pager.bx-default-pager {
  bottom: -50px;
}
#activity .activity_wrap .bx-pager.bx-default-pager a {
  background: #ccc;
  text-align: center;
  width: 50px;
  height: 10px;
  border-radius: 100vh;
  margin: 0 7px;
}
#activity .activity_wrap .bx-pager.bx-default-pager a:hover, #activity .activity_wrap .bx-pager.bx-default-pager a.active, #activity .activity_wrap .bx-pager.bx-default-pager a:focus {
  background: #a27cc9;
}
#activity .activity_wrap .bx-wrapper .bx-pager-item, #activity .activity_wrap .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
#activity .activity_wrap .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* ------------------------------ contact*/
#contact {
  padding: 40px 0;
}
#contact .inner {
  width: calc(100% - 40px);
  /*  max-width: 1040px;*/
  max-width: 1280px;
  margin: 0 auto;
}
/* ---------- h*/
#contact h2 {
  text-align: center;
  margin: 20px 0;
}
#contact h2 span {
  margin: 0;
  padding: 8px 20px 10px 20px;
  background: #3584c6;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
/**/
#contact .waku_wrap {
  background: linear-gradient(90deg, rgba(167, 131, 204, .2) 0%, rgba(64, 138, 201, .2) 100%);
  margin: 80px 0;
  padding: 0.8rem;
}
#contact .waku_wrap .waku {
  padding: 40px;
  background: #FFF;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: start;
  justify-content: start;
}
#contact .waku_wrap .waku p {}
#contact .waku_wrap .waku .add_1 .mail {
  display: inline-block;
  position: relative;
  color: #fff;
  width: 320px;
  height: 150px;
  padding-top: 80px;
  margin-right: 40px;
  text-align: center;
  font-weight: 500;
  background-color: #3584C6;
}
#contact .waku_wrap .waku .add_1 .mail::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 123px;
  background-image: url("../img/icon_mail.png");
  width: 73px;
  height: 54px;
}
#contact .waku_wrap .waku .add_2 {}
/************************************************************ footer*/
footer {
  position: relative;
  margin: 0 100px 0 0;
}
#footer {
  background-color: #333;
}
#footer .inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}
#footer .inner .logo {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 0;
}
#footer .inner small {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 10px 0;
}