@charset "UTF-8";
/*-------------------------

Global setting
--------------------------*/
:root {
  --color-coral: #ff543c;
  --color-orange: #f77f1e;
  --color-lemon: #ffff00;
  --color-violet: #c737d5;
  --color-navy: #3c70ff;
  --color-skyblue: #1dc8f2;
  --color-lime: #40d700;
  --font-noto-sans: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --ani-duration: 0.5s;
  --size-main-width: 41.6rem;
}
html {
  font-size: 62.5%;
  background: var(--color-coral);
  transition: background-color 1.5s;
}
html.top {
  background: var(--color-coral);
}
html.message {
  background: var(--color-lime);
}
html.information {
  background: var(--color-navy);
}
html.entertainment {
  background: var(--color-orange);
}
html.media {
  background: var(--color-violet);
}
html.support {
  background: var(--color-skyblue);
}
body {
  color: #000;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
  font-family: var(--font-noto-sans);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
@media (min-width: 751px) and (max-width: 1400px) {
  html {
    font-size: calc(1000vw / 1400);
  }
}
@media (min-width: 751px) {
  .sp {
    display: none;
  }
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 750px) {
  :root {
    --size-main-width: 31.5rem;
  }
  html {
    font-size: calc(1000vw / 375);
  }
  body {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .pc {
    display: none;
  }
}
/*-------------------------

Main & global style
--------------------------*/
main {
  flex: 0 0 var(--size-main-width);
  max-width: var(--size-main-width);
  background: #fff;
}
section {
  padding: 6.4rem 3rem;
  min-height: 100vh;
}
section h2 {
  text-align: center;
  margin-bottom: 4rem;
}
section h2 i {
  transform-origin: center center;
}
.main-container {
  display: flex;
  max-width: 140rem;
  margin-left: auto;
}
.btn-extend {
  display: block;
  width: 10rem;
  height: 3rem;
  margin: 3rem auto 0;
  mask-image: url(../img/common/btn-more.svg);
  mask-size: contain;
  mask-position: center center;
  mask-repeat: no-repeat;
  font-size: 0;
}
.btn-extend.close {
  mask-image: url(../img/common/btn-close.svg);
}
#entertainment .btn-extend {
  background: var(--color-orange);
}
#media .btn-extend {
  background: var(--color-violet);
}
#support .btn-extend {
  background: var(--color-skyblue);
}
.lightbox-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  cursor: pointer;
}
.btn-totop {
  width: 11rem;
  height: 11rem;
  border: 1000rem;
  position: fixed;
  bottom: 2rem;
  right: 9.5rem;
  z-index: 2;
  clip-path: circle(5.5rem at 50% 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ani-duration);
}
.btn-totop.active {
  opacity: 1;
  pointer-events: unset;
}
.btn-totop:before,
.btn-totop:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.btn-totop:before {
  background: url(../img/common/ico-totop-bg.svg) no-repeat center center/ contain;
  animation: spin 10s linear infinite;
}
.btn-totop:after {
  background: url(../img/common/ico-totop-arrow.svg) no-repeat center center/ 2.6rem auto;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 750px) {
  main {
    max-width: 100%;
    width: calc(100% - 6rem);
  }
  .main-container {
    display: block;
  }
  section {
    padding: 4.8rem 2.4rem;
  }
  section h2 {
    margin-bottom: 3.2rem;
  }
  section h2 > img {
    width: auto;
    height: 3.8rem;
  }

  .btn-extend {
    aspect-ratio: 10/3;
    width: 8rem;
    height: auto;
    margin: 2.4rem auto 0;
  }
  .btn-totop {
    width: 8rem;
    height: 8rem;
    bottom: 2rem;
    right: 2rem;
  }
  .btn-totop:after {
    background: url(../img/common/ico-totop-arrow.svg) no-repeat center center/ 1.6rem auto;
  }
}
/*-------------------------

loading
--------------------------*/
.loading-container {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
}
.loading-container #loading,
.loading-container #loading-sp {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/*-------------------------

