@charset "UTF-8";
/*--------------------
共通設定
--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 0vw;
  vertical-align: bottom;
}
*::-moz-selection {
  color: #fff;
  background: #000;
}
*::selection {
  color: #fff;
  background: #000;
}

html {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: justify;
}
html body {
  width: 100%;
  background: url(../img/bg.webp);
  background-size: cover;
  background-attachment: fixed;
}

p > span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.small {
  margin-top: 20px;
}
.small p {
  padding-left: 0.9rem;
  font-size: 12px;
  margin-bottom: 0;
  position: relative;
}
.small p::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------
見出し
--------------------*/
h2 {
  margin: 0 auto 40px auto;
  padding-bottom: 8px;
  text-align: center;
  line-height: 1;
  position: relative;
}
h2 span {
  padding: 4px 36px 12px 36px;
  display: inline-block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #E00012;
  background: #000;
  line-height: 1;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  -webkit-box-shadow: 8px 8px 0 #E00012;
          box-shadow: 8px 8px 0 #E00012;
}
h2 span::first-letter {
  font-size: 48px;
}

/*--------------------
section,container
--------------------*/
section {
  position: relative;
}
section .container {
  position: relative;
  padding: 0 20px;
}

/*--------------------
PCのトップ画像
--------------------*/
#pc__top {
  display: none;
}

@media screen and (min-width: 600px) {
  #pc__top {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: grid;
    position: relative;
    z-index: 99;
  }
  #pc__top div {
    width: 80%;
    -ms-flex-item-align: center;
        align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/*--------------------
レイアウトの設定
--------------------*/
.wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.wrap__left, .wrap__right {
  display: none;
}
.wrap__center {
  width: 100%;
  background: #f4f4f4;
  overflow-x: hidden;
  z-index: 200;
  opacity: 1;
}

@-webkit-keyframes loop-top {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1790px;
  }
}

