@charset "UTF-8";
/* =========================================================
MEDIA
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,700&display=swap");
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* =========================================================
RESET
========================================================= */
/* layout */
/*=================================
  initialization of style
===================================*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #101010;
  font-family: 'Noto Sans JP', serif;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
  width: 100%;
  height: 100%;
  letter-spacing: 1px;
  word-break: break-all;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.en {
  font-family: 'Roboto Flex', sans-serif;
}

a:link,
a:visited {
  text-decoration: none;
  color: #000;
}

a:hover,
a:active {
  text-decoration: none;
  color: #000;
  opacity: 0.7;
}

figure, figcaption, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, form {
  margin: 0;
  padding: 0;
}

img, a img {
  border: none;
  vertical-align: bottom;
}

img {
  display: block;
  width: 100%;
}

/* List_group */
ul, ol, li {
  list-style: none;
}

/* inline-style */
address {
  font-style: normal;
  font-size: 12px;
  color: #000;
}

address a,
address a:link,
address a:visited {
  text-decoration: none;
  color: #000;
}

address a:hover,
address a:active {
  text-decoration: underline;
  color: #000;
}

/* table */
table {
  width: 100%;
}

*, *:before, *:after {
  outline: none !important;
  box-sizing: border-box;
}

.icon-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.tsn {
  transition: 0.4s;
}

.clear::after {
  content: " ";
  clear: both;
  display: block;
  width: 100%;
  height: 0;
}

/* =========================================================
layout
========================================================= */
/* =========================================================
  header
========================================================= */
#header {
  width: 100%;
  height: 82px;
  background: #101010;
  padding: 11px 24px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1000000;
}

@media (max-width: 768px) {
  #header {
    padding: 14px;
    height: 69px;
  }
}

#header .logo {
  width: 313px;
}

@media (max-width: 768px) {
  #header .logo {
    width: 50%;
    max-width: 156px;
  }
}

#header .logo a {
  display: block;
  transition: 0.2s;
}

#header .logo a img {
  transform: translateY(7px);
}

@media (max-width: 768px) {
  #header .logo a img {
    transform: translateY(9px);
  }
}

#header .eBtn {
  width: 228px;
}

@media (max-width: 768px) {
  #header .eBtn {
    width: calc(50% - 20px);
    max-width: 160px;
  }
}

#header .eBtn a {
  display: block;
  transition: 0.2s;
  background: #ffffff;
  border-radius: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 58px;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  #header .eBtn a {
    font-size: 10px;
    line-height: 39px;
  }
}

#header .eBtn a:hover {
  background: #101010;
  color: #fff;
  opacity: 1;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.55);
}

/* =========================================================
  footer
========================================================= */
footer {
  width: 100%;
  background: #101010;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  footer {
    padding: 16px 20px 10px;
  }
}

footer .copyright {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 768px) {
  footer .copyright {
    font-size: 10px;
    line-height: 14px;
  }
}

.pagetop {
  position: fixed;
  bottom: 120px;
  right: 40px;
  text-align: center;
  width: 98px;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.pagetop.active {
  opacity: 1;
  pointer-events: initial;
}

@media (max-width: 768px) {
  .pagetop {
    width: 64px;
    bottom: 30px;
    right: 16px;
  }
}

.pagetop::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 49px 85px 49px;
  border-color: transparent transparent #eaeaea transparent;
  z-index: -1;
}

@media (max-width: 768px) {
  .pagetop::after {
    border-width: 0 32px 56px 32px;
  }
}

.pagetop a {
  display: block;
  transition: 0.2s;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  padding: 29px 0 0px;
}

@media (max-width: 768px) {
  .pagetop a {
    font-size: 10px;
    line-height: 14px;
    padding: 21px 0 0px;
  }
}

/* =========================================================
  contswrap ( or 共通パーツ)
========================================================= */
.contswrap {
  padding-top: 82px;
}

@media (max-width: 768px) {
  .contswrap {
    padding-top: 69px;
  }
}