Opening
--------------------------*/

#opening {
  display: grid;
  place-items: center;
  background: #ddd;
  height: 100vh;
  position: relative;
  z-index: 10;
}
#opening:after {
  content: "SCROLL";
  position: absolute;
  padding-bottom: 6.4rem;
  right: 5rem;
  bottom: 5rem;
  z-index: 3;
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: 1rem;
  background: url(/assets/img/common/ico-arrow-scroll.svg) no-repeat center bottom/contain;
  animation: backgroundAnimation 1s linear infinite;
}
@keyframes backgroundAnimation {
  0%,
  100% {
    background-position: center 85%;
  }
  50% {
    background-position: center 100%;
  }
}
#opening.hide {
  pointer-events: none;
}
#ani-opening {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#ani-opening svg {
  width: 100vw !important;
  pointer-events: none;
}
#opening .slider {
  width: 58vw;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
#opening .slider.is-initialized {
  opacity: 1;
}
@media (max-width: 750px) {
  #opening {
    height: 100svh;
  }
  #ani-opening {
    display: none;
  }
  #opening:after {
    padding-bottom: 6rem;
    right: 1rem;
    bottom: 2rem;
    font-size: 0.9rem;
  }
  #opening video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }
}
/*-------------------------

Header
--------------------------*/
.site-header {
  flex: 1 1 100%;
  position: relative;
}
.site-header .menu {
  display: none;
}
.site-header .global-navi {
  display: grid;
  place-items: center;
  justify-items: flex-start;
  max-width: 73rem;
  height: 100vh;
  padding: 5rem 5rem 5rem 2rem;
  position: fixed;
  top: 0;
  right: 56.8rem;
}
.site-header .global-navi .primary {
  align-self: flex-end;
}
.site-header .global-navi .primary li {
  display: flex;
  gap: 0.4rem;
}
.site-header .global-navi .primary li img {
  width: auto;
  height: 4.05rem;
}
.site-header .global-navi .primary li + li {
  margin-top: 4rem;
}
.site-header .global-navi .primary li i {
  width: 5.1rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  top: -0.5rem;
}
.site-header .global-navi .primary li i.active {
  transition: all var(--ani-duration);
  transform: rotateY(720deg);
}
.site-header .global-navi .primary li:nth-of-type(1) i {
  background-image: url(../img/common/ico-top.png);
}
.site-header .global-navi .primary li:nth-of-type(2) i {
  background-image: url(../img/common/ico-message.png);
}
.site-header .global-navi .primary li:nth-of-type(3) i {
  background-image: url(../img/common/ico-information.png);
}
.site-header .global-navi .primary li:nth-of-type(4) i {
  background-image: url(../img/common/ico-entertainment.png);
}
.site-header .global-navi .primary li:nth-of-type(5) i {
  background-image: url(../img/common/ico-media.png);
}
.site-header .global-navi .primary li:nth-of-type(6) i {
  background-image: url(../img/common/ico-support.png);
}
.site-header .global-navi .secondary {
  align-self: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin: 8rem 0 0 5.4rem;
}
.site-header .global-navi .secondary li {
  flex: 0 0 auto;
}
.site-header .global-navi .secondary li img {
  width: auto;
  height: 2.8rem;
}
.site-header .global-navi .secondary li:last-of-type {
  flex: 1 1 100%;
  position: relative;
  padding-left: 10rem;
  font-size: 1.3rem;
}
.site-header .global-navi .secondary li:last-of-type:before {
  grid-area: 1/1/3/2;
  content: "お問合わせ";
  width: 8.4rem;
  height: 3.4rem;
  display: grid;
  place-content: center;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.site-header .global-navi .navi-title {
  display: none;
}
.site-header .global-navi .popup {
  width: 22.6rem;
  height: 12.1rem;
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 750px) {
  .site-header {
    position: fixed;
    z-index: 8;
  }
  .site-header .menu {
    display: block;
    width: 6rem;
    height: 6rem;
    position: relative;
    background: var(--color-lemon);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .site-header .menu span {
    width: 2.4rem;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .site-header .menu span:before,
  .site-header .menu span:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    transform-origin: center center;
    transition: all 0.3s;
  }
  .site-header .menu span:before {
    top: -0.8rem;
  }
  .site-header .menu span:after {
    bottom: -0.8rem;
  }
  .site-header .menu.active span {
    background: transparent;
  }
  .site-header .menu.active span:before {
    transform: rotate(45deg);
    top: 0;
  }
  .site-header .menu.active span:after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  .site-header .global-navi {
    width: 100%;
    background: var(--color-coral);
    display: flex;
    flex-direction: column;
    padding: 2.4rem 3rem;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .top .site-header .global-navi {
    background: var(--color-coral);
  }
  .message .site-header .global-navi {
    background: var(--color-lime);
  }
  .information .site-header .global-navi {
    background: var(--color-navy);
  }
  .entertainment .site-header .global-navi {
    background: var(--color-orange);
  }
  .media .site-header .global-navi {
    background: var(--color-violet);
  }
  .support .site-header .global-navi {
    background: var(--color-skyblue);
  }
  .site-header .global-navi.active {
    transform: translateX(0);
  }
  .site-header .global-navi .primary {
    margin: 2rem 0 0;
    align-self: auto;
  }
  .site-header .global-navi .primary li img {
    height: 3.2rem;
  }
  .site-header .global-navi .primary li + li {
    margin-top: 2.4rem;
  }
  .site-header .global-navi .primary li i {
    width: 3.2rem;
    top: -0.3rem;
  }
  .site-header .global-navi .secondary {
    margin: 5rem auto 0;
    gap: 1.6rem;
    align-content: flex-end;
  }
  .site-header .global-navi .secondary li img {
    height: 2rem;
  }
  .site-header .global-navi .secondary li:last-of-type {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .site-header .global-navi .popup {
    display: none;
  }
}
@media (max-width: 750px) and (min-height: 740px) {
  .site-header .global-navi .navi-title {
    width: 23.4rem;
    display: block;
    margin-bottom: 5rem;
  }
}
/*-------------------------

Aside
--------------------------*/
.main-container > aside {
  flex: 0 0 15rem;
  background-image: url(../img/common/ico-vertical-looping-txt.svg);
  background-repeat: repeat-y;
  background-size: 3.4rem auto;
  background-position: center 0;
  animation: slide 60s linear infinite;
}
@keyframes slide {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -226rem;
  }
}
@media (max-width: 750px) {
  .main-container > aside {
    width: 6rem;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-size: 2.5rem auto;
    z-index: 0;
  }
  @keyframes slide {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -166.1rem;
    }
  }
}
/*-------------------------

Top
--------------------------*/
#top {
  padding: 0 0 6.4rem;
}
@media (max-width: 750px) {
  #top {
    padding: 0 0 4.8rem;
  }
}
/*-------------------------

Message
--------------------------*/