@keyframes loop-top {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1790px;
  }
}
@-webkit-keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1790px;
  }
}
@keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1790px;
  }
}
@media screen and (min-width: 600px) {
  .wrap {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr min(55%, 420px);
    position: relative;
  }
  .wrap__right {
    width: calc(100% - min(55%, 420px) - 20px);
    height: 100vh;
    padding: 46px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  .wrap__right h3 {
    margin-bottom: 40px;
    padding-bottom: 4px;
    font-size: 40px;
    font-family: balto, sans-serif;
    font-weight: 900;
    line-height: 1;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
  }
  .wrap__right h3::after {
    content: "";
    width: 64px;
    height: 8px;
    background: #000;
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%) skew(-15deg);
            transform: translateX(-50%) skew(-15deg);
  }
  .wrap__right--nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .wrap__right--nav li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .wrap__right--nav li:not(:last-of-type)::after {
    content: "";
    width: 5px;
    height: 20px;
    background: #000;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%) skew(-45deg);
            transform: translateX(-50%) skew(-45deg);
  }
  .wrap__right--nav li.current a {
    background: #E00012;
  }
  .wrap__right--nav li a {
    min-width: 170px;
    padding: 10px 4vw 12px 4vw;
    background: #000;
    color: #fff;
    line-height: 1;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .wrap__right--nav li a:hover {
    background: #E00012;
  }
  .wrap__right--qr {
    margin-top: 40px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
  }
  .wrap__right--qr p {
    text-align: center;
    font-size: 11px;
    line-height: 1;
    text-shadow: 0px 0px 4px rgb(255, 255, 255);
  }
  .wrap__right--qr p span {
    padding-top: 4px;
  }
  .wrap__right--qr p:first-of-type {
    margin-bottom: 6px;
  }
  .wrap__right--qr p:first-of-type img {
    max-width: 100px;
    border: 2px solid #000;
  }
  .wrap__center {
    border-radius: 30px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 0px 10px 25px;
            box-shadow: rgba(0, 0, 0, 0.75) 0px 10px 25px;
    grid-column: 2/3;
  }
  .wrap__center header {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .wrap {
    padding-top: 40px;
    max-width: 1920px;
    margin: 0 auto;
    padding-right: 0;
    display: grid;
    grid-template-columns: 1.4fr min(37.5%, 500px) 0.6fr;
    position: relative;
  }
  .wrap__left {
    width: calc((100% - min(37.5%, 500px)) / 2 * 1.4);
    height: 100vh;
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .wrap__left > div {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: center;
    align-self: center;
  }
  .wrap__left.on .wrap__left--logo {
    opacity: 0;
  }
  .wrap__left.on .wrap__left--chara {
    -webkit-transition-delay: 0.78s;
            transition-delay: 0.78s;
    opacity: 1;
  }
  .wrap__left.on .wrap__left--txt div p {
    opacity: 1;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .wrap__left.on .wrap__left--txt div::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #E00012;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: txt__in 1.25s forwards;
            animation: txt__in 1.25s forwards;
  }
  .wrap__left.off .wrap__left--logo {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .wrap__left.off .wrap__left--txt div p {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .wrap__left.off .wrap__left--txt div::after {
    -webkit-animation: txt__out 1.25s forwards;
            animation: txt__out 1.25s forwards;
  }
  .wrap__left--logo {
    width: 75%;
    max-width: 450px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .wrap__left--chara {
    width: 85%;
    max-width: 650px;
    display: grid;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .wrap__left--chara > div {
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .wrap__left--chara > div.show {
    opacity: 1;
  }
  .wrap__left--txt {
    display: grid;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 1;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
  }
  .wrap__left--txt.on {
    opacity: 1;
  }
  .wrap__left--txt div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    overflow: hidden;
  }
  .wrap__left--txt div p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 7px 10px 16px;
    background: #E00012;
    font-size: min(2.5vw, 40px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 10px;
    color: #fff;
    opacity: 0;
  }
  .wrap__left--txt div p span {
    padding: 0 4px;
    color: #000;
    font-weight: 900;
    display: inline-block;
    position: relative;
  }
  .wrap__left--txt div p span.ruby1::after {
    content: "フォーマル";
    font-family: source-han-sans-japanese, sans-serif;
    font-size: min(0.9vw, 12px);
    letter-spacing: min(0.9vw, 12px);
    color: #fff;
    word-break: keep-all;
    position: absolute;
    top: -6px;
    left: 53%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .wrap__left--txt div p span.ruby2::after {
    content: "ろくにん";
    font-family: source-han-sans-japanese, sans-serif;
    font-size: min(0.9vw, 12px);
    letter-spacing: min(0.7vw, 12px);
    color: #fff;
    word-break: keep-all;
    position: absolute;
    top: -6px;
    left: 52%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .wrap__left--txt div p span.exc {
    padding: 0;
    width: calc(min(2.5vw, 40px) * 1.1);
    height: calc(min(2.5vw, 40px) * 1.1);
    background: url(../img/exclamation.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transform: translateX(-12%) translateY(-18%);
            transform: translateX(-12%) translateY(-18%);
  }
  .wrap__left--txt div::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #E00012;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .wrap__right {
    width: calc((100% - min(37.5%, 500px)) / 2 * 0.6);
    height: 100vh;
    padding: 46px 0;
    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: fixed;
    top: 0;
    left: initial;
    right: 0;
  }
  .wrap__center {
    grid-column: 2/3;
  }
}
@-webkit-keyframes txt__in {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@keyframes txt__in {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@-webkit-keyframes txt__out {
  0% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@keyframes txt__out {
  0% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
/* ios safari */
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .wrap__left--txt div p {
    padding: 12px 4px 10px 22px;
  }
  .wrap__left--txt div p span::before, .wrap__left--txt div p span::after {
    top: 45.5%;
  }
}
/* 古いsafari */
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .wrap__left--txt div p {
      padding: 12px 4px 10px 22px;
    }
    .wrap__left--txt div p span::before, .wrap__left--txt div p span::after {
      top: 45.5%;
    }
  }
}
/*--------------------
メイン部分
--------------------*/
main {
  margin-top: 50px;
}

@media screen and (min-width: 600px) {
  main {
    margin-top: 0;
  }
}
/*--------------------
ヘッダー
--------------------*/
header {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-bottom: 2px solid #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
header nav {
  overflow-x: scroll;
  scrollbar-width: none;
}
header nav::-webkit-scrollbar {
  display: none;
}
header nav ul {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
header nav ul li {
  line-height: 1;
  position: relative;
}
header nav ul li:not(:last-of-type)::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header nav ul li:first-of-type {
  margin-left: 20px;
}
header nav ul li:last-of-type {
  padding-right: 20px;
}
header nav ul li.current a {
  background: #E00012;
}
header nav ul li a {
  display: inline-block;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media screen and (min-width: 600px) {
  header {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr min(40%, 350px);
  }
  header nav {
    margin: 0 20px;
  }
  header > p {
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  header {
    display: none;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    header nav ul li:not(:last-of-type) {
      margin-right: 20px;
    }
  }
}
/*--------------------
sns
--------------------*/
#sns {
  padding: 40px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #E00012;
}
#sns h2 {
  margin-bottom: 24px;
  padding-bottom: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
}
#sns .sns__container--list {
  text-align: center;
}
#sns .sns__container--list li {
  display: inline-block;
  margin: 10px;
}
#sns .sns__container--list li a {
  display: block;
  padding: 11px;
  border-radius: 8px;
  border: 3px solid #000;
  -webkit-box-shadow: 0 1px 0 0 #000, 0 2px 0 0 #000, 0 3px 0 0 #000, 0 4px 0 0 #000;
          box-shadow: 0 1px 0 0 #000, 0 2px 0 0 #000, 0 3px 0 0 #000, 0 4px 0 0 #000;
}
#sns .sns__container--list li a svg {
  display: block;
  width: 33px;
  height: 33px;
}
#sns .sns__container--list li a svg path {
  fill: #E00012;
}
#sns .sns__container--list li.twitter a {
  background: #fff;
}
#sns .sns__container--list li.facebook a {
  background: #fff;
}
#sns .sns__container--list li.line a {
  background: #fff;
}

@media screen and (min-width: 1025px) {
  #sns .sns__container--list li a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #sns .sns__container--list li a:hover {
    -webkit-box-shadow: 0 0 0 0 #000;
            box-shadow: 0 0 0 0 #000;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
/*--------------------
about
--------------------*/
#about {
  padding: 40px 20px;
}
#about .about-container h3 {
  padding: 12px 0;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #E00012;
  font-style: italic;
  line-height: 1;
  border-top: 2px solid #E00012;
  border-bottom: 2px solid #E00012;
}
#about .about-container p {
  text-align: center;
  letter-spacing: 2px;
  line-height: 2;
}
#about .about-container p:not(:last-of-type) {
  margin-bottom: 40px;
}
#about .about-container p a {
  color: #00AEEC;
}
#about .about-container p a:hover {
  text-decoration: underline;
}
#about .about-container table {
  width: 100%;
  margin-bottom: 40px;
}
#about .about-container table tbody tr {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .about-container table tbody tr:not(:last-of-type) {
  margin-bottom: 10px;
}
#about .about-container table tbody tr th, #about .about-container table tbody tr td {
  text-align: center;
}
#about .about-container table tbody tr th {
  font-size: 16px;
  font-weight: 900;
  color: #E00012;
}
#about .about-container table tbody tr td a {
  color: #00AEEC;
}
#about .about-container table tbody tr td a:hover {
  text-decoration: underline;
}

/*--------------------
illust
--------------------*/
#illust {
  padding: 40px 0;
}
#illust .illust-container {
  padding: 20px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: url(../img/illust__bg.webp);
  background-size: contain;
  position: relative;
  overflow: hidden;
}
#illust .illust-container::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #E00012;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
}
#illust .illust-container h3 {
  margin: 0;
  font-size: 138px;
  font-weight: 900;
  line-height: 1;
  color: #8f000b;
  opacity: 0.4;
  mix-blend-mode: multiply;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
}
#illust .illust-container .splide {
  padding-top: 27px;
  position: relative;
  z-index: 99;
}
#illust .illust-container__txt {
  width: calc(100% - 20px);
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #000;
  position: absolute;
  bottom: 42px;
  right: -1px;
  z-index: 100;
}
#illust .illust-container__txt p {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 2;
  color: #fff;
}
#illust .illust-container__txt--catch {
  margin-bottom: 20px;
}
#illust .illust-container__txt--catch p {
  font-size: 14px;
  letter-spacing: 1px;
}
#illust .illust-container__txt--catch p span {
  display: inline-block;
  position: relative;
}
#illust .illust-container__txt--catch p span::after {
  position: absolute;
  font-size: 10px;
  color: #fff;
  word-break: keep-all;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.8);
          transform: translateX(-50%) scale(0.8);
}
#illust .illust-container__txt--catch p span.ruby1::after {
  content: "フォーマル";
}
#illust .illust-container__txt--catch p span.ruby2::after {
  content: "ろくにん";
}

