@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* colour */
/** animation */
@keyframes pop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
/* font-color */
.white {
  color: #fff;
}

.black {
  color: #000;
}

.sumi {
  color: #333333;
}

.gray {
  color: #707070;
}

.light-gray {
  color: #cccccc;
}

.yellow {
  color: #edf430;
}

.blue {
  color: #006cda;
}

.light-blue {
  color: #cee0f4;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-sumi {
  background-color: #333333;
}

.bg-gray {
  background-color: #707070;
}

.bg-light-gray {
  background-color: #cccccc;
}

.bg-light-light-gray {
  background-color: #f7f7f7;
}

.bg-yellow {
  background-color: #edf430;
}

.bg-blue {
  background-color: #006cda;
}

.bg-light-blue {
  background-color: #cee0f4;
}

/* breakpoint */
/*transition*/
/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "ヒラギノ角ゴ Pro W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "ヒラギノ角ゴ Pro W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "ヒラギノ角ゴ ProN W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "ヒラギノ角ゴ ProN W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
/* HTML5 display-role reset for older browsers
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
} */
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.6;
  color: #333333;
  background: #F3F4F6;
}
body.is-fixed {
  width: 100%;
  position: fixed;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

@media screen and (max-width: 768px) {
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  display: block;
  max-width: 100%;
  width: 100%;
}

* {
  box-sizing: border-box;
  word-break: break-all;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

.no-control {
  overflow: hidden;
}

body.fixed {
  position: fixed;
  width: 100%;
}

input[type=submit],
input[type=checkbox] {
  appearance: none;
  border-radius: 0;
}

b {
  font-weight: 800 !important;
}

/* Scss Document */
/* clearfix - utility
--------------------------------------------------------- */
.forPc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .forPc {
    display: none !important;
  }
}

.forSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .forSp {
    display: inline-block;
  }
}

.u-mt-1 {
  margin-top: 1%;
}

.u-mr-1 {
  margin-right: 1%;
}

.u-mb-1 {
  margin-bottom: 1%;
}

.u-ml-1 {
  margin-left: 1%;
}

.u-pt-1 {
  padding-top: 1%;
}

.u-pr-1 {
  padding-right: 1%;
}

.u-pb-1 {
  padding-bottom: 1%;
}

.u-pl-1 {
  padding-left: 1%;
}

.u-mt-2 {
  margin-top: 2%;
}

.u-mr-2 {
  margin-right: 2%;
}

.u-mb-2 {
  margin-bottom: 2%;
}

.u-ml-2 {
  margin-left: 2%;
}

.u-pt-2 {
  padding-top: 2%;
}

.u-pr-2 {
  padding-right: 2%;
}

.u-pb-2 {
  padding-bottom: 2%;
}

.u-pl-2 {
  padding-left: 2%;
}

.u-mt-3 {
  margin-top: 3%;
}

.u-mr-3 {
  margin-right: 3%;
}

.u-mb-3 {
  margin-bottom: 3%;
}

.u-ml-3 {
  margin-left: 3%;
}

.u-pt-3 {
  padding-top: 3%;
}

.u-pr-3 {
  padding-right: 3%;
}

.u-pb-3 {
  padding-bottom: 3%;
}

.u-pl-3 {
  padding-left: 3%;
}

.u-mt-4 {
  margin-top: 4%;
}

.u-mr-4 {
  margin-right: 4%;
}

.u-mb-4 {
  margin-bottom: 4%;
}

.u-ml-4 {
  margin-left: 4%;
}

.u-pt-4 {
  padding-top: 4%;
}

.u-pr-4 {
  padding-right: 4%;
}

.u-pb-4 {
  padding-bottom: 4%;
}

.u-pl-4 {
  padding-left: 4%;
}

.u-mt-5 {
  margin-top: 5%;
}

.u-mr-5 {
  margin-right: 5%;
}

.u-mb-5 {
  margin-bottom: 5%;
}

.u-ml-5 {
  margin-left: 5%;
}

.u-pt-5 {
  padding-top: 5%;
}

.u-pr-5 {
  padding-right: 5%;
}

.u-pb-5 {
  padding-bottom: 5%;
}

.u-pl-5 {
  padding-left: 5%;
}

.u-mt-6 {
  margin-top: 6%;
}

.u-mr-6 {
  margin-right: 6%;
}

.u-mb-6 {
  margin-bottom: 6%;
}

.u-ml-6 {
  margin-left: 6%;
}

.u-pt-6 {
  padding-top: 6%;
}

.u-pr-6 {
  padding-right: 6%;
}

.u-pb-6 {
  padding-bottom: 6%;
}

.u-pl-6 {
  padding-left: 6%;
}

.u-mt-7 {
  margin-top: 7%;
}

.u-mr-7 {
  margin-right: 7%;
}

.u-mb-7 {
  margin-bottom: 7%;
}

.u-ml-7 {
  margin-left: 7%;
}

.u-pt-7 {
  padding-top: 7%;
}

.u-pr-7 {
  padding-right: 7%;
}

.u-pb-7 {
  padding-bottom: 7%;
}

.u-pl-7 {
  padding-left: 7%;
}

.u-mt-8 {
  margin-top: 8%;
}

.u-mr-8 {
  margin-right: 8%;
}

.u-mb-8 {
  margin-bottom: 8%;
}

.u-ml-8 {
  margin-left: 8%;
}

.u-pt-8 {
  padding-top: 8%;
}

.u-pr-8 {
  padding-right: 8%;
}

.u-pb-8 {
  padding-bottom: 8%;
}

.u-pl-8 {
  padding-left: 8%;
}

.u-mt-9 {
  margin-top: 9%;
}

.u-mr-9 {
  margin-right: 9%;
}

.u-mb-9 {
  margin-bottom: 9%;
}

.u-ml-9 {
  margin-left: 9%;
}

.u-pt-9 {
  padding-top: 9%;
}

.u-pr-9 {
  padding-right: 9%;
}

.u-pb-9 {
  padding-bottom: 9%;
}

.u-pl-9 {
  padding-left: 9%;
}

.u-mt-10 {
  margin-top: 10%;
}

.u-mr-10 {
  margin-right: 10%;
}

.u-mb-10 {
  margin-bottom: 10%;
}

.u-ml-10 {
  margin-left: 10%;
}

.u-pt-10 {
  padding-top: 10%;
}

.u-pr-10 {
  padding-right: 10%;
}

.u-pb-10 {
  padding-bottom: 10%;
}

.u-pl-10 {
  padding-left: 10%;
}

.u-mt-11 {
  margin-top: 11%;
}

.u-mr-11 {
  margin-right: 11%;
}

.u-mb-11 {
  margin-bottom: 11%;
}

.u-ml-11 {
  margin-left: 11%;
}

.u-pt-11 {
  padding-top: 11%;
}

.u-pr-11 {
  padding-right: 11%;
}

.u-pb-11 {
  padding-bottom: 11%;
}

.u-pl-11 {
  padding-left: 11%;
}

.u-mt-12 {
  margin-top: 12%;
}

.u-mr-12 {
  margin-right: 12%;
}

.u-mb-12 {
  margin-bottom: 12%;
}

.u-ml-12 {
  margin-left: 12%;
}

.u-pt-12 {
  padding-top: 12%;
}

.u-pr-12 {
  padding-right: 12%;
}

.u-pb-12 {
  padding-bottom: 12%;
}

.u-pl-12 {
  padding-left: 12%;
}

.u-mt-13 {
  margin-top: 13%;
}

.u-mr-13 {
  margin-right: 13%;
}

.u-mb-13 {
  margin-bottom: 13%;
}

.u-ml-13 {
  margin-left: 13%;
}

.u-pt-13 {
  padding-top: 13%;
}

.u-pr-13 {
  padding-right: 13%;
}

.u-pb-13 {
  padding-bottom: 13%;
}

.u-pl-13 {
  padding-left: 13%;
}

.u-mt-14 {
  margin-top: 14%;
}

.u-mr-14 {
  margin-right: 14%;
}

.u-mb-14 {
  margin-bottom: 14%;
}

.u-ml-14 {
  margin-left: 14%;
}

.u-pt-14 {
  padding-top: 14%;
}