.contswrap .inner1023 {
  max-width: 1023px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.contswrap .inner1440 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.contswrap .sttl {
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .contswrap .sttl {
    margin-bottom: 50px;
  }
}

.contswrap .sttl .en {
  color: #101010;
  opacity: 0.05;
  font-weight: 700;
  font-size: 248px;
  line-height: 178px;
  display: block;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .contswrap .sttl .en {
    font-size: 85px;
    line-height: 78px;
  }
}

.contswrap .sttl .ja {
  display: inline-block;
  background: #101010;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
  padding: 8px 32px;
  position: relative;
  z-index: 1;
  transform: translateY(-40px);
}

@media (max-width: 768px) {
  .contswrap .sttl .ja {
    font-size: 23px;
    line-height: 35px;
    transform: translateY(-15px);
    padding: 8px 16px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* -------------------------------
    kvConts
------------------------------- */
.kvConts {
  background: url("../images/kv.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .kvConts {
    background: url("../images/kv_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.kvConts::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 140px 100vw;
  border-color: transparent transparent #ffffff transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .kvConts::after {
    border-width: 0 0 50px 100vw;
  }
}

.kvConts .kvInner {
  padding: 40px 20px 127px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

@media (max-width: 768px) {
  .kvConts .kvInner {
    padding: 24px 24px 80px;
  }
}

.kvConts .kvInner .kvTitle {
  font-weight: 900;
  font-size: 40px;
  line-height: 58px;
  color: #ffffff;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvTitle {
    font-size: 16px;
    line-height: 23px;
  }
}

.kvConts .kvInner .kvTitle img {
  display: inline-block;
  vertical-align: middle;
  width: 240px;
  margin-right: 24px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvTitle img {
    max-width: 107px;
    width: 25%;
    margin-right: 16px;
  }
}

.kvConts .kvInner .kvRead {
  margin-bottom: 72px;
  font-weight: 900;
  font-size: 68px;
  line-height: 130%;
  color: #ffffff;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvRead {
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 280px;
  }
}

.kvConts .kvInner .kvRead span {
  display: block;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvRead span {
    font-size: 16px;
    line-height: 23px;
    margin-top: 8px;
  }
}

.kvConts .kvInner .kvBt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  max-width: 662px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt {
    max-width: 313px;
  }
}

.kvConts .kvInner .kvBt li {
  width: calc(50% - 18px);
  background: #ad2e46;
  padding: 16px 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt li {
    width: calc(50% - 12px);
    padding: 16px 5px;
  }
}

.kvConts .kvInner .kvBt li::after {
  position: absolute;
  top: -2px;
  left: -5px;
  display: inline-block;
  content: 'check!';
  color: #000000;
  opacity: 0.2;
  transform: rotate(-15deg);
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  z-index: 1;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt li::after {
    font-size: 24px;
    line-height: 28px;
  }
}

.kvConts .kvInner .kvBt li .kvBtRead {
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt li .kvBtRead {
    font-size: 20px;
    line-height: 29px;
  }
}

.kvConts .kvInner .kvBt li .kvBtTxt {
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt li .kvBtTxt {
    font-size: 16px;
    line-height: 23px;
  }
}

.kvConts .kvInner .kvBt li .kvBtTxt .en {
  font-weight: 700;
  font-size: 80px;
  line-height: 94px;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .kvConts .kvInner .kvBt li .kvBtTxt .en {
    font-size: 48px;
    line-height: 56px;
  }
}

/* -------------------------------
    beneConts
------------------------------- */
.beneConts {
  padding: 20px 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.beneConts::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 140px 100vw;
  border-color: transparent transparent #ad2e46 transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .beneConts::after {
    border-width: 0 0 50px 100vw;
  }
}

.beneConts .inner1023 {
  padding: 0 20px;
  max-width: 1063px;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .beneConts .inner1023 {
    position: relative;
    z-index: 0;
  }
  .beneConts .inner1023::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 100vw;
    border-color: transparent transparent #eaeaea transparent;
    z-index: 10;
  }
}

.beneConts .beneList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .beneConts .beneList {
    display: block;
  }
}

.beneConts .beneList li {
  width: calc(100% / 3 - 20px);
  margin-top: 30px;
  border: 2px solid #101010;
  padding: 31px 8px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .beneConts .beneList li {
    width: 100%;
    margin-top: 30px;
  }
  .beneConts .beneList li:nth-child(2), .beneConts .beneList li:nth-child(3) {
    margin-top: 30px !important;
  }
}

.beneConts .beneList li:nth-child(1), .beneConts .beneList li:nth-child(2), .beneConts .beneList li:nth-child(3) {
  margin-top: 0;
}

