@charset "UTF-8";
/*-------------------------------------------------
 common
-------------------------------------------------*/
@import "reset.css";
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css");
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Yomogi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@font-face {
  font-family: "futura-r";
  src: url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.woff) format("woff"), url(../font/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.ttf) format("truetype");
}
@font-face {
  font-family: "futura-b";
  src: url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.woff) format("woff"), url(../font/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.ttf) format("truetype");
}
html {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 !important;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  overflow-y: initial !important;
}

body {
  font-family: "futura-r", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #5E5E5E;
  font-weight: 300;
  margin: 0;
  padding: 0;
  position: relative;
  height: auto;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  list-style-type: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #111;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.logo_fadein {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

input {
  display: none;
}

/* ポップアップwindow部分 */
#overlay {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
  /* オーバーレイの背景部分 */
}
#overlay #bg_gray {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
}

/* ウィンドウ部分 */
#window {
  width: 90%;
  max-width: 734px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.6);
  z-index: 90;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  #window {
    width: 90%;
  }
}

/* 閉じるボタン */
#btn_cloth {
  position: absolute;
  top: -22px;
  right: -13px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  background: #fff;
  border: #555 solid 1px;
  z-index: 100;
  cursor: pointer;
}
#btn_cloth span,
#btn_cloth span::before {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #555;
}
#btn_cloth span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#btn_cloth span::before {
  content: "";
  position: absolute;
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* クリックで表示 */
#popup:checked ~ #overlay {
  visibility: visible;
}

#popup:checked ~ #overlay #window {
  -webkit-animation: fadein 500ms forwards;
          animation: fadein 500ms forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}
#msg {
  position: relative;
}
#msg .msg__btnArea {
  width: 80%;
  margin: 0 auto;
  padding-top: 2rem;
}
#msg .msg__btnArea h3 {
  width: 284px;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 640px) {
  #msg .msg__btnArea h3 {
    margin-bottom: 1rem;
  }
}
#msg .msg__btnArea .msg__btnArea--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 640px) {
  #msg .msg__btnArea .msg__btnArea--block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
#msg .msg__btnArea .msg__btnArea--block .btn {
  border: none;
  font-size: 16px;
  -webkit-box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 640px) {
  #msg .msg__btnArea .msg__btnArea--block .btn {
    width: 100%;
    height: 56px;
  }
}
#msg .msg__btnArea .msg__btnArea--block .line {
  background: #4DC764;
}
#msg .msg__btnArea .msg__btnArea--block .line:hover {
  background: #46AB59;
  color: #fff;
}
#msg .msg__btnArea .msg__btnArea--block .mail {
  background: #FF7BAC;
}
#msg .msg__btnArea .msg__btnArea--block .mail:hover {
  background: #DA6C95;
  color: #fff;
}
#msg .msg__detail {
  max-width: 604px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 640px) {
  #msg .msg__detail {
    width: 80%;
  }
}
#msg .sold {
  width: 420px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  #msg .sold {
    width: 280px;
    bottom: 25px;
    right: -35px;
  }
}

.fadeHeader {
  display: none;
}

