@charset "UTF-8";
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: フォント指定*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #c5c5c5;
  --light_gray: #e7e7e7;
  --red: #e73820;
  --yellow: #fff251;
  --blue: #036eb7;
  --green: #8dc21f;
  --pink: #ea6da4;
  --bg_color: #f9f1e7;
  --color1: #004a7a;
  --font-family: "Zen Maru Gothic", sans-serif;
  --font-family-gothic: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

/* Body要素の背景色 */
/* Body要素の文字色 */
/*index: コンテンツ幅 */
/* リセット用のプレイスフォルダ */
body, html, div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-feature-settings: "palt" on;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

body, html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: var(--black);
}
body a {
  color: var(--red);
}
body a:hover {
  color: var(--red);
}
body a:active {
  color: var(--red);
}

body {
  font-family: var(--font-family-gothic);
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
}

/* リセット処理関数 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

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

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

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

/* __10: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
:root {
  --width: 2000;
  --font-size-xxx-large: clamp(34 * 0.05rem, calc(34 / var(--width)) * 100vw, 34 * 0.1rem);
  --font-size-xx-large: clamp(32 * 0.05rem, calc(32 / var(--width)) * 100vw, 32 * 0.1rem);
  --font-size-x-large: clamp(30 * 0.05rem, calc(30 / var(--width)) * 100vw, 30 * 0.1rem);
  --font-size-large: clamp(28 * 0.05rem, calc(28 / var(--width)) * 100vw, 28 * 0.1rem);
  --font-size-medium: clamp(23 * 0.05rem, calc(23 / var(--width)) * 100vw, 23 * 0.1rem);
  --font-size-small: clamp(21 * 0.05rem, calc(21 / var(--width)) * 100vw, 21 * 0.1rem);
  --font-size-x-small: clamp(18 * 0.05rem, calc(18 / var(--width)) * 100vw, 18 * 0.1rem);
  --font-size-xx-small: clamp(14 * 0.05rem, calc(14 / var(--width)) * 100vw, 14 * 0.1rem);
}

@media only screen and (max-width: 768px) {
  :root {
    --width: 750;
  }
}
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  font-feature-settings: "palt" on;
  word-break: break-all;
  line-break: strict;
}

::-webkit-scrollbar {
  display: none;
}

body {
  font-size: 1.6rem;
  background: #fff;
}
@media only screen and (max-width: 960px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.open {
  overflow: hidden;
  touch-action: pinch-zoom;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

figure {
  margin: 0;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    min-height: 100vh;
  }
}

main {
  width: 100%;
  min-width: 0;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .nosp {
    display: none !important;
  }
}

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

.anchor {
  display: block;
  padding-top: 2rem;
  margin-top: -2rem;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .anchor {
    padding-top: 2rem;
    margin-top: -2rem;
  }
}

.nopost-wrapper {
  width: 100%;
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .nopost-wrapper {
    padding: 3rem 0;
  }
}
.nopost {
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.container {
  width: 100%;
  padding-left: clamp(1.5rem, 4%, 3rem);
  padding-right: clamp(1.5rem, 4%, 3rem);
}

.image {
  overflow: hidden;
}

a svg {
  fill: #1a1311;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover svg {
    fill: var(--yellow);
  }
}

/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* blocks */
/* 目次 */
/* __00: blocksファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: blocksファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* header */
/* 目次 */
/* __0: 共通設定 */
/* __10: ロゴ */
/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __0: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#header {
  z-index: 100;
  position: fixed;
}

.site-header {
  width: 100%;
  height: 100%;
  padding: clamp(2rem, 8vh, 8rem) 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
}
.site-header::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .site-header {
    display: block;
    padding: 0;
  }
}