.beneConts .beneList li .child {
  width: 100%;
}

.beneConts .beneList li .redTxt {
  color: #ad2e46;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .beneConts .beneList li .redTxt {
    font-size: 24px;
    line-height: 34px;
  }
}

.beneConts .beneList li .redTxt span {
  font-size: 40px;
  line-height: 50px;
  display: block;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .beneConts .beneList li .redTxt span {
    font-size: 32px;
    line-height: 42px;
    margin-top: 10px;
  }
}

.beneConts .beneList li .redTxt span b {
  display: block;
  font-size: 16px;
  line-height: 28px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .beneConts .beneList li .redTxt span b {
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
  }
}

.beneConts .beneList li .subTxt {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .beneConts .beneList li .subTxt {
    font-size: 12px;
    line-height: 17px;
    margin-top: 16px;
  }
}

.beneConts .mapArea {
  background: #eaeaea;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 0;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .beneConts .mapArea {
    display: block;
    padding: 0;
  }
}

.beneConts .mapArea::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 140px 100vw 0 0;
  border-color: #ffffff transparent transparent transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .beneConts .mapArea::after {
    border-width: 100vw 0 80px 0;
  }
}

.beneConts .mapArea .left {
  padding-left: calc(50% - 530px);
  padding-right: 112px;
  width: 50%;
}

@media (max-width: 768px) {
  .beneConts .mapArea .left {
    width: 100%;
    padding: 20px 16px 40px;
  }
}

.beneConts .mapArea .left .mapRead {
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  margin-bottom: 24px;
  color: #ad2e46;
}

@media (max-width: 768px) {
  .beneConts .mapArea .left .mapRead {
    font-size: 32px;
    line-height: 46px;
    margin-bottom: 16px;
  }
}

.beneConts .mapArea .left .mapRead span {
  display: inline-block;
  font-size: 56px;
  line-height: 66px;
  color: #eaeaea;
  background: #ad2e46;
  padding: 8px 18px;
}

@media (max-width: 768px) {
  .beneConts .mapArea .left .mapRead span {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 5px;
  }
}

.beneConts .mapArea .left .mapTxt {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .beneConts .mapArea .left .mapTxt {
    font-size: 16px;
    line-height: 28px;
  }
}

.beneConts .mapArea .right {
  width: 50%;
  height: 782px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .beneConts .mapArea .right {
    width: 100%;
    height: 557px;
  }
}

.beneConts .mapArea .right iframe {
  display: block;
  border: none;
  width: 100%;
  height: 932px;
  margin-top: -150px;
}

@media (max-width: 768px) {
  .beneConts .mapArea .right iframe {
    width: 100%;
    height: 657px;
    margin: 0;
  }
}

/* -------------------------------
    aboutConts
------------------------------- */
.aboutConts {
  padding: 120px 0 200px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .aboutConts {
    padding: 64px 0 100px;
  }
}

.aboutConts::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 140px 100vw;
  border-color: transparent transparent #eaeaea transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .aboutConts::after {
    border-width: 0 0 50px 100vw;
  }
}

.aboutConts .wclmn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  overflow: hidden;
}

@media (max-width: 768px) {
  .aboutConts .wclmn {
    display: block;
    margin-top: 40px;
  }
  .aboutConts .wclmn:first-of-type {
    margin-top: 0;
  }
}

.aboutConts .wclmn:first-child .text .italic {
  text-align: right;
}

.aboutConts .wclmn.reverse {
  flex-direction: row-reverse;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn.reverse {
    margin-bottom: 0;
  }
}

.aboutConts .wclmn.reverse .text {
  padding: 80px 80px 0 20px;
}

@media (max-width: 1080px) {
  .aboutConts .wclmn.reverse .text {
    padding: 40px 40px 0 20px;
  }
}

.aboutConts .wclmn.reverse .text .italic {
  text-align: center;
}

.aboutConts .wclmn .thum {
  width: 50%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .thum {
    width: 100%;
  }
}

.aboutConts .wclmn .thum::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 50vw;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .thum::after {
    border-width: 0 0 40px 100vw;
  }
}

.aboutConts .wclmn .thum::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 50vw 0 0;
  border-color: #ffffff transparent transparent transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .thum::before {
    border-width: 40px 100vw 0 0;
  }
}

