@charset 'utf-8';
/* ============ STYLE ============ */
body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  /*font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo";*/
  color: #231815;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 1px;
}
a {
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none;
  color: #fff;
}
a:hover {
  cursor: pointer;
  opacity: 0.9;
}
*:focus {
  outline: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
body.scroll-disable {
  overflow: hidden;
}

.pc {display: block !important;}
.sp {display: none !important;}
@media only screen and (max-width: 480px) {
  .pc {display: none !important;}
  .sp {display: block !important;}
}

/* -----------------------
  common
-------------------------- */
/* layout */
.wrap {
  position: relative;
  width: 375px;
  max-width: 100%;
  margin: 0 20% 0 auto;
  background-color: #fff;
}
.inner {
  width: 375px;
  max-width: 93%;
  margin: 0 auto;
}
.inner90 {
  width: 375px;
  max-width: 90%;
  margin: 0 auto;
}
.inner85 {
  width: 375px;
  max-width: 85%;
  margin: 0 auto;
}
.inner80 {
  width: 375px;
  max-width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 840px) {
  .wrap {
    width: 375px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .inner,.inner90, .inner85, .inner80 {
    width: 93%;
    max-width: 93%;
    margin: 0 auto;
  }
}

/* list */
.listWrapCommon {
  list-style: none;
  margin: 0;
  letter-spacing: 0;
}
.listItemCommon {
	position: relative;
	display: block;
  text-align: justify;
}
.listItemCommon:before {
	content: '\203B';
}

.listWrapMin {
  padding-left: 13px;
  font-size: 12px;
  line-height: 1.5em;
}
.listWrapDots {
  padding-left: 13px;
  font-size: 12px;
  line-height: 1.5em;
}
.listItemMin:before {
  position: absolute;
	content: '\203B';
	top: 0;
	left: -13px;
}
.listItemDots:before {
  position: absolute;
	content: '\30FB';
	top: 0;
	left: -13px;
}

/* -----------------------
  PC
-------------------------- */
.pcWrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../img/lp/bg-pc.png);
  background-size: cover;
  background-position: center center;
}
.mainWrap {
  height: 100vh;
  overflow: scroll;
  z-index: 1;
}
.bgAirplane {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 95%;
  height: 95%;
  margin: auto;
}
.contentWrap--pc {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  width: 302.144px;
}
.logo--pc {
  position: fixed;
  top: 44vh;
  right: 65%;
  width: 254.3486px;
}
@media only screen and (max-width: 840px) {
  .contentWrap--pc, .logo--pc {
    display: none !important;
  }
}

.navWrap--pc {
  margin: 60px auto 40px;
  width: 140px;
}
.radio-label {
  display: block;
  line-height: 3em;
}
.radio-label:hover {
  cursor: pointer;
}
input[type="radio"] {
  display: none;
}
.radio-text:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 15px;
  border-width: 0;
  border-style: solid;
  border-radius: 50%;
  padding: 0;
  background-color: #fff;
  background-clip: content-box;
}


/* -----------------------
  LP
-------------------------- */
.mainBG {
  background-image: url(../img/lp/bg-main.png);
  background-size: cover;
  background-position: bottom center;
}

.navWrap {
  padding: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: rgba(255, 255, 255, 0.7);
}
.navWrap li {
  width: 24%;
}

.contentWrap--dotted {
  position: relative;
  padding: 15px 10px 20px;
  background-color: #fff;
  border: dashed 2px #007cd4;
}
.contentWrap--white {
  position: relative;
  padding: 15px;
  background-color: #fff;
}

.galleryWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.galleryWrap li {
  width: 49%;
}

.stateWrap {
  position: relative;
}
.stateIcon {
  position: absolute;
  top: 13px;
  left: -8px;
  width: 74.0525px;
}

.line-wave {
  text-decoration: underline wavy #000;
}

/* modal */
.myModal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  /* opacity: 0; */
  /* pointer-events: none; */
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 100;
}
.modal__content {
  position: absolute;
  width: 93%;
  max-width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*background-color: #000000;*/
  z-index: 120;
}
@media screen and (min-width: 640px) {
  .modal__content {
    width: 768px;
  }
}