.u-pr-14 {
  padding-right: 14%;
}

.u-pb-14 {
  padding-bottom: 14%;
}

.u-pl-14 {
  padding-left: 14%;
}

.u-mt-15 {
  margin-top: 15%;
}

.u-mr-15 {
  margin-right: 15%;
}

.u-mb-15 {
  margin-bottom: 15%;
}

.u-ml-15 {
  margin-left: 15%;
}

.u-pt-15 {
  padding-top: 15%;
}

.u-pr-15 {
  padding-right: 15%;
}

.u-pb-15 {
  padding-bottom: 15%;
}

.u-pl-15 {
  padding-left: 15%;
}

.u-mt-16 {
  margin-top: 16%;
}

.u-mr-16 {
  margin-right: 16%;
}

.u-mb-16 {
  margin-bottom: 16%;
}

.u-ml-16 {
  margin-left: 16%;
}

.u-pt-16 {
  padding-top: 16%;
}

.u-pr-16 {
  padding-right: 16%;
}

.u-pb-16 {
  padding-bottom: 16%;
}

.u-pl-16 {
  padding-left: 16%;
}

.u-mt-17 {
  margin-top: 17%;
}

.u-mr-17 {
  margin-right: 17%;
}

.u-mb-17 {
  margin-bottom: 17%;
}

.u-ml-17 {
  margin-left: 17%;
}

.u-pt-17 {
  padding-top: 17%;
}

.u-pr-17 {
  padding-right: 17%;
}

.u-pb-17 {
  padding-bottom: 17%;
}

.u-pl-17 {
  padding-left: 17%;
}

.u-mt-18 {
  margin-top: 18%;
}

.u-mr-18 {
  margin-right: 18%;
}

.u-mb-18 {
  margin-bottom: 18%;
}

.u-ml-18 {
  margin-left: 18%;
}

.u-pt-18 {
  padding-top: 18%;
}

.u-pr-18 {
  padding-right: 18%;
}

.u-pb-18 {
  padding-bottom: 18%;
}

.u-pl-18 {
  padding-left: 18%;
}

.u-mt-19 {
  margin-top: 19%;
}

.u-mr-19 {
  margin-right: 19%;
}

.u-mb-19 {
  margin-bottom: 19%;
}

.u-ml-19 {
  margin-left: 19%;
}

.u-pt-19 {
  padding-top: 19%;
}

.u-pr-19 {
  padding-right: 19%;
}

.u-pb-19 {
  padding-bottom: 19%;
}

.u-pl-19 {
  padding-left: 19%;
}

.u-mt-20 {
  margin-top: 20%;
}

.u-mr-20 {
  margin-right: 20%;
}

.u-mb-20 {
  margin-bottom: 20%;
}

.u-ml-20 {
  margin-left: 20%;
}

.u-pt-20 {
  padding-top: 20%;
}

.u-pr-20 {
  padding-right: 20%;
}

.u-pb-20 {
  padding-bottom: 20%;
}

.u-pl-20 {
  padding-left: 20%;
}


html {
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

p {
  margin: 0;
  letter-spacing: 0.06em;
}

img {
  width: auto;
  box-sizing: border-box;
  object-fit: contain;
}
img[src*="/sp/"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src*="/sp/"] {
    display: inline-block;
  }
}

ul {
  padding: 0;
}

li {
  list-style: none;
  line-height: 1.5;
}

.fade {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInDown;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.notes-12 {
  font-size: 12px;
  line-height: 1.5;
}
.notes-14 {
  font-size: 14px;
  line-height: 1.5;
}
.notes-16 {
  font-size: 16px;
  line-height: 1.5;
}
.notes-18 {
  font-size: 18px;
  line-height: 1.5;
}

.bounce_in {
  animation: bounceIn 1s both 0.5s;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.animation {
  opacity: 0;
}

.inview {
  opacity: 0;
  animation: inview 0.5s ease 0.2s forwards;
}

@keyframes inview {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
section {
  width: 100%;
  margin: 0 auto 126px;
}
@media screen and (max-width: 768px) {
  section {
    margin: 0 auto 84px;
  }
}

.main {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main:before {
    content: "";
    background: url(/img/bg_light.png) no-repeat left center/cover;
    width: 356px;
    height: 300px;
    right: 0;
    position: absolute;
    top: 2500px;
    mix-blend-mode: overlay;
    z-index: 0;
  }
}

a {
  transition: 0.2s ease-in-out;
}
a:hover {
  transform: scale(1.05);
}

/* ---------------------------------------------------------
*
* クリスマス・ワンダーランド　2025
*
--------------------------------------------------------- */
.main, .footer {
  background: linear-gradient(to right, #680211 0%, #d8231f 50%, #680211 100%);
}

.main {
  transition: 0.4s ease;
}
.main.blurred {
  position: relative;
}
.main.blurred:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(104, 2, 17, 0.15);
  backdrop-filter: blur(4px);
  z-index: 2500;
}

.inner {
  padding: 0 calc((100vw - 1200px) / 2);
}
@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}
.inner.white {
  background-color: rgba(255, 255, 255, 0.1490196078);
  margin: 0 auto;
  padding: 60px;
  max-width: 864px;
  backdrop-filter: blur(4px);
}
@media screen and (max-width: 768px) {
  .inner.white {
    padding: 30px 25px;
    max-width: calc(100% - 32px);
  }
}

h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1;
  color: #dab96b;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 32px;
  }
}
h2 img {
  height: 100%;
}
h2 p {
  font-family: "Cinzel", serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  h2 p {
    font-size: 34px;
    margin-bottom: 6px;
  }
}
h2 span {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  h2 span {
    font-size: 12px;
  }
}

