@charset "UTF-8";
/*ブレイクポイントを設定*/
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v55-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v55-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-jp-v55-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-500italic - latin */
/* color */
.ifc {
  color: #eb3e69;
}

.white {
  color: white;
}

.blue {
  color: #365bb1;
}

.blue2 {
  color: #89d6ff;
}

.red {
  color: #e04925;
}

.green {
  color: #0adc4d;
}

.yellow {
  color: #ffc533;
}

.bgwh {
  background: white;
}

.bgblu {
  background: #365bb1;
}

.bgblu2 {
  background: #ccd2e0;
}

.bgred {
  background: #e04925;
}

.bggre {
  background: #0adc4d;
}

.bgyel {
  background: #ffc533;
}

.bgba {
  background: #faf8e5;
}

.bgacc {
  background: #f1a2af;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: min(2.3vw, 23px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  color: white;
  background: #eb3e69;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body.open {
  height: 100vh;
}
@media screen and (max-width: 591px) {
  body {
    font-size: 14px;
  }
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

p {
  color: white;
  text-align: left;
}

.f18 {
  font-size: clamp(15px, 1.8vw, 18px);
  text-align: left;
  width: min(95%, 860px);
}

/*リンク表示方法*/
a {
  text-decoration: none;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:active {
  color: white;
}

a:hover {
  opacity: 0.7;
}
a:hover img {
  opacity: 1;
}

:has(> .lista) {
  position: relative;
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  grid-template-columns: center;
}

.i-text {
  display: inline-block;
}

.ver-rl {
  writing-mode: vertical-rl;
}

.active1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .active1200 {
    display: block;
  }
}

.active1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .active1000 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active768 {
  display: none;
}
@media screen and (max-width: 767px) {
  .active768 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active591 {
  display: none;
}
@media screen and (max-width: 591px) {
  .active591 {
    display: block;
  }
}

.active414 {
  display: none;
}
@media screen and (max-width: 414px) {
  .active414 {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .vanish1200 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 1000px) {
  .vanish1000 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 767px) {
  .vanish768 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 591px) {
  .vanish591 {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .vanish414 {
    display: none;
  }
}

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/
.pc,
.pc2 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc,
  .pc2 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

.sp,
.sp2,
.spTel {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp,
  .sp2,
  .spTel {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.pcTel {
  display: inline;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/
.titwrap {
  height: 100px;
  margin: 3em auto 1em;
}
.titwrap h2 {
  height: 100%;
}
.titwrap h2 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 591px) {
  .titwrap {
    height: 65px;
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 414px) {
  .titwrap {
    height: 56px;
  }
}

.imgwrap {
  text-align: center;
  margin: 1em auto;
}
.imgwrap img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: inline-block;
}

.readwrap {
  margin-bottom: 1.5em;
}

.mainTit {
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.mainTit img {
  max-width: 92%;
  height: min(7vw, 60px);
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.en {
  font-family: "Jost", sans-serif;
  display: block;
  letter-spacing: 0.06em;
}

.come {
  font-size: clamp(12px, 0.8em, 17px);
  margin: 8px auto;
  text-align: left;
  width: 100%;
}

.attention-p {
  font-size: clamp(17px, 2.1vw, 21px);
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/
table {
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  table {
    width: 100%;
    /*スタイルを展開したいところに記述する*/
  }
  table th,
  table td {
    width: 100% !important;
    display: block;
  }
}

/*-----------------------------------------------------------
モーダル
-----------------------------------------------------------*/
#modal {
  display: none;
}

/*-----------------------------------------------------------
ページトップ
-----------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 245px;
  right: 25px;
  z-index: 9999;
  background: #63032b;
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
#pageTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  transition: 0.2s;
}
#pageTop a img {
  transform: rotate(-90deg);
}
#pageTop a:hover {
  background: #1a1a1a;
}
@media screen and (max-width: 591px) {
  #pageTop {
    display: none !important;
  }
}

/*-----------------------------------------------------------
スクロールバー
-----------------------------------------------------------*/
.scroll-pane {
  width: 100% !important;
  height: 300px; /*箱の高さ*/
  margin: 40px auto 0;
  overflow-y: auto;
}
.scroll-pane:focus {
  outline: none;
}

/*-----------------------------------------------------------
画像LP用
-----------------------------------------------------------*/
body {
  background: #eb3e69;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/bg.jpg) repeat;
  opacity: 0.1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

main {
  background: #eb3e69;
  max-width: 680px;
  margin: auto;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  main {
    box-shadow: none;
    /*スタイルを展開したいところに記述する*/
  }
}

header {
  width: 100%;
  position: fixed;
  height: min(10.7vw, 90px);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
  transition: 0.2s;
}
header .scactive {
  display: none;
}
header.headerScroll {
  height: 68px;
}
header.headerScroll .header_inner {
  background: #63032b;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}
header.headerScroll .scnone {
  display: none;
}
header.headerScroll .scactive {
  display: block;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 680px);
  height: 100%;
  margin: auto;
  position: relative;
  padding: 5px 15px;
  transition: 0.2s;
  background: linear-gradient(180deg, #f17695 0%, #eb3e69 100%);
}
header .header_inner h1 {
  height: 100%;
  max-width: 130px;
}
header .header_inner div {
  max-height: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_inner div .contct_head {
  padding-top: 3px;
  margin-right: 24px;
  width: 48px;
}
header .header_inner a {
  max-height: 80px;
  object-fit: contain;
  height: 100%;
  transition: 0.2s;
}
header .header_inner a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
header .header_inner a.btn {
  max-height: 52px;
  position: relative;
  z-index: 2;
}
header .header_inner a.btn:hover {
  opacity: 1;
  transform: translateX(4px);
}
header .header_inner a.btn img {
  transition: 0.2s;
}
header .header_inner a.contct_head:hover {
  transform: rotate(5deg);
  opacity: 1;
}
header .header_inner a.hlogo {
  padding: 4px 0 8px 1em;
  height: 100%;
}
header a.hlogo:hover {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  header {
    top: 0;
    width: 100%;
    position: fixed;
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
    /*スタイルを展開したいところに記述する*/
  }
  header.headerScroll {
    height: 72px;
  }
}
@media screen and (max-width: 591px) {
  header {
    height: 60px;
  }
  header.headerScroll {
    height: 55px;
  }
  header .header_inner a.hlogo {
    padding: 0 0 6px 0;
  }
  header .header_inner a.btn {
    width: 55%;
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 414px) {
  header .header_inner a.hlogo {
    width: 150px;
  }
  header .header_inner div .contct_head {
    width: 40px;
    margin-right: 1em;
  }
}

.content_wrap {
  width: 74.36%;
  margin: min(12%, 80px) auto min(8vw, 100px);
  padding: 2em 1.5em 1.5em;
}
.content_wrap.attention_rule {
  border: 2px solid #ccc;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_wrap.attention_rule ul.ruleList li {
  line-height: 1.45;
  margin-bottom: 0.8em;
  font-size: clamp(14px, 1.6vw, 16px);
  color: white;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.content_wrap.attention_rule ul.ruleList li dt {
  font-weight: 700;
  margin-bottom: 0.4em;
  color: #abd2d9;
}
.content_wrap.attention_rule ul.ruleList li a {
  color: #fcaa00;
  background: #dccbbb;
  text-decoration: underline;
  transition: 0.2s;
}
.content_wrap.attention_rule ul.ruleList li a.acctxt {
  background: none;
}
.content_wrap.attention_rule ul.ruleList li a:hover {
  color: #eee;
}
.content_wrap.attention_rule ul.ruleList li:last-child {
  margin-bottom: 0;
}
.content_wrap.attention_rule ul.ruleList li .come {
  color: #eb3e69;
}
@media screen and (max-width: 767px) {
  .content_wrap {
    width: 90%;
    padding: 2em 5% 5%;
    /*スタイルを展開したいところに記述する*/
  }
}

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

.subtit {
  position: absolute;
  font-size: clamp(20px, 2.8vw, 28px);
  top: -0.5em;
  height: 1em;
  background: #42001a;
  padding: 0 12px;
  display: flex;
}
.subtit img {
  max-height: 38px;
}
@media screen and (max-width: 767px) {
  .subtit img {
    max-height: max(26px, 1.2em);
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 414px) {
  .subtit img {
    height: min(5.5vw, 32px);
  }
}

.top-con {
  padding-top: min(10%, 100px);
}

.base-con {
  padding: clamp(50px, 12%, 120px) 0;
}

.first_view {
  position: relative;
  height: min(100vh, 1200px);
  width: min(100%, 680px);
  margin: auto;
  text-align: center;
}
.first_view .fv_wrap {
  height: min(100vh, 1200px);
  width: 100%;
  position: relative;
}
.first_view .fv_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.first_view .fv_wrap img.lightone {
  object-position: 50% 39%;
}
.first_view .toptitwrap {
  width: 100%;
  height: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}
.first_view .toptitwrap h1 {
  width: min(100%, 588px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  margin-bottom: 1em;
}
.first_view .toptitwrap h1 img.logo_event {
  width: 100%;
  height: 30vh;
  object-fit: contain !important;
  object-position: bottom !important;
}
.first_view .toptitwrap h1 .badge {
  width: min(29.1%, 285px);
  position: absolute;
  top: -20%;
  left: -5%;
  z-index: 1;
}
.first_view:after {
  content: "";
  width: 100%;
  height: 80px;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/bg_deco.webp) no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .first_view {
    height: auto;
    /*スタイルを展開したいところに記述する*/
  }
  .first_view .fv_wrap {
    height: auto;
  }
  .first_view .fv_wrap img {
    object-fit: initial;
    width: 100%;
    height: auto;
  }
  .first_view .toptitwrap {
    bottom: 1em;
  }
  .first_view h1 {
    width: 86.5%;
  }
  .first_view h1.lightone {
    bottom: clamp(60px, 9%, 260px);
  }
}
@media screen and (max-height: 880px) and (min-width: 592px) {
  .first_view {
    height: 100vh !important;
  }
  .first_view .fv_wrap {
    height: 100vh;
  }
  .first_view .fv_wrap img.logo_event {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  .first_view .fv_wrap .toptitwrap h1 {
    max-width: 430px;
  }
  .first_view .fv_wrap .toptitwrap .fv_btn_next {
    max-width: 400px;
  }
}
@media screen and (max-width: 591px) {
  .first_view .toptitwrap {
    width: 80%;
  }
  .first_view .toptitwrap h1 img.logo_event {
    height: auto;
  }
}

#ticket {
  background: #42001a;
}
#ticket table {
  width: 74.36%;
  background: #42001a;
  margin: min(8%, 60px) auto 0.6em;
  border: 2px solid #ccc;
  font-size: clamp(20px, 3.5vw, 35px);
}
#ticket table tr {
  display: flex;
  justify-content: space-between;
  border: 2px solid white;
}
#ticket table tr.bring {
  border-top: none;
  font-size: 0.6em;
}
#ticket table tr.bring th {
  width: 100%;
  height: 60px;
  font-weight: 700;
}
#ticket table tr.bring td {
  width: 100%;
  height: 60px;
  font-weight: 700;
}
#ticket table tr.bring td span {
  width: auto;
  margin-left: 0.4em;
}
@media screen and (max-width: 591px) {
  #ticket table tr.bring {
    font-size: 1em;
  }
}
#ticket table th {
  background: #7a7065;
  color: white;
}
#ticket table td {
  color: white;
}
#ticket table th,
#ticket table td {
  padding: 0.3em;
  width: 50%;
  text-align: center;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ticket table th div,
#ticket table td div {
  text-align: center;
  line-height: 1.25;
}
#ticket table th span,
#ticket table td span {
  font-size: 0.6em;
  display: block;
  margin-top: 0.3em;
  width: 100%;
}
@media screen and (max-width: 591px) {
  #ticket table {
    width: 85%;
  }
  #ticket table tr {
    display: flex;
    flex-direction: column;
  }
  #ticket table th {
    height: 62px;
  }
  #ticket table td {
    height: 80px;
    font-size: 23px;
  }
}
#ticket .subtit {
  background: #42001a;
}