.aboutConts .wclmn .text {
  width: 50%;
  padding: 0 20px 0 80px;
}

@media (max-width: 1080px) {
  .aboutConts .wclmn .text {
    padding: 0 20px 0 40px;
  }
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text {
    width: 100%;
    padding: 0 16px !important;
  }
}

.aboutConts .wclmn .text .italic {
  text-align: left;
  color: #eaeaea;
  font-weight: 700;
  font-size: 130px;
  line-height: 120px;
  transform: matrix(1, -0.11, 0, 1, 0, 0) translateY(-20px);
  position: relative;
  z-index: -1;
}

@media (max-width: 1450px) {
  .aboutConts .wclmn .text .italic {
    font-size: 8.5vw;
    line-height: 8vw;
  }
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .italic {
    font-size: 18vw;
    line-height: 18vw;
    margin-bottom: 2vw;
    text-align: center;
    transform: matrix(1, -0.11, 0, 1, 0, 0) scale(1.1);
  }
}

.aboutConts .wclmn .text .read {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read {
    font-size: 24px;
    line-height: 35px;
  }
}

.aboutConts .wclmn .text .read b {
  font-size: 32px;
  line-height: 46px;
  display: block;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read b {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
  }
}

.aboutConts .wclmn .text .read span {
  font-size: 80px;
  line-height: 94px;
  color: #ad2e46;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read span {
    font-size: 80px;
    line-height: 80px;
  }
}

.aboutConts .wclmn .text .read02 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read02 {
    font-size: 24px;
    line-height: 35px;
  }
}

.aboutConts .wclmn .text .read02 b {
  font-size: 32px;
  line-height: 46px;
  display: block;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read02 b {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
    text-align: left;
  }
}

.aboutConts .wclmn .text .read02 span {
  display: block;
  position: relative;
  padding: 10px 0 0 90px;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read02 span {
    max-width: 100%;
    margin-bottom: 24px;
    padding: 15px 0 0 55px;
    font-size: 18px;
    line-height: 30px;
  }
}

.aboutConts .wclmn .text .read02 span::after {
  content: '1';
  font-style: italic;
  font-family: 'Roboto Flex', sans-serif;
  color: #ad2e46;
  font-weight: 700;
  font-size: 71px;
  line-height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read02 span::after {
    font-size: 40px;
    line-height: 40px;
  }
}

.aboutConts .wclmn .text .read02 span::before {
  position: absolute;
  top: 9px;
  left: 60px;
  content: '';
  width: 1px;
  height: 41px;
  background: #ad2e46;
  transform: rotate(50deg);
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read02 span::before {
    top: 10px;
    left: 34px;
    height: 40px;
    transform: rotate(45deg);
  }
}

.aboutConts .wclmn .text .read02 span:nth-child(3)::after {
  content: '2';
}

.aboutConts .wclmn .text .read02 span:nth-child(4)::after {
  content: '3';
}

.aboutConts .wclmn .text .read02 span:last-child {
  margin-bottom: 0;
}

.aboutConts .wclmn .text .read03 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.aboutConts .wclmn .text .read03 b {
  font-size: 32px;
  line-height: 46px;
  display: block;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .aboutConts .wclmn .text .read03 b {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
  }
}

/* -------------------------------
    recruitConts
------------------------------- */
.recruitConts {
  background: #eaeaea;
  padding: 70px 20px 140px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .recruitConts {
    padding: 20px 16px 80px;
  }
}

.recruitConts::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 140px 100vw;
  border-color: transparent transparent #ad2e46 transparent;
  z-index: 10;
}

@media (max-width: 768px) {
  .recruitConts::after {
    border-width: 0 0 50px 100vw;
  }
}

.recruitConts .sttl .en {
  color: #ffffff;
  opacity: 0.4;
}

.recruitConts .table01 {
  border-collapse: collapse;
  text-align: left;
}

.recruitConts .table01 th {
  background: #ad2e46;
  color: #fff;
  vertical-align: top;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  width: 320px;
}

@media (max-width: 768px) {
  .recruitConts .table01 th {
    display: block;
    width: 100%;
  }
}

.recruitConts .table01 td {
  width: calc(100% - 320px);
  background: #fff;
  padding: 16px;
}

@media (max-width: 768px) {
  .recruitConts .table01 td {
    display: block;
    width: 100%;
  }
}