.fv {
  background: url("../img/mvback_pc.png") no-repeat center/cover;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.fv .menu_en {
  position: absolute;
  top: 41px;
  right: 129px;
  width: 106px;
}
@media screen and (max-width: 768px) {
  .fv .menu_en {
    top: 30px;
    right: 89px;
    width: 70px;
  }
}
.fv .header {
  width: 100%;
  height: 104px;
  padding: 22px 60px;
}
@media screen and (max-width: 768px) {
  .fv .header {
    height: 80px;
    padding: 22px 14px;
  }
}
.fv .header h1 {
  width: fit-content;
  height: 100%;
}
.fv .header h1 a {
  width: 100%;
  height: 100%;
  display: block;
}
.fv .header h1 img {
  height: 100%;
}
.fv .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
@media screen and (min-width: 769px) {
  .fv .inner {
    padding: 0 60px;
  }
  .fv .inner picture {
    max-width: calc(100% - 120px);
  }
}

.following_link {
  position: fixed;
  width: 158px;
  height: auto;
  border-radius: 500px;
  aspect-ratio: 1;
  bottom: 32px;
  right: 20px;
  z-index: 2000;
  background: #bd8d41;
  transition: 0.2s ease;
}
@media screen and (max-width: 768px) {
  .following_link {
    width: 110px;
    right: 4px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3019607843));
  }
}
.following_link:hover {
  transform: scale(1.05);
}
.following_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: rotate 50s linear infinite;
  background: url("../img/follow_outer.png") no-repeat center/cover;
}
.following_link a:hover {
  transform: scale(1.05);
}
.following_link a img {
  width: 80px;
  height: 80px;
  animation: rotate_b 50s linear infinite;
}
@media screen and (max-width: 768px) {
  .following_link a img {
    width: 55px;
    height: 55px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate_b {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.intro .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.intro .inner picture {
  display: block;
}
.intro .inner picture:has(img[src*=date]) {
  max-width: 730px;
}
@media screen and (max-width: 768px) {
  .intro .inner picture:has(img[src*=date]) {
    max-width: 343px;
  }
}
.intro .inner picture:has(img[src*=place]) {
  max-width: 495px;
}
@media screen and (max-width: 768px) {
  .intro .inner picture:has(img[src*=place]) {
    max-width: 253px;
  }
}
.intro .inner picture:has(img[src*=ornament]) {
  max-width: 300px;
  margin: -50px 0 60px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .intro .inner picture:has(img[src*=ornament]) {
    max-width: 180px;
    margin: -32px 0 20px;
  }
}
.intro .inner picture:has(img[src*=text01]) {
  max-width: 679px;
}
@media screen and (max-width: 768px) {
  .intro .inner picture:has(img[src*=text01]) {
    max-width: 286px;
  }
}
.intro .inner picture:has(img[src*=text02]) {
  max-width: 795px;
  filter: drop-shadow(5px 5px 5px #680211);
}
@media screen and (max-width: 768px) {
  .intro .inner picture:has(img[src*=text02]) {
    max-width: 348px;
  }
}
.intro .inner .videoWrapper {
  width: 100%;
  height: auto;
  max-width: 864px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1200/628;
}
.intro .inner .videoWrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.intro .inner .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro .inner .videoWrapper video {
  display: flex;
  margin: 40px auto 80px;
  width: 100%;
  max-width: 915px;
  height: auto;
  outline: 0;
}
@media screen and (max-width: 768px) {
  .intro .inner .videoWrapper video {
    margin: 40px auto 40px;
  }
}
.intro .inner .videoWrapper .video {
  position: relative;
  width: 100%;
  padding-top: 56.4062%;
}
.intro .inner .videoWrapper .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.intro__text {
  margin-top: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .intro__text {
    margin-top: 20px;
    padding: 0 10px;
  }
}
.intro__text p {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .intro__text p {
    text-align: left;
  }
}

.gallery {
  position: relative;
}
.gallery:before {
  content: "";
  background: url(/img/bg_light.png) no-repeat center/contain;
  width: 900px;
  height: 600px;
  right: calc(50vw - 100px);
  position: absolute;
  top: -146px;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
  .gallery:before {
    width: 400px;
    top: -286px;
  }
}
.gallery .inner {
  padding: 0 16px;
}
@media screen and (min-width: 876px) {
  .gallery .inner {
    padding: 0 calc((100vw - 864px) / 2);
  }
}
.gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .gallery__list {
    gap: 7px;
  }
}
.gallery__list .inner {
  position: relative;
}
.gallery__list li {
  width: calc((100% - 40px) / 2);
  border: 1px solid #dab96b;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .gallery__list li {
    width: calc((100% - 7px) / 2);
  }
}
.gallery__list li:hover {
  cursor: pointer;
}
.gallery__list li:hover img {
  opacity: 0.9;
}
.gallery .modal__bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background-color: rgba(104, 2, 17, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
}
.gallery .modal__bg li {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%) !important;
  margin: auto;
  max-width: 800px;
  max-height: 80%;
  height: fit-content;
  border: 1px solid #dab96b;
  cursor: auto;
}
.gallery .modal__bg li:hover img {
  opacity: 1;
}
.gallery .modal__bg li:before, .gallery .modal__bg li:after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 0px;
  width: 30px;
  height: 30px;
  border-top: 1px solid #fff;
  cursor: pointer;
  transform: rotate(45deg);
  transform-origin: top;
}
.gallery .modal__bg li:before {
  transform: rotate(-45deg);
  margin-right: 1px;
}
@media screen and (max-width: 768px) {
  .gallery .modal__bg li {
    width: 90%;
    max-width: 90%;
  }
}
.gallery .modal__bg li img {
  object-fit: contain;
}