/* dialog */
dialog:not([open]) {
  display: none;
}
#noticeDialog {

}
.attentionbox {
  margin: 30px 0;
}
.attentionbox__img {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.attentionbox__img img {
  display: block;
}
.attentionbox__content {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 360px;
  padding: 20px;
  border: solid 2px #ff0000;
  border-radius: 15px;
  overflow: visible;
}
.dialog-close {
  position: absolute;
  top: -12px;
  right: -15px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.dialog-close img {
  display: block;
  width: 34px;
  height: 34px;
}
.attentionbox__title {
  padding-bottom: 2px;
  border-bottom: solid 1px #000;
}
.attentionbox__text {
  padding-top: 10px;
}

/* foot print */
.footPrint01 {
  position: absolute;
  bottom: 430px;
  right: -12px;
  width: 76.0572px;
  z-index: 2;
}
.footPrint02 {
  position: absolute;
  bottom: -85px;
  left: -28px;
  width: 76.0572px;
  z-index: 2;
}
.footPrint03 {
  position: absolute;
  bottom: -94px;
  right: -18px;
  width: 62.2655px;
  z-index: 2;
}
.footPrint04 {
  position: absolute;
  top: -86px;
  left: -8px;
  width: 46.5712px;
  z-index: 2;
}
.footPrint05 {
  position: absolute;
  bottom: 300px;
  right: -4px;
  width: 76.0572px;
  z-index: 2;
}
.footPrint06 {
  position: absolute;
  top: -70px;
  left: 10px;
  width: 58.8594px;
  z-index: 2;
}

/* -----------------------
  footer
-------------------------- */
.footer {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
#footerAttentionArea ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.imgFooter {
  width: 243.8945px;
  margin: 30px auto;
}
.footerBtnArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btnFootNav {
  position: relative;
  width: 50%;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  background-color: #000000;
  border: solid 1px #fff;
}
.btnFootNav a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
}
#footerNav {
  list-style: none;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
  padding: 30px 0;
}
#footerNav li {
  padding: 0 2em;
  line-height: 30px;
  text-align: center;
}
#footerNav li:first-child {
  border-left: none;
}
#footerNav li a {
  text-decoration: none;
}
.copyright {
  padding: 19px 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0;
  background-color: #84bf24;
}

/* -----------------------
  Parts
-------------------------- */
.mt05 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}
.mt40 {margin-top: 40px;}
.mt45 {margin-top: 45px;}
.mt50 {margin-top: 50px;}
.mt55 {margin-top: 55px;}
.mt60 {margin-top: 60px;}
.mt65 {margin-top: 65px;}
.mt70 {margin-top: 70px;}
.mt75 {margin-top: 75px;}
.mt80 {margin-top: 80px;}
.mt85 {margin-top: 85px;}
.mt90 {margin-top: 90px;}
.mt95 {margin-top: 95px;}
.mt100 {margin-top: 100px;}
.mt110 {margin-top: 110px;}
.mt120 {margin-top: 120px;}
.mt130 {margin-top: 130px;}
.mt140 {margin-top: 140px;}
.mt150 {margin-top: 150px;}

.mb05 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 50px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}
.mb65 {margin-bottom: 65px;}
.mb70 {margin-bottom: 70px;}
.mb75 {margin-bottom: 75px;}
.mb80 {margin-bottom: 80px;}
.mb85 {margin-bottom: 85px;}
.mb90 {margin-bottom: 90px;}
.mb95 {margin-bottom: 95px;}
.mb100 {margin-bottom: 100px;}
.mb110 {margin-bottom: 110px;}
.mb120 {margin-bottom: 120px;}
.mb130 {margin-bottom: 130px;}
.mb140 {margin-bottom: 140px;}
.mb150 {margin-bottom: 150px;}

.pt05 {padding-top: 5px;}
.pt10 {padding-top: 10px;}
.pt15 {padding-top: 15px;}
.pt20 {padding-top: 20px;}
.pt25 {padding-top: 25px;}
.pt30 {padding-top: 30px;}
.pt35 {padding-top: 35px;}
.pt40 {padding-top: 40px;}
.pt45 {padding-top: 45px;}
.pt50 {padding-top: 50px;}
.pt55 {padding-top: 55px;}
.pt60 {padding-top: 60px;}
.pt65 {padding-top: 65px;}
.pt70 {padding-top: 70px;}
.pt75 {padding-top: 75px;}
.pt80 {padding-top: 80px;}
.pt85 {padding-top: 85px;}
.pt90 {padding-top: 90px;}
.pt95 {padding-top: 95px;}
.pt100 {padding-top: 100px;}
.pt110 {padding-top: 110px;}
.pt120 {padding-top: 120px;}
.pt130 {padding-top: 130px;}
.pt140 {padding-top: 140px;}
.pt150 {padding-top: 150px;}

