@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Montserrat:wght@700&family=Noto+Sans+JP:wght@500;700&display=swap");
/* CSS Document */
.slideConts {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.slideContsL {
  -webkit-transform: translate(-2000px, 0);
          transform: translate(-2000px, 0);
}
.slideContsL.show {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.slideContsR {
  -webkit-transform: translate(2000px, 0);
          transform: translate(2000px, 0);
}
.slideContsR.show {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.siideDelay01 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.siideDelay02 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.siideDelay03 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.slideTxt {
  opacity: 0;
}

.fade_in {
  opacity: 0;
  -webkit-animation-name: fade_default;
          animation-name: fade_default;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade_default {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade_default {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideTxt01 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.slideTxt02 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.slideTxt03 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.slideTxt04 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.slideTxt05 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.slideTxt06 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.slideFade {
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInHeader {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes fadeInHeader {
  from {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes fadeInCopy01 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInCopy01 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeQutLd {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeQutLd {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*----------------------------------------------------------------- 
リセット
----------------------------------------------------------------- */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  border: 0;
  outline: 0;
}

ol, ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: 0;
}

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

th,
td {
  padding: 0px;
  line-height: 1.4em;
}

input {
  margin-right: 5px;
}

.switch {
  visibility: hidden;
}

h1, h2, h3, h4, h5, h6, p, dt, dl, dd {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------- 
common
----------------------------------------------------------------- */
.red {
  color: #FF0000;
}

.green {
  color: #6EF4C8;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }

  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #27292A;
}
@media only screen and (max-width: 1081px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #6EF4C8;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a:hover img:not(.notHover) {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

a,
a::before,
a::after {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.onlySP {
  display: none;
}
@media only screen and (max-width: 1081px) {
  .onlySP {
    display: inline-block;
  }
}

@media only screen and (max-width: 1081px) {
  .onlyPC {
    display: none;
  }
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb120 {
  margin-bottom: 120px;
}

.text12 {
  font-size: 1.2rem;
}

.text14 {
  font-size: 1.4rem;
}

.textC {
  text-align: center !important;
}

.textR {
  text-align: right !important;
}

.textL {
  text-align: left !important;
}

.textB {
  font-weight: bolder !important;
}

#wrapper {
  position: relative;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

.contentsWrap {
  width: 100%;
  padding: 160px 0;
}
.contentsWrap.pb0 {
  padding-bottom: 0;
}
.contentsWrap.pt0 {
  padding-top: 0;
}
@media only screen and (max-width: 1081px) {
  .contentsWrap {
    padding: 120px 0;
  }
}

.contents {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1081px) {
  .contents {
    width: 92%;
  }
}

.contents800 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1081px) {
  .contents800 {
    width: 92%;
  }
}

#contentsAll {
  min-height: 100vh;
}

.subPage #contentsAll {
  padding-top: 30px;
}

a[href^="tel:"],
.tel-link {
  pointer-events: none;
  text-decoration: none;
  color: #fff;
}
@media only screen and (max-width: 1081px) {
  a[href^="tel:"],
.tel-link {
    pointer-events: auto;
    color: #6EF4C8;
    text-decoration: underline;
  }
}

a.txtLink {
  text-decoration: underline;
  position: relative;
}
a.txtLink:hover {
  text-decoration: none;
}
a.txtLink[target=_blank] {
  padding-right: 18px;
  word-break: break-all;
  background: url(../img/iconExternalB.png) right 60%/12px no-repeat;
}

.bodyFixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
.bodyFixed #header {
  display: block;
}

.onlySP02 {
  display: none;
}
@media only screen and (max-width: 440px) {
  .onlySP02 {
    display: inline-block;
  }
}

/*----------------------------------------------------
 	header
----------------------------------------------------*/
#header {
  height: 100vh;
  position: relative;
  text-align: center;
}
#header.subHeader {
  height: auto;
  margin-bottom: 20px;
}
#header h1 {
  position: absolute;
  left: 40px;
  top: 45px;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1081px) {
  #header h1 {
    text-align: center;
    left: 0;
    right: 0;
    top: 20px;
    position: relative;
  }
}
#header .headerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .headerWrap .mainCap {
  margin-top: -4%;
}
#header .headerWrap .mainCap .ttl {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 10rem;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-animation: 2s fadeIn forwards;
          animation: 2s fadeIn forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media only screen and (max-width: 1081px) {
  #header .headerWrap .mainCap .ttl {
    font-size: 6.4rem;
    margin-bottom: 20px;
  }
}
#header .headerWrap .mainCap p:last-of-type {
  font-size: 2rem;
  line-height: 2.4em;
  opacity: 0;
  -webkit-animation: 2s fadeIn forwards;
          animation: 2s fadeIn forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@media only screen and (max-width: 1081px) {
  #header .headerWrap .mainCap p:last-of-type {
    font-size: 1.7rem;
  }
}
#header .scrollBtn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.8em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 164px;
  height: 76px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-animation: 2s fadeIn forwards;
          animation: 2s fadeIn forwards;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
#header .scrollBtn p {
  display: inline-block;
}
#header .scrollBtn p:after {
  content: "";
  display: block;
  width: 1px;
  background: #fff;
  height: 40px;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.contentsWrap.discriptionBox {
  background: #27292A url(../img/bg.png) right bottom/100% no-repeat;
}
@media only screen and (max-width: 1081px) {
  .contentsWrap.discriptionBox {
    background: #27292A url(../img/bgSP.png) center center/100% no-repeat;
  }
}
.contentsWrap.discriptionBox p {
  line-height: 2.4em;
  text-align: center;
  margin-bottom: 80px;
  color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 1081px) {
  .contentsWrap.discriptionBox p {
    text-align: left;
  }
}
.contentsWrap.discriptionBox p:not(:last-of-type) {
  margin-bottom: 40px;
}

h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 80px;
  letter-spacing: 0.7em;
}
@media only screen and (max-width: 1081px) {
  h2 {
    font-size: 1.7rem;
  }
}
h2 span {
  display: inline-block;
  padding-right: 120px;
  position: relative;
}
h2 span:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 10px;
}