.p-area {
  width: min(80%, 710px);
  margin: auto;
}
.p-area p {
  text-align: left;
  font-weight: 700;
}

.btn_con {
  width: 78%;
  display: block;
  margin: auto;
  transition: 0.2s;
  animation: btn 3.5s ease infinite;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.btn_con:hover {
  opacity: 1;
  transform: scale(1.1);
}
.btn_con::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../img/btn_arrow.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

.link_area {
  position: relative;
  display: flex;
  justify-content: center;
}
.link_area .btn_area {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 414px) {
  .link_area .btn_area {
    bottom: 12%;
  }
}

.btn_area {
  margin-top: 6em;
}
.btn_area .come {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(10px, 1.6vw, 20px);
  line-height: 1.25;
}
.btn_area .attention-p {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.25;
}
.btn_area .attention-p a {
  color: #fcaa00;
}

@media screen and (max-width: 414px) {
  .btn_area .come {
    margin-top: 0.5em;
  }
}
.banner_area {
  width: min(90%, 580px);
  margin: 3em auto 0;
  border-radius: 12px;
}
.banner_area p {
  margin: 0 0 0.5rem 0;
  color: white;
  text-align: center;
}
.banner_area a {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  border-radius: 12px;
  /* 斜めに流れる光（疑似要素） */
  /* 光が流れるアニメーション */
}
.banner_area a::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -60%;
  width: 30%;
  height: 120%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.banner_area a.shine-active::before, .banner_area a:hover::before {
  animation: bannerShine 0.9s ease forwards;
}
.banner_area a:hover {
  opacity: 1;
  transform: scale(1.01) translateY(-4px);
  filter: brightness(1.06) saturate(1.03);
}
.banner_area a:hover img {
  opacity: 1;
}
@keyframes bannerShine {
  0% {
    left: -60%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
  10% {
    opacity: 0.9;
  }
  100% {
    left: 140%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
}
.banner_area a img {
  border-radius: 12px;
  transition: 0.2s;
  display: block;
}

.btn_con {
  width: 78%;
  display: block;
  margin: auto;
  transition: 0.2s;
  animation: btn 3.5s ease infinite;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.btn_con:hover {
  opacity: 1;
  transform: scale(1.1);
}
.btn_con::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.6em;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/btn_before.webp) no-repeat center center/contain;
}
.btn_con::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/how_icon_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(-90deg);
}

.link_area {
  position: relative;
  display: flex;
  justify-content: center;
}
.link_area .btn_area {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 414px) {
  .link_area .btn_area {
    bottom: 12%;
  }
}

@keyframes btn {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-15px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(-15px);
  }
  75% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
/*-----------------------------------------------------------
　animation
-----------------------------------------------------------*/
:root {
  --size: 240px; /* 全体のサイズ */
  --circle-size: 150vw; /* 赤い円のサイズ */
  --shadow: rgba(0, 0, 0, 0.25);
}

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.stagewrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 円運動させるためのラッパーを回す */
.orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  will-change: transform;
}

