@charset "UTF-8";
/*reset css*/
body, h1, h2, h3, h4, p, ul, li, a, dl, dt, dd, table, tr, th, td, span {
  margin: 0;
  padding: 0;
  color: #333333;
  text-decoration: none;
  list-style: none;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
  font-size: 1.6rem;
}

button, input, select, textarea {
  background-color: unset;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

div, section, article, figure, picture {
  box-sizing: border-box;
  margin: 0;
  display: block;
  padding: 0;
}

img {
  width: 100%;
}

/*common*/
html, body {
  font-size: 62.5%;
  letter-spacing: 0;
  color: #000000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.futura {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.futura {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}

a {
  transition: all 0.2s;
}

.inner {
  margin: 0 auto;
  width: 150rem;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .inner {
    width: auto;
  }
}

@media (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 2rem;
  }
}
main {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 2.6666666667vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1540px) {
  html, body {
    font-size: 0.6493506494vw;
  }
}
/* common animation ///////////////////////////////////////////////*/
.js-focus {
  opacity: 0;
}

.focus-in {
  -webkit-animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.js-u-fade {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.8s cubic-bezier(0.86, 0, 0.07, 1), transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.js-r-fade {
  transform: translateX(60px);
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-l-fade {
  transform: translateX(-60px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.fade-in {
  opacity: 1;
  transform: translate(0);
}

.js-spin {
  transform: rotateY(-450deg);
  transition-duration: 0.8s;
  will-change: transform;
  opacity: 0;
}

.js-spin.spin {
  transform: rotateY(0deg);
  opacity: 1;
}

@-webkit-keyframes anm_coin {
  0% {
    transform: rotateY(-450deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@keyframes anm_coin {
  0% {
    transform: rotateY(-450deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/* txt overflow animation */
/* js-m-txt wrapping to maskElem */
.js-m-txt {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.js-m-txt::-webkit-scrollbar {
  display: none;
}

.js-m-txt .maskElem-y {
  transform: translateY(120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.js-m-txt .maskElem-x {
  transform: translateX(-120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@-webkit-keyframes mask {
  100% {
    transform: translate(0);
  }
}

@keyframes mask {
  100% {
    transform: translate(0);
  }
}
.js-m-txt.animated .maskElem-y,
.js-m-txt.animated .maskElem-x {
  -webkit-animation: mask cubic-bezier(0.86, 0, 0.07, 1) forwards;
          animation: mask cubic-bezier(0.86, 0, 0.07, 1) forwards;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  overflow: hidden;
}

/* images overflow animation */
.js-m-img {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  /* display: inline-block; */
  transition: 1.5s 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.js-m-img.center {
  -webkit-clip-path: inset(0 100% 100% 0);
          clip-path: inset(0 100% 100% 0);
}

.js-m-img.animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

/* /////////////////////////////////////////////// */
/*/////////////////////////////////////header*/
header.hide {
  transform: translateY(-100%);
}

header {
  width: 100%;
}

.headerBox {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 3.7rem 6rem 3.7rem;
  align-items: center;
  transition-duration: 0.4s;
}
@media (max-width: 767px) {
  .headerBox {
    padding: 2rem 0 2rem 2rem;
  }
}
.headerBox .headerTopBlk .logo {
  width: 5.4rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .headerBox .headerTopBlk .logo {
    width: 3rem;
  }
}

#global_nav ul {
  display: flex;
  align-items: center;
}

#global_nav ul li {
  /* padding: 1.2rem 1.5rem; */
  font-size: 1.6rem;
}
#global_nav ul li:not(:last-of-type) {
  margin-right: 6.4rem;
}

#global_nav ul li a {
  font-weight: bold;
  font-family: futura-pt, sans-serif;
  font-size: 1.6rem;
  color: #333;
  display: block;
}
@media (min-width: 768px) {
  #global_nav ul li a.-frame {
    padding: 1.3rem 5rem;
    border: 1px solid #333;
  }
}

.headerBox.active {
  background: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.headerBox.active .logo {
  width: 4rem;
}
@media (max-width: 767px) {
  .headerBox.active {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .headerBox.active .logo {
    width: 2rem;
  }
}
.headerBox.active .gnavi {
  top: 2rem;
}
.headerBox.active #global_nav ul li a {
  color: #333;
  border-color: #333;
}
@media (max-width: 767px) {
  .headerBox.active #global_nav ul li a {
    color: #fff;
    border-color: #333;
  }
}

#index #global_nav ul li a {
  color: #fff;
  border-color: #fff;
}

#index .gnavi .jsHumb {
  background: #fff;
}

#index .headerBox.active #global_nav ul li a {
  color: #333;
  border-color: #333;
}
@media (max-width: 767px) {
  #index .headerBox.active #global_nav ul li a {
    color: #fff;
    border-color: #333;
  }
}
#index .headerBox.active .gnavi .jsHumb {
  background: #333;
}

@media screen and (max-width: 767px) {
  .gnavi nav {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100%;
    padding-top: 5rem;
    background: rgba(8, 10, 23, 0.8);
    box-sizing: border-box;
    z-index: 100;
    width: 100vw;
    transition-duration: 0.4s;
    padding: 10vh 0 0 4rem;
  }
  .gnavi.open nav {
    right: 0;
  }
  .gnavi {
    position: fixed;
    top: 3rem;
    right: 2rem;
    width: 3rem;
    height: 2rem;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 400ms;
  }
  .gnavi .jsHumb {
    position: absolute;
    width: 4rem;
    height: 1px;
    background: #333;
    border-radius: 10px;
    transition: all 400ms;
    z-index: 300;
  }
  .gnavi .jsHumb:nth-of-type(1) {
    top: 2%;
  }
  .gnavi .jsHumb:nth-of-type(2) {
    top: 40%;
  }
  .gnavi .jsHumb:nth-of-type(3) {
    top: 80%;
  }
  .gnavi.open .jsHumb {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    top: 20%;
    background-color: #fff !important;
  }
  .gnavi.open .jsHumb:nth-of-type(2) {
    display: none;
  }
  .gnavi.open .jsHumb:nth-of-type(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  #global_nav ul {
    display: block;
  }
  #global_nav ul li {
    width: auto;
    display: block;
  }
  #global_nav ul li a {
    font-size: 3.2rem;
    margin-top: 3.2rem;
    color: #fff;
  }
}
.en {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* common text size */
.commonSectionSubTtl {
  font-size: 4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .commonSectionSubTtl {
    font-size: 2.4rem;
  }
}

.commonTxt {
  font-size: 1.6rem;
  letter-spacing: 0.018em;
  line-height: 1.6875;
}

.commonSectionTtl {
  font-size: 6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .commonSectionTtl {
    font-size: 4rem;
  }
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

@media (max-width: 767px) {
  .spTac {
    text-align: center;
  }
}

.w-color {
  color: #fff;
}

.w-border {
  border-bottom: 1px solid #fff;
}

.b-border {
  border-bottom: 1px solid #333333;
}

.commonBtn {
  display: inline-flex;
  font-size: 1.8rem;
  letter-spacing: 0.018em;
  font-weight: 700;
  align-items: center;
  padding-bottom: 1.5rem;
}
.commonBtn .arrow {
  display: inline-block;
  width: 1.2rem;
  height: 1rem;
  margin-left: 0.9rem;
  position: relative;
  transition-duration: 0.3s;
}
.commonBtn .arrow.-arrow-w {
  background: url(../images/arrow_w.svg) no-repeat center center/contain;
}
.commonBtn .arrow.-arrow-b {
  background: url(../images/arrow_b.svg) no-repeat center center/contain;
}
.commonBtn:hover .arrow {
  transform: translateX(0.6rem);
}

.commonHeading .jp {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}
@media (max-width: 767px) {
  .commonHeading .jp {
    font-size: 1.4rem;
  }
}
.commonHeading .en {
  display: block;
  margin-top: 2rem;
  font-size: 12rem;
  line-height: 0.83333;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .commonHeading .en {
    font-size: 6rem;
    line-height: 1;
  }
}

#index .mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
}
#index .mv__bgLayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#index .mv__bgLayer.layer01 {
  background: url(/assets/images/mv_bglayer_00.jpg) no-repeat center center/cover;
  z-index: 1;
}
#index .mv__bgLayer.layer02 {
  width: 100%;
  height: 100%;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(39.9674987793px);
          backdrop-filter: blur(39.9674987793px);
  --webkit-backdrop-filter: blur(39.967498779296875px);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 2;
}
#index .mv__mainObjArea {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
#index .mv__mainObjArea .mv__mainObj svg {
  width: 0;
  height: 0;
}
#index .mv__mainObjArea .mv__mainObj path {
  transform: scale(0.00052083, 0.00092593);
}
#index .mv .mask {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  transition-duration: 0.5s;
  background: url(/assets/images/mv_bglayer_00.jpg) center center no-repeat;
  background-size: cover;
}
#index .mv .mask.mask01 {
  clip-path: url(#clip01);
  -webkit-clip-path: url(#clip01);
}
#index .mv .mask.mask02 {
  clip-path: url(#clip02);
  -webkit-clip-path: url(#clip02);
}
#index .mv .mask.mask03 {
  clip-path: url(#clip03);
  -webkit-clip-path: url(#clip03);
}
#index .mv .mask.mask04 {
  clip-path: url(#clip04);
  -webkit-clip-path: url(#clip04);
}
#index .mv .mask.mask05 {
  clip-path: url(#clip05);
  -webkit-clip-path: url(#clip05);
}
#index .mv .mask.mask06 {
  clip-path: url(#clip06);
  -webkit-clip-path: url(#clip06);
}
#index .mv .mask.mask07 {
  clip-path: url(#clip07);
  -webkit-clip-path: url(#clip07);
}
#index .mv .mask.mask08 {
  clip-path: url(#clip08);
  -webkit-clip-path: url(#clip08);
}
#index .mv h1 {
  width: 37.2rem;
  position: absolute;
  bottom: 10vh;
  left: 5.9259259259vh;
  z-index: 6;
}
@media (max-width: 767px) {
  #index .mv h1 {
    width: 22rem;
    bottom: auto;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
#index .mv h1 .js-m-txt:nth-of-type(1) {
  margin-bottom: 2.3148148148vh;
}
#index .mv h1 .js-m-txt .maskElem-y {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
#index .topSection {
  background: #080A17;
  padding: 22.6rem 0 24.2rem;
}
@media (max-width: 767px) {
  #index .topSection {
    padding: 10rem 0 11rem;
  }
}
#index .topSection__lead {
  width: 106rem;
  margin: 0 auto;
  font-size: 3.2rem;
  line-height: 2;
  font-weight: bold;
}
#index .topSection__lead span {
  font: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#index .topSection__lead span span {
  display: inline-block;
}
@media (max-width: 767px) {
  #index .topSection__lead {
    width: auto;
    font-size: 2rem;
  }
}
#index .topSection__link {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  #index .topSection__link {
    margin-top: 3.2rem;
  }
}
#index .middleSection {
  padding: 20rem 0 0;
}
@media (max-width: 767px) {
  #index .middleSection {
    padding: 10rem 0 0;
  }
}
#index .middleSection__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#index .middleSection__lead {
  margin-top: 6.2rem;
  width: 63.5rem;
}
@media (max-width: 767px) {
  #index .middleSection__lead {
    width: auto;
    margin-top: 3.2rem;
  }
}
#index .middleSection__link {
  margin-top: 7.4rem;
}
@media (max-width: 767px) {
  #index .middleSection__link {
    margin-top: 3.7rem;
  }
}
#index .middleSection__img {
  margin-right: -9.8958333333vw;
  width: 44.53125vw;
}
#index .middleSection__spImg {
  width: 100%;
  margin-top: 3.2rem;
}
#index .bottomSection {
  padding: 20rem 0;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  #index .bottomSection {
    padding: 10rem 0;
  }
}
#index .bottomSection__wrap {
  width: 51.6rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  #index .bottomSection__wrap {
    width: 28rem;
  }
}
#index .bottomSection__lead {
  font-size: 8rem;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.25;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 110rem;
  color: #CCCCCC;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  #index .bottomSection__lead {
    font-size: 4rem;
    width: 100vw;
  }
}
#index .bottomSection__lead span {
  font: inherit;
  color: inherit;
  display: inline-block;
}
#index .bottomSection__sliderWrapper {
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
#index .bottomSection__sliderImg {
  width: 300vw;
  display: flex;
  z-index: 10;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg {
    width: 700vw;
    bottom: 0;
  }
}
#index .bottomSection__sliderImg.slider01 {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg.slider01 {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg img {
    -webkit-animation-duration: 200s;
            animation-duration: 200s;
  }
}
#index .bottomSection__sliderImg.left img:first-child {
  -webkit-animation: loopRight1 100s -50s linear infinite;
          animation: loopRight1 100s -50s linear infinite;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg.left img:first-child {
    -webkit-animation: loopRight1 200s -100s linear infinite;
            animation: loopRight1 200s -100s linear infinite;
  }
}
#index .bottomSection__sliderImg.left img:last-child {
  -webkit-animation: loopRight2 100s linear infinite;
          animation: loopRight2 100s linear infinite;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg.left img:last-child {
    -webkit-animation: loopRight2 200s linear infinite;
            animation: loopRight2 200s linear infinite;
  }
}
#index .bottomSection__sliderImg.right img:first-child {
  -webkit-animation: loopLeft1 100s -50s linear infinite;
          animation: loopLeft1 100s -50s linear infinite;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg.right img:first-child {
    -webkit-animation: loopLeft1 200s -100s linear infinite;
            animation: loopLeft1 200s -100s linear infinite;
  }
}
#index .bottomSection__sliderImg.right img:last-child {
  -webkit-animation: loopLeft2 100s linear infinite;
          animation: loopLeft2 100s linear infinite;
}
@media (max-width: 767px) {
  #index .bottomSection__sliderImg.right img:last-child {
    -webkit-animation: loopLeft2 200s linear infinite;
            animation: loopLeft2 200s linear infinite;
  }
}
@-webkit-keyframes loopRight1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopRight1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loopRight2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loopRight2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes loopLeft1 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loopLeft1 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes loopLeft2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes loopLeft2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
#index .bottomSection__link {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -2.2rem;
  white-space: nowrap;
  mix-blend-mode: difference;
  color: #CCCCCC;
  border-color: #CCCCCC;
}
@media (max-width: 767px) {
  #index .bottomSection__link {
    bottom: 3.2rem;
  }
}
#index .bottomSection__link span {
  mix-blend-mode: difference;
}
#index .bottomSection .commonBtn-l {
  display: inline-flex;
  font-size: 4rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  align-items: center;
  padding-bottom: 1.8rem;
  border-width: 3px;
}
@media (max-width: 767px) {
  #index .bottomSection .commonBtn-l {
    font-size: 2rem;
    padding-bottom: 1.5rem;
    letter-spacing: 0.018em;
  }
}
#index .bottomSection .commonBtn-l .arrow {
  display: inline-block;
  width: 2.4rem;
  height: 2rem;
  background: url(../images/arrow_g.svg) no-repeat center center/contain;
  margin-left: 1.8rem;
  position: relative;
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  #index .bottomSection .commonBtn-l .arrow {
    width: 1.6rem;
    height: 1.5rem;
  }
}
#index .bottomSection .commonBtn-l:hover .arrow {
  transform: translateX(0.6rem);
}