h3 {
  margin-bottom: 40px;
  font-size: 2rem;
}

.btn {
  text-align: center;
}

.btn a,
button.btnSubmit {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #6EF4C8;
  color: #6EF4C8;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1em;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  width: 290px;
}
@media only screen and (max-width: 1081px) {
  .btn a,
button.btnSubmit {
    padding: 20px 0 20px 0;
    text-align: center;
    width: 100%;
  }
}
.btn a span,
button.btnSubmit span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  background: url(../img/iconArw.png) right center/6px no-repeat;
}
.btn a:hover,
button.btnSubmit:hover {
  background: #6EF4C8;
  color: #000;
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn a:hover span,
button.btnSubmit:hover span {
  background: url(../img/iconArwB.png) right center/6px no-repeat;
}

.contentsWrap.companyBox {
  text-align: center;
  background: #000;
}
.contentsWrap.companyBox p:first-of-type {
  color: #6EF4C8;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
}
@media only screen and (max-width: 1081px) {
  .contentsWrap.companyBox p:first-of-type {
    font-size: 1.7rem;
  }
}
.contentsWrap.companyBox h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 10rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1081px) {
  .contentsWrap.companyBox h2 {
    font-size: 4.4rem;
  }
}
@media only screen and (max-width: 440px) {
  .contentsWrap.companyBox h2 {
    font-size: 4rem;
  }
}

/*----------------------------------------------------	
 	フォーム form contact
----------------------------------------------------*/
#form p.attTxt {
  margin-bottom: 80px;
}

.formWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.formWrap > div:first-of-type {
  width: 34%;
}
@media only screen and (max-width: 1081px) {
  .formWrap > div:first-of-type {
    width: 100%;
    margin-bottom: 40px;
  }
}
.formWrap > div:last-of-type {
  width: 58%;
}
@media only screen and (max-width: 1081px) {
  .formWrap > div:last-of-type {
    width: 100%;
  }
}
.formWrap > div:last-of-type form {
  margin-bottom: 60px;
}