.ambassador {
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .ambassador {
    padding: 0 16px;
  }
}
.ambassador .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5.5555555556%;
  padding: 60px 70px;
  max-width: 1080px;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .ambassador .inner {
    padding: 60px;
  }
}
@media screen and (max-width: 768px) {
  .ambassador .inner {
    flex-direction: column;
    padding: 16px 16px 65px;
    gap: 16px 0;
  }
  .ambassador .inner > p {
    width: 100%;
    background: url(../img/sp/ambassador_namebg.png) no-repeat center/contain;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
  }
}
.ambassador .inner:before, .ambassador .inner:after {
  content: "";
  width: 17.8703703704%;
  height: 210px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.ambassador .inner:before {
  background-image: url(../img/ambassador_bg01.png);
  background-position: center top;
  right: -40px;
  top: -30px;
}
.ambassador .inner:after {
  background-image: url(../img/ambassador_bg02.png);
  background-position: center bottom;
  bottom: -43px;
  left: -43px;
}
@media screen and (max-width: 768px) {
  .ambassador .inner:before {
    display: none;
  }
  .ambassador .inner:after {
    width: 140px;
    background-image: url(../img/sp/ambassador_bg.png);
    background-position: center bottom;
    bottom: -16px;
    left: calc(50% - 70px);
  }
}
.ambassador__image {
  width: 37.037037037%;
  border: 1px solid #dab96b;
}
@media screen and (max-width: 768px) {
  .ambassador__image {
    width: 100%;
  }
}
.ambassador__name {
  width: 57.4074074074%;
}
@media screen and (max-width: 768px) {
  .ambassador__name {
    width: 100%;
  }
}
.ambassador__name-ttl > p {
  width: 100%;
  background: url(../img/ambassador_namebg.png) no-repeat center/contain;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .ambassador__name-ttl > p {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .ambassador__name-ttl > p {
    font-size: 18px;
  }
}
@media screen and (max-width: 860px) {
  .ambassador__name-ttl > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ambassador__name-ttl > p {
    font-size: 36px;
  }
}
.ambassador__name-name {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 46px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .ambassador__name-name {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ambassador__name-name {
    font-size: 36px;
    margin: 8px 0 24px;
  }
}
.ambassador__name-name span {
  font-size: 0.4em;
}
.ambassador__about {
  font-size: 12px;
}
.ambassador__about .ttl {
  font-weight: bold;
  margin-bottom: 1em;
}
.ambassador__video {
  padding: 0 16px;
}
.ambassador__video .videoWrapper {
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1200/628;
}
.ambassador__video .videoWrapper.vertical {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  aspect-ratio: unset;
  height: calc((100vw - 32px) * 340 / 864 * 16 / 9);
  max-height: 604.4444444444px;
}
@media screen and (max-width: 768px) {
  .ambassador__video .videoWrapper.vertical {
    height: auto;
    max-height: unset;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.ambassador__video .videoWrapper.vertical .video {
  width: 39.3518518519%;
  max-width: 340px;
  height: auto;
  margin: 0 auto 0 calc((100% - 864px) / 2);
  aspect-ratio: 9/16;
}
@media screen and (max-width: 768px) {
  .ambassador__video .videoWrapper.vertical .video {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
  }
}
.ambassador__video .videoWrapper .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #dab96b;
}
.ambassador__video .videoWrapper video {
  display: flex;
  margin: 40px auto 80px;
  width: 100%;
  max-width: 915px;
  height: auto;
  outline: 0;
}
@media screen and (max-width: 768px) {
  .ambassador__video .videoWrapper video {
    margin: 40px auto 40px;
  }
}
.ambassador__video .videoWrapper .video {
  position: relative;
  width: 100%;
}
.ambassador__video .videoWrapper .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ambassador__video_ttl {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5em;
  max-width: 864px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ambassador__video_ttl {
    font-size: 20px;
    gap: 1em;
    margin-bottom: 24px;
  }
  .ambassador__video_ttl:before, .ambassador__video_ttl:after {
    display: none;
  }
}
.ambassador__video_ttl:before, .ambassador__video_ttl:after {
  content: "";
  width: 1px;
  height: 0.7em;
  background: #fff;
}
.ambassador__video_ttl:before {
  transform: rotate(-40deg);
}
.ambassador__video_ttl:after {
  transform: rotate(40deg);
}
.ambassador__video_vertical h3 {
  width: 100%;
  height: 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .ambassador__video_vertical h3 {
    margin-bottom: 32px;
  }
}
.ambassador__video_vertical h3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.ambassador__video_vertical p {
  color: #fff;
  font-weight: bold;
}
.ambassador__video_vertical p.sub {
  font-size: 16px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .ambassador__video_vertical p.sub {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.ambassador__video_vertical p.ttl {
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .ambassador__video_vertical p.ttl {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: unset;
  }
}
.ambassador__video_vertical p.ttl span {
  font-size: 0.8em;
}
.ambassador__video_vertical p.desc {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .ambassador__video_vertical p.desc {
    font-size: 14px;
    line-height: 1.6;
  }
}
.ambassador_report {
  background: url(/img/bg_ambassador_report.png) repeat center/80px;
  margin: 0 auto;
}
.ambassador_report .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px calc((100vw - 1000px) / 2);
  gap: 5.5555555556vw;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1440px) {
  .ambassador_report .inner {
    gap: 80px;
  }
}
@media screen and (max-width: 1080px) {
  .ambassador_report .inner {
    padding: 40px;
  }
}
@media screen and (min-width: 1081px) {
  .ambassador_report .inner:nth-of-type(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 70px;
  }
  .ambassador_report .inner:nth-of-type(even) img {
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .ambassador_report .inner:nth-of-type(even) {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 1080px) {
  .ambassador_report .inner {
    flex-direction: column;
    gap: 23px;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 24px;
  }
}
.ambassador_report .inner img {
  height: 300px;
}
@media screen and (max-width: 768px) {
  .ambassador_report .inner img {
    width: 100%;
    height: auto;
  }
}
.ambassador_report .inner span {
  font-size: 19px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ambassador_report .inner span {
    font-size: 14px;
    line-height: 1.7;
  }
}
.ambassador_report .inner span.date {
  display: block;
  padding-bottom: 2em;
  font-weight: normal;
}
.ambassador_report .inner span.date + p {
  margin-top: 0;
}
.ambassador_report .inner p {
  margin-top: 16px;
  font-size: 42px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .ambassador_report .inner p {
    font-size: 30px;
  }
}
.ambassador_report .inner p span {
  font-size: 0.85em;
}
.ambassador_report .inner .linkbtn_white {
  margin: 40px 0 0;
  padding: 12px 50px 12px 40px;
}
@media screen and (max-width: 1080px) {
  .ambassador_report .inner .linkbtn_white {
    margin: 40px auto 0;
  }
}
.ambassador_report .inner .linkbtn_white:after {
  background: url(../img/icon_link.png) no-repeat center/contain;
  width: 12px;
  height: 12px;
  display: block;
  transform: rotate(0);
  border: none;
}
@media screen and (max-width: 768px) {
  .ambassador_report .inner .linkbtn_white {
    margin: 26px auto 0;
  }
}

.colouring {
  padding: 126px 70px 100px;
  background: url(/img/bg_colouring.png) repeat center/38.1944444444vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .colouring {
    background: url(/img/bg_colouring.png) repeat center/550px;
  }
}
@media screen and (max-width: 768px) {
  .colouring {
    padding: 40px 16px;
    background: url(/img/bg_colouring.png) repeat center/500px;
  }
}
.colouring:before, .colouring:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.colouring:before {
  background: rgba(0, 0, 0, 0.2);
}
.colouring:after {
  background: url(/img/colouring_bg01.png) no-repeat left top/46.7361111111vw, url(/img/colouring_bg02.png) no-repeat right bottom/46.5972222222vw;
}
@media screen and (max-width: 768px) {
  .colouring:after {
    background: url(/img/colouring_bg01.png) no-repeat left top/100%, url(/img/colouring_bg02.png) no-repeat right bottom/100%;
  }
}
@media screen and (min-width: 1440px) {
  .colouring:after {
    background: url(/img/colouring_bg01.png) no-repeat left top/673px, url(/img/colouring_bg02.png) no-repeat right bottom/671px;
  }
}
.colouring .inner {
  margin: 0 auto;
  padding: 80px;
  background-color: #fff;
  font-size: 16px;
  max-width: 1080px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .colouring .inner {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  .colouring .inner {
    padding: 44px 16px;
  }
}
.colouring__about {
  display: flex;
  gap: 5.5555555556vw;
  margin-bottom: 43px;
}
@media screen and (max-width: 1000px) {
  .colouring__about {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .colouring__about {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 0;
  }
}
@media screen and (min-width: 1440px) {
  .colouring__about {
    gap: 80px;
  }
}
.colouring__about_dl {
  width: 25vw;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.colouring__about_dl:hover {
  transform: none;
}
.colouring__about_dl:hover .linkbtn_gold {
  transform: scale(1.05);
}
@media screen and (min-width: 1440px) {
  .colouring__about_dl {
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .colouring__about_dl {
    width: 100%;
    margin-bottom: 40px;
  }
}
.colouring__about_dl img {
  filter: drop-shadow(5px 5px 5px rgba(145, 20, 20, 0.5019607843));
}
@media screen and (max-width: 768px) {
  .colouring__about_dl img {
    padding: 0 24px;
  }
}
.colouring__about_dl .linkbtn_gold {
  width: 260px;
  letter-spacing: unset;
  transition: 0.2s ease;
}
@media screen and (max-width: 900px) {
  .colouring__about_dl .linkbtn_gold {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .colouring__about_dl .linkbtn_gold {
    width: 100%;
  }
}
.colouring__about_dl .linkbtn_gold:hover:after {
  right: 20px;
}
.colouring__about_dl .linkbtn_gold:after {
  width: 16px;
  height: 16px;
  background: url(/img/icon_download.png) no-repeat center/contain;
  border: none;
  transform: none;
}
.colouring__about h2 {
  font-size: 42px;
  line-height: 1.4;
  text-align: left;
  color: #dab96b;
  margin-bottom: 1em;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .colouring__about h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 900px) {
  .colouring__about h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .colouring__about h2 {
    font-size: 28px;
    text-align: center;
  }
}
.colouring__about_text {
  color: #3c464c;
}
.colouring__about_text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .colouring__about_text p {
    font-size: 14px;
  }
}
.colouring__badge_ttl {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
.colouring__badge_ttl p {
  font-weight: bold;
}
.colouring__badge_list {
  padding: 24px;
  border: 1px solid #dab96b;
}
.colouring__badge_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .colouring__badge_list ul {
    gap: 10px;
  }
}
.colouring__badge_list ul li {
  width: 132px;
  max-width: calc((100% - 75px) / 6);
  aspect-ratio: 1;
}
.colouring__badge_list ul li img {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .colouring__badge_list ul li:nth-of-type(4) {
    order: 7;
  }
  .colouring__badge_list ul li:nth-of-type(5) {
    order: 8;
  }
  .colouring__badge_list ul li:nth-of-type(6) {
    order: 9;
  }
  .colouring__badge_list ul li:nth-of-type(10) {
    order: 10;
  }
  .colouring__badge_list ul li:nth-of-type(11) {
    order: 11;
  }
  .colouring__badge_list ul li:nth-of-type(12) {
    order: 12;
  }
}
@media screen and (max-width: 768px) {
  .colouring__badge_list ul li {
    max-width: calc((100% - 20px) / 3);
  }
}

.sns_campaign {
  padding: 80px 0;
  background-color: #002a54;
}
@media screen and (max-width: 768px) {
  .sns_campaign {
    padding: 24px 0;
  }
}
.sns_campaign .inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 5.5%;
}
@media screen and (max-width: 1200px) {
  .sns_campaign .inner {
    padding: 0px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .sns_campaign .inner {
    gap: 4%;
  }
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner {
    width: 100%;
    flex-direction: column;
    padding: 40px 16px;
  }
}
.sns_campaign .inner .campaign_img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner .campaign_img {
    width: 100%;
  }
}
.sns_campaign .inner .campaign_text {
  width: 50%;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner .campaign_text {
    width: 100%;
    padding: 8% 5% 0;
  }
}
.sns_campaign .inner .campaign_text h3 {
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner .campaign_text h3 {
    font-size: 14px;
    line-height: 1.7;
  }
}
.sns_campaign .inner .campaign_text h2 {
  font-size: 42px;
  margin: 8px 0;
  text-align: left;
  line-height: unset;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .sns_campaign .inner .campaign_text h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 900px) {
  .sns_campaign .inner .campaign_text h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner .campaign_text h2 {
    font-size: 30px;
    margin: 16px 0;
    height: auto;
  }
}
.sns_campaign .inner .campaign_text p {
  font-size: 16px;
  margin: 8px 0 32px;
}
.sns_campaign .inner .campaign_text p span {
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .sns_campaign .inner .campaign_text a {
    width: 100%;
  }
  .sns_campaign .inner .campaign_text a:after {
    right: calc(50% - 3em - 20px);
  }
}

.happy_santa {
  position: fixed;
  width: 416px;
  height: auto;
  object-fit: contain;
  margin-top: 16vh;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .happy_santa {
    width: 60vw;
    margin-top: 13vh;
    margin-left: -25vw;
  }
}

.cast {
  position: relative;
}
@media screen and (max-width: 768px) {
  .cast {
    margin-top: 80px;
  }
}
.cast:before {
  content: "";
  background: url(/img/bg_light.png) no-repeat left center/cover;
  width: 740px;
  height: 600px;
  right: 0;
  position: absolute;
  top: -108px;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
  .cast:before {
    display: none;
  }
}
.cast .inner {
  text-align: center;
  padding: 0;
}
.cast .inner.comingsoon {
  padding: 32px 0;
}
.cast .inner > img {
  padding: 32px 0;
  position: relative;
  backdrop-filter: blur(4px);
}
.cast .inner > img[src*=comingsoon] {
  height: 40px;
  padding: 0;
  backdrop-filter: none;
}
@media screen and (max-width: 768px) {
  .cast .inner > img[src*=comingsoon] {
    height: 24px;
  }
}
.cast__group {
  margin-bottom: 80px;
}
.cast__group h3 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dab96b;
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 32px;
  margin: 0 auto 32px;
  max-width: 864px;
}
@media screen and (max-width: 768px) {
  .cast__group h3 {
    gap: 16px;
    padding: 0 16px;
  }
}
.cast__group h3:before, .cast__group h3:after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #dab96b;
}
.cast__group .swiper-pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .cast__group .swiper-pagination {
    display: none;
  }
}
.cast__group .swiper-pagination span.swiper-pagination-bullet {
  width: 8px;
  aspect-ratio: 1;
  margin: 0 !important;
  border-radius: 0;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.7019607843);
}
.cast__group .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #dab96b !important;
}
.cast__list {
  padding: 0 calc((100vw - 864px) / 2);
  display: flex;
}
@media screen and (max-width: 768px) {
  .cast__list {
    display: flex;
  }
}
.cast__list.photo {
  width: 100%;
  display: flex;
  gap: 40px 60px;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cast__list.photo {
    gap: 20px;
  }
}
.cast__list.photo li {
  flex: 0 0 auto;
  width: auto;
}
@media screen and (max-width: 768px) {
  .cast__list.photo li {
    width: 40%;
  }
}
.cast__list.smallimg {
  flex-wrap: wrap;
  gap: 28px 0;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cast__list.smallimg {
    gap: 28px 10px;
  }
}
.cast__list.smallimg li {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .cast__list.smallimg li {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .cast__list.smallimg li {
    width: 27%;
  }
}
.cast__list.smallimg li img {
  width: 160px;
}
.cast__list.comment {
  justify-content: center;
  padding-top: 72px;
  gap: 80px;
}
.cast__list.comment li {
  color: #fff;
  line-height: 1.7;
  width: 280px;
}
.cast__list.comment li img {
  margin-bottom: 24px;
}
.cast__list.comment li span {
  display: block;
  font-size: 12px;
}
.cast__list li img {
  width: 200px;
  aspect-ratio: 1;
  aspect-ratio: 87/100;
  margin-bottom: 24px;
  border: 1px solid #dab96b;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cast__list li img {
    margin-bottom: 14px;
  }
}
.cast__list li p.name_jp, .cast__list li p.name_en {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .cast__list li p.name_jp, .cast__list li p.name_en {
    font-size: 12px;
    line-height: 1.4;
  }
}
.cast__list li p.name_jp {
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .cast__list li p.name_jp {
    margin-bottom: 0.5em;
  }
}
.cast__list li p.name_en {
  font-family: "Cinzel", serif;
}
.cast__list li p.name_desc {
  font-size: 14px;
  margin-top: 32px;
  text-align: left;
}

.schedule {
  max-width: 864px;
  z-index: 2;
  position: relative;
  padding-top: 7dvh;
  margin-bottom: 0;
}
.schedule .inner {
  text-align: center;
  align-items: flex-start;
  padding-bottom: 80px;
}
.schedule .inner h2 {
  margin-bottom: 0;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .schedule .inner img[src*=date] {
    max-width: 540px;
  }
  .schedule .inner img[src*=calendar] {
    max-width: 680px;
  }
}
.schedule__calendar {
  margin: 36px auto 0;
}
.schedule__info {
  color: #fff;
  padding: 40px calc((100% - 680px) / 2) 15px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .schedule__info {
    padding: 15px 16px;
  }
}
.schedule__info_text {
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .schedule__info_text {
    margin-top: 30px;
  }
}
.schedule__icon {
  display: flex;
  gap: 10px 30px;
  flex-direction: column;
}
.schedule__icon p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}
.schedule__icon p span {
  display: flex;
  gap: 0.3em;
}
.schedule__icon p span:before {
  content: "…";
}
.schedule__icon img {
  width: 30px;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .schedule__icon img {
    width: 23px;
  }
}

.venue {
  z-index: 2;
  position: relative;
  margin: 500px 0 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .venue {
    margin: 400px 0 0;
  }
}
.venue:before {
  content: "";
  clip-path: url("#bg_tree");
  background: #005d44;
  width: 100vw;
  height: 100vh;
  height: 62.5vw;
  position: absolute;
  top: -415px;
  z-index: -1;
}
@media screen and (min-width: 1600px) {
  .venue:before {
    width: 100%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .venue:before {
    clip-path: url("#bg_tree_sp");
    height: 100vw;
    top: -180px;
  }
}
.venue:after {
  content: "";
  background: url(/img/bg_star.png) no-repeat center/contain;
  width: 12.5vw;
  aspect-ratio: 1;
  position: absolute;
  top: -510px;
  right: 8.3333333333vw;
}
@media screen and (min-width: 1600px) {
  .venue:after {
    width: 180px;
    top: -510px;
    right: 120px;
    right: 8.3333333333vw;
  }
}
@media screen and (max-width: 1200px) {
  .venue:after {
    top: -480px;
  }
}
@media screen and (max-width: 768px) {
  .venue:after {
    width: 60px;
    top: -210px;
    right: 18.1333333333vw;
  }
}
@media screen and (max-width: 550px) {
  .venue:after {
    right: 16vw;
  }
}
@media screen and (max-width: 450px) {
  .venue:after {
    top: -220px;
  }
}
@media screen and (max-width: 1440px) {
  .venue {
    background: linear-gradient(180deg, transparent 200px, #005d44 200px, #005d44 100%);
    padding-bottom: 200px;
    margin-bottom: -200px;
  }
}
@media screen and (max-width: 1000px) {
  .venue {
    background: linear-gradient(180deg, transparent 50px, #005d44 50px, #005d44 100%);
  }
}
@media screen and (max-width: 768px) {
  .venue {
    background: linear-gradient(180deg, transparent 130px, #005d44 130px, #005d44 100%);
  }
}
.venue .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .venue .inner {
    gap: 40px;
  }
}
.venue .inner img[src*=place] {
  max-width: 495px;
}
@media screen and (max-width: 768px) {
  .venue .inner img[src*=place] {
    max-width: 100%;
    padding: 0 10px;
  }
}

.ticket {
  background: #005d45;
  margin-bottom: 0;
  padding: 126px 0;
  position: relative;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 768px) {
  .ticket {
    padding: 106px 0;
  }
}
.ticket:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: 200;
  background: url(../img/bg_sprinkles01.png) no-repeat left calc(50vw + 373px) top 0px/28.5416666667vw;
  margin-top: -12px;
  pointer-events: none;
}
@media screen and (min-width: 1441px) {
  .ticket:before {
    background-size: 411px;
  }
}
@media screen and (max-width: 768px) {
  .ticket:before {
    background: url(../img/bg_sprinkles01.png) no-repeat left calc(50vw + 117px) top -40px/48.2666666667vw;
  }
}
.ticket .inner {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .ticket .inner {
    font-size: 16px;
  }
}
.ticket .inner > p {
  padding: 60px 0 0;
  margin: 0 auto;
  max-width: 684px;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ticket .inner > p {
    padding: 40px 0 0;
  }
}
.ticket__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 684px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media screen and (max-width: 768px) {
  .ticket__list {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 24px 0;
  }
}
.ticket__list:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media screen and (max-width: 768px) {
  .ticket__list_price {
    width: 100%;
  }
}
.ticket__list_price dd {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.ticket__list_price dd p {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ticket__list_price dd p {
    font-size: 21px;
  }
}
.ticket__list_price dd p span {
  font-size: 0.5em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .ticket__list_price dd p span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .ticket__list_price dd a {
    margin-top: 14px;
    width: 100%;
  }
  .ticket__list_price dd a:after {
    right: calc(50% - 3em - 20px);
  }
}
.ticket__list_price dd a[class*=white] {
  margin-top: 0;
  padding: 12px 42px;
}
.ticket__list.ended {
  opacity: 0.5;
}
.ticket__list.ended a:after {
  display: none;
}
.ticketinfo {
  position: relative;
  z-index: 8;
  background: #005d45;
  margin-bottom: 0;
  padding-top: 126px;
  padding-bottom: 94px;
}
.ticketinfo .inner {
  color: #fff;
  font-size: 16px;
}
.ticketinfo__info {
  text-align: center;
  font-size: 16px;
}
.ticketinfo__info .ttl {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ticketinfo__info .ttl {
    font-size: 20px;
  }
}
.ticketinfo__info .onsale {
  width: 684px;
  padding: 15px 50px;
  margin: 30px auto;
  font-size: 20px;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .ticketinfo__info .onsale {
    width: calc(100% - 32px);
    font-size: 16px;
    padding: 15px 0;
    margin: 15px auto;
  }
}
.ticketinfo__info-hayawari > p {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  font-size: 34px;
  width: fit-content;
  margin: 50px auto 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ticketinfo__info-hayawari > p {
    font-size: 26px;
    gap: 16px;
  }
}
.ticketinfo__info-hayawari > p:before {
  content: "＼";
}
.ticketinfo__info-hayawari > p:after {
  content: "／";
}
.ticketinfo__info-hayawari img {
  width: 684px;
}
.ticketinfo__pairdiscount, .ticketinfo__otonadiscount {
  width: 864px;
  margin: 30px auto 60px;
  padding: 40px 14px;
  background: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid #dab96b;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .ticketinfo__pairdiscount, .ticketinfo__otonadiscount {
    width: 100%;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .ticketinfo__pairdiscount, .ticketinfo__otonadiscount {
    padding: 40px 64px;
  }
}
.ticketinfo__pairdiscount .pairdiscount__desc, .ticketinfo__pairdiscount .otonadiscount__desc, .ticketinfo__otonadiscount .pairdiscount__desc, .ticketinfo__otonadiscount .otonadiscount__desc {
  font-size: 14px;
  line-height: 1.6;
  padding: 7px 190px;
  background-color: #dab96b;
  transform: rotate(-30deg);
  position: absolute;
  top: 40px;
  left: -157px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .pairdiscount__desc, .ticketinfo__pairdiscount .otonadiscount__desc, .ticketinfo__otonadiscount .pairdiscount__desc, .ticketinfo__otonadiscount .otonadiscount__desc {
    transform: rotate(0);
    top: 0;
    left: 0;
    width: 100%;
    padding: 7px;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .pairdiscount__about, .ticketinfo__pairdiscount .otonadiscount__about, .ticketinfo__otonadiscount .pairdiscount__about, .ticketinfo__otonadiscount .otonadiscount__about {
    margin-top: 32px;
  }
}
.ticketinfo__pairdiscount .pairdiscount__about > p, .ticketinfo__pairdiscount .otonadiscount__about > p, .ticketinfo__otonadiscount .pairdiscount__about > p, .ticketinfo__otonadiscount .otonadiscount__about > p {
  font-size: 20px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .pairdiscount__about > p span, .ticketinfo__pairdiscount .otonadiscount__about > p span, .ticketinfo__otonadiscount .pairdiscount__about > p span, .ticketinfo__otonadiscount .otonadiscount__about > p span {
    font-size: 0.8em;
  }
}
.ticketinfo__pairdiscount .pairdiscount__about > p span, .ticketinfo__pairdiscount .otonadiscount__about > p span, .ticketinfo__otonadiscount .pairdiscount__about > p span, .ticketinfo__otonadiscount .otonadiscount__about > p span {
  font-size: 0.8em;
}
.ticketinfo__pairdiscount .pairdiscount__info, .ticketinfo__pairdiscount .otonadiscount__info, .ticketinfo__otonadiscount .pairdiscount__info, .ticketinfo__otonadiscount .otonadiscount__info {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 0 14px;
  margin-bottom: 0.5em;
  justify-content: center;
}
.ticketinfo__pairdiscount .pairdiscount__info dt, .ticketinfo__pairdiscount .otonadiscount__info dt, .ticketinfo__otonadiscount .pairdiscount__info dt, .ticketinfo__otonadiscount .otonadiscount__info dt {
  width: 35%;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .ticketinfo__pairdiscount .pairdiscount__info dt, .ticketinfo__pairdiscount .otonadiscount__info dt, .ticketinfo__otonadiscount .pairdiscount__info dt, .ticketinfo__otonadiscount .otonadiscount__info dt {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .pairdiscount__info dt, .ticketinfo__pairdiscount .otonadiscount__info dt, .ticketinfo__otonadiscount .pairdiscount__info dt, .ticketinfo__otonadiscount .otonadiscount__info dt {
    text-align: left;
    width: 100%;
    font-size: 0.9em;
    font-weight: 600;
  }
}
.ticketinfo__pairdiscount .pairdiscount__info dd, .ticketinfo__pairdiscount .otonadiscount__info dd, .ticketinfo__otonadiscount .pairdiscount__info dd, .ticketinfo__otonadiscount .otonadiscount__info dd {
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .ticketinfo__pairdiscount .pairdiscount__info dd, .ticketinfo__pairdiscount .otonadiscount__info dd, .ticketinfo__otonadiscount .pairdiscount__info dd, .ticketinfo__otonadiscount .otonadiscount__info dd {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .pairdiscount__info dd, .ticketinfo__pairdiscount .otonadiscount__info dd, .ticketinfo__otonadiscount .pairdiscount__info dd, .ticketinfo__otonadiscount .otonadiscount__info dd {
    width: 100%;
  }
}
.ticketinfo__pairdiscount .pairdiscount__info dd span, .ticketinfo__pairdiscount .otonadiscount__info dd span, .ticketinfo__otonadiscount .pairdiscount__info dd span, .ticketinfo__otonadiscount .otonadiscount__info dd span {
  font-size: 0.8em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .otonadiscount__about, .ticketinfo__otonadiscount .otonadiscount__about {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .ticketinfo__pairdiscount .otonadiscount__info dt, .ticketinfo__otonadiscount .otonadiscount__info dt {
    width: 20%;
  }
}
.ticketinfo__pairdiscount .otonadiscount__notice, .ticketinfo__otonadiscount .otonadiscount__notice {
  max-width: 684px;
  margin: 75px auto 25px;
}
@media screen and (max-width: 768px) {
  .ticketinfo__pairdiscount .otonadiscount__notice, .ticketinfo__otonadiscount .otonadiscount__notice {
    width: 100%;
    margin: 50px 0 0;
  }
}
.ticketinfo__pairdiscount .otonadiscount__notice_ttl, .ticketinfo__otonadiscount .otonadiscount__notice_ttl {
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.ticketinfo__pairdiscount .otonadiscount__notice_ttl p, .ticketinfo__otonadiscount .otonadiscount__notice_ttl p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ticketinfo__pairdiscount .otonadiscount__notice_ttl p:before, .ticketinfo__otonadiscount .otonadiscount__notice_ttl p:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_notice.png") no-repeat center/contain;
}
.ticketinfo__pairdiscount .otonadiscount__notice_desc, .ticketinfo__otonadiscount .otonadiscount__notice_desc {
  font-size: 14px;
  text-align: left;
}
.ticketinfo__tickets {
  text-align: left;
  width: 684px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ticketinfo__tickets {
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
}
.ticketinfo__ttl {
  line-height: 1;
  font-weight: bold;
  margin: 80px auto 20px;
}
@media screen and (max-width: 768px) {
  .ticketinfo__ttl {
    margin: 50px auto 20px;
  }
}
.ticketinfo__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media screen and (max-width: 768px) {
  .ticketinfo__list {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 24px 0;
  }
}
.ticketinfo__list:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.ticketinfo__list_detail {
  width: calc(100% - 147px);
}
@media screen and (max-width: 768px) {
  .ticketinfo__list_detail {
    width: 100%;
  }
}
.ticketinfo__list_detail dd {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .ticketinfo__list_detail dd {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ticketinfo__list_detail dd:not(:last-child) {
  padding-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .ticketinfo__list_detail dd:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
    margin-bottom: 30px;
  }
}
.ticketinfo__list_detail dd p {
  font-size: 14px;
}
.ticketinfo__list_detail dd p span {
  font-size: 0.5em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .ticketinfo__list_detail dd p span {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .ticketinfo__list_detail dd a {
    width: 100%;
  }
  .ticketinfo__list_detail dd a:after {
    right: calc(50% - 3em - 20px);
  }
}
.ticketinfo__list_detail dd a[class*=gold][href*=tel] {
  display: none;
}
@media screen and (max-width: 768px) {
  .ticketinfo__list_detail dd a[class*=gold][href*=tel] {
    display: flex;
  }
}
.ticketinfo__list_detail dd a[class*=white] {
  margin-top: 0;
  padding: 12px 42px;
}
.ticketinfo__notice {
  max-width: 684px;
  margin: 75px auto 0;
}
@media screen and (max-width: 768px) {
  .ticketinfo__notice {
    width: 100%;
    padding: 0 16px;
  }
}
.ticketinfo__notice_ttl {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.ticketinfo__notice_ttl .ttl {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ticketinfo__notice_ttl .ttl:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_notice.png") no-repeat center/contain;
}

.bunkacho {
  color: #3c464c;
  background: #005d45;
  margin-bottom: -2px;
  padding: 32px 0 126px;
  position: relative;
  border-bottom: 2px solid #005d45;
}
@media screen and (max-width: 768px) {
  .bunkacho {
    padding: 60px 16px 96px;
  }
}
.bunkacho:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  background: url(../img/bg_sprinkles02.png) no-repeat right calc(50vw + 397px) top 0px/27.5694444444vw, url(../img/bg_sprinkles03.png) no-repeat left calc(50vw + 240px) top 30%/33.3333333333vw, url(../img/bg_sprinkles04.png) no-repeat right calc(50vw + 397px) bottom 448px/33.3333333333vw;
}
@media screen and (min-width: 1441px) {
  .bunkacho:before {
    background-size: 411px;
    background: url(../img/bg_sprinkles02.png) no-repeat right calc(50vw + 397px) top 0px/397px, url(../img/bg_sprinkles03.png) no-repeat left calc(50vw + 240px) top 45%/480px, url(../img/bg_sprinkles04.png) no-repeat right calc(50vw + 397px) bottom 448px/480px;
  }
}
@media screen and (max-width: 768px) {
  .bunkacho:before {
    background: url(../img/bg_sprinkles02.png) no-repeat right calc(50vw + 100px) top 20px/46.6666666667vw, url(../img/bg_sprinkles03.png) no-repeat left calc(50vw + 52px) top 37%/56.2666666667vw;
  }
}
@media (min-width: 506px) and (max-width: 768px) {
  .bunkacho:before {
    mix-blend-mode: multiply;
  }
}
.bunkacho.ended .inner {
  position: relative;
  height: 500px;
  overflow: hidden scroll;
}
.bunkacho.ended .inner p.ended_text {
  text-align: center;
  font-weight: bold;
  position: sticky;
  top: -60px;
  margin: -60px -90px;
  width: calc(100% + 180px);
  height: calc(100% + 120px);
  background: rgba(0, 0, 0, 0.5019607843);
  color: #fff;
  z-index: 100;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .bunkacho.ended .inner p.ended_text {
    font-size: 22px;
  }
}
.bunkacho.ended .inner h2 {
  margin-top: -438px;
  height: 69px;
}
@media screen and (max-width: 768px) {
  .bunkacho.ended .inner h2 {
    margin-top: -498px;
  }
}
.bunkacho .inner {
  max-width: 864px;
  margin: 0 max(16px, (100% - 864px) / 2);
  padding: 60px 90px;
  background: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .bunkacho .inner {
    padding: 45px 16px 24px;
    font-size: 14px;
  }
}
.bunkacho .inner .linkbtn_gold {
  margin: 0 auto;
}
.bunkacho__ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .bunkacho__ttl {
    text-align: left;
    margin-bottom: 28px;
  }
}
.bunkacho__kodomo {
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .bunkacho__kodomo {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
}
.bunkacho__kodomo p:first-child {
  font-weight: bold;
}
.bunkacho__kodomo a {
  text-decoration: underline;
}
.bunkacho p b {
  margin-bottom: 0.4em;
  display: inline-block;
}
.bunkacho__notice {
  max-width: 684px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .bunkacho__notice {
    margin: 0 auto 20px;
  }
}
.bunkacho__notice_ttl {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
}
@media screen and (max-width: 768px) {
  .bunkacho__notice_ttl {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.bunkacho__notice_ttl .ttl {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bunkacho__notice_ttl .ttl:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_notice_b.png") no-repeat center/contain;
}
.bunkacho__howto {
  display: none;
}

.linkbtn_white, .linkbtn_gold, .linkbtn_gray {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.linkbtn_white:hover, .linkbtn_gold:hover, .linkbtn_gray:hover {
  transform: none;
}
@media screen and (min-width: 769px) {
  .linkbtn_white:hover:after, .linkbtn_gold:hover:after, .linkbtn_gray:hover:after {
    right: 15px;
  }
}
.linkbtn_white:after, .linkbtn_gold:after, .linkbtn_gray:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  transition: 0.2s ease;
}
.linkbtn_white {
  width: fit-content;
  margin: 24px auto 0;
  padding: 12px 45px;
  border: 1px solid #fff;
}
.linkbtn_gold {
  width: 200px;
  border: 4px solid #dab96b;
  border-radius: 8px;
  background: linear-gradient(180deg, #f0e9ab, #c59d3d);
  line-height: 40px;
}
.linkbtn_gray {
  pointer-events: none;
  width: 200px;
  border: 4px solid #cfcfcf;
  border-radius: 8px;
  background: linear-gradient(180deg, #999, #dadada);
  line-height: 40px;
}
.linkbtn_gray:after {
  display: none;
}

.contact {
  background-color: #005d44;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 102px), 0 100%);
  padding-bottom: 220px;
  margin-bottom: -322px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  }
}

.parallax {
  position: relative;
  padding: 220px 0;
}
@media screen and (min-width: 1441px) {
  .parallax {
    background-position: center;
    background-size: 100%;
  }
}
.parallax.safari .inner {
  background-attachment: unset;
}
.parallax:before {
  background: url("../img/bg_finale.jpg") no-repeat center bottom;
}
.parallax .inner {
  background: url("../img/bg_finale.jpg") no-repeat center bottom;
  background-attachment: fixed;
  background-size: 133.3333333333%;
  background-color: #000;
  text-align: center;
  padding: 150px 0;
  clip-path: polygon(0 102px, 100% 0, 100% calc(100% - 102px), 0 100%);
  height: 480px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .parallax .inner {
    background: url("../img/sp/bg_finale.jpg") no-repeat center/cover;
    background-attachment: fixed;
    height: 86.6666666667vw;
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  }
}
.parallax:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  background: url(../img/bg_sprinkles05.png) no-repeat;
  background-size: 114.7916666667vw;
  background-position: -12.2916666667vw center;
}
@media screen and (max-width: 768px) {
  .parallax:before {
    background: url(../img/sp/bg_sprinkles05.png) no-repeat;
    background-size: 127.4666666667vw;
    background-position: top 155px right -56px;
  }
}

.goods {
  background-color: #002a54;
  clip-path: polygon(0 102px, 100% 0, 100% 100%, 0 100%);
  padding: 220px 0 126px;
  margin: -322px 0 -5px;
}
@media screen and (max-width: 768px) {
  .goods {
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    margin: -270px 0 -5px;
    padding: 90px 0 86px;
  }
}
.goods .inner {
  max-width: 864px;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) {
  .goods .inner {
    padding: 0 60px;
  }
}

.access {
  background-color: #002a54;
  padding: 5px 0 226px;
  margin: 0 0 -100px;
}
@media screen and (max-width: 768px) {
  .access {
    margin: 0 0 -40px;
    padding: 5px 0 86px;
  }
}
.access.beforegoods {
  clip-path: polygon(0 102px, 100% 0, 100% 100%, 0 100%);
  padding: 220px 0 226px;
  margin: -322px 0 -100px;
}
@media screen and (max-width: 768px) {
  .access.beforegoods {
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    margin: -270px 0 -40px;
  }
}
.access .inner {
  max-width: 864px;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .access .inner {
    padding: 0 32px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .access__map {
    height: calc(100vw - 64px);
  }
  .access__map iframe {
    max-height: 100%;
  }
}
.access__info {
  margin: 80px auto 10px;
}
@media screen and (max-width: 768px) {
  .access__info {
    margin: 56px 0 0;
  }
}
.access__info .ttl a {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  font-size: 20px;
  padding-bottom: 30px;
  transition: 0.2s ease;
}
@media screen and (max-width: 768px) {
  .access__info .ttl a {
    font-size: 16px;
    padding-bottom: 24px;
  }
}
.access__info .ttl a:hover {
  transform: none;
  opacity: 0.8;
}
.access__info .ttl a:after {
  content: "";
  background: url("../img/icon_link.png") no-repeat center/contain;
  width: 20px;
  height: 20px;
  display: block;
}
.access__list {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media screen and (max-width: 768px) {
  .access__list {
    padding: 24px 0;
  }
}
.access__list_item {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .access__list_item {
    margin-bottom: 10px;
  }
}
.access__parking {
  background-color: rgba(255, 255, 255, 0.1490196078);
  margin: 0 auto;
  padding: 40px 40px 25px;
}
@media screen and (max-width: 768px) {
  .access__parking {
    padding: 24px;
  }
}
.access__parking p:not([class]) {
  font-size: 14px;
}
.access__parking a {
  margin: 24px 0 0 auto;
  font-size: 14px;
  padding: 12px 55px 12px 45px;
}
@media screen and (max-width: 768px) {
  .access__parking a {
    margin: 24px auto 0;
  }
}
.access__parking a:hover:after {
  right: 20px;
}
.access__parking a:after {
  content: "";
  background: url("../img/icon_link.png") no-repeat center/contain;
  width: 14px;
  height: 14px;
  display: block;
  transform: none;
  border: none;
}

.character {
  clip-path: url("#bg_character");
  background: linear-gradient(180deg, #3e98d6 120px, #3e98d6 calc((100% - 120px) * 0.7), #d4e4f1);
  margin: 0;
  padding: 150px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .character {
    clip-path: url("#bg_character_sp");
    padding: 60px 0;
  }
}
.character:before {
  content: "";
  background: url(/img/bg_character_snow.png) no-repeat bottom center/contain;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .character:before {
    background: url(/img/sp/bg_character_snow.png) no-repeat top 110px center/contain;
    background-size: 116vw;
  }
}
.character h2 {
  color: #fff;
}
.character .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .character .inner {
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
  }
}
.character__image {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .character__image {
    max-width: 230px;
  }
}
.character__detail {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .character__detail {
    padding: 0 16px;
  }
}
.character__detail p.ttl {
  font-size: 40px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .character__detail p.ttl {
    font-size: 32px;
  }
}
.character__detail p.ttl ruby rt {
  padding-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .character__detail p.ttl ruby rt {
    font-size: 12px;
  }
}
.character__detail p:not([class]) {
  margin-top: 35px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .character__detail p:not([class]) {
    margin-top: 30px;
    font-weight: bold;
    text-align: left;
  }
}

.sponsored {
  clip-path: url("#bg_sponsored");
  margin: -40px 0 0;
  background: #fff;
  font-weight: bold;
  text-align: center;
  padding: 120px 0 65px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sponsored {
    clip-path: url("#bg_sponsored_sp");
    padding: 64px 0 60px;
    margin-bottom: 0;
  }
}
.sponsored h3 {
  color: #dab96b;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .sponsored h3 {
    margin-bottom: 1em;
  }
}
.sponsored__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 32px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .sponsored__list {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 769px) {
  .sponsored__list li:not(:last-of-type):after {
    content: "/";
    padding-left: 1em;
  }
}

.footer {
  position: relative;
  z-index: 2;
}
.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_footer.png) no-repeat center/cover;
  z-index: -1;
}
.footer .inner {
  padding: 140px 0 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 140px 0;
    margin-top: -40px;
  }
}
.footer .inner a:hover {
  transform: none;
}
.footer .inner img {
  max-width: 273px;
}
.footer__sns ul {
  display: flex;
  gap: 62px;
  align-items: center;
}
.footer__sns ul li a {
  display: block;
}
.footer__sns ul li a img {
  height: 28px;
}

.teaser {
  display: none;
  padding: 40px 0 280px;
}
.teaser .inner {
  text-align: center;
}
.teaser .inner picture {
  display: block;
}
.teaser .inner picture:has(img[src*=copy_pc_02]) {
  margin-top: 32px;
}
.teaser .inner picture:has(img[src*=copy_pc_03]) {
  margin-top: 64px;
}
.teaser .inner picture:has(img[src*=copy_pc_04]) {
  margin-top: 120px;
}
.teaser .inner *:has([src*=logo_orb]) {
  width: 495px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
  hamburger
--------------------------------------------------------- */
.side {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;
}

.hamburger-menu #menu__toggle {
  opacity: 0;
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span:before {
  top: 0;
  transform: rotate(0deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span:after {
  top: 0;
  transform: rotate(90deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > img {
  opacity: 0;
}
.hamburger-menu #menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
.hamburger-menu .menu__btn {
  position: fixed;
  top: 43px;
  right: 48px;
  width: 57px;
  height: 38px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 6px #000);
}
@media screen and (max-width: 768px) {
  .hamburger-menu .menu__btn {
    top: 27px;
    width: 50px;
    right: 16px;
  }
}
.hamburger-menu .menu__btn > span {
  display: block;
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__btn > span:before, .hamburger-menu .menu__btn > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__btn > span:before {
  top: -6px;
}
.hamburger-menu .menu__btn > span:after {
  top: 6px;
}
.hamburger-menu .menu__btn > img {
  padding-top: 15px;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__box {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 284px;
  height: 100%;
  margin: 0;
  padding: 100px 0 37px;
  list-style: none;
  background-color: #8e191f;
  transition-duration: 0.4s;
  overflow: scroll;
}
.hamburger-menu .menu__box li {
  margin-bottom: 20px;
}
.hamburger-menu .menu__item {
  display: block;
  padding: 6px;
  text-align: center;
  transition-duration: 0.4s;
}
.hamburger-menu .menu__item img {
  height: 40px;
}
.hamburger-menu .menu__item:hover {
  opacity: 0.8;
}
.hamburger-menu .menu__sns {
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 37px 0;
  margin: auto 32px 0;
}
@media screen and (max-width: 768px) {
  .hamburger-menu .menu__sns {
    margin: 67px 32px 0;
  }
}
.hamburger-menu .menu__sns ul {
  display: flex;
  gap: 46px;
  align-items: center;
  justify-content: center;
}
.hamburger-menu .menu__sns ul li a {
  display: block;
}
.hamburger-menu .menu__sns ul li a img {
  height: 28px;
}

.snow {
  color: snow;
  font-size: 10px;
  position: fixed;
  top: -5%;
  left: -3%;
  text-shadow: 5vw -100px 12px, 20vw -500px 14px, 39vw -250px 12px, 56vw -150px 12px, 78vw -220px 4px, 94vw -170px 7px;
  animation: roll 5s linear infinite;
  z-index: 30000;
}
.snow2nd {
  animation: anim 8s linear infinite;
  text-shadow: 10vw -400px 3px, 30vw -580px 1px, 42vw -340px 5px, 63vw -180px 0, 86vw -320px 19px;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: rotate(20deg);
    top: 100%;
    opacity: 0;
  }
}
@keyframes anim {
  100% {
    color: transparent;
    top: 150%;
  }
}