/* 赤い円本体（右にオフセットしてぐるりと回す） */
.dot {
  width: var(--circle-size);
  height: var(--circle-size);
  background: rgba(235, 62, 105, 0.5);
  border-radius: 50%;
  box-shadow: 0 10px 24px var(--shadow);
  will-change: transform, opacity, filter;
  transform: translateX(calc(var(--size) / 2 - var(--circle-size) / 2));
}

/* 背景の淡い軌跡っぽいリング（SVGで線をドロー） */
svg.ring {
  position: absolute;
  inset: 0;
  overflow: visible;
}
svg.ring circle {
  fill: none;
  stroke: rgba(227, 25, 55, 0.35);
  stroke-width: 18;
  stroke-linecap: round;
  filter: drop-shadow(0 4px 10px var(--shadow));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRing 2s ease-in-out forwards;
}

@keyframes drawRing {
  0% {
    stroke-dashoffset: 1000;
  }
  40% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1000;
    opacity: 0;
  }
}
/* 最終的に見せたいステッカー画像 */
.final {
  opacity: 0;
  transform: scale(0.85);
  will-change: opacity, transform, filter;
  width: min(50%, 285px);
  position: absolute;
  z-index: 1;
}

/* 低速回線/配慮 */
@media (prefers-reduced-motion: reduce) {
  .orbit,
  .dot,
  .final,
  .ring circle {
    transition: none !important;
    animation: none !important;
  }
}
/*-----------------------------------------------------------
 #main
-----------------------------------------------------------*/
#main {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: min(-10.7vw, -100px);
}