#commonSubPage .mv {
  padding: 32.4074074074vh 0 12.962962963vh;
  position: relative;
}
@media (max-width: 767px) {
  #commonSubPage .mv {
    padding: 22.2222222222vh 0 7.4074074074vh;
  }
}
#commonSubPage .mv .mv__commonObj {
  width: 54.0740740741vh;
  position: absolute;
  left: 2.5925925926vh;
  top: -24.6296296296vh;
}
@media (max-width: 767px) {
  #commonSubPage .mv .mv__commonObj {
    left: 0vh;
  }
}

.about {
  position: relative;
}
.about__bg {
  width: 32.34375vw;
  position: absolute;
  top: 0;
  right: -12.1875vw;
}
@media (max-width: 767px) {
  .about__bg {
    display: none;
  }
}
.about__flxBlk {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .about__flxBlk {
    display: block;
  }
}
.about__flxBlk:not(:first-of-type) {
  margin-top: 22.6rem;
}
@media (max-width: 767px) {
  .about__flxBlk:not(:first-of-type) {
    margin-top: 10rem;
  }
}
.about__flxBlk:last-of-type {
  padding-bottom: 20rem;
}
@media (max-width: 767px) {
  .about__flxBlk:last-of-type {
    padding-bottom: 10rem;
  }
}
.about__ttlArea {
  width: 47.4rem;
  flex: 0 0 47.4rem;
}
@media (max-width: 767px) {
  .about__ttlArea {
    width: auto;
  }
}
.about__txtArea {
  margin-top: -1.4rem;
  width: 39.84375vw;
}
@media (max-width: 767px) {
  .about__txtArea {
    width: auto;
    margin-top: 3.2rem;
  }
}
.about__txtArea p {
  font-size: 1.6rem;
  line-height: 3.125;
}
@media (max-width: 767px) {
  .about__txtArea p {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .about__dl {
    margin-top: 6.4rem;
  }
}
.about__dl dl {
  display: flex;
  align-items: flex-start;
  padding: 6.2rem 0 7.2rem;
  width: 39.84375vw;
  border-top: 1px solid #e4e4e4;
}
@media (max-width: 767px) {
  .about__dl dl {
    padding: 2.4rem 0;
    width: 100%;
  }
}
.about__dl dl:last-of-type {
  border-bottom: 1px solid #e4e4e4;
}
.about__dl dl dt, .about__dl dl dd {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6667;
}
@media (max-width: 767px) {
  .about__dl dl dt, .about__dl dl dd {
    font-size: 1.6rem;
  }
}
.about__dl dl dt {
  width: 38.6%;
  padding-left: 5.1041666667vw;
}
@media (max-width: 767px) {
  .about__dl dl dt {
    padding-left: 2rem;
  }
}
.about__dl dl dd {
  width: 61.4%;
}
.about__mapArea {
  background: #E3E3E3;
  padding: 5rem 0 8rem;
}
.about__mapTxtArea {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__mapTxtArea a {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about__mapTxtArea a {
    font-size: 1.6rem;
  }
}
.about__map {
  margin-top: 5rem;
  aspect-ratio: 385/219;
  position: relative;
}
@media (max-width: 767px) {
  .about__map {
    margin-top: 3.2rem;
    aspect-ratio: 1/1;
  }
}
.about__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#business .headerBox {
  background: #fff;
}
#business .wrapper {
  background: url(../images/business_bg.jpg) no-repeat center top/cover;
}
#business .business {
  margin-top: 15rem;
  padding: 21.6666666667vh 0 18.5185185185vh;
  min-height: 920px;
}
#business .business__ttl {
  line-height: 1;
}
@media (max-width: 767px) {
  #business .business {
    margin-top: 8.5rem;
    min-height: unset;
  }
}
#business .business__flxBlk {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #business .business__flxBlk {
    display: block;
  }
}
#business .business__flxBlk .commonSectionTtl {
  line-height: 1.3;
}
#business .business__flxBlk p {
  font-size: 1.6rem;
  line-height: 3.118;
}
@media (max-width: 767px) {
  #business .business__flxBlk p {
    line-height: 2;
  }
}
#business .business__flxBlk:first-of-type .business__rightBlk {
  margin-top: 5rem;
}
#business .business__flxBlk:not(:first-of-type) {
  margin-top: 17.8rem;
  margin-top: 8rem;
}
#business .business__rightBlk {
  width: 50%;
}
@media (max-width: 767px) {
  #business .business__rightBlk {
    width: auto;
    margin-top: 3.2rem;
  }
}
#business .business__rightBlk h3 + p {
  margin-top: 4rem;
}
#business .business__rightBlk p + h3 {
  margin-top: 8.2rem;
}