header {
  width: 100%;
  height: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 9;
  background: #fff;
}
@media screen and (max-width: 640px) {
  header {
    height: 62px;
  }
}
header section {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 50px);
  margin: 0 auto;
}
header section .hamburger {
  display: none;
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 640px) {
  header .logo {
    width: 260px;
  }
}
header .logo img {
  width: 405px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  header .logo img {
    width: 100%;
  }
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
header ul li {
  font-family: "futura-b";
  position: relative;
}
header ul li .sp {
  vertical-align: middle;
}
header ul li .accordion-area {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  color: #5E5E5E;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area {
    font-weight: normal;
  }
}
header ul li .accordion-area.active {
  text-decoration: underline;
  text-decoration-color: #FF7BAC;
  text-decoration-thickness: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li .accordion-area:hover + .accordion-detail {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-area:hover + .accordion-detail {
    display: none;
  }
}
header ul li .accordion-detail {
  display: none;
  position: absolute;
  top: 1.5em;
  left: -1rem;
  width: 200px;
  background: #fff;
  padding: 2rem 1rem 1rem;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
header ul li .accordion-detail:hover {
  display: block;
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail:hover {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header ul li .accordion-detail {
    left: -1rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    display: none;
  }
}
header ul li .accordion-detail.open {
  display: block;
}
header ul li .accordion-detail li {
  margin-bottom: 2em;
}
header ul li .accordion-detail li:last-child {
  margin-bottom: 0;
}
header ul li .accordion-detail li a {
  font-size: 1em;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 640px) {
  header ul li .accordion-detail li a:hover {
    opacity: initial;
    -webkit-transition: initial;
    transition: initial;
  }
}
header ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #5E5E5E;
  position: relative;
}
header ul li a::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background: #D2638C;
  display: block;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header ul li a.cs {
  color: #A0A0A0;
  pointer-events: none;
  line-height: 1;
}
header ul li a.cs::after {
  content: "(COMING SOON!)";
  color: #DD6363;
  display: block;
}
header ul li a:hover {
  opacity: 1;
}
header ul li a:hover::before {
  opacity: 1;
}
header ul li .headerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FF7BAC;
  color: #fff;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 256px;
  height: 48px;
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header ul li .headerBtn:hover {
  background-color: #D2638C;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 640px) {
  header ul li .headerBtn {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block !important;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 15px;
    right: 3%;
    z-index: 100;
    border-radius: 50px;
  }
  .hamburger_bar {
    display: block;
    width: 70%;
    margin: auto;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
    transition: top 0.24s, transform 0.24s, opacity 0.24s, -webkit-transform 0.24s;
    border-radius: 10px;
  }
  .hamburger_bar:nth-child(1) {
    top: 20%;
  }
  .hamburger_bar:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hamburger_bar:nth-child(3) {
    top: 80%;
    -webkit-transform: translate(36%, -100%);
            transform: translate(36%, -100%);
    width: 40%;
  }
  .hamburger_bar.is_active {
    background: #000;
  }
  .hamburger_bar.is_active:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .hamburger_bar.is_active:nth-child(2) {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    opacity: 0;
  }
  .hamburger_bar.is_active:nth-child(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
    width: 70%;
  }
  .nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #fff 50% no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    opacity: 0;
    -webkit-transition: opacity 0.24s;
    transition: opacity 0.24s;
    pointer-events: none;
    height: 100vh;
    width: 90%;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .nav.is_active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav .nav-list {
    display: block;
    gap: 20px;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list {
    width: 100%;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li {
    border-bottom: 1px solid #D7D7D7;
    padding: 0 2rem 1.5rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li:nth-child(4) {
    border-bottom: none;
  }
  .nav .nav-list li .sp {
    display: inline;
    font-weight: bold;
  }
  .nav .nav-list li .accordion-area {
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-area {
    font-weight: normal;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail {
    display: none;
    position: relative;
    top: auto;
    padding: 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-detail {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail.open {
    display: block;
  }
  .nav .nav-list li .accordion-detail li {
    margin-bottom: 0;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li .accordion-detail li {
    padding-left: 2rem;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .nav .nav-list li .accordion-detail li a {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
  }
  .nav .nav-list li i {
    margin-right: 1rem;
  }
  .nav .nav-list li.line-top {
    border-top: 2px solid #FF7BAC;
    padding-top: 1.5rem;
  }
  .nav .nav-list li.line-top label {
    font-weight: bold;
  }
  .nav .nav-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li a {
    font-weight: normal;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .nav .nav-list li a.spBtn {
    width: 256px;
    height: 52px;
    border-radius: 5px;
    border: #D2638C 1px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem auto 0;
    color: #D2638C;
  }
}
@media screen and (max-width: 767px) {
  button {
    border-color: transparent;
    background: transparent;
    cursor: pointer;
  }
}
.sp_fixed {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp_fixed {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 30px 0 5px;
    z-index: 1000;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .sp_fixed.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .sp_fixed .sub {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 212px;
    -webkit-animation: katakata 3s infinite ease-in-out alternate;
            animation: katakata 3s infinite ease-in-out alternate;
  }
  .sp_fixed .sp_fixedContent {
    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;
    width: 90%;
    margin: 0 auto;
  }
  .sp_fixed .sp_fixedContent .btn {
    width: 48%;
    font-size: 12px;
    border: none;
    padding: 0;
  }
  .sp_fixed .sp_fixedContent .btn.line {
    background: #4DC764;
  }
  .sp_fixed .sp_fixedContent .btn.mail {
    background: #FF7BAC;
  }
}

.social-tw .fa-twitter:before {
  content: "𝕏";
  font-family: unset;
  font-weight: bold;
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* frontpage */
main {
  padding-top: 50px;
}
@media screen and (max-width: 640px) {
  main {
    padding-top: 62px;
  }
}
main h2 {
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  main h2 {
    font-size: 32px;
    margin-bottom: 14px;
    position: relative;
  }
}
main h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 200 !important;
  font-size: 60px !important;
  line-height: 1.2;
  margin-top: 16px;
}
main h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  margin: 16px 0;
}
@media screen and (max-width: 640px) {
  main h3 {
    font-size: 24px !important;
  }
}
main #tow2026seFv {
  position: relative;
  background: url(../img/fv_bg.png) no-repeat 50%;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv {
    background: url(../img/fv_bg_sp.png) no-repeat 50%;
    background-size: cover;
  }
}
main #tow2026seFv::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 2%;
  width: 100%;
  max-width: 44px;
  height: 100%;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv::after {
    max-width: 28px;
  }
}
main #tow2026seFv .tow2026seFvContent {
  height: calc(100dvh - 133px);
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv .tow2026seFvContent {
    margin: 0 auto;
    height: calc(100lvh - 197px);
  }
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title {
    display: block;
  }
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title h1 {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title h1 {
    margin-left: 5%;
    padding-top: 18vh;
    width: 90%;
  }
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn {
  width: 392px;
  height: 54px;
  background: #FF7BAC;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border-radius: 0;
  border: none;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  font-size: 16px;
  -webkit-box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn::after {
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn svg {
  width: 32px;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn:hover {
  color: #222;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn:hover svg path {
  fill: #222;
  stroke: #222;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn img {
  width: 253px;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: katakata 3s infinite ease-in-out alternate;
          animation: katakata 3s infinite ease-in-out alternate;
}
@-webkit-keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes katakata {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
            transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
            transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
            transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
            transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
            transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@media screen and (max-width: 640px) {
  main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__title .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 32px auto 0;
  }
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__bg {
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  z-index: 1;
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(40%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 40%);
}
main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__bg img {
  height: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seFv .tow2026seFvContent .tow2026seFvContent__bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main .tow2026seCur {
  position: relative;
  z-index: 2;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
}
main .tow2026seCur .tow2026seCurContent {
  width: 100%;
  margin: 0 auto;
}
main .tow2026seCur .tow2026seCurContent .tow2026seCurList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  main .tow2026seCur .tow2026seCurContent .tow2026seCurList {
    width: 100%;
    max-height: none;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 16px 30px 16px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* Prevent shrinking */
}
@media screen and (max-width: 640px) {
  main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul {
    width: auto;
    padding-right: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul li {
  list-style: none;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #A6194D;
  font-weight: bold;
  white-space: nowrap; /* Ensure text doesn't wrap */
}
@media screen and (max-width: 640px) {
  main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul li {
    min-width: 120px;
  }
}
main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul li img {
  display: block;
  height: 20px;
  max-width: 250px;
}
@media screen and (max-width: 640px) {
  main .tow2026seCur .tow2026seCurContent .tow2026seCurList ul li img {
    max-height: 20px;
    max-width: 140px;
    width: auto;
    height: auto;
  }
}
main #tow2026seAbout {
  padding: 60px 0;
  background: url(../img/about_bg.png), #F8F8F8;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seAbout {
    padding: 32px 0;
  }
}
main #tow2026seAbout .tow2026seAboutContent {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 640px) {
  main #tow2026seAbout .tow2026seAboutContent {
    display: block;
  }
}
main #tow2026seAbout .tow2026seAboutContent img {
  max-width: 419px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  main #tow2026seAbout .tow2026seAboutContent img.sp {
    display: block;
    margin-bottom: 12px;
  }
}
main #tow2026seAbout .tow2026seAboutContent .tow2026seAboutContent__block h3 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  main #tow2026seAbout .tow2026seAboutContent .tow2026seAboutContent__block h3 {
    font-size: 24px;
  }
}
main #tow2026seAbout .tow2026seAboutContent .tow2026seAboutContent__block p {
  line-height: 1.4;
}
main #tow2026seAbout .tow2026seAboutContent .btn {
  margin-top: 16px;
}
main #tow2026seBrand {
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  main #tow2026seBrand {
    padding: 32px 0;
  }
}
main #tow2026seBrand .tow2026seBrandContent {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  gap: 56px;
}
@media screen and (max-width: 640px) {
  main #tow2026seBrand .tow2026seBrandContent {
    display: block;
  }
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block {
  margin-top: 16px;
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1040px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul {
    gap: 12px;
  }
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul li {
  width: 240px;
}
@media screen and (max-width: 640px) {
  main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul li {
    width: calc(50% - 6px);
  }
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul li dl {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #d8d8d8;
  padding: 16px 12px;
}
@media screen and (max-width: 640px) {
  main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul li dl {
    width: 100%;
    padding: 12px;
  }
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block ul li dl dd {
  color: #767676;
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block .btn {
  margin: 32px auto 0;
  background: none;
  border: 1px solid #000;
  color: #000;
}
main #tow2026seBrand .tow2026seBrandContent .tow2026seBrandContent__block .btn:hover {
  background: #000;
  color: #fff;
}
main #tow2026seLb {
  padding: 60px 0;
  margin-left: auto;
  background: url(../img/bf_bg.png), #FBECF3;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seLb {
    width: 100%;
    padding: 32px 0;
  }
}
main #tow2026seLb .tow2026seLbContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}
main #tow2026seLb .tow2026seLbContent h2 {
  margin-bottom: 16px;
}
main #tow2026seLb .tow2026seLbContentScroll {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 90%;
  height: 593px;
  max-width: 1080px;
  margin: 0 auto 0;
}
@media screen and (max-width: 640px) {
  main #tow2026seLb .tow2026seLbContentScroll {
    padding: 0 5%;
    height: 468px;
  }
}
main #tow2026seLb .tow2026seLbContentScroll .tow2026seLbContentList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 640px) {
  main #tow2026seLb .tow2026seLbContentScroll .tow2026seLbContentList {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
}
@media screen and (max-width: 640px) {
  main #tow2026seLb .tow2026seLbContentScroll .tow2026seLbContentList li {
    scroll-snap-align: start;
  }
}
main #tow2026seLb .tow2026seLbContentScroll .tow2026seLbContentList li iframe {
  min-width: 300px !important;
}
@media screen and (max-width: 640px) {
  main #tow2026seLb .tow2026seLbContentScroll .tow2026seLbContentList li iframe {
    min-width: 200px !important;
  }
}
main #tow2026seCamp {
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  main #tow2026seCamp {
    padding: 32px 0;
  }
}
main #tow2026seCamp .tow2026seCampContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
main #tow2026seCamp .tow2026seCampContent h2, main #tow2026seCamp .tow2026seCampContent h3 {
  text-align: right;
}
main #tow2026seCamp .tow2026seCampContent .tow2026seCampContent__img {
  margin: 2rem auto;
  text-align: center;
  position: relative;
  max-width: 1040px;
}
main #tow2026seCamp .tow2026seCampContent .tow2026seCampContent__img .sold {
  position: absolute;
  z-index: 2;
  top: -120px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 70%;
}
@media screen and (max-width: 640px) {
  main #tow2026seCamp .tow2026seCampContent .tow2026seCampContent__img .sold {
    width: 120%;
    top: -60px;
  }
}
@media screen and (max-width: 640px) {
  main #tow2026seCamp .tow2026seCampContent .tow2026seCampContent__img img {
    width: 100%;
  }
}
main #tow2026seCamp .tow2026seCampContent .btn {
  margin: 0 auto;
}
main #tow2026seInfo {
  padding: 60px 0;
  background: url(../img/info_bg.png) no-repeat, #efefef;
  background-size: 70%;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo {
    padding: 32px 0;
  }
}
main #tow2026seInfo .tow2026seInfoContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  margin: 2.5rem auto 0;
  max-width: 1100px;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__map {
  width: 48%;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__map {
    width: 100%;
  }
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list {
    width: 100%;
    margin-bottom: 3rem;
  }
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li {
  border-top: #B9B9B9 solid 1px;
  padding: 1rem 0;
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li:first-child {
  border-top: none;
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 541px;
  width: 100%;
  margin: 0 auto;
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li dl dt {
  width: 82px;
  height: 32px;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 18px;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li dl dt {
    font-size: 12px;
  }
}
main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li dl dd {
  width: calc(100% - 100px);
  padding-top: 2px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  main #tow2026seInfo .tow2026seInfoContent .tow2026seInfoContent__block .tow2026seInfoContent__list li dl dd {
    font-size: 12px;
  }
}
main #tow2026seTicket {
  padding: 60px 0;
  background: #FBECF3;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket {
    padding: 32px 0;
  }
}
main #tow2026seTicket .tow2026seTicketContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock {
  width: 285px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.4);
  border: #F3BABA solid 1px;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock:last-child::before {
  display: none;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock {
    width: 100%;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock img {
  width: 190px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock img {
    width: 100%;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl {
  text-align: center;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl {
    width: 100%;
    margin-bottom: 1rem;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl dt {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
  vertical-align: middle;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl dt span {
  font-size: 1.5rem;
  margin-right: 0.8rem;
  padding-left: 0.5rem;
  border-left: 2px solid #000;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl dt {
    font-size: 1rem;
    text-align: left;
    margin-left: 2rem;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2026seTicketContent__flowBlock dl dd {
  font-size: 12px;
  width: 190px;
  margin: 0 auto;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2024awTicketContent__flow--arrow {
  width: 40px;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2024awTicketContent__flow--arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 1rem 0 1rem 2rem;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2024awTicketContent__flow--arrow img {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketContent__flow .tow2024awTicketContent__flow--arrow img {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
main #tow2026seTicket .tow2026seTicketContent p {
  color: #000;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent p {
    margin-top: 24px;
    font-size: 12px;
  }
}
main #tow2026seTicket .tow2026seTicketContent p a {
  color: #D2638C;
  text-decoration: underline;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent {
    margin-top: 12px;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent h3 {
  color: #555;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 24px;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent h3 span {
  font-size: 1.4rem;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block {
    display: block;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .btn {
  border: none;
  font-size: 1rem;
  -webkit-box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.4);
  width: 275px;
  height: 56px;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .btn {
    width: 80%;
    height: 56px;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .btn img {
  margin-left: 0.5rem;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .line {
  background: #4DC764;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .line {
    margin: 0 auto 12px;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .line:hover {
  background: #46AB59;
  color: #fff;
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .mail {
  background: #FF7BAC;
}
@media screen and (max-width: 640px) {
  main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .mail {
    margin: 0 auto;
  }
}
main #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .mail:hover {
  background: #DA6C95;
  color: #fff;
}
main .warning {
  width: 90%;
  max-width: 960px;
  margin: 2em auto 0;
}
main .warning p {
  text-align: center;
}
@media screen and (max-width: 640px) {
  main .warning p {
    text-align: center;
  }
}
main .warning a {
  text-align: right;
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
  color: #FF7BAC;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  main .warning a {
    text-align: center;
    margin-top: 0.5rem;
  }
}
main #tow2026seNews {
  padding: 60px 0;
  position: relative;
  background: url(../img/bf_bg.png), #EFEFEF;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews {
    padding: 32px 0;
  }
}
main #tow2026seNews .tow2026seNewsContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list {
  margin-top: 3rem;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list {
    min-height: auto;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul {
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul {
    width: 100%;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li {
  padding: 16px 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #B1B1B1;
  margin-bottom: 8px;
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  background: #fff;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li {
    padding: 16px 20px;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl {
  color: #555;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl {
    width: calc(100% - 110px);
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dt {
  font-size: 16px;
  font-family: "futura-b";
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dt {
    font-size: 12px;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dt span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  background: #fff;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #FF7BAC;
  border-radius: 30px;
  color: #FF7BAC;
  margin-left: 1em;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dt span {
    height: 20px;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dd {
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dd {
    font-size: 12px;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li .thumbnail {
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li .thumbnail {
    width: 100px;
    height: 100px;
  }
}
main #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
main #tow2026seNews .tow2026seNewsContent .btn {
  margin: 0 auto 0;
}
main #tow2026seInsta {
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  main #tow2026seInsta {
    padding: 32px 0;
  }
}
main #tow2026seInsta h2 {
  text-align: right;
}
main #tow2026seInsta h2::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  margin: 16px 0;
}
main #tow2026seInsta .tow2026seInstaContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list {
  margin: 3rem auto 0;
  max-width: 960px;
}
main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list #sb_instagram {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list #sb_instagram #sbi_images {
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3rem auto 0 !important;
  padding: 0 !important;
  gap: 20px;
}
main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list #sb_instagram.sbi_col_3 #sbi_images .sbi_item {
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 640px) {
  main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list #sb_instagram.sbi_col_3 #sbi_images .sbi_item {
    width: calc(33.333333% - 14px);
    height: calc(33.333333vw - 14px);
  }
}
main #tow2026seInsta .tow2026seInstaContent .tow2026seInstaContent__list #sb_instagram .sbi_photo img {
  border-radius: 10px;
}

#towFooterGuide {
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  #towFooterGuide {
    padding: 32px 0;
  }
}
#towFooterGuide .towFooterGuideContent {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  #towFooterGuide .towFooterGuideContent {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
#towFooterGuide .towFooterGuideContent img {
  max-width: 509px;
  width: 90%;
}
@media screen and (max-width: 640px) {
  #towFooterGuide .towFooterGuideContent img {
    display: block;
    margin: 32px auto 0;
  }
}
#towFooterGuide .towFooterGuideContent .towFooterGuideContent_block h4 {
  margin: 1.8rem 0 1rem;
  font-weight: bold;
  font-size: 24px;
}
#towFooterGuide .towFooterGuideContent .towFooterGuideContent_block h4::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  margin: 16px 0;
}
#towFooterGuide .towFooterGuideContent .towFooterGuideContent_block p {
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #towFooterGuide .towFooterGuideContent .towFooterGuideContent_block p {
    font-size: 14px;
  }
}
#towFooterGuide .towFooterGuideContent .towFooterGuideContent_block .btn {
  margin: 0;
}
@media screen and (max-width: 640px) {
  #towFooterGuide .towFooterGuideContent .towFooterGuideContent_block .btn {
    margin: 0 auto;
  }
}

.fix-btn {
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .fix-btn {
    bottom: 30px;
    display: none;
  }
}
.fix-btn .fix-title {
  background: #FF7BAC;
  width: 70px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 2.4rem 0;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 640px) {
  .fix-btn .fix-title {
    font-size: 1rem;
    width: 50px;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
.fix-btn .fix-title.is-open {
  -webkit-animation: slide 1s ease-in-out forwards;
          animation: slide 1s ease-in-out forwards;
}
@-webkit-keyframes slide {
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  75% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  90% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slide {
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  75% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  90% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.fix-btn .fix-title.is-open + .fix-content {
  -webkit-animation: slide 1s ease-in-out forwards;
          animation: slide 1s ease-in-out forwards;
}
@keyframes slide {
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  75% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  90% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.fix-btn .fix-content {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 350px;
  padding-left: 40px;
  -webkit-box-shadow: 10px 5px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 5px 10px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(350px);
          transform: translateX(350px);
}
@media screen and (max-width: 640px) {
  .fix-btn .fix-content {
    width: 300px;
    padding: 10px 0 10px 30px;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
.fix-btn .fix-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fix-btn .fix-content dl dt {
  border: #D3A7B7 1px solid;
  background: #FFECF2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 37px;
  height: 87px;
  font-size: 18px;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .fix-btn .fix-content dl dt {
    height: 70px;
    width: 30px;
  }
}
.fix-btn .fix-content dl dd {
  line-height: 1.8;
  margin-left: 1.5rem;
}
.fix-btn .fix-content a {
  background: fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 287px;
  height: 50px;
  font-size: 18px;
  border-radius: 5px;
  padding-left: 25px;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .fix-btn .fix-content a {
    width: 250px;
    font-size: 14px;
    height: 45px;
    padding-left: 16px;
  }
}
.fix-btn .fix-content a img {
  margin-right: 0.7rem;
}
.fix-btn .fix-content a.line {
  border: #008700 2px solid;
  color: #008700;
}
.fix-btn .fix-content a.mail {
  border: #FF7BAC 2px solid;
  color: #FF7BAC;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  height: 46px;
  padding: 0 1rem;
  border: 3px solid #000;
  background: #000;
  color: #fff;
  text-decoration: none;
  color: 24px;
  font-family: "futura-b";
  font-size: 0.9rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 16px;
  }
}
.btn svg {
  width: 58px;
}
.btn svg circle {
  stroke: #fff;
}
.btn svg path {
  fill: #fff;
}
.btn:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}
.btn:hover svg circle {
  stroke: #000;
}
.btn:hover svg path {
  fill: #000;
}
.btn.inversion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  border: 1px solid #111;
  background: #fff;
  color: #000;
  text-decoration: none;
  color: 24px;
  font-family: "futura-b";
  font-size: 0.9rem;
  margin: 0 auto;
}
.btn.inversion svg {
  width: 58px;
}
.btn.inversion:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.btn.inversion:hover svg circle {
  stroke: #fff;
}
.btn.inversion:hover svg path {
  fill: #fff;
}

header ul li .headerBtn.nagoya {
  background: #6FBC9D;
}

main#nagoya #tow2026seTicket .tow2026seTicketContent .tow2026seTicketBtnContent .tow2026seTicketBtnContent__block .mail {
  background: #6FBC9D;
}
main#nagoya #tow2026seNews .tow2026seNewsContent .tow2026seNewsContent__list ul li dl dt span {
  border: 1px solid #6FBC9D;
  color: #6FBC9D;
}
main#nagoya #msg .msg__btnArea .msg__btnArea--block .mail {
  background: #6FBC9D;
}
@media screen and (max-width: 640px) {
  main#nagoya .sp_fixed .sp_fixedContent .btn.mail {
    background: #6FBC9D;
  }
}

@media screen and (max-width: 640px) {
  html {
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  body {
    color: #333;
    font-weight: 200;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: initial;
    font-size: 0.8rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}