.inner {
  width: 90%;
  max-width: 645px;
  margin: 0 auto;
}

.inner12 {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.p-img {
  text-align: center;
  width: 100%;
}

p {
  color: white;
}

#news {
  color: #eb3e69;
  padding: min(5%, 50px) 0;
  border-radius: 30px 30px 0 0;
  width: 100%;
}
#news .inner {
  width: min(90%, 1536px);
  margin: auto;
}
#news .left {
  width: 30%;
  padding: 0 30px 0 min(12vw, 120px);
}
#news .left h2.mainTit {
  text-align: left;
  margin: 0 auto 0 0;
}
#news .left h2.mainTit .en {
  font-size: clamp(23px, 6vw, 60px);
}
#news .newsList {
  width: min(70%, 1080px);
}
#news .newsList li {
  border-bottom: 1px solid #ccc;
  margin: 0;
  line-height: 1.45;
}
#news .newsList li dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3% 0;
}
#news .newsList li dl dt {
  margin: 0 20px 0 0;
  display: flex;
  font-family: "Cinzel", serif;
}
#news .newsList li dl dt .date {
  width: min(100%, 100px);
}
#news .newsList li dl dt .cate {
  width: 100%;
  margin-left: 1em;
}
#news .newsList li dl dd {
  width: 100%;
  padding-top: 8px;
}
#news .newsList li dl dd a {
  color: #eb3e69;
  cursor: pointer;
}
#news .newsList li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1200px) {
  #news {
    /*スタイルを展開したいところに記述する*/
  }
  #news .left {
    padding-left: 0;
  }
}
@media screen and (max-width: 591px) {
  #news .flex {
    flex-direction: column;
  }
  #news .flex .left {
    width: 100%;
    padding: 0;
  }
  #news .flex .left h2.mainTit {
    padding-top: 3%;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  #news .flex .left h2.mainTit .en {
    margin: 0 0.5em 0 0;
    line-height: 1;
  }
  #news .flex ul.newsList {
    margin: 12px auto 0;
    width: 100%;
  }
  #news .flex ul.newsList li {
    width: 100%;
  }
  #news .flex ul.newsList li dt {
    line-height: 1;
  }
  #news .flex ul.newsList li dd {
    font-size: 13px;
  }
}