#contact {
  position: relative;
}
#contact ::-moz-placeholder {
  color: rgba(201, 202, 202, 0.4);
  font-size: 1.6rem;
}
#contact ::placeholder {
  color: rgba(201, 202, 202, 0.4);
  font-size: 1.6rem;
}
#contact .stepImg {
  top: 3rem;
  width: 29.3rem;
  position: absolute;
  right: -6rem;
}
#contact .stepImg.complete {
  display: none;
  position: static;
  margin: 0 auto 10rem;
}
@media (max-width: 767px) {
  #contact .stepImg {
    position: static;
    width: 18rem;
    margin-bottom: 4rem;
  }
  #contact .stepImg.complete {
    margin: 0 auto 4rem;
  }
}
#contact .contact {
  padding-top: 12rem;
  padding-bottom: 11rem;
}
#contact .contact ul {
  display: flex;
  justify-content: space-between;
}
#contact .contact ul .formBlock {
  position: relative;
  padding-right: 28.8rem;
  /* チェックボックス */
}
#contact .contact ul .formBlock .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 7.1rem 5rem 8.1rem 0;
  position: relative;
  border-left: 1px solid #E4E4E4;
  border-right: 1px solid #E4E4E4;
}
@media (max-width: 767px) {
  #contact .contact ul .formBlock .wrapper {
    padding: 3.6rem 0 4rem 0;
  }
}
#contact .contact ul .formBlock .wrapper.borderNone {
  padding: 0;
}
#contact .contact ul .formBlock .wrapper.borderNone::before {
  display: none;
}
#contact .contact ul .formBlock .wrapper::before {
  content: "";
  width: 180rem;
  height: 1px;
  background: #E4E4E4;
  position: absolute;
  top: 0;
  left: -13rem;
  display: inline-block;
}
#contact .contact ul .formBlock .contactTitle {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-top: 1.8rem;
  width: 19.5rem;
}
#contact .contact ul .formBlock .contactTitle span {
  font-size: 1.4rem;
  color: #EB4D4D;
  line-height: 1.16;
  font-weight: 400;
  display: inline-block;
  margin-left: 0.6rem;
}
#contact .contact ul .formBlock .contactInput {
  width: 89.1rem;
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 8px;
  background: #F7F7F7;
  font-size: 1.6rem;
  font-weight: normal;
  position: relative;
}
#contact .contact ul .formBlock .contactInput select {
  width: 100%;
  color: #333333;
}
#contact .contact ul .formBlock .contactInput input {
  width: 100%;
  color: #333333;
  font-size: 1.6rem;
}
#contact .contact ul .formBlock .contactInput textarea {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}
#contact .contact ul .formBlock .contactInput.arrow::before {
  content: "";
  width: 1.2rem;
  height: 1rem;
  background: url(/assets/images/contact_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 2.2rem;
  right: 3rem;
}
#contact .contact ul .formBlock .contactInput.textarea {
  height: 30rem;
}
#contact .contact ul .formBlock .twoColumn {
  width: 89.1rem;
  display: flex;
  justify-content: space-between;
}
#contact .contact ul .formBlock .twoColumn .contactInput {
  width: 49.1%;
}
#contact .contact ul .formBlock .privacyBox {
  border: 1px solid rgba(201, 202, 202, 0.5);
  width: 100%;
  width: 89.1rem;
  height: 30rem;
  font-size: 1.6rem;
  line-height: 2;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