/* __10: ロゴ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.site-header__logo {
  position: fixed;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: calc((100% - 37.5vw) / 2);
  height: 100vh;
}
@media screen and (min-width: 2001px) {
  .site-header__logo {
    width: calc((100vw - 750px) / 2);
  }
}
@media screen and (max-width: 1000px) {
  .site-header__logo {
    width: calc((100vw - 375px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .site-header__logo {
    position: relative;
    display: block;
    text-align: center;
    margin: 5rem auto 0;
    width: 100%;
    height: auto;
  }
}
.site-header__logo .sitelogo {
  width: 80%;
  max-width: 412px;
}
@media only screen and (max-width: 768px) {
  .site-header__logo .sitelogo {
    width: 54.9333333333vw;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 0 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .site-header__logo h1 {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  #site-h__logo {
    display: none;
  }
}

/* __30: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション */
.site-header__drawer-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  overflow: hidden;
  z-index: 999;
  background: url(../images/bg.jpg) no-repeat center/cover;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
}
.site-header__drawer-nav .drawer-nav__inner {
  margin: 0 auto;
  position: relative;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 5.3333333333vw;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.site-header__drawer-nav .drawer-nav__inner::-webkit-scrollbar {
  display: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: グローバルナビ */
.site-header__grobal-nav {
  position: fixed;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: calc((100% - 37.5vw) / 2);
  height: 100vh;
}
@media screen and (min-width: 2001px) {
  .site-header__grobal-nav {
    width: calc((100vw - 750px) / 2);
  }
}
@media screen and (max-width: 1000px) {
  .site-header__grobal-nav {
    width: calc((100vw - 375px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .site-header__grobal-nav {
    display: none;
  }
}

.grobal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .grobal-nav {
    padding-bottom: 6rem;
  }
}
.grobal-nav li:first-child {
  padding-bottom: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
  text-align: center;
}
.grobal-nav li:first-child img {
  width: fit-content;
  height: clamp(0.7rem, 0.7vw, 1.4rem);
}
.grobal-nav li:nth-child(5) a img {
  height: clamp(1rem, 1vw, 2rem);
}
.grobal-nav li:last-child a {
  background-color: #eb6b5a;
}
@media only screen and (max-width: 768px) {
  .grobal-nav li:first-child img {
    height: clamp(1.65rem, 4.4vw, 3.3rem);
  }
  .grobal-nav li:nth-child(4) a img {
    height: clamp(1.5rem, 4vw, 3rem);
  }
  .grobal-nav li:nth-child(5) a img {
    height: clamp(1.65rem, 4.4vw, 3.3rem);
  }
}
.grobal-nav a {
  background-color: var(--white);
  border: 1px solid var(--black);
  border-radius: 100vw;
  display: block;
  padding: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  text-align: center;
}
.grobal-nav a .label {
  display: block;
}
.grobal-nav a img {
  width: fit-content;
  height: clamp(1.15rem, 1.15vw, 2.3rem);
}
@media only screen and (max-width: 768px) {
  .grobal-nav a img {
    height: clamp(1.65rem, 4.4vw, 3.3rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .grobal-nav a:hover {
    opacity: 0.8;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: オープン時 */
body.open .site-header__drawer-nav {
  pointer-events: all;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
}
body.open .site-header__drawer-nav .drawer-nav__inner {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}
body.open .site-header__tool-nav .tool-nav li a {
  color: var(--white);
}
body.open .site-header__tool-nav .tool-nav li a .label::before {
  background-color: var(--white);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* header */
/* 目次 */
/* __0: 共通設定 */
/* __10: ロゴ */
/* __20: 外部ファイル読み込み

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __0: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
.site-footer {
  background: linear-gradient(90deg, rgb(141, 194, 31) 0%, rgb(94, 190, 177) 100%);
  padding-block: clamp(4.25rem, 85 / var(--width) * 100vw, 8.5rem);
  position: relative;
  overflow: hidden;
}
.site-footer__nav {
  padding-left: clamp(2.5rem, 6.6666666667%, 5rem);
  padding-right: clamp(2.5rem, 6.6666666667%, 5rem);
}
.site-footer__nav .txt_box {
  padding-top: clamp(2.25rem, 45 / var(--width) * 100vw, 4.5rem);
}
.site-footer__nav .txt_box:first-of-type {
  border-bottom: 1px solid var(--white);
  padding-bottom: clamp(2.25rem, 45 / var(--width) * 100vw, 4.5rem);
  padding-top: 0;
}
.site-footer__nav .txt_box p {
  color: var(--white);
  font-size: clamp(16px, 25 / var(--width) * 100vw, 2.5rem);
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
.site-footer__nav .txt_box p.text1 {
  font-size: clamp(20px, 31 / var(--width) * 100vw, 3.1rem);
}
.site-footer__nav .txt_box p.text2 {
  font-size: clamp(14px, 20 / var(--width) * 100vw, 2rem);
}
.site-footer__nav .contact_box {
  padding-top: clamp(2.25rem, 45 / var(--width) * 100vw, 4.5rem);
}
.site-footer__nav .contact_box p {
  color: var(--white);
  font-size: clamp(12px, 16 / var(--width) * 100vw, 1.6rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.site-footer__nav .contact_box p.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(25px, 40 / var(--width) * 100vw, 4rem);
}
@media only screen and (max-width: 768px) {
  .site-footer__nav .contact_box img {
    width: 28px;
    height: 18px;
  }
}
.site-footer .copy {
  color: var(--white);
  font-size: clamp(0.75rem, 15 / var(--width) * 100vw, 1.5rem);
  margin-bottom: 0;
  text-align: center;
}

#totop {
  right: clamp(1.25rem, 25 / var(--width) * 100vw, 2.5rem);
  bottom: clamp(12rem, 240 / var(--width) * 100vw, 24rem);
}

/* __20: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: moduleファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* animation */
/* 目次 */
/* __00: 初期設定 */
/* __10: ホバー */
/* __20: スプラッシュ */
/* __30: マスク */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.hintBrowser {
  will-change: transform, opacity;
}

.fadein {
  will-change: opacity;
}
.fadein__train {
  will-change: opacity;
}

.parallaxImg {
  will-change: transform;
  transform: scale(1.2);
}

.slide__left, .slide__up__train {
  will-change: transform;
}

.cover__create {
  position: relative;
}
.cover__create > span.cover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  will-change: transform;
}

/* __10: ホバー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.hover.--underline {
  position: relative;
  background: linear-gradient(transparent, var(--yellow)) 0 100%/0 2px no-repeat;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.hover.--underline::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--yellow);
  will-change: transform;
  transform-origin: right;
  transform: scaleX(0);
}
@media (hover: hover) and (pointer: fine) {
  .hover.--underline:hover {
    background-size: 100% 2px;
    color: var(--yellow);
  }
}
.hover.--underline-label .label {
  display: inline;
  position: relative;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.hover.--underline-label .label::before {
  position: absolute;
  content: "";
  display: block;
  width: 0%;
  height: 40%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--white);
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media (hover: hover) and (pointer: fine) {
  .hover.--underline-label:hover .label::before {
    width: 100%;
  }
}
@media only screen and (hover: hover) and (pointer: fine) and (max-width: 960px) {
  .hover.--underline-label:hover .label::before {
    display: none;
  }
}
.hover.--underline-bg {
  display: inline;
  transition: background-size 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  background-repeat: no-repeat;
  background-position: right bottom 2px;
  background-size: 0% 1px;
}
.hover.--underline-bg:hover {
  background-position: left bottom 2px;
  background-size: 100% 1px;
}

/* __20: スプラッシュ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#splash {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background: var(--bg_color);
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  pointer-events: none;
  clip-path: inset(0);
}
#splash img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 183px;
  height: 113px;
}
#splash.active {
  transition: clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  clip-path: inset(0 0 0 100%);
}
#splash.visited {
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  clip-path: inset(0 0 0 100%);
}
#lower #splash.visited {
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#lower #splash {
  display: none;
}
#lower #splash img {
  display: none;
}

/* __30: マスク */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#mask {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background: var(--white);
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100lvh;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
}
#lower #mask {
  display: none;
}
#mask.active {
  clip-path: inset(0);
}

.drawer-nav-btn {
  all: unset;
  position: fixed;
  right: 10px;
  bottom: 15px;
  z-index: 1000;
  display: none;
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
@media only screen and (max-width: 768px) {
  .drawer-nav-btn {
    display: block;
  }
}
.drawer-nav-btn .d-btn__toggle_box {
  cursor: pointer;
  height: 70px;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 0;
  background: #eb6b5a;
  border-radius: 999px;
  text-align: center;
}
.drawer-nav-btn .d-btn__toggle_line {
  will-change: transform;
  transform: rotateZ(0);
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
  width: 40px;
  height: 2px;
  background: var(--white);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(1) {
  top: 22px;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(2) {
  top: 32px;
}
.drawer-nav-btn .d-btn__label {
  font-size: 1.4rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: block;
  position: relative;
  width: 100%;
  transform: scale(0.8);
}
.drawer-nav-btn .d-btn__label span {
  will-change: transform;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
  width: 100%;
  display: block;
  color: var(--white);
}
.drawer-nav-btn .d-btn__label .--close {
  opacity: 0;
}

/* __10: ハンバーガーメニュー - open*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.drawer-nav-btn.open .d-btn__toggle_line {
  top: 27px;
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(1) {
  transform: rotateZ(18deg);
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(2) {
  transform: rotateZ(-18deg);
}
.drawer-nav-btn.open .d-btn__label .--open {
  opacity: 0;
}
.drawer-nav-btn.open .d-btn__label .--close {
  opacity: 1;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* totop */
/* 目次 */
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#totop {
  all: unset;
  display: none;
  position: fixed;
  position: absolute;
  right: 10px;
  bottom: 40px;
  width: 4.9vw;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 99;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  #totop {
    width: 13.0666666667vw;
    bottom: 3rem;
  }
}

/* ゆらゆらアニメーション */
@keyframes sway {
  /* 最初と最後の位置 */
  0%, 100% {
    transform: translateY(0px);
  }
  /* 途中の位置 */
  50% {
    transform: translateY(10px);
  }
}
@keyframes swayReverse {
  /* 最初と最後の位置 */
  0%, 100% {
    transform: translateY(10px);
  }
  /* 途中の位置 */
  50% {
    transform: translateY(0px);
  }
}
body {
  background: url(../images/bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}

.body__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}
.body__bg {
  position: fixed;
  inset: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .body__bg {
    display: none;
  }
}
.body__bg img {
  width: 100%;
  height: auto;
}

#wrapper {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
    box-shadow: unset;
    overflow-x: visible;
  }
}

.button {
  background: var(--color1);
  border: 2px solid var(--color1);
  border-radius: 100vw;
  color: var(--white);
  display: block;
  font-size: clamp(2.5rem, 2.5vw, 10rem);
  padding: 0.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background: var(--white);
  color: var(--color1);
}
@media only screen and (max-width: 768px) {
  .button {
    border-width: 1px;
    font-size: clamp(1.75rem, 4.6666666667vw, 3.5rem);
  }
}

.button-wrapper {
  width: 70%;
  margin: 0 auto;
}

.copy {
  font-size: var(--font-size-x-small);
  margin: clamp(2.5rem, 50 / var(--width) * 100vw, 5rem) 0;
  color: var(--color1);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -1px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: header */
.site-header {
  all: unset;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: mv */
.site-mv {
  position: relative;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: event */
.block.--event {
  background-color: var(--white);
}
.block.--event .container {
  padding: 0;
  position: relative;
}
.block.--event .event_01_img {
  background-color: var(--white);
  overflow: hidden;
  padding-bottom: 10px;
  position: relative;
}
.block.--event .event_01_img img {
  transform: scale(0.9999) translate(0.9px, -1px);
}
.block.--event .event_01_img_icon {
  position: absolute;
  aspect-ratio: 117/100;
  width: 17%;
  height: fit-content;
  bottom: 42%;
  left: -20px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .block.--event .event_01_img_icon {
    width: 13%;
    left: 0%;
  }
}
.block.--event .event_02_img {
  background-color: var(--white);
  padding-top: 10px;
}
.block.--event.--bg-color-event {
  background: linear-gradient(180deg, rgb(250, 241, 117) 0%, rgb(186, 220, 246) 100%);
  padding-bottom: 2em;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ticket */
.block.--ticket {
  background-color: var(--blue);
  padding-block: clamp(2rem, 40 / var(--width) * 100vw, 4rem);
}
.block.--ticket .ticket_title {
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-size: clamp(17px, 27 / var(--width) * 100vw, 2.7rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: clamp(0.75rem, 15 / var(--width) * 100vw, 1.5rem);
  padding-block: clamp(0.25rem, 5 / var(--width) * 100vw, 0.5rem);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .block.--ticket .ticket_title {
    margin-bottom: 10px;
  }
}
.block.--ticket .ticket_box li {
  color: var(--white);
  font-size: clamp(18px, 30 / var(--width) * 100vw, 3rem);
  font-weight: bold;
  line-height: 1.5;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: schedule */
.block.--schedule {
  background-color: var(--white);
  padding-top: clamp(3.5rem, 70 / var(--width) * 100vw, 7rem);
}
.block.--schedule .schedule_img {
  margin: auto;
  width: 75%;
}
.block.--schedule .container {
  min-width: 0;
}
.block.--schedule .schedule-scroll {
  margin-top: clamp(1rem, 20 / var(--width) * 100vw, 2rem);
}
.block.--schedule .schedule-wrapper {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.block.--schedule .schedule-wrapper::-webkit-scrollbar {
  display: none;
}
.block.--schedule .schedule-wrapper_img {
  display: block;
  width: 1557px;
  min-width: 1557px;
}
.block.--schedule .schedule-wrapper_img img {
  display: block;
  max-width: none;
  width: 1557px;
  height: auto;
}
.block.--schedule .schedule-scrollbar {
  display: none;
  margin-top: 10px;
}
.block.--schedule .schedule-scrollbar[hidden] {
  display: none !important;
}
.block.--schedule .schedule-scrollbar__track {
  position: relative;
  height: 14px;
  background: var(--light_gray);
  border-radius: 7px;
  cursor: pointer;
}
.block.--schedule .schedule-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  min-width: 48px;
  background: var(--gray);
  border-radius: 7px;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.block.--schedule .schedule-scrollbar__thumb:hover {
  background: #999;
}
.block.--schedule .schedule-scrollbar__thumb.is-dragging {
  cursor: grabbing;
  background: #777;
}
@media (min-width: 769px) {
  .block.--schedule .schedule-scrollbar:not([hidden]) {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .block.--schedule .schedule_img {
    width: 100%;
  }
  .block.--schedule .schedule-scrollbar {
    display: none !important;
  }
  .block.--schedule .schedule-wrapper_img {
    width: 810px;
    min-width: 810px;
  }
  .block.--schedule .schedule-wrapper_img img {
    width: 810px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: access */
.block.--access {
  background-color: var(--white);
  padding-block: clamp(4.25rem, 85 / var(--width) * 100vw, 8.5rem);
}
.block.--access .block-title {
  background-color: #faf160;
  border: 1px solid var(--black);
  border-radius: 40px;
  font-size: clamp(22px, 36 / var(--width) * 100vw, 3.6rem);
  font-weight: bold;
  margin-bottom: clamp(2rem, 40 / var(--width) * 100vw, 4rem);
  text-align: center;
}
.block.--access .map {
  height: 800px;
}
.block.--access .map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .block.--access .map {
    height: 400px;
  }
}
.block.--access .access_box {
  padding-block: clamp(2rem, 40 / var(--width) * 100vw, 4rem);
}
.block.--access .access_box figure {
  max-width: 510px;
  margin: auto;
  width: 80%;
}
.block.--access .access_box p {
  font-size: clamp(14px, 16 / var(--width) * 100vw, 1.6rem);
  margin-block: clamp(1rem, 20 / var(--width) * 100vw, 2rem);
  line-height: 1.5;
  text-align: center;
}
.block.--access .access_box ul {
  display: grid;
  gap: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
}
.block.--access .access_box ul li {
  display: flex;
  justify-content: center;
  gap: clamp(0.25rem, 5 / var(--width) * 100vw, 0.5rem);
  font-size: clamp(14px, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .block.--access .access_box ul li {
    justify-content: flex-start;
    line-height: 1.5;
    gap: 10px;
  }
}
.block.--access .bus_box {
  background-color: var(--yellow);
  border-radius: 50px;
  padding-block: clamp(2rem, 40 / var(--width) * 100vw, 4rem);
}
.block.--access .bus_box p {
  font-size: clamp(14px, 20 / var(--width) * 100vw, 2rem);
  line-height: 1.7;
  text-align: center;
}
.block.--access .bus_box p.bus_box_title {
  color: #e76c65;
  font-size: clamp(25px, 40 / var(--width) * 100vw, 4rem);
  font-weight: bold;
  line-height: 1.5;
}
.block.--access .bus_box p.bus_box_text {
  margin-bottom: clamp(1rem, 20 / var(--width) * 100vw, 2rem);
}
@media only screen and (max-width: 768px) {
  .block.--access .bus_box {
    border-radius: 18px;
  }
}

.acdn-toggle {
  appearance: none;
  border: 2px solid #40210f;
  border-width: 0 2px 2px;
  background: #f6b897;
  font-size: var(--font-size-medium);
  font-weight: 500;
  line-height: 2;
  width: 100%;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.acdn-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  left: auto;
  right: 3.1446540881%;
  margin: auto;
  background: var(--white);
  width: 4.4025157233%;
  height: 28.8888888889%;
  transition: 0.3s;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.acdn-toggle.is-active {
  border-width: 2px 2px 0;
}
.acdn-toggle.is-active::before {
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media (hover: hover) and (pointer: fine) {
  .acdn-toggle:hover {
    border-width: 2px 2px 0;
  }
}

.acdn-box {
  display: none;
}

.acdn-content {
  background: rgba(255, 255, 255, 0.6);
  padding: clamp(1.25rem, 25 / var(--width) * 100vw, 2.5rem) clamp(1.75rem, 35 / var(--width) * 100vw, 3.5rem);
  font-size: var(--font-size-x-small);
}
.acdn-content hr {
  border: unset;
  height: 2px;
  background: var(--black);
}
.acdn-content .note {
  padding-left: 1em;
  text-indent: -1em;
  margin-left: 1.5em;
  margin-top: 0.5em;
}
.acdn-content .data {
  display: grid;
  gap: 1em;
}
.acdn-content .data dt span {
  color: var(--white);
}
.acdn-content .data dd {
  padding-left: 1.5em;
  line-height: 1.7894736842;
  letter-spacing: -0.02em;
}
.acdn-content .data dd a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .acdn-content .data dd a:hover {
    color: var(--pink);
    text-decoration: underline;
  }
}
.acdn-content .date {
  text-align: center;
}/*# sourceMappingURL=style.css.map */