.titbox {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.titbox .mainTit {
  font-size: clamp(64px, 17vw, 170px);
  margin-right: min(6%, 60px);
}

.scrollzone {
  overflow-y: scroll;
  background: #333;
  border-radius: 12px;
  margin: 25px auto 0;
  width: calc(100% - 10px);
  padding: 30px 5%;
  height: 180px;
}
.scrollzone::-webkit-scrollbar {
  width: 10px;
  background-color: #333;
}
.scrollzone::-webkit-scrollbar-track {
  background: #666;
}
.scrollzone::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 3px;
}
.scrollzone h4 {
  font-size: 30px;
  font-size: clamp(15px, 2.3vw, 23px);
  font-weight: 700;
  text-align: center;
  padding-bottom: 12px;
}
.scrollzone .termList {
  width: 100%;
}
.scrollzone .termList li {
  margin-bottom: 1.5em;
  line-height: 1.6;
}
.scrollzone .termList li dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.scrollzone .termList li dd {
  font-weight: 400;
}
@media screen and (max-width: 414px) {
  .scrollzone {
    height: 140px;
    padding: 1em 5%;
  }
  .scrollzone .termList {
    font-size: 13px;
  }
}

.lp_con {
  padding: min(8%, 80px) 0 min(10%, 100px);
}
.lp_con.deco {
  background: #42001a;
  position: relative;
}
.lp_con.deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url(../img/bg.webp) no-repeat top center/cover;
}
.lp_con.deco .inner {
  position: relative;
  z-index: 2;
}
.lp_con.deco .lead_txt {
  margin: 1em auto;
}
.lp_con.deco .lead_txt p {
  font-size: clamp(18px, 3.2vw, 32px);
  text-align: center;
  font-weight: 700;
  line-height: 2.2;
}
.lp_con.deco .lead_img {
  position: relative;
  width: 95%;
  margin: min(8%, 60px) auto 0;
  text-align: center;
  z-index: 1;
}
.lp_con.deco .lead_img.deco::before {
  content: "";
  display: block;
  width: 44px;
  height: 100px;
  background: url(../img/lead_deco01.webp) no-repeat center center/contain;
  position: absolute;
  right: 35px;
  top: -70px;
}
.lp_con.deco .lead_img .lead_img2 {
  position: relative;
  z-index: 1;
}
.lp_con.deco .lead_img.deco:after {
  content: "";
  display: block;
  width: 38px;
  height: 100px;
  background: url(../img/lead_deco02.webp) no-repeat center center/contain;
  position: absolute;
  left: 40px;
  bottom: -60px;
}
.lp_con.deco .lead_img .titone {
  width: 80%;
  margin: 0 auto 0.5em;
}
.lp_con.deco .lead_img .lead_inner {
  margin-top: 1em;
}
@media screen and (max-width: 591px) {
  .lp_con.deco .lead_img {
    margin: min(5%, 50px) auto 0;
  }
  .lp_con.deco .lead_img.deco:after {
    width: 34px;
    left: 30px;
    bottom: -56px;
  }
  .lp_con.deco .lead_img.deco::before {
    width: 32px;
    right: 40px;
    top: -60px;
  }
}
@media screen and (max-width: 414px) {
  .lp_con.deco .lead_img.deco:after {
    width: 24px;
    left: 16px;
    bottom: -52px;
  }
  .lp_con.deco .lead_img.deco::before {
    width: 24px;
    right: 17px;
    top: -56px;
  }
}