#message {
  overflow: hidden;
}
#message h2 i {
  display: block;
  width: 6.4rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  background: url(../img/common/ico-message.png) no-repeat center center/contain;
  pointer-events: none;
}
#message .horizontal-scroll {
  width: 100%;
  writing-mode: vertical-rl;
  overflow-x: scroll;
  cursor: grab;
}
#message .horizontal-scroll::-webkit-scrollbar {
  height: 0;
}
#message .horizontal-scroll h3 {
  font-size: 2rem;
  line-height: 2em;
  margin-left: 3rem;
}
#message .horizontal-scroll p {
  font-size: 1.4rem;
  line-height: 2.21em;
  letter-spacing: 0.02em;
}
#message nav {
  display: flex;
  justify-content: space-between;
  margin: 1.6rem auto 4rem;
}
#message nav button {
  width: 3rem;
  height: 3rem;
  border-radius: 100rem;
  background: url(../img/message/ico-arrow.svg) no-repeat center center / 96% auto;
}
#message nav button.disabled {
  background: url(../img/message/ico-arrow-disabled.svg) no-repeat center center / 96% auto;
}
#message nav button.prev {
  transform: rotate(180deg);
}
#message .profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  letter-spacing: 0.11em;
  font-feature-settings: "palt";
}
#message .profile div {
  flex: 1 1 auto;
}
#message .profile div em {
  display: block;
  color: var(--color-lime);
  margin-bottom: 1rem;
}
#message .profile div strong {
  font-size: 1.2em;
}
#message .profile figure {
  flex: 0 0 14.8rem;
}
@media (max-width: 750px) {
  #message .horizontal-scroll h3 {
    font-size: 1.6rem;
    line-height: 2em;
    margin-left: 2rem;
  }
  #message .horizontal-scroll p {
    font-size: 1.2rem;
    line-height: 2.21em;
    letter-spacing: 0.02em;
  }
  #message .profile + p {
    font-size: 1.14rem;
  }
  #message .profile figure {
    flex: 0 0 10rem;
  }
}
/*-------------------------

Information
--------------------------*/
#information {
  overflow: hidden;
}
#information h2 i {
  display: block;
  width: 6.4rem;
  height: 5rem;
  margin: 0 auto 1rem;
  background: url(../img/common/ico-information.png) no-repeat center center/contain;
  pointer-events: none;
}
#information dl dt {
  padding: 0.4rem;
  background: var(--color-navy);
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
}
#information dl dd {
  margin: 0.8rem auto 3.2rem;
  font-size: 2rem;
  line-height: 1.4;
}
#information dl address {
  font-size: 1.5rem;
}
#information dl small {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  text-indent: -1em;
  margin-left: 1em;
}
#information dl + p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-navy);
}
@media (max-width: 750px) {
  #information dl dt {
    font-size: 1.6rem;
  }
  #information dl dd {
    font-size: 1.4rem;
    margin: 0.8rem auto 2.4rem;
  }
  #information dl address {
    font-size: 1.4rem;
  }
  #information dl small {
    font-size: 1.1rem;
  }
}
/*-------------------------

entertainment
--------------------------*/
#entertainment h2 i {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  background: url(../img/common/ico-entertainment.png) no-repeat center center/contain;
  pointer-events: none;
}
#entertainment h3 {
  padding: 0.5rem;
  margin: 5rem auto 3rem;
  background: var(--color-orange);
  line-height: 1;
  font-size: 1.7rem;
  color: #fff;
}
#entertainment .schedule ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem 0;
}
#entertainment .schedule ul li {
  flex: 0 0 17.6rem;
  max-width: 17.6rem;
  position: relative;
}
#entertainment .schedule ul:not(.extended) li:nth-of-type(n + 7) {
  display: none;
}
#entertainment .schedule ul li.col3 {
  flex: 0 0 11.6rem;
  max-width: 11.6rem;
}
#entertainment .schedule ul li.col3 figure {
  aspect-ratio: 1/1;
}
#entertainment .schedule ul li figure {
  aspect-ratio: 17.6/12;
  background: #ddd;
  cursor: pointer;
  transition: opacity var(--ani-duration);
}
#entertainment .schedule ul li figure:hover {
  opacity: 0.7;
}
#entertainment .schedule ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#entertainment .schedule ul li figure + span {
  display: block;
  color: var(--color-orange);
  text-align: center;
}
#entertainment .schedule ul li h4 {
  max-width: 17.6rem;
  line-height: 1.7;
  font-size: 1.3rem;
  text-align: center;
  white-space: nowrap;
  font-feature-settings: "palt";
}
#entertainment .schedule ul li .text {
  font-size: 0;
  color: transparent;
  width: 0;
  height: 0;
  overflow: hidden;
}
#entertainment .schedule ul li.share-title h4 {
  font-size: 0;
}
#entertainment .schedule ul li p.share {
  width: calc(var(--size-main-width) - 6rem);
  background: #fff;
  text-align: center;
}
#entertainment .food-list li + li {
  margin-top: 1rem;
  font-size: 1.4rem;
}
#entertainment .food-list li:before {
  content: "●";
  margin-right: 1rem;
  color: var(--color-orange);
}

@media (max-width: 750px) {
  #entertainment h3 {
    margin: 3.2rem auto 1.6rem;
    font-size: 1.6rem;
  }
  #entertainment .schedule ul li {
    flex: 0 0 13.2rem;
    max-width: 13.2rem;
  }
  #entertainment .schedule ul li.col3 {
    max-width: 8.7rem;
  }
  #entertainment .schedule ul li h4 {
    white-space: normal;
    font-size: 1.2rem;
  }
  #entertainment .schedule ul li p.share {
    width: calc(var(--size-main-width) - 4.8rem);
    line-height: 1.3;
  }
}
/*-------------------------

entertainment -lightbox
--------------------------*/
.lightbox-container {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.lightbox-container .inner {
  width: var(--size-main-width);
  max-height: calc(100vh - 14rem);
  margin-right: 15rem;
  position: relative;
  z-index: 1;
}
.lightbox-container .scroll-wrapper {
  overflow-y: hidden;
  max-height: inherit;
}
.lightbox-container .entry {
  padding: 3.2rem 2rem 4.8rem;
  background: var(--color-orange);
  font-size: 1.3rem;
}
.lightbox-container .entry.media {
  padding: 0;
  background: none;
}
.lightbox-container .entry.support {
  padding: 0;
  background: var(--color-skyblue);
}
.lightbox-container .entry > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-container .entry h4 {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.lightbox-container .entry h4 br {
  display: none;
}
.lightbox-container .entry a {
  word-break: break-all;
}
.lightbox-container nav {
  display: flow-root;
  text-align: center;
  color: #fff;
  margin: 1.6rem 1.6rem 0;
}
.lightbox-container nav .lightbox-close {
  width: 2rem;
  height: 2rem;
  mask: url(../img/common/ico-close.svg) no-repeat center center / contain;
  background: #fff;
}
.lightbox-container nav .lightbox-prev {
  width: 3rem;
  height: 2rem;
  float: left;
  mask: url(../img/common/ico-prev.svg) no-repeat center center / contain;
  background: #fff;
}
.lightbox-container nav .lightbox-next {
  width: 3rem;
  height: 2rem;
  float: right;
  mask: url(../img/common/ico-next.svg) no-repeat center center / contain;
  background: #fff;
}
.lightbox-container nav .lightbox-prev.disabled,
.lightbox-container nav .lightbox-next.disabled {
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 750px) {
  .lightbox-container .inner {
    margin: 0 auto;
    width: 92%;
  }
  .lightbox-container .entry {
    padding: 2.4rem 1.6rem;
    font-size: 1.1rem;
    font-feature-settings: "palt";
  }
  .lightbox-container .entry h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
/*-------------------------

Media
--------------------------*/
#media {
  padding-left: 0;
  padding-right: 0;
}
#media h2 i {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  background: url(../img/common/ico-media.png) no-repeat center center/contain;
  pointer-events: none;
}
#media h2+p{
  margin:  0 3rem .4rem;
  font-size: 1.3rem;
}
#media .iframe {
  margin: 0 3rem 4rem;
  text-align: right;
  color: var(--color-violet);
}
#media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  text-align: right;
  color: var(--color-violet);
}
#media .galleries ul {
  display: flex;
  flex-wrap: wrap;
}
#media .galleries ul li {
  flex: 0 0 33.3333%;
  aspect-ratio: 1/1;
  background: #ddd;
  cursor: pointer;
}
#media .galleries ul li:nth-of-type(n + 10) {
  display: none;
}
#media .galleries ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 750px) {
  #media .iframe {
    margin: 0 2.4rem 3.2rem;
  }
}
/*-------------------------

Support
--------------------------*/
#support h2 i {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  margin: 0 auto 1rem;
  background: url(../img/common/ico-support.png) no-repeat center center/contain;
  pointer-events: none;
}
#support .accordion {
  margin: 4rem auto;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