p.policyTxt {
  font-size: 1.4rem;
  color: #ccc;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media only screen and (max-width: 1081px) {
  .flowList ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 35px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 4px;
    width: 100%;
  }
}
.flowList ul li {
  position: relative;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 1081px) {
  .flowList ul li {
    font-size: 1.7rem;
    width: 33.3333333333%;
  }
}
.flowList ul li:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1081px) {
  .flowList ul li:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.flowList ul li span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 1081px) {
  .flowList ul li span {
    font-size: 1.2rem;
  }
}
.flowList ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.flowList ul li:not(.current) {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.flowList ul li:not(.current):after {
  width: 60%;
}
@media only screen and (max-width: 1081px) {
  .flowList ul li:not(.current):after {
    width: 100%;
  }
}

.table01 {
  width: 100%;
}
.table01 th {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
.table01 td {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.confirm .table01 td {
  padding-left: 20px;
}

.hissu,
.nini {
  position: relative;
  vertical-align: bottom;
}
.hissu:before,
.nini:before {
  content: "必須";
  display: inline-block;
  font-size: 1.1rem;
  background: #FF0000;
  color: #fff;
  padding: 4px 8px 5px;
  line-height: 1.1em;
  margin-right: 10px;
  border-radius: 4px;
  vertical-align: bottom;
}

.nini:before {
  content: "任意";
}

.nini.hissuCheck:before {
  content: "必須";
  background: #FF0000;
}

.checkList li {
  margin-left: 20px;
}
.checkList li:not(:last-of-type) {
  margin-bottom: 10px;
}

input[type=text], input[type=tel], input[type=email], input[type=password], textarea {
  padding: 15px 12px;
  text-align: left;
  line-height: 1.1em;
  border-radius: 2px;
  border: none;
  background: #323637;
  color: #fff;
}
input[type=text].inputMiddle, input[type=tel].inputMiddle, input[type=email].inputMiddle, input[type=password].inputMiddle, textarea.inputMiddle {
  max-width: 60%;
}
@media only screen and (max-width: 1081px) {
  input[type=text].inputMiddle, input[type=tel].inputMiddle, input[type=email].inputMiddle, input[type=password].inputMiddle, textarea.inputMiddle {
    max-width: 100%;
  }
}

input:focus, textarea:focus {
  background: #fff;
  color: #000;
}

input[type=image] {
  max-width: 100%;
  height: auto;
}

input[type=text], input[type=tel], input[type=email], input[type=password] {
  width: 100%;
  display: block;
  font-size: 1.7rem;
}

textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 20px;
  font-size: 1.7rem;
  line-height: 1.6em;
}

label,
input[type=text],
input[type=tel],
input[type=email],
input[type=checkbox],
input[type=password],
input[type=radio] {
  display: inline;
  vertical-align: middle;
}

.douisuru {
  margin-bottom: 40px;
  text-align: center;
}
.douisuru input {
  width: auto;
}

p.myError {
  margin-top: 10px;
  color: #FF0000;
}
p.myError:empty {
  margin-top: 0;
}

button.btnSubmit {
  margin-left: 0;
  background: #6EF4C8;
  color: #000;
}
button.btnSubmit span {
  background: url(../img/iconArwB.png) right center/6px no-repeat;
}
button.btnSubmit:hover {
  background: #27292A;
  color: #6EF4C8;
}
button.btnSubmit:hover span {
  background: url(../img/iconArw.png) right center/6px no-repeat;
}

.check {
  margin-bottom: 40px;
}

/*----------------------------------------------------
 	footer
----------------------------------------------------*/
#footer {
  padding: 40px 0 20px;
}
@media only screen and (max-width: 1081px) {
  #footer {
    padding: 60px 0 40px;
  }
}
#footer #copyright {
  font-size: 1.2rem;
  text-align: center;
}

/*----------------------------------------------------
 	common
----------------------------------------------------*/
.basicList li {
  list-style-type: disc;
  margin-left: 20px;
}
.basicList li:not(:last-of-type) {
  margin-bottom: 5px;
}

.basicOl li {
  list-style-type: decimal;
  margin-left: 30px;
}
.basicOl li:not(:last-of-type) {
  margin-bottom: 5px;
}

.attensionList {
  font-size: 14px;
}
.attensionList li {
  margin-left: 25px;
  list-style-type: disc;
}
.attensionList li:not(:last-of-type) {
  margin-bottom: 5px;
}

.komeList li {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.6em;
}
.komeList li:not(:last-of-type) {
  margin-bottom: 5px;
}
.komeList li:before {
  content: "※";
}

ol.privacyList > li {
  counter-increment: cnt;
  position: relative;
  margin-left: 1.8em;
}
ol.privacyList > li .ttl {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.6em;
}
ol.privacyList > li::before {
  content: counter(cnt) ".";
  display: block;
  position: absolute;
  left: -1.4em;
  top: 0;
  font-size: 2rem;
}
ol.privacyList > li table {
  width: 100%;
}
ol.privacyList > li table th, ol.privacyList > li table td {
  padding: 0 0 8px;
}
ol.privacyList > li table th {
  font-weight: 500;
  vertical-align: top;
}
ol.privacyList > li > ol > li {
  margin-bottom: 30px;
}
ol.privacyList > li:not(:last-of-type) {
  margin-bottom: 60px;
}

.basicOlist li {
  list-style-type: decimal;
  margin-left: 25px;
}
/*# sourceMappingURL=style.css.map */