a.area {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.obi_con {
  background: #eb3e69;
  padding: 1em;
}
.obi_con p {
  margin: 0.3em auto;
  width: 74.36%;
  letter-spacing: 0.04em;
  text-align: center;
}
.obi_con p.attention-p {
  padding: 4px;
  font-weight: 700;
}
.obi_con p.attention-p span {
  text-decoration: underline;
}
.obi_con p.attention-p span a {
  color: #fcaa00;
}
.obi_con p.come {
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 1.5em;
}
.obi_con p.come a {
  color: #fcaa00;
}
.obi_con p.come .i-text {
  font-size: 0.7em;
}
@media screen and (max-width: 591px) {
  .obi_con p {
    width: 100%;
  }
}

.howtoplay {
  position: relative;
  background: linear-gradient(180deg, #f17695 0%, #eb3e69 100%);
}
.howtoplay .howtowrap {
  padding-top: min(18%, 160px);
  position: relative;
}
.howtoplay .howtowrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 280px;
  background: url(../img/how_bg_deco.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.howtoplay:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url(../img/bg_deco.webp) no-repeat top center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.howtoplay:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url(../img/bg_deco.webp) no-repeat bottom center/contain;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.howtoplay .titwrap {
  margin-top: 0;
}
.howtoplay .decowrap {
  position: relative;
}
.howtoplay .decowrap .titdeco-01,
.howtoplay .decowrap .titdeco-02 {
  transform: scale(0.5);
  position: absolute;
}
.howtoplay .decowrap .titdeco-01 {
  top: -70px;
}
.howtoplay .decowrap .titdeco-02 {
  bottom: -58px;
  right: -15px;
}
.howtoplay .link_area .btn_area {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: min(8%, 80px);
}
.howtoplay .link_area .btn_area.acc {
  width: 100%;
  bottom: 17%;
}
.howtoplay .link_area .btn_area.acc .accLink {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.howtoplay .link_area .btn_area.acc .accLink img {
  transition: 0.2s;
}
.howtoplay .link_area .btn_area.acc img {
  max-height: 32px;
}
@media screen and (max-width: 1000px) {
  .howtoplay .link_area .btn_area.acc {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}
.howtoplay .link_area.gomap:hover .accLink img {
  opacity: 0.8;
  transform: scale(1.1);
}

.howtoList {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 3% auto;
}
.howtoList li {
  width: 29.3333333333%;
  margin: 0 2%;
}

.howitemList li {
  position: relative;
  padding: 0 3%;
}
.howitemList li::after {
  content: "";
  width: 27.6%;
  height: 186px;
  display: block;
  background: url(../img/how_num01.webp) no-repeat center center/contain;
  position: absolute;
  top: 10px;
  left: -26px;
}
@media screen and (max-width: 767px) {
  .howitemList li::after {
    height: 27.6vw;
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 591px) {
  .howitemList li::after {
    left: -15px;
  }
}
.howitemList li:last-child {
  position: relative;
}
.howitemList li:last-child .overrayimg {
  position: absolute;
  top: 0;
  left: 0;
}
.howitemList .howbtn {
  position: relative;
}
.howitemList .howbtn .btnarea {
  position: absolute;
  bottom: 3.5em;
  left: 50%;
  transform: translateX(-50%);
}
.howitemList .howbtn .btnarea img {
  animation: btn 3.5s ease infinite;
}

/* カフェの楽しみ方
-------------------------------------*/
.enjoy-wrap {
  position: relative;
}
.enjoy-wrap .enjoy-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  position: relative;
}
.enjoy-wrap .enjoy-area img {
  border-radius: 50%;
}
.enjoy-wrap .enjoy-area .enjoy-1 {
  grid-column: 1/2;
  grid-row: 1/1;
}
.enjoy-wrap .enjoy-area .enjoy-2 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.enjoy-wrap .enjoy-area .enjoy-3 {
  grid-column: 1/2;
  grid-row: 3/4;
}
.enjoy-wrap .enjoy-area .enjoy-4 {
  grid-column: 2/3;
  grid-row: 4/5;
}
.enjoy-wrap .enjoy-area p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 3em;
  position: relative;
}
.enjoy-wrap .enjoy-area p::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../img/how_arrow01.webp) no-repeat center center/contain;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.enjoy-wrap .enjoy-area p:nth-of-type(2n) {
  justify-content: flex-end;
  padding: 0 3em 0 0;
}
.enjoy-wrap .enjoy-area p:nth-of-type(2n)::before {
  background: url(../img/how_arrow02.webp) no-repeat center center/contain;
  left: initial;
  right: 1em;
}
.enjoy-wrap .enjoy-area .text-1 {
  grid-column: 2/2;
  grid-row: 1/2;
  text-align: left;
}
.enjoy-wrap .enjoy-area .text-2 {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: right;
}
.enjoy-wrap .enjoy-area .text-3 {
  grid-column: 2/2;
  grid-row: 3/4;
  text-align: left;
}
.enjoy-wrap .enjoy-area .text-4 {
  grid-column: 1/2;
  grid-row: 4/5;
  text-align: right;
}
.enjoy-wrap .enjoy-area .line-area1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.enjoy-wrap .enjoy-area .line-area2 {
  grid-column: 1/3;
  grid-row: 2/4;
}
.enjoy-wrap .enjoy-area .line-area3 {
  grid-column: 1/3;
  grid-row: 3/5;
}
.enjoy-wrap .dust-anime,
.enjoy-wrap .flog-anime {
  z-index: 0;
}
.enjoy-wrap .dust1,
.enjoy-wrap .dust2,
.enjoy-wrap .dust5,
.enjoy-wrap .dust7,
.enjoy-wrap .dust9 {
  transform: scale(0.5);
}
.enjoy-wrap .dust1 {
  position: absolute;
  top: 18%;
  left: 34%;
}
.enjoy-wrap .dust2 {
  position: absolute;
  top: -3%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .enjoy-wrap .dust2 {
    top: 35%;
  }
}
.enjoy-wrap .dust5 {
  position: absolute;
  top: 43%;
  left: 41%;
}
.enjoy-wrap .dust7 {
  position: absolute;
  top: 66%;
  left: 42%;
}
.enjoy-wrap .dust9 {
  position: absolute;
  top: 94%;
  left: 28%;
}

.cta {
  margin-top: min(12%, 120px);
}
.cta .btn_area {
  margin-top: min(5%, 50px);
}
.cta .btn_att {
  color: white;
  width: 60%;
  margin: 20px auto 0;
}
@media screen and (max-width: 414px) {
  .cta .btn_att {
    width: 80%;
  }
}

.attention_rule {
  position: relative;
  z-index: 1;
}

/* TOP
----------------------------------------------------------- */
.jspContainer {
  width: 100% !important;
  overflow: hidden;
  position: relative;
}

.jspPane {
  width: 100% !important;
  position: absolute;
}

.jspVerticalBar {
  width: 20px;
  position: absolute;
  top: 0;
  right: -5px;
}

.jspArrowdp,
.jspArrowDown {
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  /* background: url(../img/scroll_top.png) no-repeat center; */
}

.jspArrowDown {
  background: url(../img/scroll_bottom.png) no-repeat center;
}

.jspTrack {
  /* background: url(./../img/scroll_bg1.png) repeat-y; */
  position: relative;
  background-position: center;
}

.jspDrag {
  width: 4px;
  margin: 0 auto;
  background: #6b6b6b;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

.jspArrow.jspDisabled {
  cursor: default;
}

.jspVerticalBar .jspArrow {
  height: 20px;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.ruleList p.come {
  font-size: clamp(13px, 1.6vw, 16px);
  margin-top: 0;
  margin-bottom: 2em;
  text-align: center;
}

#ticket {
  background: #42001a;
  position: relative;
  /* アコーディオン*/
}
#ticket::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/bg.webp) repeat-y center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#ticket .titwrap {
  margin-top: 0;
}
#ticket .ticketwrap {
  position: relative;
  z-index: 1;
}
#ticket .attention_rule {
  border: 2px solid white;
  width: 85%;
  margin: 2em auto;
  position: relative;
  z-index: 1;
}
#ticket .attention_rule ul li {
  font-weight: 700;
}
#ticket .btn_area {
  margin: 3em auto 1em;
}
#ticket .attention_rule.gameone {
  padding: 1em;
}
#ticket .storagearea {
  position: relative;
  z-index: 1;
  width: 100%;
}
#ticket .storagearea .storage-item {
  width: 100%;
  position: relative;
}
#ticket .storagearea .storage-item .sttitle {
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  display: flex;
  justify-content: center;
}
#ticket .storagearea .storage-item .sttitle img {
  height: min(1em, 38px);
  font-size: clamp(20px, 2.8vw, 28px);
  padding: 0 12px;
  display: flex;
  background: #42001a;
}
#ticket .storagearea .storage-item::before, #ticket .storagearea .storage-item::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 2px;
  background: white;
  transition: transform 0.3s ease;
}
#ticket .storagearea .storage-item::before {
  transform: translateY(-50%);
}
#ticket .storagearea .storage-item::after {
  transform: translateY(-50%) rotate(90deg);
}
#ticket .storagearea .storage-item.open::after, #ticket .storagearea .storage-item.open::before {
  display: none;
}
#ticket .storagearea .storage-item .stbox {
  display: none;
  padding-top: 0.5em;
}
#ticket .storagearea .storage-item.open .sttitle {
  position: absolute;
  top: -1.6em;
  left: 0;
  width: 100%;
}