.pb05 {padding-bottom: 5px;}
.pb10 {padding-bottom: 10px;}
.pb15 {padding-bottom: 15px;}
.pb20 {padding-bottom: 20px;}
.pb25 {padding-bottom: 25px;}
.pb30 {padding-bottom: 30px;}
.pb35 {padding-bottom: 35px;}
.pb40 {padding-bottom: 40px;}
.pb45 {padding-bottom: 45px;}
.pb50 {padding-bottom: 50px;}
.pb55 {padding-bottom: 55px;}
.pb60 {padding-bottom: 60px;}
.pb65 {padding-bottom: 65px;}
.pb70 {padding-bottom: 70px;}
.pb75 {padding-bottom: 75px;}
.pb80 {padding-bottom: 80px;}
.pb85 {padding-bottom: 85px;}
.pb90 {padding-bottom: 90px;}
.pb95 {padding-bottom: 95px;}
.pb100 {padding-bottom: 100px;}
.pb110 {padding-bottom: 110px;}
.pb120 {padding-bottom: 120px;}
.pb130 {padding-bottom: 130px;}
.pb140 {padding-bottom: 140px;}
.pb150 {padding-bottom: 150px;}

.pd05 {padding: 5px;}
.pd10 {padding: 10px;}
.pd15 {padding: 15px;}
.pd20 {padding: 20px;}
.pd25 {padding: 25px;}
.pd30 {padding: 30px;}
.pd35 {padding: 35px;}
.pd40 {padding: 40px;}
.pd45 {padding: 45px;}
.pd50 {padding: 50px;}
.pd55 {padding: 55px;}
.pd60 {padding: 60px;}
.pd65 {padding: 65px;}
.pd70 {padding: 70px;}
.pd75 {padding: 75px;}
.pd80 {padding: 80px;}
.pd85 {padding: 85px;}
.pd90 {padding: 90px;}
.pd95 {padding: 95px;}

.tal {text-align: left;}
.tac {text-align: center;}
.tar {text-align: right;}
.taj {text-align: justify;}

.len10per {width: 10%;}
.len20per {width: 20%;}
.len30per {width: 30%;}
.len40per {width: 40%;}
.len50per {width: 50%;}
.len60per {width: 60%;}
.len70per {width: 70%;}
.len80per {width: 80%;}
.len90per {width: 90%;}
.len100per {width: 100%;}

.colorW {color: #fff;}
.colorB {color: #0000a1;}
.colorR {color: #e60012;}

.fs10 {font-size: 10px; line-height: 1.5em; letter-spacing: 0;}
.fs12 {font-size: 12px; line-height: 1.5em; letter-spacing: 0;}
.fs13 {font-size: 13px; line-height: 1.5em; letter-spacing: 0;}
.fs14 {font-size: 14px; line-height: 1.5em; letter-spacing: 0;}
.fs16 {font-size: 16px; line-height: 1.5em; letter-spacing: 0;}
.fs18 {font-size: 18px; line-height: 1.5em; letter-spacing: 0;}
.fs20 {font-size: 20px; line-height: 1.5em; letter-spacing: 0;}

.fw300 {font-weight: 300;}
.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw800 {font-weight: 800;}
.fw900 {font-weight: 900;}

.ls-m1 {letter-spacing: -1px;}

.lh10 {line-height: 1.0em;}
.lh11 {line-height: 1.1em;}
.lh12 {line-height: 1.2em;}
.lh13 {line-height: 1.3em;}
.lh14 {line-height: 1.4em;}
.lh15 {line-height: 1.5em;}
.lh16 {line-height: 1.6em;}
.lh17 {line-height: 1.7em;}
.lh18 {line-height: 1.8em;}
.lh19 {line-height: 1.9em;}
.lh20 {line-height: 2.0em;}

.event-policy-txt {
  margin: 0 auto 15px;
  padding: 5px 0;
  text-align: center;
  line-height: 1.4em;
  background-color: #fff;
  border: solid 1px #231815;
}

/* 2023.02.20 左右ブレ調整 */
.mainWrap {
  overflow-x: hidden;
  width: 100%;
}