#contact .contact ul .formBlock .privacyBox .txtBox {
  overflow: scroll;
  height: 100%;
  color: #333333;
}
#contact .contact ul .formBlock .privacyNote {
  width: 89.1rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 6rem;
}
#contact .contact ul .formBlock .privacyNote a {
  text-decoration: underline;
}
#contact .contact ul .formBlock .container {
  width: 89.1rem;
}
#contact .contact ul .formBlock .contactsSubmit, #contact .contact ul .formBlock .contactsBack {
  width: 27.6rem;
  height: 7.4rem;
  letter-spacing: 0.02em;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-weight: normal;
  cursor: pointer;
  margin: 0 auto;
  background: #080A17;
}
#contact .contact ul .formBlock .contactsSubmit input, #contact .contact ul .formBlock .contactsBack input {
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-weight: normal;
  cursor: pointer;
}
#contact .contact ul .formBlock .contactsSubmit {
  transition-duration: 0.3s;
}
#contact .contact ul .formBlock .contactsSubmit.off {
  opacity: 0.5;
}
#contact .contact ul .formBlock .check {
  position: relative;
  width: 89.1rem;
  display: flex;
  justify-content: center;
}
#contact .contact ul .formBlock #next.off {
  opacity: 0.5;
}
#contact .contact ul .formBlock .check p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 5rem;
  margin-bottom: 10rem;
}
#contact .contact ul .formBlock .check p a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #contact .contact ul .formBlock .check p a {
    font-size: 1.4rem;
  }
}
#contact .contact ul .formBlock .checkBox:before {
  position: absolute;
  z-index: 1;
  top: 0.55rem;
  left: 27.5rem;
  width: 2.5rem;
  height: 0.8rem;
  content: "";
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  border: 3px solid #333333;
  border-top-style: none;
  border-right-style: none;
}
#contact .contact ul .formBlock .checkBox:checked:before {
  transform: rotate(-45deg) scale(1, 1);
}
#contact .contact ul .formBlock .checkBox:after {
  position: absolute;
  top: -1rem;
  left: 27rem;
  width: 4rem;
  height: 4rem;
  content: "";
  cursor: pointer;
  background: #F7F7F7;
  border-radius: 5px;
}
#contact .contact ul .formBlock .checkNext {
  width: 30rem;
  height: 6.6rem;
  background-color: #333333;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