.ticketrule_area {
  margin: 0 auto 0.5em;
  border-radius: 3px;
}
.ticketrule_area a {
  display: grid;
  place-content: center;
  text-decoration: none !important;
  padding: 12px;
}
.ticketrule_area a p {
  font-size: clamp(16px, 2vw, 20px);
  color: #42001a !important;
  position: relative;
  letter-spacing: 0.4;
}

#faq {
  padding: min(50px, 12vw, 120px) 0 min(8%, 80px);
  background: #eb3e69;
  position: relative;
}
#faq::before {
  content: "";
  width: 100%;
  height: 100px;
  display: block;
  background: url(../img/bg_deco.webp) no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
}

/*アコーディオン*/
.accordion-area {
  list-style: none;
  width: min(85%, 960px);
  margin: min(6%, 60px) auto 0;
  color: white;
}
.accordion-area li.accarea-item {
  margin-bottom: 35px;
  border: 2px solid white;
  /*アコーディオンタイトル*/
}
@media screen and (max-width: 767px) {
  .accordion-area li.accarea-item {
    margin-bottom: 12px;
    /*スタイルを展開したいところに記述する*/
  }
}
.accordion-area li.accarea-item .acctitle {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 0.7em 42px 12px 3%;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(16px, 2vw, 20px);
  background: #eb3e69;
}
@media screen and (max-width: 414px) {
  .accordion-area li.accarea-item .acctitle {
    padding: 12px 42px 12px 6%;
  }
}
.accordion-area li.accarea-item .acctitle p {
  color: white;
  position: relative;
  font-weight: 600;
  padding-left: 2em;
  line-height: 1.45;
}
.accordion-area li.accarea-item .acctitle p::before {
  content: "Q.";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.accordion-area li.accarea-item .acctitle:before {
  /*アイコンの＋と×*/
  content: "";
  position: absolute;
  display: block;
  background: white;
  width: 1.5em;
  height: 3px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  transition: 0.2s;
}
.accordion-area li.accarea-item .acctitle.close::before {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}
.accordion-area li.accarea-item .acctitle:after {
  /*アイコンの＋と×*/
  content: "";
  position: absolute;
  display: block;
  background: white;
  width: 1.5em;
  height: 3px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.2s;
}
.accordion-area li.accarea-item .acctitle.close::after {
  /*　closeというクラスがついたら形状変化　*/
  transform: translateY(-50%) rotate(180deg);
}
.accordion-area li.accarea-item .accbox {
  /*アコーディオンで現れるエリア*/
  display: none;
  padding: 0.8em 1em 2%;
  background: #dccbbb;
}
.accordion-area li.accarea-item .accbox li {
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0;
  font-weight: 700;
}
.accordion-area li.accarea-item .accbox p {
  position: relative;
  color: #42001a;
  padding-left: 1.7em;
  line-height: 1.45;
}
.accordion-area li.accarea-item .accbox p::before {
  content: "A.";
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 591px) {
  .accordion-area {
    width: 90%;
  }
  .accordion-area li.accarea-item {
    margin-bottom: 12px;
  }
}

#access {
  margin: min(5%, 60px);
  position: relative;
  z-index: 1;
}
#access.bgwh {
  border-radius: 20px;
  padding: 3em 1em 1em;
  margin-top: 100px;
}
@media screen and (max-width: 591px) {
  #access.bgwh {
    margin-top: 80px;
  }
}
#access .overList li {
  padding: 1em 0;
  border-bottom: #dccbbb 1px solid;
}
#access .overList li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 460px) {
  #access .overList {
    width: 85%;
    margin: auto;
  }
  #access .overList img {
    width: 80%;
  }
}
#access .content_wrap {
  padding: 0;
  margin: 40px auto 0;
  width: 82.36%;
}
#access .content_wrap .acctit {
  height: 38px;
  margin-bottom: 1.5em;
}
#access iframe {
  width: 100%;
  height: 230px;
  margin-top: 1em;
}