.recruitConts .table01 td .tRead {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 7px;
}

.recruitConts .table01 td .tNotice li {
  padding-left: 17px;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 7px;
}

.recruitConts .table01 td .tNotice li::after {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 20px;
}

.recruitConts .table01 td .tTxt {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 7px;
}

.recruitConts .table01 tr {
  border-bottom: 5px solid #eaeaea;
}

/* -------------------------------
    flowConts
------------------------------- */
.flowConts {
  padding: 120px 20px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .flowConts {
    padding: 80px 16px 0;
    overflow: inherit;
  }
}

.flowConts .flowList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .flowConts .flowList {
    display: block;
  }
}

.flowConts .flowList::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 50px);
  height: 16px;
  background: #eaeaea;
}

@media (max-width: 768px) {
  .flowConts .flowList::after {
    height: calc(100% - 50px);
    width: 16px;
  }
}

.flowConts .flowList li {
  width: calc(100% / 5 - 15px);
  position: relative;
  z-index: 0;
  padding: 32px 0;
}

@media (max-width: 768px) {
  .flowConts .flowList li {
    width: 100%;
    margin-top: 30px;
    padding: 20px 16px;
  }
  .flowConts .flowList li:first-child {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .flowConts .flowList li .child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    align-items: center;
  }
}

.flowConts .flowList li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translateY(-50%) translateX(-50%) skew(7deg);
  height: 100%;
  width: 100%;
  background: #eaeaea;
  z-index: -1;
}

@media (max-width: 768px) {
  .flowConts .flowList li::after {
    transform: translateY(-50%) translateX(-50%) skew(0deg, 3deg);
  }
}

@media (max-width: 768px) {
  .flowConts .flowList li .fRead {
    width: 100px;
    text-align: center;
    display: block;
  }
}

.flowConts .flowList li .fRead span {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #ad2e46;
  display: block;
  margin-bottom: 10px;
  padding: 0 20px 0 0;
}

@media (max-width: 768px) {
  .flowConts .flowList li .fRead span {
    padding: 0;
    margin-bottom: 5px;
  }
}

.flowConts .flowList li .fRead img {
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flowConts .flowList li .fRead img {
    max-width: calc(100% - 16px);
  }
}

.flowConts .flowList li .fRead b {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  display: block;
  min-height: 58px;
  padding: 0 10px 0 0;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .flowConts .flowList li .fRead b {
    min-height: inherit;
    padding: 0;
    font-size: 16px;
    line-height: 23px;
  }
}

.flowConts .flowList li .fTxt {
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  padding: 0 10px 0 35px;
  margin: 16px auto 0;
}

@media (max-width: 768px) {
  .flowConts .flowList li .fTxt {
    padding: 0;
    width: calc(100% - 116px);
    margin: 0;
  }
}

/* -------------------------------
    qaConts
------------------------------- */
.qaConts {
  padding: 120px 20px;
}

@media (max-width: 768px) {
  .qaConts {
    padding: 80px 16px 64px;
    overflow: inherit;
  }
}

.qaConts .qaList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .qaConts .qaList {
    display: block;
  }
}

.qaConts .qaList li {
  width: calc(50% - 16px);
  margin-top: 32px;
  background: #eaeaea;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .qaConts .qaList li {
    width: 100%;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
  }
  .qaConts .qaList li:last-child {
    margin-bottom: 0;
  }
}

.qaConts .qaList li:nth-child(1), .qaConts .qaList li:nth-child(2) {
  margin-top: 0;
}

.qaConts .qaList li .qTxt {
  padding: 40px 32px 24px 72px;
  position: relative;
}

@media (max-width: 768px) {
  .qaConts .qaList li .qTxt {
    padding: 24px 24px 24px 72px;
    min-height: inherit !important;
  }
}

.qaConts .qaList li .qTxt::after {
  content: 'Q';
  position: absolute;
  opacity: 0.6;
  top: 0;
  left: -30px;
  color: #fff;
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
}

@media (max-width: 768px) {
  .qaConts .qaList li .qTxt::after {
    top: 0px;
    left: -30px;
    font-size: 80px;
  }
}

.qaConts .qaList li .qTxt::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -40px;
  left: 0;
  margin: auto;
  width: 69px;
  height: 1px;
  background: #9b9b9b;
}

@media (max-width: 768px) {
  .qaConts .qaList li .qTxt::before {
    right: -48px;
  }
}