@media screen and (min-width: 1025px) {
  #illust .illust-container h3 {
    font-size: 170px;
  }
  #illust .illust-container .splide .splide__slide {
    padding: 0 15px;
  }
  #illust .illust-container__txt p {
    font-size: 12px;
  }
  #illust .illust-container__txt--catch p {
    font-size: 18px;
  }
}
/*--------------------
privilege
--------------------*/
#privilege {
  padding: 40px 20px;
}
#privilege .privilege-container h3 {
  padding: 12px 0;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #E00012;
  font-style: italic;
  line-height: 1;
  border-top: 2px solid #E00012;
  border-bottom: 2px solid #E00012;
}
#privilege .privilege-container p {
  text-align: center;
  letter-spacing: 2px;
  line-height: 2;
}
#privilege .privilege-container p:not(:last-of-type) {
  margin-bottom: 40px;
}
#privilege .privilege-container p a {
  color: #00AEEC;
}
#privilege .privilege-container p a:hover {
  text-decoration: underline;
}
#privilege .privilege-container__info {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #000;
}
#privilege .privilege-container__info p {
  margin-top: 20px;
  font-size: 12px;
  color: #E00012;
}
#privilege .privilege-container__info table {
  width: 100%;
}
#privilege .privilege-container__info table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#privilege .privilege-container__info table tbody tr:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #000;
}
#privilege .privilege-container__info table tbody tr th, #privilege .privilege-container__info table tbody tr td {
  text-align: center;
}
#privilege .privilege-container__info table tbody tr th {
  color: #E00012;
  margin-bottom: 20px;
  position: relative;
}
#privilege .privilege-container__info table tbody tr th::after {
  content: "⇩";
  font-weight: 900;
  position: absolute;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#privilege .privilege-container__info table tbody tr td a {
  color: #00AEEC;
}
#privilege .privilege-container__info table tbody tr td a:hover {
  text-decoration: underline;
}
#privilege .privilege-container__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
#privilege .privilege-container__list--item {
  display: block;
  border: 1px solid #000;
  position: relative;
}
#privilege .privilege-container__list--item:last-of-type {
  grid-column: 1/3;
}
#privilege .privilege-container__list--item::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/zoom.webp);
  background-size: cover;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/*--------------------
goods
--------------------*/
#goods {
  padding: 40px 20px;
}
#goods .goods-container h3 {
  padding: 6px 0;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #E00012;
  font-style: italic;
  line-height: 1.5;
  border-top: 2px solid #E00012;
  border-bottom: 2px solid #E00012;
}
#goods .goods-container h3 span {
  display: inline-block;
}
#goods .goods-container p a {
  color: #00AEEC;
}
#goods .goods-container p a:hover {
  text-decoration: underline;
}
#goods .goods-container__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 10px;
}
#goods .goods-container__list:not(:last-of-type) {
  margin-bottom: 40px;
}
#goods .goods-container__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #000;
}
#goods .goods-container__list--item a {
  margin-bottom: 6px;
  display: block;
}
#goods .goods-container__list--item a img {
  border-bottom: 1px solid #000;
}
#goods .goods-container__list--item a .name {
  margin-top: 6px;
  padding: 0 6px;
  font-size: 12px;
  color: #E00012;
  line-height: 1.5;
  letter-spacing: 1px;
}
#goods .goods-container__list--item .price {
  margin-top: auto;
  text-align: right;
}
#goods .goods-container__list--item .price p {
  padding-left: 8px;
  background: #000;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#goods .goods-container__list--item .price p::-moz-selection {
  background: #E00012;
}
#goods .goods-container__list--item .price p::selection {
  background: #E00012;
}
#goods .goods-container__list--item .price p span {
  font-size: 12px;
}
#goods .goods-container__list--item .price p span::-moz-selection {
  background: #E00012;
}
#goods .goods-container__list--item .price p span::selection {
  background: #E00012;
}
#goods .goods-container__info {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #000;
}
#goods .goods-container__info:not(:last-of-type) {
  margin-top: 40px;
}
#goods .goods-container__info h4 {
  padding: 0 4px;
  display: inline-block;
  margin-bottom: 6px;
  border: 2px solid #E00012;
  color: #E00012;
}
#goods .goods-container__info p {
  padding-left: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
}
#goods .goods-container__info p::before {
  content: "・";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#goods .goods-container__info p.red {
  color: #E00012;
}
#goods .goods-container__info p.red::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#goods .goods-container__info--catch {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  #goods .goods-container__info {
    border: 1px solid #000;
  }
  #goods .goods-container__info--catch {
    font-size: 20px;
  }
}
/*--------------------
gallery
--------------------*/
#gallery {
  padding: 40px 20px;
}
#gallery .gallery-container h3 {
  padding: 12px 0;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #E00012;
  font-style: italic;
  line-height: 1;
  border-top: 2px solid #E00012;
  border-bottom: 2px solid #E00012;
}
#gallery .gallery-container h3 span {
  display: inline-block;
}
#gallery .gallery-container h3 span:nth-of-type(2) {
  margin-top: 8px;
}
#gallery .gallery-container h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  background: #E00012;
  color: #fff;
  text-align: center;
}
#gallery .gallery-container p {
  text-align: center;
}
#gallery .gallery-container p:not(:last-of-type) {
  margin-bottom: 40px;
}
#gallery .gallery-container__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
#gallery .gallery-container__list--item {
  text-align: center;
}
#gallery .gallery-container__list--item .name {
  font-size: 12px;
}
#gallery .gallery-container__info {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #000;
}
#gallery .gallery-container__info:not(:last-of-type) {
  margin-bottom: 40px;
}
#gallery .gallery-container__info h4 {
  padding: 0 4px;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 6px;
  border: 2px solid #E00012;
  color: #E00012;
}
#gallery .gallery-container__info p {
  padding-left: 14px;
  font-size: 12px;
  text-align: left;
  letter-spacing: 1px;
  position: relative;
}
#gallery .gallery-container__info p:not(:last-of-type) {
  margin-bottom: 0;
}
#gallery .gallery-container__info p::before {
  content: "・";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#gallery .gallery-container__info p.red {
  color: #E00012;
}
#gallery .gallery-container__info p.red::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#gallery .gallery-container__info--catch {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

