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

mixin

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

Reset

----------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
large,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

setting

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

全体

----------------------------------------------------------*/
:root {
  --header-block-size: 95px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-block-size);
  font-family: "Noto Sans JP", sans-serif;
  color: #0B0B0B;
  text-align: left;
}
body * {
  box-sizing: border-box;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  background: none;
  padding: 0;
  font-family: inherit;
}
button a {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

main {
  width: 100%;
  padding-top: var(--header-block-size);
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.is-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 1.25rem 3.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 68.75rem) {
  .header {
    padding: 0.625rem 1.25rem;
  }
}

.header__logo {
  width: 4.75rem;
}
.header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 68.75rem) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__nav-list .menu-item {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  position: relative;
}
.header__nav-list .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__nav-list .menu-item:has(.sub-menu) a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__nav-list .menu-item:has(.sub-menu) a::after {
  content: "";
  display: block;
  width: 0.6875rem;
  aspect-ratio: 11/8;
  background: url("../img/header_arrow.svg") no-repeat center center/contain;
  flex-shrink: 0;
}
.header__nav-list .menu-item:has(.sub-menu) .sub-menu a::after {
  content: "";
  display: none;
}
.header__nav-list .sub-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.625rem;
  border: 0.0625rem solid #eee;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 68.75rem) {
  .header__nav-list .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    background: none;
    border: none;
    padding-left: 1rem;
  }
}
.header__nav-list .sub-menu a {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  padding: 0.625rem 1rem;
  white-space: nowrap;
}

.header-button {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  text-align: center;
  color: #fff;
  background-color: #ff0080;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
}

.header__btn {
  display: none;
}
@media (max-width: 68.75rem) {
  .header__btn {
    display: block;
    position: fixed;
    top: 0rem;
    right: 0rem;
    z-index: 100;
    width: 4.6875rem;
    height: 3.875rem;
    cursor: pointer;
  }
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: none;
  }
}
.header__btn:focus {
  background: none;
}
.header__btn span {
  width: 2.1875rem;
  height: 0.125rem;
  background-color: #333333;
  position: absolute;
  left: 50%;
  translate: -50%;
  transition: 0.2s;
}
.header__btn span:nth-of-type(1) {
  top: calc(50% - 0.625rem);
}
.header__btn span:nth-of-type(2) {
  top: 50%;
}
.header__btn span:nth-of-type(3) {
  top: calc(50% + 0.625rem);
}
.header__btn[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.header__btn[aria-expanded=true] span:nth-of-type(1) {
  rotate: 45deg;
  translate: -50% 0;
  top: 50%;
}
.header__btn[aria-expanded=true] span:nth-of-type(3) {
  rotate: -45deg;
  translate: -50% 0;
  top: 50%;
}

.footer {
  border-top: 1px solid #AAA;
}

.footer__inner {
  width: min(100%, 73.75rem);
  padding: 3.75rem 2.5rem;
  margin: 0 auto;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer__logo {
  width: 4.75rem;
}
.footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__expo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.footer__expo-link {
  display: block;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #FF0080;
  border: 0.0625rem solid #FF0080;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: color 0.3s, background-color 0.3s;
}
@media (any-hover: hover) {
  .footer__expo-link:hover {
    color: #FFF;
    background-color: #FF0080;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .footer__nav-list {
    gap: 0.75rem;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  background-color: #555;
  color: white;
  text-align: center;
  padding-block: 0.625rem;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: rgba(241, 247, 251, 0.8);
  z-index: 99;
  translate: 100% 0;
  transition: translate 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: scroll;
  width: -moz-fit-content;
  width: fit-content;
  padding: calc(var(--header-block-size) + 1.25rem) 2.5rem;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    width: 100%;
    padding: calc(var(--header-block-size) + 1.25rem) 1.25rem;
  }
}

.hamburger.js-open {
  translate: 0;
}

.hamburger__nav-items {
  display: flex;
  flex-direction: column;
  width: 15.625rem;
  margin-inline: auto;
}

.hamburger .sub-menu {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.hamburger .hamburger__nav-items a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
}
.hamburger .hamburger__nav-items a::after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.5rem;
  background: url("../img/header_arrow.svg") no-repeat center center/contain;
  rotate: -90deg;
}
@media (min-width: 48.0625rem) {
  .hamburger .hamburger__nav-items a {
    font-size: 1rem;
  }
}

.hamburger__cta {
  margin: 1.25rem auto 0;
  width: min(100%, 14.0625rem);
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.hamburger {
  backdrop-filter: blur(20px);
}

.button {
  display: block;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  border-radius: 0.625rem;
  background-color: #ff0080;
  padding: 1.375rem 1.875rem;
}
.ticket-button {
  display: block;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  border-radius: 0.625rem;
  background-color: #ff0080;
  padding: 3rem 1.875rem;
  filter: drop-shadow(0rem 0.375rem 0rem #C00161);
}
@media (any-hover: hover) {
  .ticket-button:hover {
    filter: none;
    transform: translateY(0.375rem);
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .ticket-button {
    font-size: 1.25rem;
    padding: 1rem;
  }
}

.gallery {
  /* スライドの動き等速 */
}
.gallery .swiper-wrapper {
  transition-timing-function: linear;
}
.gallery {
  /* 画像のサイズ調整 */
}
.gallery .swiper-slide {
  height: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.gallery .swiper-slide img {
  aspect-ratio: 394/280;
}

.c-section-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-section-headline__en {
  font-family: "Rubik Mono One", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #ff0080;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .c-section-headline__en {
    font-size: 1.125rem;
  }
}

.c-section-headline__jp {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 180%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-section-headline__jp {
    font-size: 1.5rem;
  }
}

.tab {
  width: 100%;
  margin-top: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .tab {
    margin-top: 3.75rem;
  }
}

.tab__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .tab__items {
    gap: 0.375rem;
  }
}

/*タブのスタイル*/
.tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  background-color: #E6E5E5;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2.05;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0.375rem;
  border-radius: 1.875rem 1.875rem 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .tab__item {
    width: 6.25rem;
    font-size: 0.875rem;
    border-radius: 0.875rem 0.875rem 0 0;
    padding: 0.5rem;
  }
}
.tab__item.tab-active {
  background-color: #FF0080;
  color: #FFF;
}

/*タブ切り替えの中身のスタイル*/
.tab__content {
  display: none;
  overflow: hidden;
  border: 0.5rem solid #FF0080;
  border-radius: 0.625rem;
  padding: 6.25rem 7.125rem;
}
@media only screen and (max-width: 768px) {
  .tab__content {
    padding: 2rem 1.875rem;
  }
}

.tab__content.tab-active {
  display: block;
}

.tab-content__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .tab-content__list {
    gap: 0.625rem;
  }
}

.tab-content__item {
  width: 10rem;
  border: 0.0625rem solid #FF0080;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .tab-content__item {
    width: calc(50% - 0.625rem);
    border-radius: 0.5rem;
  }
}
.tab-content__item img {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (any-hover: hover) {
  .tab-content__item a:hover {
    opacity: 1;
  }
  .tab-content__item a:hover img {
    scale: 1.2;
  }
}

.tab-content__image {
  display: flex;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .tab-content__image {
    padding: 0.5rem;
  }
}
.tab-content__image img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.tab-content__content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF0080;
  padding: 0.25rem 0.5rem;
  min-height: 3.25rem;
}
@media only screen and (max-width: 768px) {
  .tab-content__content {
    min-height: 2.5rem;
    padding: 0.125rem 0.5rem;
  }
}

