@charset "UTF-8";
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: フォント指定*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
:root {
  --white: #fff;
  --black: #40210f;
  --gray: #c5c5c5;
  --light_gray: #e7e7e7;
  --red: #e73828;
  --yellow: #d1950b;
  --blue: #2660ab;
  --green: #8dc21f;
  --pink: #ea6da4;
  --bg_color: #f9f1e7;
  --font-family: "GenJyuuGothic", 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 {
  -moz-text-size-adjust: 100%;
       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: #ea6da4;
}
body a:active {
  color: var(--red);
}

body {
  font-family: var(--font-family);
  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;
}
html::-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%;
  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 {
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.nopost-wrapper {
  width: 100%;
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .nopost-wrapper {
    padding: 3rem 0;
  }
}

.container {
  width: 100%;
  padding-left: clamp(2.5rem, 6.6666666667%, 5rem);
  padding-right: clamp(2.5rem, 6.6666666667%, 5rem);
}

.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;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: calc((100% - 37.5vw) / 2);
  height: 50vh;
}
@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: 600px;
}
@media only screen and (max-width: 768px) {
  .site-header__logo .sitelogo {
    width: 61.3333333333vw;
    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: rgba(236, 245, 250, 0.9);
  pointer-events: none;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s, -webkit-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;
  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__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 {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .grobal-nav {
    padding-bottom: 6rem;
  }
}
.grobal-nav > li {
  padding: 2rem 0;
}
.grobal-nav a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #e74128;
  font-size: clamp(1.65rem, 1.65vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media only screen and (max-width: 768px) {
  .grobal-nav a {
    font-size: clamp(1.65rem, 4.4vw, 3.3rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .grobal-nav a:hover {
    color: #e74128;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: オープン時 */
body.open .site-header__drawer-nav {
  pointer-events: all;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1), -webkit-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);
}

/* __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;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#splash img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 183px;
  height: 113px;
}
#splash.active {
  transition: -webkit-clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s, -webkit-clip-path 3s cubic-bezier(0.23, 1, 0.32, 1) 2s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
#splash.visited {
  transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
#lower #splash.visited {
  transition: -webkit-clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-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;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: clip-path 1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-clip-path 1s cubic-bezier(0.23, 1, 0.32, 1);
}
#lower #mask {
  display: none;
}
#mask.active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.drawer-nav-btn {
  all: unset;
  position: fixed;
  left: 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: #007cc2;
  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: #fff;
  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: #fff;
}
.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: #ffef7d;
}
body::after {
  position: fixed;
  content: "";
  background-image: url(../assets/images/gimonhunter/bg03.png);
  background-size: cover;
  background-position: 0 0;
  width: 100%;
  height: 100vh;
  top: 0;
}

.body__bg {
  position: fixed;
  inset: 0;
  margin: auto;
}
.body__bg::before {
  content: "";
  position: absolute;
  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);
  background: #ffef7d;
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
    box-shadow: unset;
  }
}

.button {
  background: #004a7a;
  border: 2px solid #004a7a;
  border-radius: 100vw;
  color: var(--white);
  display: block;
  font-size: clamp(1.65rem, 1.65vw, 6.6rem);
  padding: 0.5rem 0;
  letter-spacing: -0.02rem;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background: var(--white);
  color: #004a7a;
}
@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: #004a7a;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -1px;
}

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

.grobal-nav {
  gap: clamp(2.5rem, 50 / var(--width) * 100vw, 5rem);
  display: grid;
}
.grobal-nav li {
  display: flex;
  align-items: center;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .grobal-nav li {
    padding: 0 15%;
  }
}
.grobal-nav li .icon {
  width: 20px;
  height: 30px;
  margin-right: 10px;
}
.grobal-nav a span {
  color: #182987 !important;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .grobal-nav a:hover span {
    color: var(--pink) !important;
  }
}

.fix_nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
}
@media only screen and (max-width: 768px) {
  .fix_nav {
    width: 100%;
  }
}
.fix_nav a {
  background: var(--green);
  color: var(--white) !important;
  font-size: var(--font-size-xx-large);
  line-height: 2.5;
  text-align: center;
  text-decoration: none;
}
.fix_nav a:first-child {
  background: var(--pink);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
.site-footer {
  position: relative;
  background-color: #c8e4ef;
  padding-bottom: 75px;
}
.site-footer .sitelogo {
  padding: var(--font-size-x-large);
  display: flex;
  align-items: flex-end;
  gap: 1em;
  font-size: var(--font-size-small);
}
.site-footer .sitelogo a {
  display: block;
}
.site-footer .meta {
  color: #231815;
  font-size: var(--font-size-xx-small);
  font-weight: bold;
  letter-spacing: 0.028em;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  padding: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
  padding: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
}
.site-footer .copyright {
  color: #231815;
  font-size: var(--font-size-xx-small);
  font-weight: bold;
  letter-spacing: 0.126em;
  text-align: center;
  padding: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
}
.site-footer .site-footer__nav {
  position: relative;
}
.site-footer .site-footer__nav .container .margin-wrapper {
  margin: 40px 0 0;
}
.site-footer .site-footer__nav .container p {
  font-size: var(--font-size-small);
  text-align: center;
  color: #231815;
  line-height: 1.4;
  font-weight: 700;
}
.site-footer .site-footer__nav .container p.contact {
  font-size: clamp(1.5rem, 1.5vw, 6rem);
  line-height: 1.4;
  text-align: left;
  width: 100%;
  margin: auto;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-footer .site-footer__nav .container p.tel {
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .site-footer .site-footer__nav .container p.tel {
    font-size: 30px;
  }
}

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

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: mv */
.site-mv {
  position: relative;
  margin-bottom: 40px;
}
.site-mv .logo {
  position: absolute;
  top: clamp(5.25rem, 105 / var(--width) * 100vw, 10.5rem);
  left: clamp(2rem, 40 / var(--width) * 100vw, 4rem);
  width: clamp(4.4rem, 88 / var(--width) * 100vw, 8.8rem);
}
.site-mv .mv_copy {
  color: #40210f;
  font-size: var(--font-size-x-large);
  font-weight: 900;
  text-align: center;
  padding: var(--font-size-x-large) 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: about */
.block.--about {
  padding: var(--font-size-x-large) 0;
}
.block.--about .title {
  margin-bottom: var(--font-size-medium);
}
.block.--about .title img {
  width: clamp(9.55rem, 191 / var(--width) * 100vw, 19.1rem);
  display: block;
  margin: auto;
}
.block.--about .title .label {
  display: block;
  background: #fff;
  color: #40210f;
  font-size: var(--font-size-xx-large);
  font-weight: 900;
  text-align: center;
}
.block.--about .lead {
  font-size: var(--font-size-medium);
  line-height: 2.2608695652;
  width: 95%;
  margin: auto;
}
.block.--about .lead b {
  color: var(--pink);
  font-weight: inherit;
}
.block.--about figure {
  padding: 20px 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: event */
.block.--event .event_list {
  display: grid;
  gap: 20px;
  margin: 30px 0 90px;
  position: relative;
}
.block.--event .event_list::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background-image: url(../assets/images/gimonhunter/title_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.block.--event .event_list.border-r::before {
  background-image: url(../assets/images/gimonhunter/title_02.svg);
}
.block.--event .event_list.border-g::before {
  background-image: url(../assets/images/gimonhunter/title_03.svg);
}
.block.--event .title {
  width: 100%;
  margin: auto;
  margin-bottom: clamp(3rem, 60 / var(--width) * 100vw, 6rem);
}
.block.--event .pr {
  position: relative;
}
.block.--event .grid {
  display: grid;
  grid-template-columns: 41.5384615385% 52.9230769231%;
  justify-content: space-between;
  position: relative;
}
.block.--event .grid .label {
  position: absolute;
  top: 2.3076923077%;
  width: 58.4615384615%;
}
.block.--event .grid .label img {
  width: 100%;
}
.block.--event .grid .image {
  background: #fff;
  border-radius: var(--font-size-x-large);
  padding: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
  display: grid;
  gap: clamp(0.5rem, 10 / var(--width) * 100vw, 1rem);
  grid-column: 2/3;
  grid-row: 1/3;
}
.block.--event .grid .image img {
  border-radius: var(--font-size-x-small);
}
.block.--event .grid .name {
  display: flex;
  align-items: center;
}
.block.--event .grid .name dt {
  padding-right: 1.5em;
  color: #e37d59;
  font-size: var(--font-size-x-small);
  white-space: nowrap;
}
.block.--event .grid .name dd {
  font-size: var(--font-size-medium);
  line-height: 125%;
}
.block.--event .grid .name dd span {
  font-size: 0.6666666667em;
  line-height: 1.1;
}
.block.--event .grid .data {
  margin-top: auto;
  grid-column: 1/2;
  grid-row: 2/3;
}
.block.--event .grid .data dl {
  display: grid;
  grid-template-columns: var(--font-size-medium) 1fr;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #40210f;
}
.block.--event .grid .data dl dt {
  padding-left: 2px;
  line-height: 1;
}
.block.--event .grid .data dl dd {
  font-size: var(--font-size-x-small);
}
.block.--event .grid .data dl dd span {
  font-size: 0.8em;
}
.block.--event .deco {
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}
.block.--event .deco i {
  display: inline-block;
  position: absolute;
}
.block.--event .item:nth-child(1) .label {
  width: 58.4615384615%;
}
.block.--event .item:nth-child(1) .deco i:nth-child(1) {
  top: 13.6286201022%;
  right: -3.8461538462%;
  width: 31.8461538462%;
}
.block.--event .item:nth-child(2) .label {
  width: 71.3846153846%;
}
.block.--event .item:nth-child(2) .deco i:nth-child(1) {
  top: 8.7108013937%;
  left: 5.3846153846%;
  width: 18.3076923077%;
}
.block.--event .item:nth-child(2) .deco i:nth-child(2) {
  top: 15.6794425087%;
  right: 8.4615384615%;
  width: 15.3846153846%;
}
.block.--event .item:nth-child(2) .deco i:nth-child(3) {
  top: 54.0069686411%;
  left: 31.5384615385%;
  width: 8.6153846154%;
}
.block.--event .item:nth-child(2) .deco i:nth-child(4) {
  bottom: -7.8397212544%;
  right: 0%;
  width: 8.9230769231%;
}
.block.--event .item:nth-child(3) .label {
  width: 50.4615384615%;
}
.block.--event .item:nth-child(3) .deco i:nth-child(1) {
  top: 11.3240418118%;
  left: 0.7692307692%;
  width: 21.5384615385%;
}
.block.--event .item:nth-child(3) .deco i:nth-child(2) {
  top: 15.6794425087%;
  right: -0.7692307692%;
  width: 25.5384615385%;
}
.block.--event .item:nth-child(3) .deco i:nth-child(3) {
  top: 54.8780487805%;
  left: 25.3846153846%;
  width: 23.0769230769%;
}
.block.--event .item:nth-child(4) .label {
  width: 58.7692307692%;
}
.block.--event .item:nth-child(4) .--life {
  margin-top: clamp(5rem, 100 / var(--width) * 100vw, 10rem);
}
.block.--event .item:nth-child(4) .deco i:nth-child(1) {
  top: 3.4843205575%;
  right: 1.5384615385%;
  width: 27.6923076923%;
}
.block.--event .item:nth-child(4) .deco i:nth-child(2) {
  top: 51.393728223%;
  left: 25.3846153846%;
  width: 20%;
}
.block.--event .item:nth-child(4) .deco i:nth-child(3) {
  bottom: -17.4216027875%;
  right: -6.9230769231%;
  width: 24.6153846154%;
}
.block.--event .item:nth-child(5) .label {
  width: 58.7692307692%;
}
.block.--event .item:nth-child(5) .deco i:nth-child(1) {
  top: 8.7108013937%;
  left: -6.9230769231%;
  width: 20.7692307692%;
}
.block.--event .item:nth-child(5) .deco i:nth-child(2) {
  top: 21.7770034843%;
  right: -3.0769230769%;
  width: 31.2307692308%;
}
.block.--event .item:nth-child(5) .deco i:nth-child(3) {
  top: 54.0069686411%;
  left: 33.8461538462%;
  width: 8.7692307692%;
}
.block.--event .--life {
  position: relative;
}
.block.--event .--life::before {
  content: "";
  position: absolute;
  width: clamp(4.15rem, 83 / var(--width) * 100vw, 8.3rem);
  aspect-ratio: 83/87;
  background-image: url(../images/deco/life2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  bottom: 0;
}
.block.--event .copy {
  font-size: var(--font-size-x-small);
  margin: clamp(2.5rem, 50 / var(--width) * 100vw, 5rem) 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: access */
.block.--access {
  background-color: #c8e4ef;
  padding: 70px 0;
}
.block.--access h2 {
  text-align: center;
  background-color: #fff;
  border-radius: 999px;
  padding: 5px 20px;
  color: #182987;
  font-size: var(--font-size-x-large);
  font-weight: 900;
  margin-bottom: 30px;
  border: 5px solid #182987;
}
.block.--access .map iframe {
  width: 100%;
  margin-bottom: 20px;
}
.block.--access .access-item.width-small {
  width: 78%;
  margin: 80px auto 20px;
}
@media only screen and (max-width: 768px) {
  .block.--access .access-item.width-small {
    margin-top: 40px;
  }
}
.block.--access .bus-miharu {
  background-color: #fff100;
  padding: 30px 0;
}
.block.--access .bus-miharu .bus-miharu-ttl p {
  font-size: clamp(2rem, 1.5vw, 6rem);
  font-weight: 900;
  color: #e60012;
  line-height: 1.2;
}
.block.--access .bus-miharu .bus-miharu-ttl span {
  text-align: center;
  display: block;
}
.block.--access .bus-miharu .bus-miharu-content {
  line-height: 1.4;
  padding: 20px 0 0;
}
.block.--access .bus-miharu p {
  text-align: center;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: workshop */
.block.--workshop {
  background-color: #182987;
  padding: 35px 0;
}
.block.--workshop .bg-white {
  background-color: #fff;
  padding: var(--font-size-x-large);
  border-radius: 30px;
}
.block.--workshop figure {
  padding: 20px 0;
}
.block.--workshop .workshop_list {
  display: grid;
  gap: 30px;
}
.block.--workshop .workshop_list figure {
  padding: 0;
}

.description {
  text-align: left;
  line-height: 1.3;
  color: #fff;
}

.description-wrapper {
  background-color: #e14738;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: raffle */
.block.--gourmet {
  background-color: #ffef7d;
  padding: 70px 0;
}
.block.--gourmet .bg-white {
  background-color: #fff;
  padding: var(--font-size-x-large);
  border-radius: 30px;
  border: 7px solid #f29600;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: schedule */
.block.--schedule {
  background-color: #fff;
  padding: 70px 0;
}
.block.--schedule .title {
  text-align: center;
  color: #41bade;
  font-size: clamp(1.2rem, 32 / var(--width) * 100vw, 3.2rem);
  margin-bottom: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .block.--schedule .title {
    font-size: 20px;
  }
}
.block.--schedule .chirashi-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .block.--schedule .chirashi-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.block.--schedule .chirashi-wrapper p {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .block.--schedule .chirashi-wrapper p {
    width: 100%;
  }
}
.block.--schedule .chirashi-wrapper p img {
  width: 100%;
  height: auto;
}

.schedule-item {
  margin: 40px 0;
}
.schedule-item .schedule-date {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 20px;
}

.table-wrapper {
  display: flex;
  width: 100%;
}

.fixed-column {
  flex: 0 0 200px; /* 固定幅。幅は調整可能 */
  background: #fff;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .fixed-column {
    flex: 0 0 150px;
  }
}

.scrollable-column {
  overflow-x: auto;
  width: 100%;
  white-space: nowrap;
}

.scroll-inner {
  display: flex; /* 横に並べる */
  white-space: nowrap;
}
.scroll-inner img {
  display: inline-block; /* 横並び対応 */
  max-width: none;
  width: 778px;
}
@media only screen and (max-width: 768px) {
  .scroll-inner img {
    width: 584px;
  }
}
.scroll-inner img.table-img02 {
  width: 782px;
}
@media only screen and (max-width: 768px) {
  .scroll-inner img.table-img02 {
    width: 588px;
  }
}

.btn {
  border: 5px solid #182987;
  background: #fff;
  border-radius: 999px;
  color: #182987;
  display: inline-block;
  line-height: 1.8;
  font-size: 112.5%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 10px 3em;
  min-width: 290px;
  transition-duration: 0.3s;
  position: relative;
  margin: 10px auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  .btn {
    border-width: 5px;
    min-width: unset;
    width: 100%;
    display: block;
    font-size: 87.5%;
    padding: 10px 0.5em;
  }
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #182987;
  transform: translateY(-50%);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: popup表示 */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 11111;
}
.popup .popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.popup .popup-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #004a7a;
  margin-bottom: 10px;
}
.popup .popup-content .popup-map-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
}
.popup .popup-content .popup-map-wrapper .popup-map {
  display: block;
  min-width: 700px;
  max-width: none;
  height: auto;
  overflow-x: auto;
}
.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #004a7a;
}

#site-mv {
  margin-top: clamp(2.5rem, 6.6666666667%, 5rem);
  background-image: url(../assets/images/gimonhunter/bg02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: auto;
  position: relative;
}

.--event .bg-white {
  background-color: #fff;
  padding: var(--font-size-x-large);
  border-radius: 30px;
}
.--event .bg-white.border-b {
  border: 7px solid #007cc2;
}
.--event .bg-white.border-r {
  border: 7px solid #e14738;
}
.--event .bg-white.border-g {
  border: 7px solid #2ca456;
}
.--event .item {
  margin-top: 20px;
}
.--event .item.border-dot {
  border-bottom: 7px dotted #007cc2;
  padding-bottom: 20px;
}
.--event .item.border-dot.red-dot {
  border-bottom: 7px dotted #e14738;
}

.--event02 {
  background-color: #41bade;
  padding: 35px 0;
}
.--event02 .event_list {
  background-color: #fff;
  border-radius: 30px;
}
.--event02 .event_list .item {
  padding: var(--font-size-x-large);
}
.--event02 .event_list .item .item-ttl {
  background-color: #ffef7d;
  color: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: clamp(0.9rem, 28 / var(--width) * 100vw, 2.2rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 15px 0;
  text-align: center;
}
.--event02 .event_list .item .item-ttl.color-a {
  background-color: #e4b124;
}
.--event02 .event_list .item .item-ttl.color-b {
  background-color: #754b36;
}
.--event02 .event_list .item .item-ttl.color-c {
  background-color: #64ac7b;
}
.--event02 .event_list .item .item-ttl.color-d {
  background-color: #db7c39;
}
.--event02 .event_list .item .item-ttl.color-e {
  background-color: #798979;
}
.--event02 .event_list .item .item-ttl.color-f {
  background-color: #19985a;
}
.--event02 .event_list .item .item-ttl.color-g {
  background-color: #a1a0a0;
}
.--event02 .event_list .item .item-ttl.color-h {
  background-color: #8ac2c3;
}
.--event02 .event_list .item .item-ttl.color-i {
  background-color: #1e7a9b;
}
.--event02 .event_list .item .item-ttl.color-j {
  background-color: #4f4689;
}
.--event02 .event_list .event02-header {
  background-color: #41bade;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  border-radius: 999px;
}
.--event02 .event_list .event02-header p {
  margin: 0;
  font-size: 1.1em;
  font-weight: normal;
  line-height: 1;
}
.--event02 .event_list .event02-content {
  display: flex;
  padding: 10px 0;
  align-items: center;
  gap: 12px;
}
.--event02 .event_list .event02-content .text-section {
  width: 65%;
}
.--event02 .event_list .event02-content .text-section .main-title {
  color: #00bcd4;
  font-size: clamp(0.9rem, 28 / var(--width) * 100vw, 2.2rem);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: bold;
}
.--event02 .event_list .event02-content .text-section .main-title.color-a {
  color: #e4b124;
}
.--event02 .event_list .event02-content .text-section .main-title.color-b {
  color: #754b36;
}
.--event02 .event_list .event02-content .text-section .main-title.color-c {
  color: #64ac7b;
}
.--event02 .event_list .event02-content .text-section .main-title.color-d {
  color: #db7c39;
}
.--event02 .event_list .event02-content .text-section .main-title.color-e {
  color: #798979;
}
.--event02 .event_list .event02-content .text-section .main-title.color-f {
  color: #19985a;
}
.--event02 .event_list .event02-content .text-section .main-title.color-g {
  color: #a1a0a0;
}
.--event02 .event_list .event02-content .text-section .main-title.color-h {
  color: #8ac2c3;
}
.--event02 .event_list .event02-content .text-section .main-title.color-i {
  color: #1e7a9b;
}
.--event02 .event_list .event02-content .text-section .main-title.color-j {
  color: #4f4689;
}
.--event02 .event_list .event02-content .text-section .main-title.color-k {
  color: #d7a98b;
}
.--event02 .event_list .event02-content .text-section .main-title.flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.--event02 .event_list .event02-content .text-section .main-title .date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 75%;
  border-radius: 999px;
  color: #fff;
  width: 24%;
}
.--event02 .event_list .event02-content .text-section .main-title .date.red {
  background-color: #e14738;
}
.--event02 .event_list .event02-content .text-section .main-title .date.blue {
  background-color: #007cc2;
}
.--event02 .event_list .event02-content .text-section .description {
  color: #333333;
  font-size: clamp(0.6rem, 28 / var(--width) * 100vw, 1.8rem);
  line-height: 1.6;
}
.--event02 .event_list .event02-content .image-section {
  width: 32%;
}
.--event02 .event_list .event02-content .image-section img {
  max-width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */