@charset "UTF-8";
@-webkit-keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
リセット
/***********************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

a, a:hover {
  text-decoration: none;
}

a > img, nav > img, li > img, div > img {
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

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

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
}
.clearfix:after {
  font-size: 0;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

body {
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div, h1, h2, h3, h4, h5, ul, ol, li, dl, dt, dd {
  position: relative;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

p, div, span {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

img,
a img {
  border: none;
  display: inline-block;
}

img {
  width: 100%;
  height: auto;
}

#wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.sp {
  display: none !important;
}
@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 1.25vw;
}

p {
  color: #3d272b;
}

.box {
  width: 100%;
}

.box-inner {
  width: 68.75%;
  margin: 0 auto;
}

.scroll-block {
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -o-transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1), -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -webkit-transform: translateY(2.5em);
      -ms-transform: translateY(2.5em);
          transform: translateY(2.5em);
  opacity: 0;
}
.scroll-block.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ------------------------
   Global Layout (em scaling)
   ------------------------ */
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  background: #f8dc8a;
}

/* Header */
.header {
  width: 100%;
  padding: 2em 4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
  background: #f8dc8a;
  -webkit-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 13em;
  pointer-events: all;
}
.header-logo img {
  width: 100%;
  height: auto;
}

.header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7em;
  list-style: none;
  pointer-events: all;
}
.header-menu:before {
  content: " ";
  display: block;
  width: 1px;
  height: 140%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}

.header-menu__item {
  font-weight: bold;
  font-size: 1.2em;
  padding-right: 0.7em;
}
.header-menu__item:first-child {
  padding-left: 0.7em;
}
.header-menu__item:before {
  content: " ";
  display: block;
  width: 1px;
  height: 140%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}
.header-menu__item a, .header-menu__item a:link, .header-menu__item a:visited {
  text-decoration: none;
  color: #008761;
}