.tab-content__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .tab-content__name {
    font-size: 0.75rem;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.tab-content__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tab-content__item {
  display: flex;
  background-color: #FF0080;
  overflow: hidden;
}

.tab-content__image {
  background-color: #FFF;
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.js-modal-video {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

.js-modal-video::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2.625rem;
  position: absolute;
  inset: 0;
  margin: auto;
  background: url("../img/logo_youtube.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .js-modal-video::before {
    width: 1.875rem;
    height: 1.25rem;
  }
}

.inquiry-form {
  max-width: 700px;
  margin: 0 auto;
}
.inquiry-form .form-group {
  margin-bottom: 1rem;
}
.inquiry-form .form-group .form-control {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.inquiry-form .form-group .form-control:focus {
  border-color: #888;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.inquiry-form .form-group .required-mark {
  color: #ff0080;
}
.inquiry-form .form-group .btn-submit {
  background-color: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.inquiry-form .form-group .btn-submit:hover {
  background-color: #555;
}

.inner {
  width: min(100%, 69rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .inner {
    padding-inline: 0.625rem;
  }
}

/* ======================================== */
/* アコーディオン */
/* ======================================== */
.accordion__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.accordion__icon {
  transition: 0.3s ease-out;
  transform-origin: top;
}

/* 閉じたとき */
.accordion__icon:where(.accordion[open] *) {
  rotate: 180deg;
  transform: translateY(-50%);
}

.accordion__body {
  transition: block-size 0.3s;
  contain: content;
  margin: 0px;
}

.fv__inner {
  width: min(100%, 88.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .fv__inner {
    padding-inline: 0rem;
  }
}

.fv__container {
  width: 100%;
  aspect-ratio: 1340/750;
  background: url("../img/top/fv_background.png") no-repeat center center/cover;
  padding: 4.75rem 4.625rem 2.75rem;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .fv__container {
    height: calc(100svh - var(--header-block-size));
    aspect-ratio: 375/650;
    background: url("../img/top/fv_background_sp.png") no-repeat center center/cover;
    padding: 3.75rem 0.875rem 2.5rem;
  }
}

.fv__content {
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .fv__content {
    margin-inline: auto;
  }
}

.fv__headline {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.fv__image-headline {
  width: 25.1875rem;
}
@media only screen and (max-width: 768px) {
  .fv__image-headline {
    width: 16rem;
  }
}
.fv__image-headline img {
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__date {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.fv__image-date {
  width: 19.25rem;
}
@media only screen and (max-width: 768px) {
  .fv__image-date {
    width: 12.25rem;
  }
}
.fv__image-date img {
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__buttons {
  display: flex;
  gap: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .fv__buttons {
    gap: 0.875rem;
  }
}

.fv__button {
  display: block;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  border-radius: 0.625rem;
  background-color: #ff0080;
  padding: 1.375rem 1.875rem;
  box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  .fv__button {
    font-size: 0.8125rem;
    border-radius: 0.375rem;
    padding: 0.875rem 1.125rem;
    margin-top: 1.25rem;
  }
}

.about {
  padding-block: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .about {
    padding-block: 3.75rem 1.25rem;
  }
}

.about__inner {
  width: min(100%, 80rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .about__inner {
    padding-inline: 1.25rem;
  }
}

.about__image {
  margin: 0 auto;
}
.about__image img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.about__wrap {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .about__wrap {
    flex-direction: row-reverse;
    justify-content: start;
    gap: 1.5rem;
  }
}

.about__left {
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .about__left {
    padding-top: 0;
  }
}

.about__headline--en {
  font-family: "Rubik Mono One", monospace;
  font-size: 1.375rem;
  line-height: 100%;
  letter-spacing: -0.2em;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .about__headline--en {
    font-size: 0.875rem;
  }
}

.about__headline--jp {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 100%;
  padding-top: 3.5rem;
  padding-right: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .about__headline--jp {
    font-size: 1.25rem;
    line-height: 140%;
    padding-top: 2rem;
    padding-right: 0.375rem;
  }
}

.about__wrap-image {
  width: 46.375rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .about__wrap-image {
    width: 11.25rem;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 1.25rem;
  }
}

.about__wrap-image img {
  height: 100%;
  aspect-ratio: 742/393;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .about__wrap-image img {
    aspect-ratio: 180/135;
  }
}

.about__block {
  margin-top: 3.125rem;
}
@media only screen and (max-width: 768px) {
  .about__block {
    margin-top: 1.25rem;
  }
}

.about__column {
  display: flex;
  gap: 2.25rem;
}
@media only screen and (max-width: 768px) {
  .about__column {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.about__column-image {
  width: 32.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .about__column-image {
    width: 14.1875rem;
    margin-left: auto;
  }
}

.about__column-image img {
  height: 100%;
  aspect-ratio: 524/300;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .about__column-image img {
    aspect-ratio: 227/135;
  }
}

.about__column-body {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .about__column-body {
    padding-inline: 1.75rem;
  }
}

.about__column-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .about__column-title {
    font-size: 1rem;
  }
}

.about__column-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .about__column-text {
    font-size: 0.75rem;
  }
}

.about__flex {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.about__flex-body {
  width: 32.75rem;
}
@media only screen and (max-width: 768px) {
  .about__flex-body {
    width: 100%;
    padding-inline: 1rem;
  }
}

.about__flex-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .about__flex-title {
    font-size: 1rem;
    text-align: center;
  }
}

.about__flex-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .about__flex-text {
    font-size: 0.75rem;
  }
}

.about__flex-image {
  width: 18.625rem;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-top: -4.625rem;
}
@media only screen and (max-width: 768px) {
  .about__flex-image {
    display: none;
  }
}

.about__flex-image img {
  height: 100%;
  aspect-ratio: 298/191;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .about__container {
    background-color: #FAFAFA;
    border-radius: 0.625rem;
    padding-block: 1.125rem 1.25rem;
  }
}

.event {
  padding-block: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .event {
    padding-block: 1.25rem;
  }
}

.event__inner {
  width: min(100%, 56.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .event__inner {
    padding-inline: 1.25rem;
  }
}

.event__image {
  position: relative;
  margin: 0 auto;
}
.event__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.event__image::before {
  content: "";
  position: absolute;
  bottom: 8.75rem;
  left: -2.875rem;
  width: 8.75rem;
  aspect-ratio: 176/233;
  background: url("../img/top/event_deco1.png") no-repeat center center/contain;
  translate: -100% 0%;
}
@media only screen and (max-width: 768px) {
  .event__image::before {
    display: none;
  }
}
.event__image::after {
  content: "";
  position: absolute;
  top: 16.75rem;
  right: 0;
  width: 12.5rem;
  aspect-ratio: 285/290;
  background: url("../img/top/event_deco2.png") no-repeat center center/contain;
  translate: 100% 0%;
}
@media only screen and (max-width: 768px) {
  .event__image::after {
    width: 5rem;
    top: 0;
    right: -1.25rem;
    translate: 0% 0%;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.event__title {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 180%;
  text-align: center;
  color: #FF0080;
}

.event__detail {
  font-size: 0.875rem;
  margin-top: 0.625rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .event__detail {
    font-size: 0.75rem;
  }
}

.event__detail a {
  font-weight: 600;
  text-decoration: underline;
}

.event__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: calc(730px + 2.5rem);
  margin: 2.5rem auto 0;
}
@media only screen and (max-width: 768px) {
  .event__cards {
    gap: 1rem 0.5rem;
    padding: 0 0;
  }
}

.event__card {
  width: calc(50% - 0.625rem);
  background-color: #fff;
  border-radius: 0.625rem;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}
@media only screen and (max-width: 768px) {
  .event__card {
    width: calc(50% - 0.25rem);
  }
}

.event__card-image {
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
}

.event__card-image img {
  aspect-ratio: 350/186;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .event__card-image img {
    aspect-ratio: 171/120;
  }
}

.event__card-content {
  padding: 1.75rem 2.25rem;
}
@media only screen and (max-width: 768px) {
  .event__card-content {
    padding: 1rem;
  }
}

.event__card-title {
  font-size: 1rem;
  font-weight: 800;
  padding-left: 1.25rem;
  border-left: 0.1875rem solid #FF0080;
}
@media only screen and (max-width: 768px) {
  .event__card-title {
    font-size: 0.875rem;
    padding-left: 0.625rem;
  }
}

.event__card-description {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .event__card-description {
    font-size: 0.75rem;
  }
}

.event__card-description a {
  font-weight: 600;
  text-decoration: underline;
}

.overview {
  background-color: #FAFAFA;
  padding-block: 7.5rem;
}

.overview__inner {
  width: min(100%, 77rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .overview__inner {
    padding-inline: 1.25rem;
  }
}

.overview__image {
  margin: 0 auto;
}
.overview__image img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.overview__flex {
  display: flex;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .overview__flex {
    flex-direction: column;
    margin-top: 1.25rem;
  }
}

.overview__details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.overview__row {
  display: flex;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .overview__row {
    flex-direction: column;
    gap: 0.25rem;
    border-radius: 0;
  }
}

.overview__term {
  width: 9.75rem;
  font-weight: bold;
  font-size: 1.125rem;
  color: #FFF;
  align-content: center;
  background-color: #FF0080;
  padding: 0.875rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .overview__term {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1rem;
    border-radius: 0.625rem;
    padding: 0.25rem 1.5rem;
  }
}

.overview__description {
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #FFF;
  padding: 0.875rem 1.5rem;
  flex: 1;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .overview__description {
    font-size: 0.875rem;
    border-radius: 0;
    background-color: #fafafa;
    padding: 0;
  }
}

.overview__map {
  width: 31.25rem;
  height: 27.5rem;
}
@media only screen and (max-width: 768px) {
  .overview__map {
    width: 100%;
    height: 18.75rem;
  }
}

.overview__map iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .overview__inner {
    flex-direction: column;
  }
}

.access {
  padding-block: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .access {
    padding-block: 1.25rem 3.75rem;
  }
}

.access__inner {
  width: min(100%, 88.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .access__inner {
    padding-inline: 1.25rem;
  }
}

.access__image {
  margin: 0 auto;
}
.access__image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.access__cta {
  width: min(100%, 37.5rem);
  margin: 6.25rem auto 0;
}
@media only screen and (max-width: 768px) {
  .access__cta {
    margin: 3.75rem auto 0;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.access__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .access__list {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

.access__item {
  width: calc(50% - 1.25rem);
}
@media only screen and (max-width: 768px) {
  .access__item {
    width: 100%;
  }
}

.access__item-title {
  font-size: 1.125rem;
  font-weight: 500;
  padding-left: 1.25rem;
  border-left: 0.1875rem solid #FF0080;
}
@media only screen and (max-width: 768px) {
  .access__item-title {
    font-size: 0.875rem;
  }
}

.access__item-image {
  margin-top: 1.25rem;
}

.access__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.brewery {
  background-color: #FAFAFA;
  padding-block: 6.25rem 12.5rem;
}
@media only screen and (max-width: 768px) {
  .brewery {
    padding-block: 3.75rem 6.25rem;
  }
}

.brewery__inner {
  width: min(100%, 77.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .brewery__inner {
    padding-inline: 1.25rem;
  }
}

.brewery__description {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 180%;
  text-align: center;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .brewery__description {
    font-size: 0.875rem;
    text-align: left;
  }
}

.topic {
  background-color: #FAFAFA;
  padding-block: 6.25rem 6.25rem;
}
@media only screen and (max-width: 768px) {
  .topic {
    padding-block: 3.75rem 3.75rem;
  }
}

.topic__inner {
  width: min(100%, 77.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .topic__inner {
    padding-inline: 1.25rem;
  }
}

.topic-swiper {
  margin-top: 2.5rem;
}

.topic-swiper-slide {
  height: auto;
}
.topic-swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.topic-swiper-controls {
  position: static;
  margin-top: 16px;
}

.topic-swiper-pagination {
  position: static;
}

.swiper-pagination-bullet-active {
  background-color: #FF0080;
}

.topic-swiper-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  width: min(100%, 77.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .topic-swiper-buttons {
    padding-inline: 1.25rem;
  }
}

.topic-swiper-button-prev {
  width: 2.5rem;
  height: 2.5rem;
  position: static;
  margin-top: 0;
  rotate: 180deg;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .topic-swiper-button-prev:hover {
    opacity: 0.7;
  }
}

.topic-swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  position: static;
  margin-top: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .topic-swiper-button-next:hover {
    opacity: 0.7;
  }
}

.award {
  padding-block: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .award {
    padding-block: 3.75rem;
  }
}

.award__inner {
  width: min(100%, 61.25rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .award__inner {
    padding-inline: 1.25rem;
  }
}

.award__scroll {
  overflow: hidden;
  margin-top: -3.75rem;
}

.award__infinity {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.award__infinity-text {
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 12.5rem;
  font-family: "Rubik Mono One", monospace;
  font-size: 7.5vw;
  line-height: 1.2407407407;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0.0625rem 0 0 #ff0080, 0 0.0625rem 0 #ff0080, -0.0625rem 0 0 #ff0080, 0 -0.0625rem 0 #ff0080;
}
@media only screen and (max-width: 768px) {
  .award__infinity-text {
    font-size: 16vw;
    padding-right: 7.5rem;
  }
}
.award__infinity:not(.no-tick) .award__infinity-text:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}
.award__infinity:not(.no-tick) .award__infinity-text:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.award__image {
  width: min(100%, 50.125rem);
  margin: 0 auto;
}

.award__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .award__cta {
    margin-top: 3.75rem;
  }
}

.award__button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .award__button-list {
    flex-direction: column;
    margin-top: 3.75rem;
  }
}

.award__button-item {
  width: calc(50% - 0.625rem);
}
@media only screen and (max-width: 768px) {
  .award__button-item {
    width: 100%;
  }
}

.award__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid #ff0080;
  border-radius: 0.625rem;
  padding: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .award__button {
    padding: 1rem;
  }
}
@media (any-hover: hover) {
  .award__button:hover {
    background-color: #ff0080;
    opacity: 1;
  }
  .award__button:hover .award__button-item-title {
    color: #fff;
  }
  .award__button:hover .award__button-item-text {
    color: #fff;
  }
}

.award__button-item-title {
  display: block;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 120%;
  color: #ff0080;
  transition: color 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (max-width: 768px) {
  .award__button-item-title {
    font-size: 1.375rem;
  }
}

.award__button-item-text {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 180%;
  color: #ff0080;
  transition: color 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (max-width: 768px) {
  .award__button-item-text {
    font-size: 0.875rem;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.award__detail {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 180%;
  margin: 2rem auto 0;
  max-width: 43.75rem;
}
@media only screen and (max-width: 768px) {
  .award__detail {
    font-size: 0.875rem;
  }
}

.award-overview {
  margin-top: 3.125rem;
}

.award-overview__title {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 180%;
  text-align: center;
  color: #ffffff;
  background-color: #ff0080;
  border-radius: 0.625rem;
  padding: 0.875rem;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .award-overview__title {
    font-size: 1rem;
  }
}

.award-overview__description {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 180%;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.875rem auto 0;
  max-width: 43.75rem;
}
@media only screen and (max-width: 768px) {
  .award-overview__description {
    font-size: 0.875rem;
  }
}

.award-overview__container {
  display: flex;
  justify-content: center;
  background-color: #fafafa;
  border-radius: 0.625rem;
  padding: 2.5rem 6.5rem;
  max-width: 50rem;
  margin: 5rem auto 0;
}
@media only screen and (max-width: 768px) {
  .award-overview__container {
    margin: 2.5rem auto 0;
    padding: 1rem 1rem;
  }
}

.award-overview__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.award-overview__item {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .award-overview__item {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

.award-overview__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 9.125rem;
}

.award-overview__item-head-number {
  width: 2.875rem;
  height: 2.875rem;
  background-color: #ff0080;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  /* ボックスの高さと同一 */
  display: flex;
  color: #ffffff;
}

.award-overview__item-head-title {
  font-style: normal;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: #ff0080;
}

.award-overview__item-description {
  flex: 1;
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  .award-overview__item-description {
    font-size: 0.875rem;
  }
}

.ticket {
  padding-block: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .ticket {
    padding-block: 2.5rem;
  }
}

.ticket__info {
  width: min(100%, 50rem);
  background-color: #f0f0f0;
  padding: 2.5rem 5rem;
  border-radius: 1.875rem;
  margin: 2.5rem auto 0;
}
@media only screen and (max-width: 768px) {
  .ticket__info {
    border-radius: 1.25rem;
    padding: 1.25rem 0.625rem;
    margin: 1.875rem auto 0;
    font-size: 0.875rem;
  }
}

.ticket__caution {
  width: min(100%, 37.5rem);
  margin: 1.25rem auto 0;
}
@media only screen and (max-width: 768px) {
  .ticket__caution {
    padding: 0rem 0.625rem;
    font-size: 0.875rem;
  }
}

.ticket__purchase {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .ticket__purchase {
    margin-top: 2rem;
  }
}

.ticket__purchase-title {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .ticket__purchase-title {
    font-size: 1.5rem;
  }
}

.ticket__purchase-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .ticket__purchase-list {
    margin-top: 1rem;
  }
}

.ticket__purchase-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: 5.625rem;
  border: 1px solid #ff0080;
  box-shadow: 0rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  background-color: #fff;
  transition: transform 0.3s;
}

.ticket__link {
  display: block;
  padding: 0.25rem;
}
.ticket__link img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .ticket__link:hover {
    opacity: 0.8;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.ticket__purchase-text {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .ticket__purchase-text {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* ======================================== */ /* アコーディオン */ /* ======================================== */
.ticket__faq {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .ticket__faq {
    margin-top: 2rem;
  }
}

.ticket__faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-list {
    margin-top: 1rem;
  }
}

.ticket__faq-item {
  border-bottom: 1px solid #CCC;
}

.ticket__faq-item-title {
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  padding-block: 1rem;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-title {
    font-size: 0.875rem;
    padding-block: 0.625rem;
  }
}

.ticket__faq-item-title::before {
  content: "Q";
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-title::before {
    font-size: 1.25rem;
  }
}

.ticket__faq-item-title-text {
  padding-right: 4.625rem;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-title-text {
    padding-right: 0;
  }
}

.ticket__faq-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #333;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateY(10%);
  transition: 0.15s ease-out;
  transform-origin: center;
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* 閉じたとき */
.ticket__faq-icon:where(.accordion[open] *) {
  rotate: 180deg;
  transform: translateY(10%);
}

.ticket__faq-item-answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6875rem;
  padding: 0.625rem 0.125rem;
  padding-right: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-answer-inner {
    padding-right: 0;
  }
}

.ticket__faq-item-answer-inner::before {
  content: "A";
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-answer-inner::before {
    font-size: 1.25rem;
  }
}

.ticket__faq-item-answer-text {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .ticket__faq-item-answer-text {
    font-size: 0.875rem;
  }
}

.ambassador__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: min(100%, 1200px);
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .ambassador__list {
    margin-top: 1.25rem;
    gap: 0.625rem;
  }
}

.ambassador__item {
  width: calc(25% - 0.46875rem);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  border-radius: 0.625rem;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .ambassador__item:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 768px) {
  .ambassador__item {
    width: 100%;
  }
}

.ambassador__image img {
  aspect-ratio: 293/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.ambassador__body {
  padding: 1.875rem 1.5rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .ambassador__body {
    padding: 1rem 1rem;
  }
}

.ambassador__category {
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .ambassador__category {
    font-size: 0.875rem;
  }
}

.ambassador__name {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .ambassador__name {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}

.ambassador-modal {
  width: 60vw;
  height: 80vh;
  margin: auto;
  background-color: #FFF;
  transition: opacity 0.5s, scale 0.5s;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal {
    width: 85vw;
  }
}
.ambassador-modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}
.ambassador-modal::backdrop {
  backdrop-filter: blur(4px);
  　-webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.ambassador-modal:not([data-active=true])::backdrop {
  opacity: 0;
}

.ambassador-modal__close {
  width: 2.5rem;
  aspect-ratio: 1;
  background-color: #E83E8C;
  border-radius: 100%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
.ambassador-modal__close::before, .ambassador-modal__close::after {
  content: "";
  display: inline-block;
  width: 45%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  inset: 0;
  margin: auto;
}
.ambassador-modal__close::before {
  rotate: 45deg;
}
.ambassador-modal__close::after {
  rotate: 135deg;
}
@media (any-hover: hover) {
  .ambassador-modal__close:hover {
    filter: brightness(0.9);
  }
}

.ambassador-modal__container {
  display: flex;
  gap: 1.25rem;
  height: 100%;
  padding: 1.25rem;
  overflow: auto;
  overscroll-behavior: contain;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__container {
    flex-direction: column;
    padding: 1.25rem 1rem;
  }
}

.ambassador-modal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 25rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__list {
    width: 100%;
  }
}

.ambassador-modal__item:first-child {
  width: 100%;
}
.ambassador-modal__item:not(:first-child) {
  width: calc(50% - 0.3125rem);
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__item:not(:first-child) {
    display: none;
  }
}

.ambassador-modal__item-image img {
  display: block;
  aspect-ratio: 293/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.ambassador-modal__content {
  flex: 1;
}

.ambassador-modal__name {
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__name {
    font-size: 1.125rem;
  }
}

.ambassador-modal__category {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__category {
    margin-top: 0.25rem;
  }
}

.ambassador-modal__sns {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.ambassador-modal__sns-item {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__sns-item {
    width: 1rem;
    height: 1rem;
  }
}

.ambassador-modal__sns-link {
  display: block;
}

.ambassador-modal__text {
  font-size: 1rem;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 768px) {
  .ambassador-modal__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .ambassador-modal__child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    width: 100%;
  }
}

.ambassador-modal__child-item:first-child {
  display: none;
}

.ambassador-modal__child-item-image img {
  display: block;
  aspect-ratio: 293/200;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.ambassador__image {
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
}

.ambassador__image.is-pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .ambassador__image.is-pc {
    display: none;
  }
}

.ambassador__image.is-pc img {
  aspect-ratio: 200/200;
  -o-object-fit: cover;
  object-fit: cover;
}

.ambassador__image.is-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .ambassador__image.is-sp {
    display: block;
  }
}

.ambassador__image.is-sp img {
  aspect-ratio: 16/11;
  -o-object-fit: cover;
  object-fit: cover;
}

.performer__list {
  gap: 0.625rem;
  width: min(100%, 1200px);
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 768px) {
  .performer__list {
    margin-top: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.performer__item {
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .performer__item {
    width: 100%;
  }
}

.performer__tag {
  font-size: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-left: auto;
  padding: 8px 8px;
  border-radius: 100vh;
  line-height: 1;
  margin-bottom: 4px;
}

.performer__image img {
  aspect-ratio: 100/100;
  -o-object-fit: cover;
     object-fit: cover;
}

.performer__body {
  padding: 0.5rem 1rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .performer__body {
    padding: 0.5rem 0.5rem;
  }
}

.performer__category {
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .performer__category {
    font-size: 0.875rem;
  }
}

.performer__name {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .performer__name {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}

.performer-modal {
  width: 60vw;
  height: 80vh;
  margin: auto;
  background-color: #fff;
  transition: opacity 0.5s, scale 0.5s;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .performer-modal {
    width: 85vw;
  }
}
.performer-modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}
.performer-modal::backdrop {
  backdrop-filter: blur(4px);
  　-webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.performer-modal:not([data-active=true])::backdrop {
  opacity: 0;
}

.performer-modal__close {
  width: 2.5rem;
  aspect-ratio: 1;
  background-color: #e83e8c;
  border-radius: 100%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
.performer-modal__close::before, .performer-modal__close::after {
  content: "";
  display: inline-block;
  width: 45%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}
.performer-modal__close::before {
  rotate: 45deg;
}
.performer-modal__close::after {
  rotate: 135deg;
}
@media (any-hover: hover) {
  .performer-modal__close:hover {
    filter: brightness(0.9);
  }
}

.performer-modal__container {
  display: flex;
  gap: 1.25rem;
  height: 100%;
  padding: 1.25rem;
  overflow: auto;
  overscroll-behavior: contain;
}
@media only screen and (max-width: 768px) {
  .performer-modal__container {
    flex-direction: column;
    padding: 1.25rem 1rem;
  }
}

.performer-modal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 25rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .performer-modal__list {
    width: 100%;
  }
}

.performer-modal__item:first-child {
  width: 100%;
}
.performer-modal__item:not(:first-child) {
  width: calc(50% - 0.3125rem);
}
@media only screen and (max-width: 768px) {
  .performer-modal__item:not(:first-child) {
    display: none;
  }
}

.performer-modal__item-image img {
  display: block;
  aspect-ratio: 293/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.performer-modal__content {
  flex: 1;
}

.performer-modal__name {
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .performer-modal__name {
    font-size: 1.125rem;
  }
}

.performer-modal__category {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .performer-modal__category {
    margin-top: 0.25rem;
  }
}

.performer-modal__sns {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.performer-modal__sns-item {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .performer-modal__sns-item {
    width: 1rem;
    height: 1rem;
  }
}

.performer-modal__sns-link {
  display: block;
}

.performer-modal__text {
  font-size: 1rem;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 768px) {
  .performer-modal__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .performer-modal__child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    width: 100%;
  }
}

.performer-modal__child-item:first-child {
  display: none;
}

.performer-modal__child-item-image img {
  display: block;
  aspect-ratio: 293/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.supporter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  width: min(100%, 1200px);
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .supporter__list {
    margin-top: 1.25rem;
  }
}

.supporter__item {
  width: calc(12.5% - 0.375rem);
}
@media only screen and (max-width: 768px) {
  .supporter__item {
    width: calc(25% - 0.28125rem);
  }
}

.supporter__image img {
  aspect-ratio: 200/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.supporter__body {
  padding: 0.5rem 0.25rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .supporter__body {
    padding: 0.5rem 0.25rem;
  }
}

.supporter__category {
  font-size: 0.875rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .supporter__category {
    font-size: 0.625rem;
  }
}

.supporter__name {
  font-size: 1rem;
  margin-top: 0.25rem;
}
@media only screen and (max-width: 768px) {
  .supporter__name {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }
}

.tie-up__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.875rem;
  width: min(100%, 1200px);
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .tie-up__list {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.tie-up__item {
  max-width: 12.5rem;
  max-height: 3.125rem;
}
.tie-up__link {
  height: 100%;
}

.tie-up__item a {
  display: block;
  transition: opacity 0.3s;
}
.tie-up__item a:hover {
  opacity: 0.7;
}

.tie-up__image {
  width: 100%;
  height: 100%;
}
.tie-up__image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.store__text {
  font-size: 1rem;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .store__text {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.store__details {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .store__details {
    margin-top: 1.25rem;
  }
}
.store__details + .store__details {
  margin-top: 1.25rem;
}

.store__summary {
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  background-color: #FF0080;
  position: relative;
  padding: 1rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .store__summary {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
}

.store__icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  right: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .store__icon {
    width: 0.625rem;
    height: 0.625rem;
    right: 1.25rem;
  }
}

.store__inner {
  padding: 2.5rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .store__inner {
    padding: 1.25rem 0.625rem;
  }
}

.store__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  width: min(100%, 900px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .store__list {
    gap: 1.25rem;
  }
}

.store__item {
  width: calc(33.3333333333% - 1.6666666667rem);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .store__item {
    width: calc(50% - 0.625rem);
  }
}

.store__image img {
  aspect-ratio: 250/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.store__content {
  padding: 0.625rem 0.25rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .store__content {
    padding: 0.375rem 0.25rem;
  }
}

.store__name {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .store__name {
    font-size: 0.875rem;
  }
}

.store__address {
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
@media only screen and (max-width: 768px) {
  .store__address {
    font-size: 0.75rem;
  }
}

.page-award-mv {
  width: 100%;
}
.page-award-mv img {
  aspect-ratio: 1440/249;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .page-award-mv img {
    aspect-ratio: 375/209;
  }
}

.page-award-intro {
  padding-block: 5rem;
}

.page-award-intro__inner {
  width: min(100%, 54.25rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__inner {
    padding-inline: 1.25rem;
  }
}

.page-award-intro__image {
  width: 100%;
}

/* ▼ コード版（画像版との比較用） */
.page-award-intro__coded {
  margin-top: 5rem;
  font-family: "M PLUS 1p", sans-serif;
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__coded {
    margin-top: 3.75rem;
  }
}

.page-award-intro__accent {
  color: #FF0080;
  font-weight: 800;
}

.page-award-intro__lead {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__lead {
    font-size: 0.75rem;
    text-align: left;
    padding-inline: 1.25rem;
  }
}

.page-award-intro__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__row {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.page-award-intro__row--reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__row--reverse {
    flex-direction: column;
  }
}

.page-award-intro__photo {
  width: 52%;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__photo {
    width: 100%;
  }
}
.page-award-intro__photo img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
}

.page-award-intro__body {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__body {
    width: 100%;
    text-align: center;
  }
}

.page-award-intro__text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__text {
    font-size: 0.75rem;
    text-align: left;
    padding-inline: 1.25rem;
  }
}

.page-award-intro__outro {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-award-intro__outro {
    margin-top: 1.75rem;
    font-size: 0.75rem;
    text-align: left;
    padding-inline: 1.25rem;
  }
}
.page-award-intro__outro + .page-award-intro__outro {
  margin-top: 1.5rem;
}

/* ▲ コード版ここまで */
.page-award-overview {
  background-color: #F8F8F8;
  padding-block: 6.25rem;
}

.page-award-overview__inner {
  width: min(100%, 64.375rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__inner {
    padding-inline: 1.25rem;
  }
}

.page-award-overview__headline-en,
.page-award-overview__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  color: #FF0080;
}

.page-award-overview__intro {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__intro {
    font-size: 1rem;
  }
}

.page-award-overview__logo {
  width: min(100%, 38.75rem);
  margin: 5.625rem auto 0;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__logo {
    width: 100%;
    margin-top: 6.25rem;
  }
}
.page-award-overview__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.page-award-overview__headline {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__headline {
    margin-top: 3.75rem;
  }
}

/* ▼ グレーラベル + 本文（画像から直書きに起こした部分） */
.page-award-overview__guide {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__guide {
    margin-top: 1.75rem;
  }
}

.page-award-overview__guide-item + .page-award-overview__guide-item {
  margin-top: 1.25rem;
}

.page-award-overview__label {
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #FFFFFF;
  background-color: #555555;
  border-radius: 0.625rem;
  padding: 0.5625rem 0.8125rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__label {
    font-size: 1rem;
    line-height: 1.25;
    padding: 0.5rem 0.8125rem;
  }
}

.page-award-overview__guide-content {
  margin-top: 1rem;
}

.page-award-overview__guide-text {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__guide-text {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

/* ▲ グレーラベルここまで */
.page-award-overview__list {
  margin-top: 5rem;
}

.page-award-overview__item {
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__item {
    margin-top: 2.5rem;
  }
}

.page-award-overview__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__wrap {
    gap: 0.625rem;
  }
}

.page-award-overview__number {
  background-color: #FF0080;
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__number {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.page-award-overview__title {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
}

.page-award-overview__content {
  width: min(100%, 48.75rem);
  padding-inline: 2.5rem;
  margin: 1.25rem auto 0;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__content {
    padding-inline: 1rem;
  }
}

.page-award-overview__text {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__text {
    font-size: 0.875rem;
  }
}

.page-award-overview__button-list {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-award-overview__button-list {
    margin-top: 1.25rem;
  }
}

.page-award-member {
  padding-block: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .page-award-member {
    padding-block: 3.75rem;
  }
}

.page-award-member__inner {
  width: min(100%, 88.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-award-member__inner {
    padding-inline: 0.625rem;
  }
}

.page-award-member__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  color: #FF0080;
}

.page-award-member__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem 1.75rem;
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .page-award-member__list {
    gap: 2.5rem 0.625rem;
    margin-top: 2.5rem;
  }
}

.page-award-member__item {
  width: calc(16.6666666667% - 1.4583333333rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .page-award-member__item {
    width: calc(25% - 0.46875rem);
  }
}

.page-award-member__category {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.21875;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .page-award-member__category {
    font-size: 1rem;
  }
}

.page-award-member__image {
  overflow: hidden;
  border-radius: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  margin-top: 1.75rem;
}
.page-award-member__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .page-award-member__image {
    margin-top: 1.25rem;
  }
}

.page-award-member__title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.6111111111;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .page-award-member__title {
    font-size: 0.625rem;
  }
}

.page-award-member__name {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.45;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-award-member__name {
    font-size: 0.75rem;
  }
}

.page-department {
  margin-top: 2.5rem;
}

.page-department__inner {
  width: min(100%, 73.75rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-department__inner {
    padding-inline: 0.625rem;
  }
}

.page-department__headline {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #ffffff;
  padding: 0.75rem 2rem;
  background-color: #FF0080;
  border-radius: 0.625rem;
}

.page-department-sample__subheadline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__subheadline {
    font-size: 1.25rem;
  }
}

.page-department-sample__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem 1.25rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
    margin-top: 1.75rem;
  }
}

.page-department-sample__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.625rem;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__item {
    width: 100%;
  }
}

.page-department-sample__item-content {
  margin-top: 0.625rem;
}

.page-department-sample__item-title {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__item-title {
    font-size: 1rem;
  }
}

.page-department-sample__item-text {
  font-size: 1rem;
  margin-top: 0.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__item-text {
    font-size: 0.875rem;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.page-department-sample__item-image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-department-sample__list-2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__list-2column {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
    margin-top: 1.75rem;
  }
}

.page-department-sample__modal {
  width: 90vw;
  height: 80vh;
  margin: auto;
  background-color: #fff;
  transition: opacity 0.5s, scale 0.5s;
}

.page-department-sample__modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}

.page-department-sample__modal::backdrop {
  backdrop-filter: blur(4px);
  transition: opacity 0.5s;
  background: rgba(0, 0, 0, 0.6);
}

.page-department-sample__modal:not([data-active=true])::backdrop {
  opacity: 0;
}

.page-department-sample__modal-container {
  display: flex;
  gap: 1.25rem;
  height: 100%;
  padding: 2rem;
  overflow: auto;
  overscroll-behavior: contain;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__modal-container {
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.5rem 1rem;
  }
}

.page-department-sample__modal-close {
  width: 40px;
  aspect-ratio: 1;
  background-color: #e83e8c;
  border-radius: 100%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 10px;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}

.page-department-sample__modal-close::before, .page-department-sample__modal-close::after {
  content: "";
  display: inline-block;
  width: 45%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}

.page-department-sample__modal-close::before {
  rotate: 45deg;
}

.page-department-sample__modal-close::after {
  rotate: 135deg;
}

.page-department-sample__modal-image {
  width: calc(60% - 0.625rem);
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__modal-image {
    width: 100%;
  }
}

.page-department-sample__modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-department-sample__modal-content {
  flex: 1;
}

.page-department-sample__modal-title {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__modal-title {
    font-size: 1rem;
  }
}

.page-department-sample__modal-text {
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-sample__modal-text {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .page-department-sample__item:hover {
    opacity: 0.8;
  }
}

@media (any-hover: hover) {
  .page-department-sample__modal-close:hover {
    filter: brightness(0.9);
  }
}

.page-department-theme__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__headline {
    font-size: 1.25rem;
  }
}

.page-department-theme__subheadline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__subheadline {
    font-size: 1.125rem;
  }
}

.page-department-theme__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.25rem;
  margin-top: 2.5rem;
}

.page-department-theme__item {
  width: calc(50% - 0.625rem);
  background: #ffffff;
  filter: drop-shadow(0rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3));
  border-radius: 0.625rem;
  padding: 1.25rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item {
    width: 100%;
    padding: 1.25rem 1rem;
  }
}

.page-department-theme__item-title {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-title {
    font-size: 1.125rem;
  }
}

.page-department-theme__item-content {
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-content {
    margin-top: 0.375rem;
  }
}

.page-department-theme__item-subcontent {
  padding-left: 0.75rem;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-subcontent {
    margin-top: 0.375rem;
  }
}

.page-department-theme__item-text {
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-text {
    font-size: 0.875rem;
  }
}

.page-department-theme__item-subcontent .page-department-theme__item-text {
  padding-left: 0.75rem;
}

.page-department-theme__item-subheadline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 180%;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-subheadline {
    font-size: 1rem;
  }
}

.page-department-theme__item-content + .page-department-theme__item-title {
  margin-top: 2.5rem;
}

.page-department-theme__item-text + .page-department-theme__item-subheadline {
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-theme__item-text + .page-department-theme__item-subheadline {
    margin-top: 0.75rem;
  }
}

@media only screen and (max-width: 768px) {
  .page-department-label {
    padding-inline: 0.625rem;
  }
}

.page-department-label__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-label__headline {
    font-size: 1.25rem;
  }
}

.page-department-label__wrap {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-label__wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

.page-department-label__text {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-department-label__text {
    font-size: 0.875rem;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .page-department-guidelines {
    padding-inline: 0.625rem;
  }
}

.page-department-guidelines__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-guidelines__headline {
    font-size: 1.25rem;
  }
}

.page-department-guidelines__text {
  font-size: 1rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-guidelines__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.page-department-guidelines__text a {
  font-weight: bold;
  text-decoration: underline;
}

.page-department-judges__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-judges__headline {
    font-size: 1.25rem;
  }
}

.page-department-judges__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-judges__list {
    gap: 1.25rem 0.5rem;
    margin-top: 1.25rem;
  }
}

.page-department-judges__item {
  width: min(33.3333333333% - 0.8333333333rem, 12.5rem);
}
.page-department-judges__item img {
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (any-hover: hover) {
  .page-department-judges__item:hover .page-department-judges__item-image img {
    transform: scale(1.05);
  }
}
@media only screen and (max-width: 768px) {
  .page-department-judges__item {
    width: calc(25% - 0.25rem);
  }
}

.page-department-judges__item-image {
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
}
.page-department-judges__item-image img {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-department-judges__item-category {
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-department-judges__item-category {
    font-size: 0.625rem;
    margin-top: 0.25rem;
  }
}

.page-department-judges__item-name {
  font-size: 1rem;
  margin-top: 0.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-judges__item-name {
    font-size: 0.625rem;
  }
}

.page-department-cta {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 0;
}

.page-department-modal__wrap {
  display: flex;
  gap: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__wrap {
    gap: 1rem;
  }
}

.page-department-modal__image {
  width: 12.5rem;
  height: 12.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.page-department-modal__image img {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__image {
    width: 5rem;
    height: 5rem;
  }
}

.page-department-modal__content {
  flex: 1;
}

.page-department-modal__name {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__name {
    font-size: 1.125rem;
  }
}

.page-department-modal__category {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.625rem;
}

.page-department-modal__sns {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.page-department-modal__sns-item {
  width: 1.875rem;
  height: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__sns-item {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.page-department-modal__sns-link {
  display: block;
}

.page-department-modal__text {
  font-size: 1rem;
  margin-top: 1.75rem;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.page-department-modal__works {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.page-department-modal__work {
  width: calc(50% - 0.625rem);
  max-height: 37.5rem;
}
.page-department-modal__work img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__work {
    width: 100%;
  }
}

:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

.page-department-modal {
  width: 70vw;
  height: 80vh;
  margin: auto;
  background-color: #FFF;
  transition: opacity 0.5s, scale 0.5s;
}
@media only screen and (max-width: 768px) {
  .page-department-modal {
    width: 85vw;
  }
}
.page-department-modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}
.page-department-modal::backdrop {
  backdrop-filter: blur(4px);
  　-webkit-backdrop-filter: blur(4px);
  transition: opacity 0.5s;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.page-department-modal:not([data-active=true])::backdrop {
  opacity: 0;
}

.page-department-modal__container {
  height: 100%;
  padding: 2rem;
  overflow: auto;
  overscroll-behavior: contain;
}
@media only screen and (max-width: 768px) {
  .page-department-modal__container {
    padding: 1.5rem 1rem;
  }
}

.page-department-modal__close {
  width: 40px;
  aspect-ratio: 1;
  background-color: #E83E8C;
  border-radius: 100%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 10px;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
.page-department-modal__close::before, .page-department-modal__close::after {
  content: "";
  display: inline-block;
  width: 45%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  inset: 0;
  margin: auto;
}
.page-department-modal__close::before {
  rotate: 45deg;
}
.page-department-modal__close::after {
  rotate: 135deg;
}
@media (any-hover: hover) {
  .page-department-modal__close:hover {
    filter: brightness(0.9);
  }
}

/* ▼ style.css に直書きされていたルールを SCSS へ移植 */
.page-department-modal__work iframe {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .page-department-faq {
    padding-inline: 0.625rem;
  }
}

.page-department-faq__headline {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.75rem;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__headline {
    font-size: 1.25rem;
  }
}

/* ======================================== */
/* アコーディオン */
/* ======================================== */
.page-department-faq__list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__list {
    margin-top: 1rem;
  }
}

.page-department-faq__item {
  border-bottom: 1px solid #ccc;
}

.page-department-faq__item-title {
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  padding-block: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-title {
    font-size: 0.875rem;
    padding-block: 0.625rem;
  }
}
.page-department-faq__item-title::before {
  content: "Q";
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: #ff0080;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-title::before {
    font-size: 1.25rem;
  }
}

.page-department-faq__item-title-text {
  padding-right: 4.625rem;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-title-text {
    padding-right: 0rem;
  }
}

.page-department-faq__item-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #333;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateY(10%);
  transition: 0.15s ease-out;
  transform-origin: center;
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* 閉じたとき */
.page-department-faq__item-icon:where(.accordion[open] *) {
  rotate: 180deg;
  transform: translateY(10%);
}

.page-department-faq__item-answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6875rem;
  padding: 0.625rem 0.125rem;
  padding-right: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-answer-inner {
    padding-right: 0;
  }
}
.page-department-faq__item-answer-inner::before {
  content: "A";
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-answer-inner::before {
    font-size: 1.25rem;
  }
}

.page-department-faq__item-answer-text {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-department-faq__item-answer-text {
    font-size: 0.875rem;
  }
}

.section-sakagura {
  margin-top: 2.5rem;
  padding-bottom: 5rem;
}

.single-sakagura__inner {
  width: min(100%, 69rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .single-sakagura__inner {
    padding-inline: 0.625rem;
  }
}

.single-sakagura__headline {
  width: 100%;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.475;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .single-sakagura__headline {
    font-size: 1.75rem;
  }
}

.single-sakagura-info__address {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__address {
    font-size: 0.8125rem;
  }
}

.single-sakagura-info__sns {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__sns {
    margin-top: 0.75rem;
  }
}

.single-sakagura-info__sns-item {
  width: 1.25rem;
  height: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__sns-item {
    width: 1rem;
    height: 1rem;
  }
}

.single-sakagura-info__sns-link {
  display: flex;
  height: 100%;
}
.single-sakagura-info__sns-link img {
  -o-object-fit: contain;
     object-fit: contain;
}

.single-sakagura-info__wrap {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__wrap {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.single-sakagura-info__image {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__image {
    width: 100%;
  }
}

.single-sakagura-info__content {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__content {
    width: 100%;
  }
}
.single-sakagura-info__content h2 {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__content h2 {
    font-size: 1rem;
  }
}
.single-sakagura-info__content h3 {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__content h3 {
    font-size: 0.9375rem;
  }
}
.single-sakagura-info__content h4 {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__content h4 {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .single-sakagura-info__content p {
    font-size: 0.8125rem;
  }
}

.single-sakagura-president {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}

.single-sakagura-president__image {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__image {
    width: 100%;
  }
}

.single-sakagura-president__content {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__content {
    width: 100%;
  }
}
.single-sakagura-president__content h2 {
  font-size: 1.375rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__content h2 {
    font-size: 1.125rem;
  }
}
.single-sakagura-president__content h3 {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__content h3 {
    font-size: 1rem;
  }
}
.single-sakagura-president__content h4 {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__content h4 {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 768px) {
  .single-sakagura-president__content p {
    font-size: 0.8125rem;
  }
}

.single-sakagura-product__headline {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 180%;
  color: #ffffff;
  padding: 0.25rem 1.75rem;
  background-color: #FF0080;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__headline {
    font-size: 1.25rem;
  }
}

.single-sakagura-product__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__list {
    gap: 1.75rem;
    margin-top: 2rem;
  }
}

.single-sakagura-product__item {
  display: flex;
  gap: 1.25rem;
  width: calc(50% - 1.25rem);
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__item {
    width: 100%;
    gap: 1.25rem;
  }
}

.single-sakagura-product__image {
  width: 6.25rem;
  height: 12.5rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__image {
    width: 5rem;
    height: 10rem;
  }
}
.single-sakagura-product__image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-sakagura-product__content {
  flex: 1;
}

.single-sakagura-product__name {
  font-weight: 700;
}

.single-sakagura-product__text {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__text {
    font-size: 0.875rem;
  }
}

.single-sakagura-product__cta {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .single-sakagura-product__cta {
    margin-top: 2.5rem;
  }
}

.single-works {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .single-works {
    margin-top: 1.25rem;
    margin-bottom: 3.75rem;
  }
}

.single-works__inner {
  width: min(100%, 55rem);
  padding-inline: 2.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .single-works__inner {
    padding-inline: 0.625rem;
  }
}

.single-works__headline {
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .single-works__headline {
    font-size: 1.75rem;
  }
}

.single-works__content {
  margin-top: 2.5rem;
}

.single-works__media {
  max-height: 50rem;
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .single-works__media {
    max-height: 37.5rem;
  }
}
.single-works__media .js-modal-video {
  width: 100%;
}

.single-works__image {
  width: 100%;
}
.single-works__image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-works__youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 600/360;
}

.single-works__youtube-inner {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.single-works__youtube-inner img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-works__youtube-inner::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2.625rem;
  position: absolute;
  inset: 0;
  margin: auto;
  background: url("../img/logo_youtube.svg") no-repeat center center/contain;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .single-works__youtube-inner::before {
    width: 1.875rem;
    height: 1.25rem;
  }
}

.single-works__youtube-iframe {
  height: 100%;
}

.single-works__info {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #ccc;
  gap: 0;
}

.single-works__info-wrap {
  display: flex;
  gap: 1.25rem;
  border-bottom: 1px solid #ccc;
  padding-block: 1rem;
}
@media only screen and (max-width: 768px) {
  .single-works__info-wrap {
    gap: 0.25rem;
    padding-block: 0.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .single-works__info-wrap--content {
    flex-direction: column;
  }
}

.single-works__info-title {
  width: 8.75rem;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .single-works__info-title {
    width: 6.875rem;
    font-size: 0.875rem;
  }
}

.single-works__info-content {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .single-works__info-content {
    font-size: 0.875rem;
  }
}

.single-works__sns {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.single-works__sns-item {
  width: 1.375rem;
  height: 1.375rem;
}
@media only screen and (max-width: 768px) {
  .single-works__sns-item {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.single-works__sns-link {
  display: block;
}

.single-works__text {
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .single-works__text {
    font-size: 0.875rem;
  }
}
.single-works__text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .single-works__text h1 {
    font-size: 1.375rem;
  }
}
.single-works__text h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .single-works__text h2 {
    font-size: 1.25rem;
  }
}
.single-works__text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .single-works__text h3 {
    font-size: 1.125rem;
  }
}
.single-works__text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .single-works__text h4 {
    font-size: 1rem;
  }
}
.single-works__text a {
  font-weight: 700;
  text-decoration: underline;
}
.single-works__text p + p {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .single-works__text p + p {
    margin-top: 4px;
  }
}

.single-works__button {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .single-works__button {
    margin-top: 3.75rem;
  }
}

.single-works__previous {
  width: 10rem;
  font-size: 1.125rem;
  color: #FFF;
  text-align: center;
  background-color: #E83E8C;
  border-radius: 10px;
  padding: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .single-works__previous {
    width: 10rem;
    font-size: 1rem;
    padding: 0.5rem;
  }
}

.single-works__other {
  margin-top: 6.25rem;
}
@media only screen and (max-width: 768px) {
  .single-works__other {
    margin-top: 5rem;
  }
}

.single-works__other-title {
  font-size: 1.75rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .single-works__other-title {
    font-size: 1.25rem;
  }
}

.single-works__other-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .single-works__other-list {
    margin-top: 1.25rem;
  }
}

.single-works__other-list-link {
  display: block;
  aspect-ratio: 1;
  height: 100%;
}
.single-works__other-list-link img {
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.movie {
  width: 600px;
  height: 360px;
  margin: 30px auto 30px;
  position: relative;
}

.movie-inner {
  display: block;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.thumb {
  width: 100%;
  max-width: 100%;
}

.movie-player {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 600px) {
  .movie {
    width: 100%;
    height: 200px;
  }
}
.page-works {
  margin-top: 2.5rem;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works {
    margin-bottom: 5rem;
  }
}

.page-works__inner {
  width: min(100%, 75rem);
}

.page-works__content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .page-works__content h1 {
    font-size: 1.75rem;
  }
}

.page-works__nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works__nav {
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.page-works__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  background-color: #ff0080;
  border-radius: 10px;
  padding: 1.25rem;
  width: 12.5rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  will-change: transform;
}
@media only screen and (max-width: 768px) {
  .page-works__nav-link {
    width: 10rem;
    font-size: 1rem;
    padding: 0.75rem;
  }
}
.page-works__nav-link::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 20/16;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .page-works__nav-link::after {
    width: 0.75rem;
  }
}
@media (any-hover: hover) {
  .page-works__nav-link:hover {
    opacity: 1;
    translate: 0 4px;
  }
}

.page-works__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works__title {
    font-size: 1.5rem;
    margin-top: 5rem;
  }
}

.page-works-tab {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works-tab {
    margin-top: 2.5rem;
  }
}

.page-works-tab__items {
  display: flex;
  gap: 0.625rem;
  border-bottom: 4px solid #E83E8C;
}
@media only screen and (max-width: 768px) {
  .page-works-tab__items {
    gap: 0.375rem;
  }
}

/*タブのスタイル*/
.page-works-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6E5E5;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 1.25rem 2.5rem;
  border-radius: 1.875rem 1.875rem 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .page-works-tab__item {
    font-size: 0.875rem;
    border-radius: 0.875rem 0.875rem 0 0;
    padding: 0.5rem;
  }
}
.page-works-tab__item.tab-active {
  background-color: #E83E8C;
  color: #FFF;
}

/*タブ切り替えの中身のスタイル*/
.page-works-tab__content {
  display: none;
  overflow: hidden;
}
.page-works-tab__content.tab-active {
  display: block;
}

.page-works__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 1rem;
  }
}

.page-works__title + .page-works__list {
  margin-top: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .page-works__title + .page-works__list {
    margin-top: 2.5rem;
  }
}

.page-works__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}

.page-works__link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0.25rem;
}

.page-works__image {
  aspect-ratio: 1/1;
  height: 100%;
}
.page-works__image img {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-works__image--wide {
  aspect-ratio: 5/3;
}
.page-works__image--wide img {
  aspect-ratio: 5/3;
}

.page-works__info-wrap {
  display: flex;
}

.page-works__info-title {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .page-works__info-title {
    font-size: 0.875rem;
  }
}

.page-works__info-content {
  font-size: 1rem;
  line-height: 1.4;
  padding-left: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works__info-content {
    font-size: 0.875rem;
  }
}

.mt20 {
  margin-top: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .mt20 {
    margin-top: 1rem;
  }
}

.mt10 {
  margin-top: 0.625rem;
}
@media only screen and (max-width: 768px) {
  .mt10 {
    margin-top: 0.5rem;
  }
}

/*タブのスタイル*/
.vote-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6E5E5;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 1.25rem 2.5rem;
  border-radius: 1.875rem 1.875rem 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .vote-tab__item {
    font-size: 0.875rem;
    border-radius: 0.875rem 0.875rem 0 0;
    padding: 0.5rem;
  }
}
.vote-tab__item.tab-active {
  background-color: #E83E8C;
  color: #FFF;
}

/*タブ切り替えの中身のスタイル*/
.vote-tab__content {
  display: none;
  overflow: hidden;
}
.vote-tab__content.tab-active {
  display: block;
}

.page-works__vote {
  padding-top: 1.25rem;
  margin-top: 3.75rem;
  margin-inline: -1.25rem;
  border-top: 2px solid #EEE;
}
@media only screen and (max-width: 768px) {
  .page-works__vote {
    padding-top: 0rem;
    margin-top: 2.5rem;
    margin-inline: 0rem;
  }
}

.opinionstage-iframe {
  box-shadow: none !important;
}
.opinionstage-iframe h2 {
  display: none;
}

.w-card {
  padding: 0 !important;
}

.page-works__vote-detail {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 800px;
  color: #FFF;
  margin-top: 1.25rem;
  margin-inline: auto;
  padding: 1.25rem;
}

.page-works__departments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .page-works__departments {
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 5rem;
  }
}

.page-works__department-link {
  font-family: "M PLUS 1p", sans-serif;
  display: block;
  width: 13.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #E83E8C;
  border: 1px solid #E83E8C;
  border-radius: 0.625rem;
  padding: 0.25rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-works__department-link {
    font-size: 0.875rem;
  }
}
.page-works__department-link span {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .page-works__department-link span {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */