@charset "utf-8";

/*
Theme Name: SUMO-LAND
*/


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 144rem;
  --inner-wide: 172rem;
  --red: rgb(195,13,35);
  --gold: #B59322;
  --gold-light: #d5c987;
  --purple: #4c1f81;
  --green: rgb(110,190,40);
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
/*
  ルートサイズ（html font-size）
  - 768〜1440: 1920基準の比率で可変（1440px時 1rem ≒ 7.5px）
  - 1441px〜: 7.5px 固定（1440表示の大きさを維持）
  - 〜767: SP（375px基準）
*/
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}

/* 768〜1440pxは現在と同じ比率で可変 */
@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.5208333333vw;
  }
}

/* 1441px以上は、1440px時の1rem＝7.5pxで固定 */
@media screen and (min-width: 1441px) {
  html {
    font-size: 7.5px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
  height: 100%;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  position: relative;
  background-color: #ececec;
}
body.is-menu-open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

#main {
  position: relative;
  z-index: 1;
}

body.is-vegan-modal-open #main {
  z-index: 101;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #333;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
/* #main {
  overflow-x: hidden;
  overflow-y: visible;
} */
section {
  position: relative;
}
.container {
  max-width: var(--inner);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-wide {
  max-width: var(--inner-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.sec-title {
  margin: 0 0 1.6rem;
  font-family: "Libre Baskerville", serif;
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.sec-lead {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container,
  .container-wide {
    max-width: 100%;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
  .sec {
    padding: 4rem 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
  .container {
    max-width: var(--inner);
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .container-wide {
    max-width: var(--inner-wide);
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .sec {
    padding: 8rem 0;
  }
  .sec-title {
    font-size: 10.6666666667rem; /* 1440px時 80px（1rem=7.5px） */
    margin-bottom: 2.6666666667rem; /* 1440px時 20px */
  }
  .sec-lead {
    font-size: 2.1333333333rem; /* 1440px時 16px（1rem=7.5px） */
    line-height: 4rem; /* 1440px時 30px */
  }
}
/* @media print, screen and ( min-width : 1200px ) {
  .sec-title {
    font-size: 80px;
    margin-bottom: 20px;
  }
  .sec-lead {
    font-size: 16px;
  }
} */
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}



/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.header-inner,
.header-right,
.header-logo,
.header-utils,
.header-nav,
.lang-btn,
.menu-btn,
.gnav a,
.gnav-parent,
.header-ticket {
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: padding 0.45s ease, min-height 0.45s ease, gap 0.45s ease;
}

.header-right {
  display: flex;
  align-items: center;
  transition: gap 0.45s ease, margin 0.45s ease;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  transition: width 0.45s ease;
}

.header-logo:hover {
  opacity: 1;
  filter: none;
}

.header-logo-stack,
.header-logo-slim {
  transition: opacity 0.45s ease, width 0.45s ease, transform 0.45s ease;
}

.header-logo-stack {
  display: none;
}

.header-logo-slim {
  display: block;
  width: 19.4rem;
  height: auto;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 20;
}

.lang-btn {
  appearance: none;
  border: 1px solid #000;
  background: #f2f2f2;
  color: #000;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  width: 12rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-sizing: border-box;
  cursor: default;
}

.lang-switch a {
  color: inherit;
  text-decoration: none;
  opacity: 0.4;
  font-weight: 500;
  line-height: 1.2;
  transition: opacity 0.2s;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 1;
  padding: 0.4rem 0.2rem;
}

.lang-switch-sep {
  opacity: 0.4;
  font-weight: 500;
  line-height: 1.2;
  pointer-events: none;
}

.lang-switch a:hover,
.lang-switch a.gt-current-lang {
  opacity: 1;
}

.lang-switch a.gt-current-lang {
  color: var(--red);
  font-weight: 700;
/*  pointer-events: none;*/
}

.menu-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  transition: color 0.45s ease;
}

.menu-btn-icon {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.menu-btn-icon::before,
.menu-btn-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.4rem;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}

.menu-btn-icon::before {
  top: calc(50% - 0.35rem);
}

.menu-btn-icon::after {
  top: calc(50% + 0.2rem);
}

.menu-btn-label {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.header.is-menu-open .menu-btn-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header.is-menu-open .menu-btn-icon::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gnav {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

.gnav a,
.gnav-parent {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
}

.gnav-parent {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.gnav > li.has-arrow > a::after,
.gnav-parent::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1.3rem;
  flex-shrink: 0;
  margin-left: 1.2rem;
  background: url("img/arrow02.svg") center / contain no-repeat;
  transition: transform 0.3s, filter 0.3s;
}

.gnav-parent::after {
  transform: rotate(90deg);
}

.gnav-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gnav a:hover,
.gnav-parent:hover,
.gnav-sub a:hover {
  opacity: 1;
  filter: none;
}

.gnav .is-disabled > a {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.header-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 4.8rem;
  background: #b9a12f;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.header-ticket::before {
  content: "";
  position: absolute;
  inset: 0.4rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.header-ticket:hover {
  opacity: 0.9;
  filter: none;
  color: #fff;
}

.header-ticket-ico {
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.6rem;
  height: auto;
  transform: translateY(-50%);
}

/* --- SP --- */
@media only screen and ( max-width : 767px ) {
  .header-inner {
    align-items: center;
    min-height: 6.4rem;
    padding: 1.2rem 2rem;
  }

  .header-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .header-logo-slim {
    width: 18rem;
    max-width: 100%;
  }

  .header-right {
    flex-shrink: 0;
    gap: 0.8rem;
  }

  .header-utils {
    gap: 0.8rem;
  }

  .lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 2.6rem;
    min-height: 2.6rem;
    padding: 0;
    font-size: 1.3rem;
    font-weight: 700;
    background: #f2f2f2;
    box-sizing: border-box;
  }

  .menu-btn {
    position: relative;
    color: #000;
    gap: 0;
  }

  .menu-btn-icon {
    width: 4rem;
    height: 4rem;
    background: #fff;
    border: 1.5px solid #000;
  }

  .menu-btn-label {
    display: none;
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .header.is-fv .menu-btn {
    color: #000;
  }

  .header.is-fv .lang-btn {
    background: #fff;
  }

  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 8.5rem 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .header.is-menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header.is-menu-open .menu-btn {
    color: #000;
  }

  .header.is-menu-open .lang-btn {
    background: #fff;
  }

  .gnav {
    /* flex: 1; */
    overflow-x: hidden;
    overflow-y: auto;
  }

  .gnav li {
    border-bottom: 1px solid #e5e5e5;
  }

  .gnav a,
  .gnav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 1.8rem 0.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .gnav > li:not(.has-child) > a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.7rem;
    height: 1.3rem;
    margin-left: 0;
    transform: translateY(-50%);
    flex-shrink: 0;
    background: url("img/arrow02.svg") center / contain no-repeat;
    filter: brightness(0);
  }

  .gnav > li.has-arrow > a::after,
  .gnav-parent::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-left: 0;
    filter: brightness(0);
  }

  .gnav-parent::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .gnav-sub {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.4s ease, opacity 0.3s ease, border-color 0.3s ease;
  }

  .has-child.is-open > .gnav-sub {
    max-height: 40rem;
    opacity: 1;
    border-top-color: #e5e5e5;
  }

  .has-child.is-open > .gnav-parent::after {
    transform: translateY(-50%) rotate(-90deg);
  }

  .gnav-sub a {
    padding: 1.8rem 0.2rem 1.8rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .header-nav-foot {
    display: none;
  }

  .header.is-scrolled:not(.is-menu-open) {
    background: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.08);
  }

  .header.is-scrolled:not(.is-menu-open) .header-inner {
    padding: 1.2rem 2rem;
  }

  .header.is-scrolled:not(.is-menu-open) .header-logo-slim {
    width: 18rem;
  }

  .header.is-scrolled:not(.is-menu-open) .menu-btn {
    color: #000;
  }
}

/* --- PC --- */
@media print, screen and ( min-width : 768px ) {
  .menu-btn,
  .header-nav-foot {
    display: none;
  }

  .gnav > li.has-arrow > a:not(.gnav-parent)::after {
    display: none;
  }

  .header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 4rem 4rem 0 6rem;
  }

  .header-right {
    gap: 2rem;
  }

  .header-logo {
    width: 19.4rem;
    min-height: 19.4rem;
    align-items: flex-start;
  }

  .header-logo-stack,
  .header-logo-slim {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }

  .header-logo-stack {
    width: 19.4rem;
    height: auto;
    opacity: 1;
  }

  .header-logo-slim {
    width: 31.8rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
  }

  .header.is-fv .header-inner {
    align-items: flex-start;
  }

  .header.is-fv .header-right {
    margin-top: 0.8rem;
  }

  .header.is-fv .lang-btn {
    background: #fff;
    border: none;
  }

  .header.is-fv .header-nav {
    display: flex;
    align-items: stretch;
  }

  .header.is-fv .gnav {
    display: flex;
    align-items: stretch;
    height: 7.5rem;
    gap: 0;
  }

  .header.is-fv .gnav > li {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
  }

  .header.is-fv .gnav > li > a,
  .header.is-fv .gnav-parent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: auto;
    height: 100%;
    padding: 0 4rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    border-bottom: 0;
    position: relative;
    transition: color 0.45s ease, background 0.45s ease, padding 0.45s ease;
  }

  /* テキスト幅の下線（パディング部分は含めない）＋モーダルと被らない高さ */
  .header.is-fv .gnav > li > a::before,
  .header.is-fv .gnav-parent::before {
    content: "";
    position: absolute;
    left: 4rem;
    right: 4rem;
    bottom: 1.6rem;
    height: 0.3rem;
    background: transparent;
    pointer-events: none;
    transition: background-color 0.45s ease;
  }

  .header.is-fv .gnav .is-current > a::before,
  .header.is-fv .gnav .is-current > .gnav-parent::before {
    background: #fff;
  }

  .header.is-fv .gnav > li:not(.has-child) > a:hover,
  .header.is-fv .gnav > li.has-child:hover > .gnav-parent,
  .header.is-fv .gnav > li.has-child.is-open > .gnav-parent {
    color: var(--red);
  }

  .header.is-fv .gnav > li:not(.has-child) > a:hover::before,
  .header.is-fv .gnav > li.has-child:hover > .gnav-parent::before,
  .header.is-fv .gnav > li.has-child.is-open > .gnav-parent::before {
    background: var(--red);
  }

  .header.is-fv .gnav-parent::after {
    width: 0.65rem;
    height: 1.2rem;
    margin-left: 0;
  }

  .header.is-fv .gnav-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    width: max-content;
    background: #fff;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0.4rem);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 20;
  }

  .header.is-fv .gnav > li.has-child:hover > .gnav-sub,
  .header.is-fv .gnav > li.has-child.is-open > .gnav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .header.is-fv .gnav-sub a {
    display: block;
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    border-bottom: 0;
    transition: background 0.2s, color 0.2s;
  }

  .header.is-fv .gnav-sub a:hover {
    background: var(--red);
    color: #fff;
  }

  /* scrolled */
  .header.is-scrolled {
    background: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.16);
  }

  .header.is-scrolled .header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 4rem;
    align-items: center;
    gap: 2.4rem;
    min-height: 7.5rem;
  }

  .header.is-scrolled .header-logo {
    width: 31.8rem;
    min-height: 0;
    height: 7.5rem;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
  }

  .header.is-scrolled .header-logo-stack {
    opacity: 0;
    pointer-events: none;
  }

  .header.is-scrolled .header-logo-slim {
    opacity: 1;
    pointer-events: auto;
  }

  .header.is-scrolled .header-right {
    flex: 1;
    min-width: 0;
    gap: 2rem;
    margin-top: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    justify-content: flex-end;
  }

  .header.is-scrolled .header-nav {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: stretch;
  }

  .header.is-scrolled .gnav {
    display: flex;
    align-items: stretch;
    flex: 0 1 auto;
    min-width: 0;
    height: 7.5rem;
    gap: 0;
  }

  .header.is-scrolled .gnav > li {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
  }

  .header.is-scrolled .gnav > li > a,
  .header.is-scrolled .gnav-parent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: auto;
    height: 100%;
    padding: 0 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 0;
    position: relative;
    transition: color 0.45s ease, background 0.45s ease, padding 0.45s ease;
  }

  .header.is-scrolled .gnav > li > a::before,
  .header.is-scrolled .gnav-parent::before {
    content: "";
    position: absolute;
    left: 4rem;
    right: 4rem;
    bottom: 1.6rem;
    height: 0.3rem;
    background: transparent;
    pointer-events: none;
    transition: background-color 0.45s ease;
  }

  .header.is-scrolled .gnav .is-current {
    background: transparent;
  }

  .header.is-scrolled .gnav .is-current::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 0;
    left: 0;
    background: #ececec;
    pointer-events: none;
    z-index: 0;
  }

  .header.is-scrolled .gnav .is-current > a,
  .header.is-scrolled .gnav .is-current > .gnav-parent {
    z-index: 1;
  }

  .header.is-scrolled .gnav .is-current > a::before,
  .header.is-scrolled .gnav .is-current > .gnav-parent::before {
    display: none;
  }

  .header.is-scrolled .gnav > li:not(.has-child) > a:hover::before,
  .header.is-scrolled .gnav > li.has-child:hover > .gnav-parent::before,
  .header.is-scrolled .gnav > li.has-child.is-open > .gnav-parent::before {
    background: var(--red);
  }

  .header.is-scrolled .gnav-parent::after {
    filter: brightness(0);
    width: 0.65rem;
    height: 1.2rem;
    margin-left: 0;
  }

  .header.is-scrolled .gnav-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    width: max-content;
    background: #fff;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0.4rem);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 20;
  }

  .header.is-scrolled .gnav > li.has-child:hover > .gnav-sub,
  .header.is-scrolled .gnav > li.has-child.is-open > .gnav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .header.is-scrolled .gnav-sub a {
    display: block;
    justify-content: flex-start;
    width: auto;
    height: auto;
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }

  .header.is-scrolled .gnav-sub a:hover {
    background: var(--red);
    color: #fff;
  }

  .header.is-scrolled .header-utils {
    padding: 0;
    flex-shrink: 0;
  }

  .header.is-scrolled .lang-btn {
    background: #EAEAEA;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER / FIXED TICKET

--------------------------------------------------------------------------------------------- */

.footer {
  position: relative;
  z-index: 1;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.pagetop {
  position: absolute;
  right: 2rem;
  top: 0;
  transform: translateY(calc(-100% - 2rem));
  z-index: 2;
  display: block;
  width: 6rem;
  height: 6rem;
  transition: opacity 0.3s;
}

.pagetop:hover {
  opacity: 0.85;
  filter: none;
}

.pagetop img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-inner {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  box-sizing: border-box;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: block;
  width: 12rem;
  margin-bottom: 2.5rem;
}

.footer-logo:hover {
  opacity: 1;
  filter: none;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-mail {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.footer-mail:hover {
  opacity: 0.8;
  filter: none;
  color: #fff;
}

.footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
}

.footer-sns a:hover {
  opacity: 0.8;
  filter: none;
}

.footer-sns img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-nav {
  width: 100%;
}

.footer-content {
  width: 100%;
}

.footer-nav-col {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  border-top: .1rem solid rgba(255, 255, 255, 1);
}

.footer-nav-col li:first-child a {
  border-top: 0;
}

.footer-nav-col li:last-child a {
  border-bottom: .1rem solid rgba(255, 255, 255, 1);
}

.footer-nav-col a::after {
  content: "";
  display: block;
  flex-shrink: 0;
}

.footer-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer-cta-title {
  margin: 0 0 1.2rem;
  color: #B7A231;
  font-family: "Libre Baskerville", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
}

.footer-cta-text {
  margin: 0 auto 2.4rem;
  max-width: 36rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 7.4rem;
  padding: 1.2rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
}

.footer-btn::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.footer-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  flex-shrink: 0;
  transform: translateY(-50%);
  background: url("img/arrow.svg") center / contain no-repeat;
  pointer-events: none;
}

.footer-btn:hover {
  opacity: 0.9;
  filter: none;
  color: #fff;
}

.footer-btn.is-disabled,
.footer-btn[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.footer-btn--ticket {
  background: var(--red);
}
.footer-btn--ticket:hover {
  opacity: 0.9;
}

.footer-btn--shop {
  background: var(--green);
}
.footer-btn--shop:hover {
  opacity: 0.9;
}

.footer-copy {
  margin: 6rem 0 0;
  text-align: center;
  color: #AAAAAA;
  font-size: 1rem;
}

.footer-copy small {
  font-size: inherit;
}

@media only screen and ( max-width : 767px ) {
  .pagetop {
    right: 2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .footer-inner {
    padding: 6rem 2rem 2rem;
  }
  .footer-btn {
    width: 28rem;
    margin: 0 auto;
  }
  .footer-btn::after,
  .footer-nav-col a::after {
    width: .6rem;
    height: 1.2rem;
  }
  .footer-nav-col a::after {
    background: url("img/arrow02.svg") center / contain no-repeat;
  }
}

@media print, screen and ( min-width : 768px ) {
  .pagetop {
    right: 4rem;
    width: 6rem;
    height: 6rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    column-gap: 6rem;
    row-gap: 0;
    max-width: var(--inner);
    padding: 8rem 4rem 4rem;
  }

  .footer-main {
    display: contents;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    width: 22rem;
    margin-bottom: 4rem;
  }

  .footer-mail {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }

  .footer-sns {
    gap: 5em;
    width: 100%;
  }

  .footer-sns a {
    width: 3.5rem;
    height: 3.5rem;
  }

  .footer-content {
    grid-column: 2;
    grid-row: 1;
    max-width: 89rem;
    margin-left: auto;
    width: 100%;
  }

  .footer-nav {
    display: flex;
    gap: 4rem;
    width: 100%;
  }

  .footer-nav-col {
    flex: 1;
  }

  .footer-nav-col a {
    padding: 1.8rem 0.4rem;
    font-size: 1.6rem;
  }

  .footer-cta {
    margin: 8rem 0 0;
    max-width: none;
    width: 100%;
    padding: 3.6rem 4rem;
  }

  .footer-cta-title {
    font-size: 2.7rem;
    margin-bottom: 1.4rem;
  }

  .footer-cta-text {
    max-width: none;
    font-size: 1.6rem;
    margin-bottom: 2.8rem;
  }

  .footer-cta-btns {
    flex-direction: row;
    gap: 1.6rem;
  }

  .footer-btn {
    flex: 1;
    min-height: 9.2rem;
    font-size: 2rem;
  }

  .footer-btn::after,
  .footer-nav-col a::after {
    width: 1.1rem;
    height: 2.1rem;
  }

  .footer-copy {
    grid-column: 1 / -1;
    margin-top: 4.8rem;
    font-size: 1.2rem;
  }
  .footer-nav-col a::after {
    background: url("img/arrow.png") center / contain no-repeat;
  }
}

.fixed-ticket {
  position: fixed;
  z-index: 90;
  transition: opacity 0.3s, visibility 0.3s;
}

.fixed-ticket.is-footer-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fixed-ticket-btn {
  appearance: none;
  border: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}

.fixed-ticket-btn:hover {
  opacity: 1;
  filter: none;
}

.fixed-ticket-ico {
  display: block;
  flex-shrink: 0;
  width: 3.6rem;
  height: auto;
}

.fixed-ticket-ico img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-ticket-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: left;
}

.fixed-ticket-lead {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fixed-ticket-main {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.fixed-ticket-main::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
}

.fixed-ticket-modal {
  background: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.16);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

.fixed-ticket-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixed-ticket-list a {
  display: block;
  padding: 2rem;
  color: var(--red);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: normal;
  transition: background 0.2s, color 0.2s;
}

.fixed-ticket-item-name,
.fixed-ticket-item-meta {
  display: block;
}

.fixed-ticket-item-name {
  white-space: nowrap;
}

.fixed-ticket-item-meta {
  margin-top: 0.4rem;
  font-size: 0.85em;
  font-weight: 600;
}

.fixed-ticket-list a:hover {
  opacity: 1;
  filter: none;
  background: var(--red);
  color: #fff;
}

@media only screen and ( max-width : 767px ) {
  .fixed-ticket {
    left: 0;
    right: 0;
    bottom: var(--fixed-ticket-vv-bottom, 0px);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  }

  .fixed-ticket.is-scroll-shown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fixed-ticket.is-footer-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
  }

  .fixed-ticket-btn {
    width: 100%;
    min-height: 8rem;
    padding: 1.2rem 6rem 1.2rem 3.5rem;
    border-radius: 0;
    justify-content: flex-start;
    position: relative;
  }

  .fixed-ticket-ico {
    width: 5.8rem;
  }

  .fixed-ticket-text {
    flex: 1;
  }

  .fixed-ticket-main::after {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: url("img/arrow02.svg") center / contain no-repeat;
    height: 1.7rem;
    width: .95rem;
  }

  .fixed-ticket-modal {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: calc(100% + 0.8rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.6rem);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .fixed-ticket.is-open .fixed-ticket-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fixed-ticket-list a {
    padding: 1.6rem 1.8rem;
    font-size: 1.4rem;
    white-space: normal;
  }

}

@media print, screen and ( min-width : 768px ) {
  .fixed-ticket {
    right: 0;
    bottom: 3.2rem;
  }

  .fixed-ticket-btn {
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 2rem 0 0 2rem;
    width: 40rem;
    height: 13rem;
    gap: 1.5rem;
    border-top: .2rem solid #fff;
    border-left: .2rem solid #fff;
    border-bottom: .2rem solid #fff;
  }

  .fixed-ticket-modal {
    position: absolute;
    left: 0;
    right: 1.6rem;
    bottom: 100%;
    width: auto;
    min-width: 0;
    /* 見た目の余白＋ボタンまでのホバー橋 */
    padding-bottom: 2rem;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.6rem);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }

  .fixed-ticket-list {
    background: #fff;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.16);
  }

  .fixed-ticket:hover .fixed-ticket-modal,
  .fixed-ticket:focus-within .fixed-ticket-modal,
  .fixed-ticket.is-open .fixed-ticket-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .fixed-ticket-ico {
    width: 7.5rem;
  }
  .fixed-ticket-lead {
    font-size: 1.7rem;
  }
  .fixed-ticket-main {
    font-size: 4rem;
    gap: 3.5rem;
  }
  .fixed-ticket-list a {
    font-size: 2.2rem;
  }
  .fixed-ticket-main::after {
    width: 0.8rem;
    height: 1.5rem;
    background: url("img/arrow02.svg") center / contain no-repeat;
  }
}

/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */

.sec-news {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  overflow: hidden;
}

.section-empty {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

.sec-news > .container,
.sec-news > .container-wide {
  position: relative;
  z-index: 1;
}

.news-head {
  margin-bottom: 4rem;
}

.news-head .sec-title {
  color: #A71628;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  /* margin-bottom: 4rem; */
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card-link:hover {
  opacity: 1;
  filter: none;
  color: inherit;
}

.news-card-media {
  margin: 0 0 1.6rem;
  line-height: 0;
}

.news-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.5em 1em;
  border: 1px solid #1a2a5c;
  border-radius: 999px;
  color: #1a2a5c;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.news-card-date {
  color: #999;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.news-card-title {
  margin: 0 0 1rem;
  color: #1a2a5c;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.news-card-text {
  margin: 0;
  color: #444;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-more {
  display: flex;
  justify-content: center;
}


@media only screen and ( max-width : 767px ) {
  .sec-news {
    padding: 8rem 0 9.5rem;
    background: url("img/news_gold_sp.png") center top / 100% auto no-repeat,url("img/bg01_sp.jpg") center top / 100% auto repeat-y;
  }

  .news-card-title {
    font-size: 1.6rem;
  }

  .news-card-date {
    font-size: 1.2rem;
  }
  .news-head .sec-lead {
    letter-spacing: -.03em;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-news {
    padding: 10rem 0 15rem;
    background: url("img/news_gold_bg.png") center top / 100% auto no-repeat,url("img/bg01.jpg") center top / 100% auto repeat-y;
  }

  .news-head {
    margin-bottom: 5.6rem;
  }
  .news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9rem;
    /* margin-bottom: 8rem; */
  }

  .news-card-media {
    margin-bottom: 2rem;
  }

  .news-card-title {
    font-size: 2.2rem;
  }

  .news-card-text {
    font-size: 1.4rem;
  }
  .news-card-tag {
    font-size: 1.6rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FAQ

--------------------------------------------------------------------------------------------- */

.btn-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 7.4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4rem;
  background: var(--gold);
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.btn-ticket::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.btn-ticket:hover {
  opacity: 0.9;
  filter: none;
  color: #fff;
  background: #DEC332;
}

.btn-ticket img {
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.4rem;
  height: auto;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 41.8rem;
  min-height: 9.2rem;
  padding: 1.6rem 4.8rem;
  background: #8E8E8E;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.3s, border-color 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.btn:hover {
  opacity: 1;
  filter: none;
  color: #fff;
  background: rgb(170,20,40);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 2rem;
  background: url("img/arrow.svg") center / contain no-repeat;
}

.sec-faq {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  overflow: hidden;
}

.faq-head {
  margin-bottom: 4rem;
}

.faq-head .sec-title {
  color: #A71628;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 115.4rem;
  max-width: 100%;
  margin-left: auto;
}

.faq-more {
  display: flex;
  justify-content: center;
  width: 115.4rem;
  max-width: 100%;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
}

.faq-item--more {
  display: none;
}

.faq-list.is-expanded .faq-item--more {
  display: block;
  animation: faqItemMoreIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes faqItemMoreIn {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-more {
  overflow: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.4s ease,
    margin-top 0.4s ease;
  max-height: 12rem;
}

.faq-more.is-hidden {
  opacity: 0;
  transform: translateY(0.6rem);
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.faq-more-btn {
  appearance: none;
  border: none;
  cursor: pointer;
}

.faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem 1.2rem;
  width: 100%;
  margin: 0;
  padding: 1.8rem 1.6rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-q {
  color: #A71628;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.5;
}

.faq-question-text {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}


.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-body {
  margin: 0 1.6rem 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid #ddd;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open .faq-answer-body {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.faq-answer-body p {
  margin: 0 0 1em;
  color: #444;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
}

.faq-answer-body p:last-child {
  margin-bottom: 0;
}

.location-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  pointer-events: none;
}

.location-map-overlay-text {
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
}

.bnr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 6rem;
}

.bnr-card {
  position: relative;
  display: flex;
  width: min(35rem, 100%);
  height: auto;
  aspect-ratio: 350 / 226;
  background-color: #ddd;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

.bnr-card--online {
  background-image: url("img/bnr_online.jpg");
  --bnr-accent: #C30D23;
}

.bnr-card--dojo {
  background-image: url("img/bnr_sumodojo.jpg");
  --bnr-accent: #323A88;
}

.bnr-card.is-coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.bnr-card.is-coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 3;
}

.bnr-card.is-coming-soon .bnr-card-body {
  pointer-events: none;
}

.bnr-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.bnr-card--online .bnr-card-body {
  padding: 16% 9% 6%;
}

.bnr-card--dojo .bnr-card-body {
  padding: 24% 11.5% 6%;
}

.bnr-card-text {
  margin: 0;
  max-width: 22rem;
  color: #222;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.bnr-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  min-width: 14rem;
  min-height: 4rem;
  margin-top: auto;
  padding: 0.8rem 2rem;
  background: var(--bnr-accent);
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.bnr-card-btn::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.bnr-card-btn:hover {
  opacity: 1;
  filter: none;
  color: #fff;
}

.bnr-card-btn.is-disabled,
.bnr-card-btn[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.bnr-card-btn img {
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.6rem;
  height: auto;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}


@media only screen and ( max-width : 767px ) {
  .btn {
    width: 100%;
    max-width: 30rem;
    min-width: 0;
    min-height: 6.6rem;
    padding: 1.4rem 4rem;
    font-size: 1.6rem;
  }

  .btn::before {
    inset: 0.6rem;
  }

  .btn::after {
    right: 2.4rem;
    width: .8rem;
    height: 1.6rem;
  }

  .sec-faq {
    padding: 9rem 0;
    background: url("img/bg01_sp.jpg") center top / 100% auto repeat-y;
  }

  .bnr-area {
    margin-top: 16rem;
    gap: 4rem;
  }

  .bnr-card {
    width: 100%;
  }

  .bnr-card-text {
    font-size: .8rem;
  }

  .bnr-card-btn {
    width: 64%;
    max-width: 22rem;
    min-width: 0;
    min-height: 5.6rem;
    padding: 1.2rem 3.2rem;
    font-size: 1.4rem;
  }

  .bnr-card.is-coming-soon::after {
    font-size: 1.8rem;
  }

  .bnr-card-btn::before {
    inset: 0.45rem;
  }

  .bnr-card-btn img {
    width: 1.4rem;
  }
  .btn-ticket {
    max-width: 31rem;
  }
  .home .btn-ticket {
    /* max-width: 25rem; */
  }
  .faq-icon {
    width: 1.4rem;
    height: 1.4rem;
  }
  .faq-icon::before {
    width: 1.4rem;
    height: 0.2rem;
  }
  
  .faq-icon::after {
    width: 0.2rem;
    height: 1.4rem;
  }
  .faq-item {
    border: .2rem solid #333;
  }
  .faq-q {
    font-size: 2rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .faq-icon {
    width: 2rem;
    height: 2rem;
  }
  .faq-icon::before {
    width: 2rem;
    height: 0.3rem;
  }
  .faq-item {
    border: .3rem solid #333;
  }
  
  .faq-icon::after {
    width: 0.3rem;
    height: 2rem;
  }
  .btn-ticket {
    width: 41.8rem;
    max-width: 100%;
    min-height: 9.2rem;
    padding: 1.2rem 5.6rem;
    font-size: 2.8rem;
  }

  .btn-ticket img {
    right: 2.4rem;
    width: 1.5rem;
  }
  
  .sec-faq {
    padding: 15rem 0;
    background: url(./img/faq_gold_bg.png) no-repeat top left / 100%,url("img/bg01.jpg") center top / 100% auto repeat-y;
  }
  #faq .container-wide {
    position: relative;
  }

  .faq-head {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }

  .faq-list {
    gap: 2.5rem;
    position: relative;
    z-index: 2;
  }

  .faq-more {
    margin-top: 8rem;
  }

  .faq-question {
    padding: 2.2rem 2.4rem;
    gap: 0.8rem 1.6rem;
  }

  .faq-q {
    font-size: 2.8rem;
  }

  .faq-question-text {
    font-size: 1.8rem;
  }

  .faq-answer-body {
    margin: 0 2.4rem 2.2rem;
    padding-top: 1.6rem;
  }

  .faq-answer-body p {
    font-size: 1.8rem;
  }

  .location-map-overlay-text {
    font-size: 3rem;
  }

  .bnr-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 4.8rem;
    margin-top: 35rem;
  }

  .bnr-card {
    flex: 1 1 0;
    width: auto;
    max-width: 69.9rem;
    aspect-ratio: 233 / 150;
  }

  .bnr-card-text {
    max-width: 36rem;
    font-size: 1.7rem;
  }

  .bnr-card-btn {
    min-width: 38rem;
    min-height: 9.2rem;
    font-size: 2rem;
  }
}
@media print, screen and ( min-width : 1200px ) {
  .faq-head {
    width: 32rem;
  }
}