.qaConts .qaList li .aTxt {
  padding: 24px 32px 40px 72px;
  position: relative;
}

@media (max-width: 768px) {
  .qaConts .qaList li .aTxt {
    padding: 24px 24px 24px 72px;
  }
}

.qaConts .qaList li .aTxt::after {
  content: 'A';
  position: absolute;
  opacity: 0.1;
  top: 40px;
  left: -20px;
  color: #ad2e46;
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
}

@media (max-width: 768px) {
  .qaConts .qaList li .aTxt::after {
    top: 30px;
    left: -20px;
    font-size: 90px;
  }
}

/* -------------------------------
    contactConts
------------------------------- */
.contactConts {
  background: #ad2e46;
  padding: 70px 0px 120px;
}

@media (max-width: 768px) {
  .contactConts {
    padding: 64px 0;
  }
}

.contactConts .sttl .en {
  color: #ffffff;
  opacity: 0.4;
}

.contactConts .inner1023 {
  padding: 0 20px;
}

@media (max-width: 768px) {
  .contactConts .inner1023 {
    padding: 0 16px;
  }
}

.contactConts .formArea {
  margin-bottom: 72px;
}

.contactConts .formArea .deleatOK {
  background: #fff;
  padding: 20px;
}

.contactConts .contactMid {
  background: #fff;
  padding: 24px 68px 40px;
  max-width: 848px;
  width: 100%;
  margin: 0 auto 80px;
  text-align: left;
}

@media (max-width: 768px) {
  .contactConts .contactMid {
    padding: 24px 24px 34px;
    margin: 0 auto 64px;
  }
}

.contactConts .contactMid .contactMidRead {
  max-width: 408px;
  width: 100%;
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .contactConts .contactMid .contactMidRead {
    max-width: 280px;
    margin-bottom: 24px;
  }
}

.contactConts .contactMid .contactMidTxt {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .contactConts .contactMid .contactMidTxt {
    font-size: 14px;
    line-height: 26px;
  }
}

.contactConts .contactMid .contactMidBt {
  max-width: 496px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contactConts .contactMid .contactMidBt {
    max-width: 272px;
  }
}

.contactConts .contactLinkRead {
  font-weight: 700;
  font-size: 40px;
  line-height: 58px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .contactConts .contactLinkRead {
    font-size: 23px;
    line-height: 35px;
    margin-bottom: 24px;
  }
}

.contactConts .contactLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .contactConts .contactLink {
    display: block;
  }
}

.contactConts .contactLink li {
  width: calc(100% / 3 - 20px);
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contactConts .contactLink li {
    width: 100%;
    margin-top: 30px;
  }
  .contactConts .contactLink li:nth-child(2), .contactConts .contactLink li:nth-child(3) {
    margin-top: 30px !important;
  }
}

.contactConts .contactLink li:nth-child(1), .contactConts .contactLink li:nth-child(2), .contactConts .contactLink li:nth-child(3) {
  margin-top: 0;
}

.contactConts .contactLink li a {
  background: #fff;
  transition: 0.2s;
  display: block;
  height: 100%;
}

.contactConts .contactLink li a .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  margin-top: 26px;
  padding: 0 10px 16px;
}

/* -------------------------------
    bnrArea
------------------------------- */
.bnrArea {
  position: relative;
  z-index: 0;
  background: #ad2e46;
  padding: 40px 20px 53px;
}

@media (max-width: 768px) {
  .bnrArea {
    padding: 16px 16px 32px;
  }
}

.bnrArea img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 637px;
  width: 45%;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bnrArea img {
    display: none;
  }
}

.bnrArea .bnrBtn {
  max-width: 896px;
  width: 100%;
  margin-right: auto;
}

.bnrArea .bnrBtn a {
  background: #101010;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.55);
  border-radius: 96px;
  font-weight: 700;
  font-size: 36px;
  line-height: 136px;
  text-align: center;
  color: #ffffff;
  transition: 0.4s;
  display: block;
}

@media (max-width: 768px) {
  .bnrArea .bnrBtn a {
    font-size: 24px;
    line-height: 80px;
  }
}

.bnrArea .bnrBtn a:hover {
  opacity: 1;
  color: #101010;
  background: #fff;
}

/*# sourceMappingURL=maps/style.css.map */