/*-- 固定ここまで --*/
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 1000px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  header h1 {
    font-size: 80%;
  }
  .logo {
    width: 28%;
  }
  .headerAdd {
    width: 45%;
    margin: 0 0 0 1%;
    font-size: 90%;
  }
  .headerTel {
    height: auto;
    margin: 0 0 0 0%;
  }
  .copyright small {
    width: 96%;
  }
  .pankuzu {
    width: 98%;
  }
  /*--- modal ---*/
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 30px;
    height: 15px;
    z-index: 9999;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger.active span:nth-last-of-type(1) {
    transform: translateY(-6px) rotate(-32deg);
    background: white;
  }
  .menu-trigger.active span:nth-last-of-type(2) {
    transform: translateY(6px) rotate(32deg);
    background: white;
  }
  /*gnav*/
  .gnav {
    background: #1a1a1a;
    display: none;
    height: 100vh;
    width: 60vw;
    position: fixed;
    z-index: 999;
    transition: 1s;
    right: 0;
    top: 0;
  }
  .gnav.active {
    display: block;
  }
  .gnav .gnav__wrap {
    align-items: center;
    display: flex;
    height: 100vh;
    width: 60vw;
    justify-content: center;
    position: fixed;
    top: 0px;
    overflow-y: scroll;
  }
  .gnav .gnav__wrap .gnav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 0 60px;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    margin: 30px auto 0;
    width: 95%;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item:last-child {
    padding-bottom: min(8%, 60px);
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a {
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    text-decoration: none;
    transition: 0.2s;
    background: none;
    text-align: center;
    width: 100%;
    text-align: center;
    padding: 0 0 15px 0;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a.btn03 {
    padding: 0 5%;
    font-size: 2rem;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a:hover {
    color: #aaa;
  }
  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* max-width: 1000px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 768px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  nav li a {
    font-size: 1.5rem;
  }
  a[href*="tel:"] {
    pointer-events: initial;
    cursor: pointer;
    text-decoration: none;
  }
  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* max-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 591px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  .pc2,
  .pcTel {
    display: none;
  }
  .sp2 {
    display: block;
  }
  .spTel {
    display: inline;
  }
}
/*# sourceMappingURL=maps/style.css.map */