#contact .contact ul.confirmArea {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#contact .contact ul.confirmArea p {
  color: #333333;
}
#contact .contact ul.confirmArea .confirmTtl {
  font-size: 3rem;
  margin-bottom: 6rem;
  font-weight: bold;
  text-align: center;
}
#contact .contact ul.confirmArea .btnWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  width: 89.1rem;
}
#contact .contact ul.confirmArea .btnWrap .contactsBack, #contact .contact ul.confirmArea .btnWrap .contactsSubmit {
  width: 44%;
}
#contact .contact ul.confirmArea .back {
  width: 27.6rem;
  height: 6.4rem;
  letter-spacing: 0.02em;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #080A17;
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-weight: normal;
  cursor: pointer;
  margin: 0 auto;
  border: 0.8rem solid #fff;
}

@media (max-width: 767px) {
  #contact {
    position: relative;
  }
  #contact .layerInner {
    padding: 0 2rem;
  }
  #contact::before {
    width: 100%;
    height: 100%;
    top: 1rem;
    right: 0rem;
    border-radius: 20px;
  }
  #contact .contact {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }
  #contact .contact ul {
    display: block;
  }
  #contact .contact ul .formBlock {
    width: 100%;
    padding-right: 0;
    /* チェックボックス */
  }
  #contact .contact ul .formBlock .wrapper {
    display: block;
  }
  #contact .contact ul .formBlock .contactTitle {
    margin-right: auto;
    margin-bottom: 1rem;
    margin-top: 0;
  }
  #contact .contact ul .formBlock .contactTitle span {
    font-size: 1.2rem;
    margin-left: 0.1rem;
  }
  #contact .contact ul .formBlock .contactInput {
    width: auto;
    padding: 1.6rem 1rem 1.6rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    position: relative;
  }
  #contact .contact ul .formBlock .contactInput.arrow::before {
    content: "";
    right: 2rem;
  }
  #contact .contact ul .formBlock .contactInput.textarea {
    height: 20rem;
  }
  #contact .contact ul .formBlock .twoColumn {
    width: auto;
  }
  #contact .contact ul .formBlock .privacyBox {
    width: 100%;
    height: 20rem;
    line-height: 2;
    padding: 1.2rem;
    letter-spacing: 0.02em;
  }
  #contact .contact ul .formBlock .privacyNote {
    width: auto;
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 5rem;
  }
  #contact .contact ul .formBlock .check {
    padding-bottom: 5rem;
    width: auto;
  }
  #contact .contact ul .formBlock #next.off {
    opacity: 0.5;
  }
  #contact .contact ul .formBlock .check p {
    font-size: 1.4rem;
    margin-left: 5rem;
    line-height: 1.5;
  }
  #contact .contact ul .formBlock .checkBox:before {
    position: absolute;
    z-index: 1;
    bottom: 0.75rem;
    left: 1rem;
    width: 2.5rem;
    height: 0.8rem;
    content: "";
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0, 0);
    border-top-style: none;
    border-right-style: none;
  }
  #contact .contact ul .formBlock .checkBox:checked:before {
    transform: rotate(-45deg) scale(1, 1);
  }
  #contact .contact ul .formBlock .checkBox:after {
    position: absolute;
    top: -1rem;
    left: 0.5rem;
    width: 4rem;
    height: 4rem;
    content: "";
    cursor: pointer;
    border-radius: 5px;
  }
  #contact .contact ul .formBlock .checkNext {
    width: 30rem;
    height: 6.6rem;
    background-color: #333333;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
  #contact .contact ul .formBlock .container {
    width: auto;
  }
  #contact .contact ul .formBlock .contactsSubmit, #contact .contact ul .formBlock .contactsBack {
    width: 25.8rem;
    height: 7.2rem;
    letter-spacing: 0.02em;
    border-radius: 60px;
    font-size: 1.6rem;
    border: 0.4rem solid #fff;
  }
  #contact .contact ul .formBlock .contactsSubmit input, #contact .contact ul .formBlock .contactsBack input {
    color: #FFF;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    font-weight: 400;
    font-weight: normal;
    cursor: pointer;
  }
  #contact .contact ul.confirmArea {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  #contact .contact ul.confirmArea .confirmTtl {
    font-size: 2.4rem;
    margin-bottom: 6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
  }
  #contact .contact ul.confirmArea .btnWrap {
    display: block;
    width: auto;
    justify-content: space-between;
    margin-top: 3rem;
  }
  #contact .contact ul.confirmArea .btnWrap .contactsBack, #contact .contact ul.confirmArea .btnWrap .contactsSubmit {
    width: 25.8rem;
  }
  #contact .contact ul.confirmArea .btnWrap .contactsBack {
    margin-bottom: 4rem;
  }
  #contact .contact ul.confirmArea .back {
    width: 25.8rem;
    height: 7.2rem;
    letter-spacing: 0.02em;
    border-radius: 60px;
    font-size: 1.6rem;
    border: 0.4rem solid #fff;
  }
}
.footer {
  background: #080A17;
}
.footer__flxBlk {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10rem 0 12rem;
}
@media (max-width: 767px) {
  .footer__flxBlk {
    flex-direction: column-reverse;
    justify-content: unset;
    align-items: unset;
    padding: 10rem 0 6.4rem;
  }
}
@media (max-width: 767px) {
  .footer__linkArea {
    margin-top: 6.4rem;
  }
}
.footer__linkArea li.-active a {
  color: transparent;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
}
.footer__linkArea a {
  font-size: 6.4rem;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__linkArea a {
    font-size: 4rem;
    line-height: 1.222;
  }
}
.footer__imgArea {
  width: 15.1rem;
  margin-right: calc(50% - 50vw);
  padding-right: 3.125vw;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .footer__imgArea {
    width: 12rem;
    margin: 0 auto;
  }
}
.footer__copy {
  padding: 6.4rem 0;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .footer__copy {
    padding: 4rem 0;
  }
}
.footer__copy::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
/*# sourceMappingURL=style.css.map */