#support .accordion .accordion-close {
  display: block;
  width: 10rem;
  height: 3rem;
  margin: 2rem auto 0;
  mask-image: url(../img/common/btn-close.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background: var(--color-skyblue);
  color: transparent;
  font-size: 0;
}
#support .accordion h3 {
  display: flex;
  align-items: center;
  height: 4rem;
  padding-left: 1rem;
  border-left: 4rem solid #000;
  background: var(--color-skyblue);
  font-size: 1.8rem;
  cursor: pointer;
  position: relative;
}
#support .accordion h3:before {
  content: "";
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.6rem solid var(--color-skyblue);
  position: absolute;
  left: -2.7rem;
  transform-origin: center center;
  transition: transform 0.5s;
}
#support .accordion.active h3:before {
  transform: rotate(90deg);
}
#support .accordion .container {
  padding-top: 1.6rem;
  transform-origin: center top;
  display: none;
}
#support .support-galleries {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  gap: 2rem 1.3rem;
}
#support .support-galleries li {
  flex: 0 0 11rem;
  aspect-ratio: 110/143;
  background: #ddd;
  cursor: pointer;
}
#support .support-galleries li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#support .accordion dl {
  padding-bottom: 1.6rem;
  border-bottom: 2px solid var(--color-skyblue);
}
#support .accordion dl + dl {
  margin-top: 5.6rem;
}
#support .accordion dl dt {
  margin-bottom: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-skyblue);
  color: var(--color-skyblue);
  line-height: 2;
}
#support .accordion dl dd {
  font-weight: 500;
}
#support .accordion dl dd + dd {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 2px dotted var(--color-skyblue);
}
#support .accordion dl dd small {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}
#support .accordion dl + p {
  margin-top: 1.6rem;
  font-weight: bold;
}
#support .sponsor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  margin: 4rem auto;
  border: 2px solid #000;
  border-radius: 1000rem;
  font-size: 1.8rem;
}
#support .btn-mail {
  width: 8rem;
  height: 8rem;
  display: block;
  margin: 3rem auto 0;
  background: url(../img/common/ico-mail.svg) no-repeat center center / contain;
  color: transparent;
  font-size: 0;
}
#support .outer-block {
  margin-top: 7.4rem;
  text-align: center;
}
#support .outer-block strong {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 2;
  color: var(--color-skyblue);
}
#support .outer-block figure {
  width: 14rem;
  margin: 5.6rem auto 2.4rem;
}
#support .outer-block figure + p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.11em;
}