.header-btn {
  width: 6.4vw;
  height: 3.5vw;
  gap: 14%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: absolute;
  right: 1.2vw;
  top: 0.4vw;
  pointer-events: all;
  cursor: pointer;
}
.header-btn > div {
  width: 100%;
  height: 16%;
  border-radius: 2vw;
  background-color: #fff;
  -webkit-transition: top 0.3s ease-out, bottom 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: top 0.3s ease-out, bottom 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header-btn.active > div {
  -webkit-transform: rotate(45deg) !important;
      -ms-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
  top: 43% !important;
}
.header-btn.active > div:nth-child(2) {
  -webkit-transform: translateY(-50%) scaleX(0.001) rotate(0deg) !important;
      -ms-transform: translateY(-50%) scaleX(0.001) rotate(0deg) !important;
          transform: translateY(-50%) scaleX(0.001) rotate(0deg) !important;
}
.header-btn.active > div:nth-child(3) {
  -webkit-transform: scaleX(1) rotate(-45deg) translateX(0%) !important;
      -ms-transform: scaleX(1) rotate(-45deg) translateX(0%) !important;
          transform: scaleX(1) rotate(-45deg) translateX(0%) !important;
  top: auto !important;
  bottom: 32% !important;
}

.header-sp-menu {
  width: 100%;
  height: 20vw;
  position: fixed;
  left: 0;
  top: 11vw;
  background: #f7d679;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 5;
}
.header-sp-menu.active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.header-sp-menu-list {
  font-size: 3.6vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-sp-menu__item {
  font-weight: 500;
}
.header-sp-menu__item a, .header-sp-menu__item a:link, .header-sp-menu__item a:visited {
  color: #007a53;
  text-decoration: none;
}
.header-sp-menu__item:before {
  content: " ";
  display: block;
  width: 1px;
  height: 140%;
  position: absolute;
  left: -3.5vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}
.header-sp-menu__item:last-child:after {
  content: " ";
  display: block;
  width: 1px;
  height: 140%;
  position: absolute;
  right: -3.5vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}

.main {
  padding-top: 6.4em;
}

/* KV Section */
.kv {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: #f8dc8a;
  text-align: center;
  position: relative;
}
.kv.show .kv__image img {
  opacity: 1;
}
.kv.show .kv__title img,
.kv.show .kv__title2 img {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.kv.show .kv__title3 {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.kv.show .kv-icon1,
.kv.show .kv-icon2,
.kv.show .kv-icon3 {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.kv__image {
  overflow: hidden;
}

.kv__image img {
  width: 100%;
  max-width: 90em;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  opacity: 0;
}
.kv__image img.pic1 {
  width: 26%;
  max-width: inherit;
  position: absolute;
  left: -27%;
  top: 4%;
  -webkit-animation: pic1 80s linear infinite;
          animation: pic1 80s linear infinite;
  -webkit-animation-delay: -20s;
          animation-delay: -20s;
}
.kv__image img.pic2 {
  width: 45%;
  max-width: inherit;
  position: absolute;
  right: 0;
  bottom: 12%;
}
.kv__image img.pic3 {
  width: 9%;
  max-width: inherit;
  position: absolute;
  left: -10%;
  top: 49.4%;
  -webkit-animation: pic3 45s linear infinite;
          animation: pic3 45s linear infinite;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}
.kv__image img.pic4 {
  width: 9%;
  max-width: inherit;
  position: absolute;
  left: 101%;
  top: 68%;
  -webkit-animation: pic4 30s linear infinite;
          animation: pic4 30s linear infinite;
  -webkit-animation-delay: -15s;
          animation-delay: -15s;
}
.kv__image img.pic5 {
  width: 16%;
  max-width: inherit;
  position: absolute;
  right: -18%;
  bottom: 11%;
  -webkit-animation: pic5 60s linear infinite;
          animation: pic5 60s linear infinite;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}
.kv__image img.pic6 {
  width: 12%;
  max-width: inherit;
  position: absolute;
  left: -14%;
  top: -1%;
  -webkit-animation: pic6 50s linear infinite;
          animation: pic6 50s linear infinite;
  -webkit-animation-delay: -25s;
          animation-delay: -25s;
}
.kv__image img.kv-icon1 {
  width: 8.5%;
  position: absolute;
  left: 12%;
  top: 42%;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  -o-transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  -webkit-transition-delay: 3s;
       -o-transition-delay: 3s;
          transition-delay: 3s;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}
.kv__image img.kv-icon2 {
  width: 8.5%;
  position: absolute;
  left: 62.8%;
  top: 23%;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  -o-transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  -webkit-transition-delay: 3.5s;
       -o-transition-delay: 3.5s;
          transition-delay: 3.5s;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}
.kv__image img.kv-icon3 {
  width: 8.5%;
  position: absolute;
  right: 2%;
  top: 37%;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  -o-transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  -webkit-transition-delay: 4s;
       -o-transition-delay: 4s;
          transition-delay: 4s;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}

@-webkit-keyframes pic1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(495%);
            transform: translateX(495%);
  }
}

@keyframes pic1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(495%);
            transform: translateX(495%);
  }
}
@-webkit-keyframes pic1sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(365%);
            transform: translateX(365%);
  }
}
@keyframes pic1sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(365%);
            transform: translateX(365%);
  }
}
@-webkit-keyframes pic3 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(1237%);
            transform: translateX(1237%);
  }
}
@keyframes pic3 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(1237%);
            transform: translateX(1237%);
  }
}
@-webkit-keyframes pic4 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1237%);
            transform: translateX(-1237%);
  }
}
@keyframes pic4 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1237%);
            transform: translateX(-1237%);
  }
}
@-webkit-keyframes pic4sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-950%);
            transform: translateX(-950%);
  }
}
@keyframes pic4sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-950%);
            transform: translateX(-950%);
  }
}
@-webkit-keyframes pic5 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-745%);
            transform: translateX(-745%);
  }
}
@keyframes pic5 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-745%);
            transform: translateX(-745%);
  }
}
@-webkit-keyframes pic6 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(965%);
            transform: translateX(965%);
  }
}
@keyframes pic6 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(965%);
            transform: translateX(965%);
  }
}
@-webkit-keyframes pic6sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(645%);
            transform: translateX(645%);
  }
}
@keyframes pic6sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(645%);
            transform: translateX(645%);
  }
}
.kv__title {
  width: 95%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.kv__title img {
  -webkit-transition: -webkit-clip-path 1s ease-out 2s;
  transition: -webkit-clip-path 1s ease-out 2s;
  -o-transition: clip-path 1s ease-out 2s;
  transition: clip-path 1s ease-out 2s;
  transition: clip-path 1s ease-out 2s, -webkit-clip-path 1s ease-out 2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.kv__title2 {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.kv__title2 img {
  -webkit-transition: -webkit-clip-path 1s ease-out 3s;
  transition: -webkit-clip-path 1s ease-out 3s;
  -o-transition: clip-path 1s ease-out 3s;
  transition: clip-path 1s ease-out 3s;
  transition: clip-path 1s ease-out 3s, -webkit-clip-path 1s ease-out 3s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.kv__title3 {
  width: 5.7%;
  position: absolute;
  right: 2.2%;
  top: 6%;
  -webkit-transition: -webkit-clip-path 1s ease-out 1s;
  transition: -webkit-clip-path 1s ease-out 1s;
  -o-transition: clip-path 1s ease-out 1s;
  transition: clip-path 1s ease-out 1s;
  transition: clip-path 1s ease-out 1s, -webkit-clip-path 1s ease-out 1s;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

/* Intro Section */
.intro {
  background: #f8dc8a;
  text-align: center;
  padding: 2em 0 2.1em;
}

.intro-title {
  width: 59.81em;
  margin: 0 auto -0.6em;
}
.intro-title img {
  width: 100%;
}

.intro-subtitle {
  font-size: 3em;
  color: #008761;
  font-weight: bold;
  margin-bottom: 0.98em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.intro-subtitle span {
  margin-right: -0.3em;
}

.intro-inner {
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -o-transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1), -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -webkit-transform: translateY(2.5em);
      -ms-transform: translateY(2.5em);
          transform: translateY(2.5em);
  opacity: 0;
}
.intro-inner.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.intro-text {
  width: 22em;
  margin: 0 auto;
}

.intro-lead {
  font-size: 1.9em;
  line-height: 1.8;
  font-weight: bold;
  color: #007151;
  letter-spacing: 0.05em;
}
.intro-lead span {
  margin-right: -0.3em;
}

/* Features Section */
.features {
  background: #f8dc8a;
  padding-bottom: 4.1em;
}

.feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6em;
  list-style: none;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -o-transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1), -webkit-transform 0.5s cubic-bezier(0.13, 0.38, 0.12, 1);
  -webkit-transform: translateY(2.5em);
      -ms-transform: translateY(2.5em);
          transform: translateY(2.5em);
  opacity: 0;
}
.feature-list.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.feature-item {
  text-align: center;
  width: 22em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}
.feature-item:nth-child(1) .feature-item__image {
  width: 7.12em;
}
.feature-item:nth-child(2) .feature-item__image {
  width: 4.81em;
}
.feature-item:nth-child(2) .feature-item__text {
  color: #4b9370;
}
.feature-item:nth-child(2) .feature-item__icon {
  background-color: #4b9370;
}
.feature-item:nth-child(3) .feature-item__text {
  color: #4b8cb2;
}
.feature-item:nth-child(3) .feature-item__icon {
  background-color: #4b8cb2;
}

.feature-item__icon {
  background: #da7c51;
  border: 1px solid #231815;
  color: #fff;
  border-radius: 50%;
  width: 5.88em;
  height: 5.88em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin: 0 auto 1.1em;
}

.feature-item__text {
  width: 16.2em;
  font-size: 1.1em;
  padding: 0.8em 0;
  margin: 0 auto;
  font-weight: bold;
  color: #da7c51;
  border-radius: 3em;
  line-height: 1.3;
  background-color: #fff;
}
.feature-item__text span {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

.feature-item__bg {
  width: 0.8em;
  margin-top: -0.45em;
  margin-bottom: 0.9em;
  left: 48%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.feature-item__bg img {
  display: block;
}

.feature-item__image {
  width: 11.12em;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feature-item__image img {
  width: 100%;
  height: auto;
}

/* Event List Section */
.events {
  background: #f8dc8a;
  padding: 0 2em 6em;
}

.events-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.events-tabs {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.events-tabs::before {
  content: " ";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #231815;
  z-index: 1;
}
.events-tabs::after {
  content: " ";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #231815;
  z-index: 1;
}

.events-tab {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33%;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  padding: 0.1em 0 0.2em;
  text-align: center;
  position: relative;
  -webkit-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}

.events-tab-1 {
  color: #da7c51;
}
.events-tab-1::before {
  content: " ";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #231815;
  z-index: 1;
}

.events-tab-2 {
  color: #4b9370;
}
.events-tab-2::before {
  content: " ";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #231815;
  z-index: 1;
}

.events-tab-3 {
  color: #4b8cb2;
}

.events-tab.is-active {
  background: #fff;
}

.events-content__inner {
  padding-bottom: 1.6em;
  background-color: #fff;
}

.events-column {
  width: 100%;
  display: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background: #fff;
  padding: 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.events-column.events-column--think .event-card__title,
.events-column.events-column--think .event-card__location {
  color: #008761;
}
.events-column.events-column--think .event-card__tag {
  border: 1px solid #008761;
  color: #008761;
}
.events-column.events-column--think .event-card__tag.event-card__tag--reserve {
  color: #fff;
  background: #008761;
}
.events-column.events-column--think .more-btn:after {
  background-image: url(../img/more-btn2.svg);
}
.events-column.events-column--make .event-card__title,
.events-column.events-column--make .event-card__location {
  color: #316ea4;
}
.events-column.events-column--make .event-card__tag {
  color: #316ea4;
  border: 1px solid #316ea4;
}
.events-column.events-column--make .event-card__tag.event-card__tag--reserve {
  color: #fff;
  background: #316ea4;
}
.events-column.events-column--make .more-btn:after {
  background-image: url(../img/more-btn3.svg);
}

.events-column.is-active {
  display: block;
}

.event-card {
  width: 29.9%;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5%;
  margin-bottom: 3.5em;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  cursor: pointer;
}
.event-card:nth-child(3n) {
  margin-right: 0;
}
.event-card:nth-child(3n+1) {
  clear: both;
}

.event-card:last-child {
  /*border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;*/
}

.event-card__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 51%;
      -ms-flex: 0 0 51%;
          flex: 0 0 51%;
}

.event-card__title {
  width: 100%;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.3;
  color: #de6f4f;
  margin-bottom: 1.2em;
}

.event-card__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.2em;
  gap: 0.2em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.2em;
  margin-bottom: 0.4em;
}

.event-card__date, .event-card__location {
  font-size: 0.8em;
  color: #de6f4f;
  font-weight: bold;
}

.event-card__location {
  font-size: 1em;
  margin-bottom: 1.1em;
  line-height: 1.2;
}

.event-card__date {
  width: 100%;
  font-size: 1em;
  color: #000;
}

.event-card__time {
  font-size: 0.75em;
  font-weight: bold;
  margin-bottom: 0.7em;
  display: none;
}

.event-card__note,
.event-card-tag__note,
.event-card__locationSpot {
  display: none;
}

.event-card__text {
  font-size: 0.7em;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0.8em;
  display: none;
}

.event-card__tag {
  display: inline-block;
  font-size: 0.95em;
  width: auto;
  height: auto;
  line-height: 1;
  padding: 0.3em 1.2em;
  text-align: center;
  border-radius: 2em;
  color: #fff;
  border: 1px solid #de6f4f;
}

.event-card__tag--reserve {
  background: #de6f4f;
}

.event-card__tag--no-reserve {
  color: #de6f4f;
  background: #fff;
}

.more-btn {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding-left: 1em;
  border-radius: 1em;
  line-height: 1;
  color: #fff;
  background-color: #eec67b;
  position: absolute;
  left: 0;
  bottom: 0;
}
.more-btn span {
  padding-left: 0.5em;
  display: inline-block;
  -webkit-transform: scaleX(0.5);
      -ms-transform: scaleX(0.5);
          transform: scaleX(0.5);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.more-btn:after {
  content: " ";
  display: inline-block;
  display: none;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-left: 0.3em;
  margin-top: -0.2em;
  background-image: url(../img/more-btn1.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.event-card__thumb {
  width: 45%;
  height: 10.89em;
  overflow: hidden;
}
.event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.events-note {
  text-align: center;
  font-size: 0.8em;
  color: #555;
}

/* Map Section */
.map-section {
  background: #4b9370;
  padding: 2.8em 2em;
  text-align: center;
}

.map-inner {
  background: #fff;
  border-radius: 12em;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.7em 0 8.4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.map-title {
  font-size: 2.33em;
  color: #007151;
  font-weight: bold;
  border-bottom: 2px solid #007151;
  padding-bottom: 0.65em;
  margin-bottom: 0.77em;
  letter-spacing: 0.1em;
}

.map-lead {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 13.5em;
  color: #333;
  font-weight: bold;
}

.map-more-btn {
  font-size: 4.2vw;
  padding-left: 5vw;
  border-radius: 4vw;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: #00604c;
  position: absolute;
  left: 52%;
  bottom: 5vw;
  cursor: pointer;
}
.map-more-btn span {
  padding-left: 0.5em;
  display: inline-block;
  -webkit-transform: scaleX(0.5);
      -ms-transform: scaleX(0.5);
          transform: scaleX(0.5);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}

.map-illustration {
  width: 88%;
  margin: 0 auto;
}

.map-illustration img {
  width: 100%;
  height: auto;
  display: block;
}
.map-illustration img.map-pic1 {
  width: 16.5%;
  position: absolute;
  left: 3.5%;
  top: -32%;
}
.map-illustration img.map-pic2 {
  width: 16.5%;
  position: absolute;
  left: 27.5%;
  top: -32%;
}
.map-illustration img.map-pic3 {
  width: 16.5%;
  position: absolute;
  left: 46.5%;
  top: -31%;
}
.map-illustration img.map-pic4 {
  width: 12.5%;
  position: absolute;
  left: 1%;
  top: 61%;
}
.map-illustration img.map-pic5 {
  width: 12.5%;
  position: absolute;
  left: 31%;
  top: 94%;
}
.map-illustration img.map-pic6 {
  width: 12.5%;
  position: absolute;
  left: 1%;
  top: 26%;
}
.map-illustration img.map-pic7 {
  width: 16.5%;
  position: absolute;
  left: 64.4%;
  top: -32%;
}
.map-illustration img.map-pic8 {
  width: 12.5%;
  position: absolute;
  left: 82.5%;
  top: -5%;
}

.map-arrow {
  width: 100%;
  height: 126vw;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.map-arrow__prev,
.map-arrow__next {
  width: 2.5vw;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: all;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.map-arrow__prev.hide,
.map-arrow__next.hide {
  opacity: 0;
  pointer-events: none;
}

.map-arrow__prev {
  left: 3%;
}

.map-arrow__next {
  right: 3%;
}
.map-arrow__next img {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

/* Footer */
.footer {
  background: #4b9370;
  text-align: center;
  padding: 3em;
  color: #fff;
}

.footer-logo-area {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.75em;
}
.footer-logo-area:last-child {
  margin-bottom: 0;
}

.footer-logo img {
  width: 15.87em;
  display: block;
  margin-right: 5em;
}

.footer-logo2 {
  width: 10.25em;
  height: auto;
  display: block;
  margin-right: 5em;
}

.footer-logo3 {
  width: 8.93em;
  height: auto;
  display: block;
}

.footer-logo4 {
  width: 4.3em;
  height: auto;
  display: block;
  margin-right: 5em;
}

.footer-logo5 {
  width: 9.62em;
  height: auto;
  display: block;
  margin-right: 5em;
}

.footer-logo6 {
  width: 6em;
  height: auto;
  display: block;
  margin-right: 5em;
}

.footer-logo7 {
  width: 9em;
  height: auto;
  display: block;
}

.footer-copyright {
  font-size: 1em;
  color: #fff;
}

.footer-pic1 {
  width: 11%;
  position: absolute;
  right: 9%;
  top: 13em;
}

.footer-pic2 {
  width: 24%;
  position: absolute;
  left: 56%;
  bottom: -2.5em;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal.is-show {
  opacity: 1;
  pointer-events: auto;
}

.modal__inner {
  background: #fff;
  padding: 3em;
  width: 83%;
  max-height: 80vh;
  max-width: 1280px;
  border-radius: 1em;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.modal__wrap {
  width: 100%;
  overflow-y: auto;
}
.modal__wrap::-webkit-scrollbar {
  display: none;
}

.modal__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.modal__content.events-column--peek .modal__title,
.modal__content.events-column--peek .modal__location,
.modal__content.events-column--peek .modal-tag__note a {
  color: #de6f4f;
}
.modal__content.events-column--peek .event-card__tag {
  border: 1px solid #de6f4f;
}
.modal__content.events-column--peek .event-card__tag.event-card__tag--no-reserve {
  color: #de6f4f;
}
.modal__content.events-column--think .modal__title,
.modal__content.events-column--think .modal__location,
.modal__content.events-column--think .modal-tag__note a {
  color: #008761;
}
.modal__content.events-column--think .event-card__tag {
  border: 1px solid #008761;
  background: #008761;
}
.modal__content.events-column--think .event-card__tag.event-card__tag--no-reserve {
  color: #fff;
  background: #fff;
  color: #008761;
}
.modal__content.events-column--think .modal__locationSpot span {
  color: #008761;
}
.modal__content.events-column--make .modal__title,
.modal__content.events-column--make .modal__location,
.modal__content.events-column--make .modal-tag__note a {
  color: #316ea4;
}
.modal__content.events-column--make .event-card__tag {
  border: 1px solid #316ea4;
  background: #316ea4;
}
.modal__content.events-column--make .event-card__tag.event-card__tag--no-reserve {
  color: #fff;
  background: #fff;
  color: #316ea4;
}
.modal__content.events-column--make .modal__locationSpot span {
  color: #316ea4;
}

.modal__thumb {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 45%;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

.modal__thumb img {
  width: 100%;
  height: auto;
}

.modal__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.modal__title {
  font-size: 1.8em;
  font-weight: bold;
  color: #007151;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.modal__tags {
  margin-top: 0.2em;
}
.modal__tags .event-card__tag {
  font-size: 1em;
  padding: 0.3em 1.2em;
}

.modal__date__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

.modal__date, .modal__location {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.3em;
}

.modal__locationSpot {
  font-weight: 500;
  margin-bottom: 0.5em;
}

.modal-tag__note {
  margin-bottom: 0.3em;
}
.modal-tag__note a {
  font-weight: bold;
}

.modal-sns-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

.modal-sns-link1,
.modal-sns-link2 {
  width: 3em;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}

.modal__time {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 0.7em;
}

.modal__text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1em;
}

.modal__link,
.modal__link2 {
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  width: 18em;
  display: block;
  padding-left: 1em;
  border-radius: 1em;
  margin-top: 1em;
  line-height: 1;
  color: #fff;
  background-color: #eec67b;
}
.modal__link span,
.modal__link2 span {
  padding-left: 0.5em;
  display: inline-block;
  -webkit-transform: scaleX(0.5);
      -ms-transform: scaleX(0.5);
          transform: scaleX(0.5);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
/* Modal Map */
.modal-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-map.is-show {
  opacity: 1;
  pointer-events: auto;
}

.modal-map__inner {
  background: #fff;
  width: 90%;
  max-height: 80vh;
  border-radius: 4vw;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12vw 3% 3vw;
}

.modal-map__close {
  position: absolute;
  top: 0;
  right: 2vw;
  font-size: 12vw;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.modal-map__wrap {
  width: 100%;
  overflow-y: auto;
  overflow-x: auto;
}

.modal-map__content {
  width: 180vw;
  margin-top: 33vw;
  position: relative;
}

.modal-map__content .map-illustration {
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  .header.active {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .events-tab:hover {
    background-color: #fff;
  }
  .event-card.is-2lines {
    /*.event-card__inner{
        gap: 0.5em;
        margin-bottom: 0.9em;
    }

    .event-card__date{
        margin-bottom: 0;
        position: relative;
        top: -0.4em;
    }*/
  }
  .event-card.is-2lines .event-card__title {
    margin-bottom: 0.6em;
  }
  .event-card.is-2lines .event-card__time {
    margin-bottom: 0.3em;
  }
  .event-card.is-2lines .event-card__text {
    margin-bottom: 0.3em;
  }
  .event-card.is-2lines .event-card__location {
    margin-bottom: 0.76em;
  }
  .event-card.is-2lines .event-card__thumb {
    margin-top: -0.3em;
    top: auto;
    height: 9.7em;
  }
  .event-card.is-3lines {
    /*.event-card__inner{
        gap: 0.5em;
        margin-bottom: 0.6em;
    }*/
  }
  .event-card.is-3lines .event-card__title {
    margin-bottom: 0.4em;
  }
  .event-card.is-3lines .event-card__time {
    margin-bottom: 0.3em;
  }
  .event-card.is-3lines .event-card__text {
    margin-bottom: 0.3em;
  }
  .event-card.is-3lines .event-card__location {
    margin-bottom: 0.55em;
  }
  .event-card.is-3lines .event-card__thumb {
    margin-top: -0.4em;
    top: auto;
    height: 8.8em;
  }
  .event-card.peek-1 .event-card__info {
    margin-top: -0.7em;
  }
  .event-card.peek-1 .event-card__inner {
    gap: 0.5em;
    margin-bottom: 0.7em;
  }
  .event-card.peek-1 .event-card__location {
    margin-bottom: 0.98em;
  }
  .event-card.peek-1 .event-card__thumb {
    height: 9.7em;
    margin-top: -1em;
    top: auto;
  }
  .event-card.peek-2 .event-card__info {
    top: -0.6em;
  }
  .event-card.peek-2 .event-card__location {
    margin-bottom: 1.33em;
  }
  .event-card.peek-2 .event-card__thumb {
    height: 9.3em;
  }
  .event-card.peek-3 .event-card__title {
    margin-bottom: 0.3em;
  }
  .event-card.peek-3 .event-card__location {
    margin-bottom: 0.7em;
  }
  .event-card.peek-3 .event-card__thumb {
    margin-top: -1.2em;
  }
  .event-card.peek-4 .event-card__title {
    letter-spacing: -0.05em;
  }
  .event-card.peek-4 .event-card__thumb {
    margin-top: 0.1em;
    top: auto;
    height: 7.3em;
  }
  .event-card.peek-5 .event-card__thumb {
    height: 9.95em;
  }
  .event-card.peek-5 .event-card__info {
    height: 9.33em;
  }
  .event-card.peek-6 .event-card__thumb {
    margin-top: -1.4em;
    height: 9.95em;
  }
  .event-card.peek-7 {
    position: relative;
  }
  .event-card.peek-7 .event-card__info {
    height: 9.4em;
  }
  .event-card.peek-7 .event-card__location {
    font-size: 0.9em;
    letter-spacing: -0.05em;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .event-card.peek-7 .event-card__date {
    letter-spacing: -0.05em;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    white-space: nowrap;
  }
  .event-card.peek-7 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.5em;
  }
  .event-card.peek-8 .event-card__location {
    font-size: 0.9em;
    letter-spacing: -0.05em;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .event-card.peek-9 .event-card__title {
    letter-spacing: -0.05em;
  }
  .event-card.peek-9 .event-card__location {
    font-size: 0.9em;
    letter-spacing: -0.05em;
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .event-card.peek-9 .event-card__thumb {
    margin-top: -0.4em;
    height: 9.8em;
  }
  .event-card.peek-10 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.34em;
  }
  .event-card.peek-11 .event-card__title {
    letter-spacing: -0.05em;
  }
  .event-card.peek-12 .event-card__thumb {
    height: 9.9em;
  }
  .event-card.peek-13 .event-card__thumb {
    height: 9.95em;
    margin-top: -1.3em;
  }
  .event-card.think-1 {
    position: relative;
  }
  .event-card.think-1 .event-card__date {
    -webkit-transform: scaleX(0.95);
        -ms-transform: scaleX(0.95);
            transform: scaleX(0.95);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    white-space: nowrap;
  }
  .event-card.think-1 .event-card__thumb {
    height: 9.95em;
    margin-top: 0.23em;
    top: auto;
  }
  .event-card.think-4 .event-card__thumb {
    margin-top: -0.5em;
    top: auto;
    height: 9.1em;
  }
  .event-card.think-5 .event-card__thumb, .event-card.think-6 .event-card__thumb {
    height: 9.97em;
    top: auto;
    margin-top: -0.6em;
  }
  .event-card.think-7 .event-card__thumb {
    height: 9.95em;
  }
  .event-card.think-8 .event-card__thumb {
    top: auto;
    margin-top: 0.5em;
    height: 9.95em;
  }
  .event-card.think-9 .event-card__title {
    letter-spacing: -0.05em;
    -webkit-transform: scaleX(0.95);
        -ms-transform: scaleX(0.95);
            transform: scaleX(0.95);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
  }
  .event-card.think-9 .event-card__thumb {
    height: 9.96em;
  }
  .event-card.think-10 .event-card__thumb {
    margin-top: 0em;
    height: 9.95em;
  }
  .event-card.think-11 .event-card__thumb {
    margin-top: -1.2em;
    top: auto;
    height: 9.95em;
  }
  .event-card.think-12 .event-card__thumb {
    margin-top: 0em;
    height: 9.95em;
  }
  .event-card.make-1 .event-card__thumb {
    margin-top: -1.6em;
    height: 9.29em;
  }
  .event-card.make-2 .event-card__thumb {
    margin-top: -1.7em;
    height: 9.4em;
  }
  .event-card.make-3 .event-card__thumb {
    margin-top: -1.5em;
    top: auto;
    height: 9.95em;
  }
  .event-card.make-5 .event-card__thumb {
    margin-top: 0.4em;
    top: auto;
    height: 9.95em;
  }
  .event-card.make-6 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.33em;
    top: auto;
  }
  .event-card.make-7 .event-card__thumb {
    height: 9.95em;
    top: auto;
    margin-top: -0.8em;
  }
  .event-card.make-8 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.78em;
    top: auto;
  }
  .event-card.make-9 .event-card__title {
    letter-spacing: -0.05em;
  }
  .event-card.make-9 .event-card__thumb {
    margin-top: -1.6em;
    height: 9.95em;
  }
  .event-card.make-10 .event-card__thumb {
    margin-top: -0.8em;
    top: auto;
    height: 9.95em;
  }
  .event-card.make-11 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.8em;
    top: auto;
  }
  .event-card.make-12 .event-card__thumb {
    height: 9.95em;
    margin-top: -1.6em;
    top: auto;
  }
  .event-card.make-13 .event-card__thumb, .event-card.make-14 .event-card__thumb, .event-card.make-15 .event-card__thumb {
    margin-top: -1.6em;
    top: auto;
    height: 9.95em;
  }
  .event-card.make-16 .event-card__thumb {
    height: 9em;
    margin-top: -0.6em;
    top: auto;
  }
  .event-card.make-17 .event-card__thumb {
    height: 10em;
    margin-top: -1.6em;
  }
  .event-card.make-18 .event-card__title {
    letter-spacing: -0.05em;
  }
  .event-card.make-18 .event-card__thumb {
    height: 9.97em;
    margin-top: -1.6em;
    top: auto;
  }
  .event-card.make-19 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.2em;
  }
  .event-card.make-20 .event-card__thumb {
    height: 9.95em;
    margin-top: -1.34em;
  }
  .event-card.make-21 .event-card__title {
    margin-bottom: 0.3em;
  }
  .event-card.make-21 .event-card__location {
    letter-spacing: -0.05em;
  }
  .event-card.make-21 .event-card__thumb {
    height: 9.95em;
    margin-top: -1em;
  }
  .event-card.make-22 .event-card__title {
    -webkit-transform: scaleX(0.9);
        -ms-transform: scaleX(0.9);
            transform: scaleX(0.9);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    letter-spacing: -0.05em;
  }
  .event-card.make-22 .event-card__thumb {
    margin-top: -0.3em;
  }
  .event-card.make-23 .event-card__thumb {
    height: 9.95em;
    margin-top: -0.78em;
  }
  .event-card__thumb {
    top: -0.6em;
  }
  .modal-tag__note a {
    pointer-events: none;
  }
}

@media screen and (min-width: 1281px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  #wrapper {
    min-width: 100%;
    overflow: hidden;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .box-inner {
    width: 86.66%;
  }
  .header {
    padding: 3vw 2.6%;
  }
  .header-logo {
    width: 29.5vw;
  }
  .main {
    padding-top: 12vw;
  }
  .kv__image img.pic1 {
    width: 40%;
    left: -43%;
    top: 21%;
    -webkit-animation: pic1sp 80s linear infinite;
            animation: pic1sp 80s linear infinite;
    -webkit-animation-delay: -20s;
            animation-delay: -20s;
  }
  .kv__image img.pic4 {
    width: 12%;
    left: 102%;
    top: 83%;
    -webkit-animation: pic4sp 30s linear infinite;
            animation: pic4sp 30s linear infinite;
    -webkit-animation-delay: -10s;
            animation-delay: -10s;
  }
  .kv__image img.pic6 {
    width: 19%;
    left: -22%;
    top: 23%;
    -webkit-animation: pic6sp 50s linear infinite;
            animation: pic6sp 50s linear infinite;
    -webkit-animation-delay: -30s;
            animation-delay: -30s;
  }
  .kv__image img.kv-icon1 {
    width: 16.5%;
    left: 2%;
    top: 38%;
  }
  .kv__image img.kv-icon2 {
    width: 16.5%;
    left: 81.8%;
    top: 48%;
  }
  .kv__image img.kv-icon3 {
    width: 16.5%;
    right: 35%;
    top: 26%;
  }
  .kv__title {
    width: 94%;
    top: 3vw;
  }
  .kv__title2 {
    width: 92%;
    bottom: 1vw;
  }
  .kv__title3 {
    width: 9.8%;
    right: 3.2%;
    top: 21%;
  }
  .intro {
    padding: 4em 0 7.5vw;
  }
  .intro-text {
    width: 45vw;
  }
  .intro-lead {
    font-size: 3.6vw;
    line-height: 1.6;
  }
  .features {
    padding-bottom: 8vw;
  }
  .feature-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 7vw;
  }
  .feature-item {
    width: 72%;
    border: 1px solid #000;
    border-radius: 11vw;
    background-color: #fff;
  }
  .feature-item:nth-child(1) .feature-item__image {
    width: 20vw;
    right: 3%;
    top: 42%;
  }
  .feature-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .feature-item:nth-child(2) .feature-item__image {
    width: 12vw;
    left: 7%;
    right: auto;
  }
  .feature-item:nth-child(2) .feature-item__icon {
    left: 2%;
  }
  .feature-item:nth-child(3) .feature-item__image {
    width: 25vw;
    right: -4vw;
  }
  .feature-item__icon {
    width: 21vw;
    height: 21vw;
    font-size: 3.2vw;
    margin: 0;
    left: -2%;
    z-index: 1;
  }
  .feature-item__text {
    width: 97%;
    padding: 0;
    text-align: left;
    font-size: 3.2vw;
    padding-left: 21vw;
    line-height: 1.4;
    position: absolute;
    left: 3%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .feature-item__image {
    width: 20vw;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }
  .events {
    padding: 0;
    padding-bottom: 5vw;
  }
  .events-inner {
    width: 80%;
    max-width: inherit;
  }
  .events-sp-tab {
    display: block;
    width: 100%;
    font-size: 6.2vw;
    padding: 1.4vw 0;
    font-weight: bold;
    color: #fff;
    background-color: transparent;
    text-align: center;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    border-top: 1px solid #000;
  }
  .events-sp-tab::after {
    content: "▼";
    display: inline-block;
    font-size: 2.6vw;
    color: #000;
    right: 1vw;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  .events-sp-tab.is-active::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
        -ms-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  .events-sp-tab.events-sp-tab-1 {
    color: #de6f4f;
  }
  .events-sp-tab.events-sp-tab-2 {
    color: #008761;
  }
  .events-sp-tab.events-sp-tab-3 {
    color: #316ea4;
    border-bottom: 1px solid #000;
  }
  .events-tabs {
    display: none;
  }
  .events-content__inner {
    background-color: transparent;
  }
  .events-column__inner {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -o-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
  }
  .events-column {
    display: block;
    padding: 6vw 8% 8vw;
  }
  .event-card {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 8vw;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .event-card:last-child {
    margin-bottom: 0;
  }
  .event-card__info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 63%;
        -ms-flex: 0 0 63%;
            flex: 0 0 63%;
  }
  .event-card__title {
    width: 100%;
    font-size: 3vw;
    margin-bottom: 0.5vw;
  }
  .event-card__inner {
    gap: 1.5vw;
    margin-bottom: 2vw;
  }
  .event-card__location {
    font-size: 3.1vw;
    margin-bottom: 2vw;
  }
  .event-card__date {
    width: 100%;
    font-size: 2.8vw;
  }
  .event-card__time {
    font-size: 2.4vw;
    margin-bottom: 1vw;
  }
  .event-card__text {
    font-size: 2.4vw;
    margin-bottom: 1vw;
  }
  .event-card__tag {
    font-size: 2.8vw;
    padding: 0.8vw 2.4vw;
    border-radius: 4vw;
  }
  .more-btn {
    font-size: 3.2vw;
    padding-left: 3vw;
    border-radius: 4vw;
    position: relative;
    left: auto;
    bottom: auto;
  }
  .event-card__thumb {
    width: 34%;
    height: 22.8vw;
  }
  .map-section {
    padding: 0;
  }
  .map-illustration__inner {
    width: 100%;
    height: 75vw;
    overflow: hidden;
    background-color: #fff;
  }
  .map-inner {
    max-width: inherit;
    padding: 0;
    padding-top: 7vw;
    border-radius: 0;
    background-color: transparent;
  }
  .map-title {
    font-size: 6.4vw;
    color: #fff;
    line-height: 1.4;
    border: none;
    padding-bottom: 0;
    margin-bottom: 2.7vw;
  }
  .map-lead {
    font-size: 2.6vw;
    color: #fff;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 8vw;
  }
  .map-illustration {
    width: 92%;
    margin: 0 auto;
    margin-top: 20vw;
  }
  .footer {
    padding: 15vw 0 6vw;
  }
  .footer-logo-area {
    width: 85%;
    margin-bottom: 4vw;
  }
  .footer-logo img {
    width: 26vw;
    margin-right: 6vw;
  }
  .footer-logo2 {
    width: 17vw;
    margin-right: 6vw;
  }
  .footer-logo3 {
    width: 16vw;
  }
  .footer-logo4 {
    width: 7.2vw;
    margin-right: 6vw;
  }
  .footer-logo5 {
    width: 17vw;
    margin-right: 6vw;
  }
  .footer-logo6 {
    width: 10vw;
    margin-right: 6vw;
  }
  .footer-logo7 {
    width: 15vw;
  }
  .footer-copyright {
    font-size: 2vw;
  }
  .footer-pic1 {
    width: 20%;
    right: 9%;
    top: 45vw;
    z-index: 1;
    pointer-events: none;
  }
  .footer-pic2 {
    width: 30%;
    left: 5%;
    bottom: -10vw;
    pointer-events: none;
  }
  .modal__inner {
    width: 90%;
    max-width: inherit;
    max-height: 70vh;
    padding: 15vw 6% 5vw;
  }
  .modal__close {
    font-size: 12vw;
    top: 0vw;
    right: 2vw;
  }
  .modal__link,
.modal__link2 {
    width: 100%;
    font-size: 3.6vw;
    padding-left: 4vw;
    border-radius: 4vw;
    margin-top: 3vw;
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .modal__link2 {
    margin-bottom: 4vw;
  }
  .modal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .modal__info {
    display: contents;
  }
  .modal__title {
    font-size: 5vw;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .modal__date__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2vw;
    margin-bottom: 2vw;
  }
  .modal-tag__note {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    font-size: 3.4vw;
  }
  .modal__date,
.modal__location {
    font-size: 4.5vw;
    margin-bottom: 0;
  }
  .modal__date {
    width: 100%;
  }
  .modal__tags {
    margin-top: 0;
  }
  .modal__tags .event-card__tag {
    font-size: 4vw;
    padding: 1vw 2vw;
    border-radius: 4vw;
  }
  .modal-sns-area {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    gap: 3vw;
  }
  .modal-sns-link1,
.modal-sns-link2 {
    width: 10vw;
    padding-top: 1vw;
    margin-bottom: 1vw;
  }
  .modal__time {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
    font-size: 4.5vw;
  }
  .modal__thumb {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
    width: 100%;
    margin: 1vw 0 3vw;
  }
  .modal__text {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
    font-size: 4.2vw;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 5vw;
  }
  .modal__location {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
    margin-bottom: 2vw;
  }
  .modal__locationSpot {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
    font-size: 3.6vw;
  }
  .modal__note {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
    font-size: 3.8vw;
  }
}