/*--------------------
access
--------------------*/
#access {
  padding: 40px 0;
}
#access .access__container {
  display: grid;
  position: relative;
}
#access .access__container--list .list-item:not(:last-of-type) {
  margin-bottom: 40px;
}
#access .access__container--list .list-item h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
#access .access__container--list .list-item h3 span {
  width: 100%;
  padding: 20px 0;
  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: 18px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  background: #000;
}
#access .access__container--list .list-item .list-item__wrap {
  border: 2px solid #000;
  overflow: hidden;
}
#access .access__container--list .list-item .list-item__wrap--map {
  height: 0;
  overflow: hidden;
  padding-bottom: 62.5%;
  position: relative;
}
#access .access__container--list .list-item .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#access .access__container--list .list-item .list-item__wrap--data {
  padding: 20px;
  background: #fff;
  text-align: center;
}
#access .access__container--list .list-item .list-item__wrap--data dt {
  margin-bottom: 20px;
}
#access .access__container--list .list-item .list-item__wrap--data dt span {
  padding: 0 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #E00012;
  letter-spacing: 6px;
  text-align: center;
  position: relative;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::before, #access .access__container--list .list-item .list-item__wrap--data dt span::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::before {
  border-left: solid 3px #E00012;
  border-top: solid 3px #E00012;
  border-bottom: solid 3px #E00012;
  top: 0;
  left: 0;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::after {
  border-right: solid 3px #E00012;
  border-top: solid 3px #E00012;
  border-bottom: solid 3px #E00012;
  top: 0;
  right: 0;
}
#access .access__container--list .list-item .list-item__wrap--data dd span {
  display: inline-block;
}
#access .access__container--list .list-item .list-item__wrap--data dd span:not(:first-of-type) {
  margin-left: 7px;
}
#access .access__container--list .list-item .list-item__wrap--data dd:not(:last-of-type) {
  margin-bottom: 20px;
}
#access .access__container--list .list-item .list-item__wrap--btn {
  line-height: 1;
}
#access .access__container--list .list-item .list-item__wrap--btn a {
  padding: 10px;
  display: block;
  border-top: 2px solid #000;
  background: #000;
  text-align: center;
  color: #fff;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  #access .access__container--list .list-item .list-item__wrap--btn a {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  #access .access__container--list .list-item .list-item__wrap--btn a:hover {
    background: #fff;
    color: #000;
  }
}
/*--------------------
Twitter
--------------------*/
#twitter {
  padding: 40px 0;
}
#twitter .twitter__container {
  padding: 0 20px;
  background: transparent;
  text-align: center;
}
#twitter .twitter__container p {
  text-align: center;
  font-size: 16px;
}
#twitter .twitter__container p:not(:last-of-type) {
  margin-bottom: 20px;
}
#twitter .twitter__container--img {
  text-align: center;
}
#twitter .twitter__container--img img {
  border-radius: 10px;
  overflow: hidden;
}
#twitter .twitter__container--btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 5px;
  background: #E00012;
  border-radius: 40px;
  overflow: hidden;
}
#twitter .twitter__container--btn a {
  padding: 10px;
  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: 10px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#twitter .twitter__container--btn a svg {
  width: 30px;
  height: 30px;
}
#twitter .twitter__container--btn a svg path {
  fill: #fff;
}
#twitter .twitter__container--btn a span {
  padding-top: 2px;
  font-size: 1.2rem;
  color: #fff;
}
#twitter .twitter__container--btn a:hover {
  border: 2px solid rgba(255, 255, 255, 0);
  text-decoration: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 1025px) {
  #twitter .twitter__container--btn a:hover {
    border: 2px solid rgba(255, 255, 255, 0);
    text-decoration: none;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*--------------------
footer
--------------------*/
footer {
  margin: 0 auto;
  margin-top: 40px;
  padding: 40px 0;
  background: #000;
  position: relative;
}
footer *::-moz-selection {
  color: #fff;
  background: #E00012 !important;
}
footer *::selection {
  color: #fff;
  background: #E00012 !important;
}
footer p {
  color: #fff;
  text-align: center;
}
footer p:not(:last-of-type) {
  margin-bottom: 20px;
}
footer p small {
  font-size: 12px;
  font-weight: 700;
}