/*
Reset default browser styles
*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
Brakepoint
*/
/*
SASS Mixin
*/
/*
scroll animation
*/
.__intersection.__fadein {
  -webkit-transition: opacity 1.4s;
  transition: opacity 1.4s;
  opacity: 0;
}
.__intersection.__fadein.__inview {
  opacity: 1;
}
.__intersection.__fadeinup {
  -webkit-transition: opacity 1.4s, -webkit-transform 1s;
  transition: opacity 1.4s, -webkit-transform 1s;
  transition: opacity 1.4s, transform 1s;
  transition: opacity 1.4s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.__intersection.__fadeinup.__inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.__intersection.__fadeinblur {
  -webkit-transition: opacity 2.5s, -webkit-filter 2.5s;
  transition: opacity 2.5s, -webkit-filter 2.5s;
  transition: opacity 2.5s, filter 2.5s;
  transition: opacity 2.5s, filter 2.5s, -webkit-filter 2.5s;
  opacity: 0;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.__intersection.__fadeinblur.__inview {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.__intersection.__fadein_ltr {
  -webkit-transition: opacity 1.4s, -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}
.__intersection.__fadein_ltr.__inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.__intersection.__fadein_rtl {
  -webkit-transition: opacity 1.4s, -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 1.4s, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}
.__intersection.__fadein_rtl.__inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.__intersection.__clippath_ltr {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.__intersection.__clippath_ltr.__inview {
  clip-path: inset(0 0 0 0);
}
.__intersection.__clippath_rtl {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: clip-path 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.__intersection.__clippath_rtl.__inview {
  clip-path: inset(0 0 0 0);
}

/*
CSS Variables
*/
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #454545;
  --color-theme: #4ba53a;
  --color-deepblue: #262626;
  --color-background-gray: #ebebeb;
  --height-header-mobile: 60px;
  --height-header-desktop: 100px;
  --z-index-header: 8000;
  --z-index-drawer-background: 9000;
  --z-index-drawer: 9001;
}

/*
Helpers
*/
body {
  /*
  Basic and Typography
  */
  background-color: var(--color-black);
  font-family: "YuGothic_Family", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1;
  /*
  Reset
  */
  /*
  Images
  */
}
body *,
body *::before,
body *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body em {
  font-style: normal;
}
body img,
body video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body .__wb {
  white-space: unset;
}
@media (min-width: 641px) {
  body .__wb > span {
    display: inline-block;
    white-space: nowrap;
  }
}
body .__wba > span {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 641px) {
  body br.--ismobile {
    display: none;
  }
}
@media (max-width: 640px) {
  body br.--isdesktop {
    display: none;
  }
}
body .view {
  width: 84vw;
  max-width: 820px;
  margin: 0 auto;
}
body a.link {
  position: relative;
  color: var(--color-black);
  text-decoration: none;
}
body a.link::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-black);
}

/*
header
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.7s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.7s, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.7s;
  transition: transform 0.3s ease-out, opacity 0.7s, -webkit-transform 0.3s ease-out;
  opacity: 0;
}
@media (max-width: 640px) {
  .header {
    height: var(--height-header-mobile);
    -webkit-transform: translateY(calc(var(--height-header-mobile) * -1));
            transform: translateY(calc(var(--height-header-mobile) * -1));
  }
}
@media (min-width: 641px) {
  .header {
    height: var(--height-header-desktop);
    -webkit-transform: translateY(calc(var(--height-header-desktop) * -1));
            transform: translateY(calc(var(--height-header-desktop) * -1));
  }
}
.header.__active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header .view {
  height: 100%;
}
@media (max-width: 640px) {
  .header .view {
    width: calc(100vw - 40px);
  }
}
@media (min-width: 641px) {
  .header .view {
    width: calc(100vw - 120px);
    max-width: 100vw;
  }
}
.header .view .layout {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .header .view .layout .header-logo {
    width: 81.35px;
    height: 36px;
  }
}
@media (min-width: 641px) {
  .header .view .layout .header-logo {
    width: 135.58px;
    height: 60px;
  }
}
/*
drawer
*/
.drawer-toggle {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
@media (max-width: 640px) {
  .drawer-toggle {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 641px) {
  .drawer-toggle {
    width: 40px;
    height: 40px;
  }
}
.drawer-toggle span {
  position: absolute;
  left: 0;
  top: 50%;
  height: 3px;
  background: var(--color-deepblue);
  border-radius: 1.5px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 640px) {
  .drawer-toggle span {
    width: 32px;
  }
}
@media (min-width: 641px) {
  .drawer-toggle span {
    width: 40px;
  }
}
.drawer-toggle span:nth-child(1) {
  -webkit-transform: translateY(-5px) rotate(0deg);
          transform: translateY(-5px) rotate(0deg);
}
.drawer-toggle span:nth-child(2) {
  -webkit-transform: translateY(5px) rotate(0deg);
          transform: translateY(5px) rotate(0deg);
}
.drawer-toggle.__active span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.drawer-toggle.__active span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.drawer-background {
  z-index: var(--z-index-drawer-background);
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(38, 38, 38, 0.3);
  backdrop-filter: saturate(50%) blur(0px);
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.drawer-background.__active {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  opacity: 1;
}

.drawer {
  z-index: var(--z-index-drawer);
  position: fixed;
  overflow: hidden;
  width: 100vw;
  max-width: 685px;
  height: 100lvh;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.drawer::-webkit-scrollbar {
  display: none;
}
.drawer::before, .drawer::after {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-white);
}
@media (max-width: 640px) {
  .drawer {
    inset: 0;
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  }
}
@media (min-width: 641px) {
  .drawer {
    top: 0;
    right: 0;
    -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
}
.drawer .drawer-wrap {
  width: 100%;
}
.drawer .drawer-wrap .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout {
    padding: 0 40px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout {
    padding: 0 80px;
  }
}
.drawer .drawer-wrap .layout .drawer-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .drawer-header {
    height: var(--height-header-mobile);
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .drawer-header {
    height: var(--height-header-desktop);
  }
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .drawer-header .header-logo {
    width: 81.35px;
    height: 36px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .drawer-header .header-logo {
    width: 135.58px;
    height: 60px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .drawer-header .drawer-toggle {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .drawer-header .drawer-toggle {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.drawer .drawer-wrap .layout .toc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #bababa;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .toc {
    margin: 60px 0;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .toc {
    margin: 100px 0 90px;
  }
}
.drawer .drawer-wrap .layout .toc a {
  font-weight: bold;
  color: var(--color-deepblue);
  text-decoration: none;
  border-bottom: 1px solid #bababa;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .toc a {
    font-size: 18px;
    line-height: 1.6;
    padding: 16px 0;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .toc a {
    font-size: min(2.8vw, 20px);
    padding: 30px 0;
  }
}
.drawer .drawer-wrap .layout .toc a.indent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
}
.drawer .drawer-wrap .layout .toc a.indent:not(:last-of-type) {
  margin-left: 26px;
}
.drawer .drawer-wrap .layout .toc a.indent:has(+ .access) {
  margin-left: 0;
  padding-left: 26px;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .toc a.indent .event-name {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.drawer .drawer-wrap .layout .online-store {
  width: 100%;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .online-store {
    margin-bottom: 30px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .online-store {
    margin-bottom: 40px;
  }
}
.drawer .drawer-wrap .layout .online-store a {
  border: 1px solid var(--color-deepblue);
  border-radius: 5px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  color: var(--color-deepblue);
  text-decoration: none;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .online-store a {
    width: 295px;
    height: 38px;
    font-size: 16px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .online-store a {
    width: 100%;
    max-width: 385px;
    height: 48px;
    font-size: 20px;
  }
}
.drawer .drawer-wrap .layout .online-store a .icon {
  aspect-ratio: 1/1;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .online-store a .icon {
    width: 15px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .online-store a .icon {
    width: 20.5px;
  }
}
.drawer .drawer-wrap .layout .social-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .social-account {
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .social-account {
    gap: 35px;
    margin-bottom: 60px;
  }
}
.drawer .drawer-wrap .layout .social-account .sns {
  width: auto;
}
@media (max-width: 640px) {
  .drawer .drawer-wrap .layout .social-account .sns {
    height: 30px;
  }
}
@media (min-width: 641px) {
  .drawer .drawer-wrap .layout .social-account .sns {
    height: 35px;
  }
}
.drawer .drawer-wrap .layout .social-account .sns-x {
  aspect-ratio: 31/35;
}
.drawer .drawer-wrap .layout .social-account .sns-facebook {
  aspect-ratio: 36/35;
}
.drawer .drawer-wrap .layout .social-account .sns-instagram {
  aspect-ratio: 33/35;
}
.drawer .drawer-wrap .layout .social-account .sns-note {
  aspect-ratio: 76.47/35;
}
.drawer.__active {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

/*
billboard
*/
.billboard {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 640px) {
  .billboard {
    text-align: center;
  }
}
.billboard > .layout {
  display: -ms-grid;
  display: grid;
}
.billboard > .layout > * {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.billboard > .layout .title .view .image {
  max-width: 550px;
  aspect-ratio: 550/413.93;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media (max-width: 640px) {
  .billboard > .layout .title .view .image {
    width: 78.66666667vw;
    top: min(30vw, 110px);
  }
}
@media (min-width: 641px) {
  .billboard > .layout .title .view .image {
    width: 42.96875vw;
    top: 150px;
    left: 0;
  }
}
.billboard > .layout .static-header {
  position: fixed;
  width: 100vw;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
}
.billboard > .layout .static-header.__active {
  opacity: 1;
}
.billboard > .layout .static-header .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .billboard > .layout .static-header .layout {
    width: calc(100vw - 40px);
    height: var(--height-header-mobile);
  }
}
@media (min-width: 641px) {
  .billboard > .layout .static-header .layout {
    width: calc(100vw - 120px);
    max-width: 100vw;
    height: var(--height-header-desktop);
  }
}

/*
section
*/
.section {
  overflow: hidden;
}
.section--greetings {
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (max-width: 640px) {
  .section--greetings {
    padding: 60px 0 90px;
  }
}
@media (min-width: 641px) {
  .section--greetings {
    padding: 80px 0 120px;
  }
}
.section--greetings .view .title {
  text-align: center;
}
@media (max-width: 640px) {
  .section--greetings .view .title {
    font-size: min(6.4vw, 40px);
    line-height: 1.6;
    margin-bottom: 50px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .title {
    font-size: min(5.2vw, 50px);
    line-height: 1.6;
    margin-bottom: 80px;
  }
}
@media (max-width: 640px) {
  .section--greetings .view .greetings {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .greetings {
    font-size: 20px;
    line-height: 1.8;
  }
}
.section--greetings .view .greetings:not(:last-of-type) {
  margin-bottom: 1.6em;
}
.section--greetings .view .overview {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 640px) {
  .section--greetings .view .overview .item {
    line-height: 1.8;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .overview .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    line-height: 1.3;
  }
}
.section--greetings .view .overview .item .label {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 5px;
}
@media (max-width: 640px) {
  .section--greetings .view .overview .item .label {
    width: 50px;
    height: 26px;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .overview .item .label {
    height: 26px;
    padding: 0 9px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .section--greetings .view .overview .item .label.__hidden {
    display: none;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .overview .item .label.__hidden {
    opacity: 0;
  }
}
.section--greetings .view .overview .item .text {
  font-weight: bold;
}
@media (max-width: 640px) {
  .section--greetings .view .overview .item .text {
    font-size: 16px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .overview .item .text {
    font-size: 20px;
  }
}
.section--greetings .view .overview .item .text .caption {
  font-weight: normal;
}
@media (max-width: 640px) {
  .section--greetings .view .overview .item .text .caption {
    margin-top: 2px;
    font-size: 12px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .overview .item .text .caption {
    margin-top: 14px;
    font-size: 16px;
  }
}
.section--greetings .view .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 640px) {
  .section--greetings .view .instagram {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.6;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .instagram {
    margin-top: 50px;
  }
}
.section--greetings .view .instagram a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  text-decoration: none;
  margin: 0 0.4em;
}
.section--greetings .view .instagram a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 640px) {
  .section--greetings .view .instagram a::before {
    bottom: 0px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .instagram a::before {
    bottom: -2px;
  }
}
.section--greetings .view .instagram a .icon {
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .section--greetings .view .instagram a .icon {
    width: 14px;
    height: 14px;
  }
}
@media (min-width: 641px) {
  .section--greetings .view .instagram a .icon {
    width: 17px;
    height: 17px;
  }
}
.section--marquee {
  overflow: hidden;
}
@media (max-width: 640px) {
  .section--marquee {
    padding-bottom: 50px;
  }
}
@media (min-width: 641px) {
  .section--marquee {
    padding-bottom: 90px;
  }
}
.section--marquee .marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.section--marquee .marquee > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 640px) {
  .section--marquee .marquee {
    -webkit-animation: marquee 17s linear infinite;
            animation: marquee 17s linear infinite;
  }
}
@media (min-width: 641px) {
  .section--marquee .marquee {
    -webkit-animation: marquee 30s linear infinite;
            animation: marquee 30s linear infinite;
  }
}
.section--marquee .marquee .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
}
.section--marquee .marquee .image picture {
  display: block;
}
@media (max-width: 640px) {
  .section--marquee .marquee .image {
    aspect-ratio: 756/500;
    height: 134vw;
  }
}
@media (min-width: 641px) {
  .section--marquee .marquee .image {
    aspect-ratio: 1840/680;
    height: 53.125vw;
  }
}
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.section--events {
  background-color: var(--color-background-gray);
}
@media (max-width: 1080px) {
  .section--events {
    padding-bottom: 110px;
  }
}
@media (min-width: 1081px) {
  .section--events {
    padding-bottom: 170px;
  }
}
@media (max-width: 1080px) {
  .section--events .view {
    width: 95vw;
  }
}
@media (min-width: 1081px) {
  .section--events .view {
    max-width: 1180px;
  }
}
.section--events .view .events .event {
  background-color: var(--color-white);
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 1080px) {
  .section--events .view .events .event {
    margin-top: 150px;
    padding-bottom: 90px;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event {
    margin-top: 200px;
    padding-bottom: 7.03125vw;
  }
}
.section--events .view .events .event .number {
  position: relative;
  aspect-ratio: 160/103;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .section--events .view .events .event .number {
    top: max(-10vw, -60px);
    width: min(24vw, 160px);
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event .number {
    top: -60px;
    width: 160px;
  }
}
.section--events .view .events .event .title {
  font-weight: bold;
}
@media (max-width: 1080px) {
  .section--events .view .events .event .title {
    width: 88%;
    margin: 0 auto 40px;
    font-size: min(6vw, 32px);
    line-height: 1.7;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event .title {
    margin-bottom: 4.6875vw;
    font-size: 32px;
    line-height: 1.625;
  }
}
.section--events .view .events .event > .layout {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1080px) {
  .section--events .view .events .event > .layout {
    width: 88%;
    max-width: 580px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event > .layout {
    width: 86%;
    max-width: 1006px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.375vw;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event > .layout .photo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.section--events .view .events .event > .layout .photo .image {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .section--events .view .events .event > .layout .photo .image {
    aspect-ratio: 315/210;
  }
}
@media (min-width: 641px) {
  .section--events .view .events .event > .layout .photo .image {
    aspect-ratio: 475/317;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event > .layout .video {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.section--events .view .events .event > .layout .video video {
  aspect-ratio: 1/1;
}
.section--events .view .events .event > .layout .description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  font-size: 16px;
}
@media (max-width: 1080px) {
  .section--events .view .events .event > .layout .description {
    line-height: 1.8;
  }
}
@media (min-width: 1081px) {
  .section--events .view .events .event > .layout .description {
    line-height: 1.75;
  }
}
.section--events .view .events .event > .layout .description > p:not(:last-child) {
  margin-bottom: 1em;
}
.section--events .view .events .event > .layout .description > p a {
  color: var(--color-black);
  text-decoration: underline;
}
.section--events .view .events .event .schedule {
  margin: 0 auto;
  border-top: 1px solid #b9b9b9;
}
@media (max-width: 1180px) {
  .section--events .view .events .event .schedule {
    width: 88%;
    margin-top: 60px;
    padding-top: 60px;
  }
}
@media (min-width: 1181px) {
  .section--events .view .events .event .schedule {
    width: 86%;
    max-width: 1006px;
    margin-top: 70px;
    padding-top: 70px;
  }
}
.section--events .view .events .event .schedule .items {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1180px) {
  .section--events .view .events .event .schedule .items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 90px;
  }
}
@media (min-width: 1181px) {
  .section--events .view .events .event .schedule .items {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5.46875vw;
  }
}
.section--events .view .events .event .schedule .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 580px;
  margin: 0 auto;
}
.section--events .view .events .event .schedule .items .item .date {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 28px;
}
.section--events .view .events .event .schedule .items .item .name {
  margin-bottom: 28px;
  font-weight: bold;
}
@media (max-width: 1180px) {
  .section--events .view .events .event .schedule .items .item .name {
    font-size: min(6vw, 32px);
    line-height: 1.7;
  }
}
@media (min-width: 1181px) {
  .section--events .view .events .event .schedule .items .item .name {
    font-size: min(1.8vw, 26px);
    line-height: 1.5769230769;
  }
}
.section--events .view .events .event .schedule .items .item .logo {
  aspect-ratio: 1/1;
  width: 150px;
  margin: 0 auto 28px;
}
.section--events .view .events .event .schedule .items .item .caption {
  font-size: 16px;
  text-align: left;
}
@media (max-width: 1180px) {
  .section--events .view .events .event .schedule .items .item .caption {
    line-height: 1.8;
  }
}
@media (min-width: 1181px) {
  .section--events .view .events .event .schedule .items .item .caption {
    line-height: 1.75;
  }
}
.section--events .view .events .event .schedule .items .item .social-account {
  text-align: left;
}
@media (max-width: 1180px) {
  .section--events .view .events .event .schedule .items .item .social-account {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.6;
  }
}
@media (min-width: 1181px) {
  .section--events .view .events .event .schedule .items .item .social-account {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.section--events .view .events .event .schedule .items .item .social-account .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section--events .view .events .event .schedule .items .item .social-account .instagram a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  text-decoration: none;
}
.section--events .view .events .event .schedule .items .item .social-account .instagram a::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-black);
}
.section--events .view .events .event .schedule .items .item .social-account .instagram a .icon {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 2px;
}
.section--access {
  color: var(--color-white);
}
@media (max-width: 1080px) {
  .section--access {
    padding: 80px 0 90px;
  }
}
@media (min-width: 1081px) {
  .section--access {
    padding: 120px 0;
  }
}
.section--access .view {
  max-width: 980px;
}
@media (max-width: 1080px) {
  .section--access .view .title {
    width: min(52vw, 316px);
    margin: 0 auto 70px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .title {
    width: min(30vw, 316px);
    margin: 0 auto 100px;
  }
}
.section--access .view .title .image {
  aspect-ratio: 316/86;
}
@media (min-width: 1081px) {
  .section--access .view .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.section--access .view .layout .information .name {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 50px;
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .name {
    font-size: min(5.2vw, 32px);
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information .name {
    font-size: 28px;
  }
}
.section--access .view .layout .information .item {
  line-height: 1.6;
  margin-bottom: 40px;
}
.section--access .view .layout .information .item .label {
  font-weight: bold;
  margin-bottom: 0.2em;
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .item .label {
    font-size: 16px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information .item .label {
    font-size: 18px;
  }
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .item .text {
    font-size: 15px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information .item .text {
    font-size: 16px;
  }
}
.section--access .view .layout .information .item a {
  display: inline-block;
  color: var(--color-white);
  text-decoration: underline;
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .item a {
    margin-top: 0.2em;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information .item a {
    margin-top: 0.6em;
  }
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .links {
    margin-bottom: 40px;
  }
}
.section--access .view .layout .information .links .link {
  line-height: 1.6;
  color: var(--color-white);
  text-decoration: underline;
}
@media (max-width: 1080px) {
  .section--access .view .layout .information .links .link {
    font-size: 16px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .information .links .link {
    font-size: 18px;
  }
}
@media (min-width: 1081px) {
  .section--access .view .layout .maps {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.section--access .view .layout .maps iframe {
  width: 100%;
  -webkit-filter: saturate(0);
          filter: saturate(0);
}
@media (max-width: 641px) {
  .section--access .view .layout .maps iframe {
    aspect-ratio: 1/1;
    height: auto;
  }
}
/*
footer
*/
@media (max-width: 640px) {
  .footer {
    padding: 110px 0 40px;
  }
}
@media (min-width: 641px) {
  .footer {
    padding: 120px 0 80px;
  }
}
.footer .view .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
.footer .view .layout .logo {
  aspect-ratio: 240/33.38;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .footer .view .layout .logo {
    width: 53vw;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .logo {
    width: 240px;
  }
}
.footer .view .layout .online-store {
  width: 100%;
}
@media (max-width: 640px) {
  .footer .view .layout .online-store {
    margin-bottom: 30px;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .online-store {
    margin-bottom: 40px;
  }
}
.footer .view .layout .online-store a {
  border: 1px solid var(--color-white);
  border-radius: 5px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  color: var(--color-white);
  text-decoration: none;
}
@media (max-width: 640px) {
  .footer .view .layout .online-store a {
    width: 295px;
    height: 38px;
    font-size: 16px;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .online-store a {
    width: 100%;
    height: 48px;
    font-size: 20px;
  }
}
.footer .view .layout .online-store a .icon {
  aspect-ratio: 1/1;
}
@media (max-width: 640px) {
  .footer .view .layout .online-store a .icon {
    width: 15px;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .online-store a .icon {
    width: 20.5px;
  }
}
.footer .view .layout .social-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .footer .view .layout .social-account {
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .social-account {
    gap: 35px;
    margin-bottom: 60px;
  }
}
.footer .view .layout .social-account .sns {
  width: auto;
}
@media (max-width: 640px) {
  .footer .view .layout .social-account .sns {
    height: 30px;
  }
}
@media (min-width: 641px) {
  .footer .view .layout .social-account .sns {
    height: 35px;
  }
}
.footer .view .layout .social-account .sns-x {
  aspect-ratio: 31/35;
}
.footer .view .layout .social-account .sns-facebook {
  aspect-ratio: 36/35;
}
.footer .view .layout .social-account .sns-instagram {
  aspect-ratio: 33/35;
}
.footer .view .layout .social-account .sns-note {
  aspect-ratio: 76.47/35;
}
.footer .view .layout .copywrite {
  font-size: 12px;
  color: var(--color-white);
}