@charset "utf-8";
/*-----------------------------------------------
 * 01. Template
 * 00. Modal
-------------------------------------------------*/
/*-----------------------------------------------
 * 01. Template
-------------------------------------------------*/
/* 'Noto Serif JP', serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
/* 'Abel', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");
/* font-family: 'Noto Sans JP', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/*font-family: 'Ropa Sans', sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Ropa+Sans&display=swap");
/*font-family: 'Oswald', sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap");
/*font-family: 'Roboto Condensed', sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Bold");
  font-weight: bold;
}
body {
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #000;
  font-family: "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  font-feature-settings: "palt";
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.07em;
  line-height: 1.8;
  word-wrap: break-word;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
a {
  color: #222;
}
a:hover {
  text-decoration: none;
}
.ah {
  transition: opacity 0.3s ease;
}
.ah:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
}
::selection {
  background: #6ccfee;
  color: #fff;
}
::-moz-selection {
  background: #6ccfee;
  color: #fff;
}
#tp {
  background: transparent;
}
#fullWrap {
  width: 100%;
  min-width: 1240px;
  position: relative;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 10px;
    font-size: 1rem;
    min-width: 320px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  #fullWrap {
    min-width: 750px;
  }
  .ah {
    transition: unset;
  }
  .ah:hover {
    opacity: 1;
  }
}
/*-----------------------------------------------
 * 00. Modal
-------------------------------------------------*/
.modalBox {
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.js-modalBox {
  display: none;
}
.closeBtn {
  width: 100%;
  height: 100%;
  min-width: 1200px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.closeBtn a {
  /*background: url(../img/common/close.png) no-repeat center;*/
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
  pointer-events: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #fff;
}
.closeBtn a:before {
  content: "CLOSE";
  position: absolute;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  top: 48px;
}
.closeBtn a div {
  width: 48px;
  height: 32px;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  margin: auto;
}
.closeBtn a div span {
  background: #000;
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  left: 0;
}
.closeBtn div span:nth-of-type(1) {
  bottom: 14px;
  transform: rotate(30deg);
}
.closeBtn div span:nth-of-type(2) {
  bottom: 14px;
  transform: rotate(-30deg);
}
.oneModal {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.oneModalIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .oneModalIn {
    min-width: 100%;
  }
  .closeBtn {
    min-width: 100%;
  }
  .closeBtn a {
    /*background: url(../img/common/close.png) no-repeat center;*/
    display: block;
    width: 96px;
    height: 96px;
    pointer-events: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fff;
  }
  .closeBtn a:before {
    content: "CLOSE";
    position: absolute;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    letter-spacing: 0;
    top: 65px;
  }
  .closeBtn a div {
    width: 48px;
    height: 32px;
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .closeBtn a div span {
    background: #000;
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    right: 0;
    left: 0;
  }
}
/* common */
.commonIframe {
  width: 100%;
  height: 100%;
  display: block;
}
/* youtube */
.ytIframeWrap {
  width: 920px;
  height: 520px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .ytIframeWrap {
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    position: relative;
  }
  .ytIframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#loading {
  background-color: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 100000;
  overflow: hidden;
}

.u-22 {
  position: relative;
  border: 1px solid white;
  box-shadow: 0px 0px 15px -5px #ffffff;
  border-radius: 10px;
  margin: 40px auto;
}
.u-22 p {
  padding: 60px 20px 20px;
}

.u-22 img {
  position: absolute;
  width: 200px;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}

.u-22 a {
  color: #fff336;
  text-shadow: #9c401d 1px 1px 8px;
}

.u-22 a:hover {
  opacity: 0.8;
}

.soldout {
  background-color: gray !important;
  pointer-events: none;
}