@media (max-width: 750px) {
  #support .accordion {
    margin: 3.2rem auto;
    font-size: 1.2rem;
  }
  #support .accordion .accordion-close {
    aspect-ratio: 10/3;
    width: 8rem;
  }
  #support .accordion h3 {
    height: 3.6rem;
    padding-left: 0.8rem;
    border-left: 3.6rem solid #000;
    font-size: 1.6rem;
  }
  #support .accordion h3:before {
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 1.2rem solid var(--color-skyblue);
    left: -2.4rem;
  }
  #support .accordion .container {
    padding-top: 1rem;
  }
  #support .support-galleries {
    gap: 2rem 1rem;
  }
  #support .support-galleries li {
    flex: 0 0 8.2rem;
  }
  #support .accordion dl + dl {
    margin-top: 4rem;
  }
  #support .accordion dl dt {
    margin-bottom: 0.8rem;
    padding-bottom: 1.2rem;
  }
  #support .accordion dl dd + dd {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  #support .sponsor-link {
    height: 5.4rem;
    margin: 3.2rem auto;
    font-size: 1.5rem;
  }
  #support .outer-block {
    margin-top: 4rem;
  }
  #support .outer-block strong {
    font-size: 1.4rem;
    font-feature-settings: "palt";
  }
  #support .outer-block figure {
    width: 10rem;
    margin: 4rem auto 1.6rem;
  }
  #support .outer-block figure + p {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
