@import url("//cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css");

:root {
  --font-zen-maru: normal 500 20px/1.3 zen-maru-gothic, sans-serif;
  --font-alkaline: normal 700 60px/1.1 alkaline, sans-serif;
  --color-black: #000;
  --color-gray: #707070;
  --color-green: #637A3C;
  --color-beige-light: #F8F7F0;
  --color-beige: #E2DFCB;
  --container-max-width: 1464px;
}

a {
  color: var(--color-green);
}

a:hover {
  color: var(--color-green);
  text-decoration: none;
}

.my-body {
  position: relative;
  color: var(--color-black);
}

.my-body,
.my-body .form-control,
.my-body .form-select {
  font: var(--font-zen-maru);
}

.my-body .animate > * {
  opacity: 0;
  transform: translateY(10vh);
  transition: all ease-out .5s;
}

.my-body .animate.-is-intersecting > * {
  opacity: 1;
  transform: translateY(0);
}

.my-ajax-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.my-marker {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

.my-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: var(--container-max-width);
  margin: 0 auto;
  z-index: 2;
}

#header_menu,
.my-header-hamburger {
  display: none;
}

.my-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
}

.my-header-logo {
  font: var(--font-zen-maru);
  text-align: center;
}

.my-header-logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5em;
  min-width: 14em;
  height: 4em;
  background: url(../img/logo.svg) 0 center no-repeat;
  background-size: contain;
  font-size: .8em;
  color: #fff;
  text-decoration: none;
}

.my-header-logo a span {
  font-size: 1.8em;
}

.my-header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.my-header-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 15px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-header-menu li a {
  padding: 5px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,.4);
  text-decoration: none;
}

.my-header-menu li a:hover {
  text-decoration: underline;
}

.my-header-menu-reserve {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5em;
  height: 4.5em;
  background: #fff;
  color: var(--color-green);
  text-decoration: none;
}

.my-header-menu-reserve:hover {
  opacity: .8;
}

.my-header-menu-reserve::before {
  content: '';
  width: 54.6%;
  height: 0;
  padding-top: 40%;
  background: url(../img/icon-reserve.svg) center center no-repeat;
  background-size: contain;
}

.my-home-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1070px;
  background: url(../img/home-hero-bg.jpg) center center no-repeat;
  background-size: cover;
}

.my-home-hero-logo {
  position: relative;
  width: 17.3em;
  height: 21.35em;
}

.my-home-hero-logo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-green);
  mix-blend-mode: darken;
}

.my-home-hero-logo::after {
  content: '';
  position: absolute;
  top: 2.4em;
  left: 50%;
  margin-left: calc(-12.5em/2);
  width: 12.5em;
  height: 10.7em;
  background: url(../img/home-hero-logo.svg) center center no-repeat;
  background-size: contain;
}

.my-home-hero-logo-text {
  position: absolute;
  top: 13.5em;
  right: 0;
  left: 0;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.my-home-hero-logo-text span {
  display: block;
  font-size: 2.5em;
}

.my-home-hero-text {
  position: absolute;
  top: -12.1em;
  left: 4.65em;
  width: 25.3em;
  height: 27.4em;
  background: url(../img/home-hero-text.svg) center center no-repeat;
  background-size: contain;
}

.my-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 210px;
  background: url(../img/home-hero-bg.jpg) center center no-repeat;
  background-size: cover;
}

.my-title > * {
  font: var(--font-zen-maru);
  font-size: 2.5em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,.4);
  background: rgba(99,122,60,.5);
  backdrop-filter: blur(3px);
  margin: 120px 10px 0;
}

.my-main {
  flex: 1;
  margin-bottom: 5em;
}

.my-main-container {
  position: relative;
  max-width: var(--container-max-width);
  padding: 0 12px;
  margin: 0 auto;
  overflow: hidden;
}

.my-section {
  margin-top: 5em;
}

.my-section .my-section {
  margin-top: 3em;
}

.my-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/section-title-bg.png) center center no-repeat;
  background-size: contain;
  height: 10em;
  font: var(--font-zen-maru);
  margin-bottom: 4em;
  padding-top: 4em;
}

.my-section-title > strong {
  font: var(--font-alkaline);
  text-align: center;
}

.my-section-title > span {
  font-size: 1.2em;
}

.my-section-subtitle {
  font: var(--font-zen-maru);
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 1em;
}

.my-home-news ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-home-news li {
  display: flex;
}

.my-home-news li > div {
  width: 5em;
  white-space: nowrap;
}

.my-home-news li > a {
  flex: 1;
}

.my-home-plan {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-home-plan-item {
  position: relative;
  margin: 0;
  padding-left: calc(61.875% + 12px);
}

.my-home-plan-item + .my-home-plan-item {
  margin-top: 20px;
}

.my-home-plan-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 61.875%;
  background: center center no-repeat;
  background-size: cover;
}

.my-home-plan-item.-img01::before {
  background-image: url(../img/home-plan-img01.jpg);
}

.my-home-plan-item.-img02::before {
  background-image: url(../img/home-plan-img02.jpg);
}

.my-home-plan-item.-img03::before {
  background-image: url(../img/home-plan-img03.jpg);
}

.my-home-plan-item dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-green);
  color: #fff;
  min-height: 430px;
  line-height: 2;
  padding: 10% 17.7% 10% 11.7%;
  margin: 0;
  border-radius: 0 180px 0 0;
}

.my-home-plan-item dt {
  font: var(--font-zen-maru);
  font-size: 1.8em;
  padding-bottom: 16px;
  margin-bottom: 26px;
  border-bottom: 2px solid #fff;
}

.my-home-plan-item dd > a {
  display: block;
  color: inherit;
  margin-top: 9%;
}

.my-home-greeting {
  background: url(../img/home-greeting-bg.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  line-height: 1.5;
}

.my-home-greeting .my-main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 566px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.my-home-greeting .my-main-container > h3 {
  font: var(--font-zen-maru);
  font-size: 1.8em;
  margin-bottom: 50px;
}

.my-home-map {
  position: relative;
  height: 790px;
}

.my-home-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.my-news {
  overflow: hidden;
}

.my-news a {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: opacity ease-out .3s;
}

.my-news a:hover {
  opacity: .7;
}

.my-news-img {
  width: 100%;
  height: 0;
  padding-top: 61%;
  background: var(--color-gray) center center no-repeat;
  background-size: cover;
  margin-bottom: 20px;
}

.my-news-date {
  margin-bottom: 10px;
}

.my-news-badge {
  display: inline-block;
  vertical-align: text-bottom;
  font-size: .8em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: var(--color-green);
  border-radius: .75em;
  min-width: 6em;
}

.my-news-link {
  text-align: center;
  margin-top: 20px;
}

.my-article {
  max-width: 940px;
  margin: 0 auto;
}

.my-article figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.my-guide-calendar {
  position: relative;
  width: 100%;
  height: 520px;
}

.my-guide-calendar > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.my-footer {
  display: flex;
  flex-direction: column;
  background: var(--color-green);
  color: #fff;
  width: 100%;
  overflow-x: hidden;
}

.my-footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 50px 10px 25px;
}

.my-footer-logo {
  padding-top: 10px;
}

.my-footer-logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5em;
  min-width: 14em;
  height: 4em;
  background: url(../img/logo.svg) 0 center no-repeat;
  background-size: contain;
  font-size: .8em;
  color: #fff;
  text-decoration: none;
}

.my-footer-logo a span {
  font-size: 1.8em;
}

.my-footer-address {
  padding-top: 10px;
}

.my-footer-menu {
  width: 42%;
  min-width: 490px;
  border-left: 1px solid #fff;
  padding-left: 5%;
}

.my-footer-menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 170px;
  gap: 20px;
}

.my-footer-menu li::before {
  content: '▲  ';
}

.my-footer-menu li a {
  color: #fff;
  text-decoration: none;
}

.my-footer-menu li a:hover {
  text-decoration: underline;
}

.my-footer > small {
  display: block;
  font-size: .8em;
  text-align: center;
  padding: 0 10px 20px;
  color: #fff;
}

.my-footer-reserve {
  display: none;
}

.my-body .my-scrolltop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  background: var(--color-green);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: all ease-out .4s;
  z-index: 2;
}

.my-body.-is-scrolled .my-scrolltop {
  pointer-events: auto;
  transform: translateY(0);
  opacity: .9;
  color: #fff;
}

.my-body.-is-scrolled .my-scrolltop:hover {
  opacity: .8;
}

.my-calendar-day {
  cursor: pointer;
  background: linear-gradient(#fff 0%, #fff calc(100% - 8px), var(--bs-gray-300) calc(100% - 8px), var(--bs-gray-300) calc(100% - 7px), #fff calc(100% - 7px), #fff 100%);
}

.my-calendar-day:hover {
  outline: var(--bs-orange) solid 2px;
}

.my-calendar-day.-is-high {
  background: linear-gradient(#fff 0%, #fff calc(100% - 8px), var(--bs-gray-300) calc(100% - 8px), var(--bs-gray-300) calc(100% - 7px), var(--bs-green) calc(100% - 7px), var(--bs-green) 100%);
}

.my-calendar-day.-is-holiday {
  background: linear-gradient(#fff 0%, #fff calc(100% - 8px), var(--bs-gray-300) calc(100% - 8px), var(--bs-gray-300) calc(100% - 7px), var(--bs-red) calc(100% - 7px), var(--bs-red) 100%);
}

.my-calendar-legend {
  display: inline-block;
  position: relative;
  margin-right: 1em;
}

.my-calendar-legend::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: .2em;
  border: 1px solid var(--bs-gray-300);
}

.my-calendar-legend.-is-high::before {
  background: var(--bs-green);
}

.my-calendar-legend.-is-holiday::before {
  background: var(--bs-red);
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  :root {
    --font-zen-maru: normal 500 16px/1.3 zen-maru-gothic, sans-serif;
    --font-alkaline: normal 700 52px/1.1 alkaline, sans-serif;
  }

  :checked + .my-header {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }

  .my-header-container {
    display: block;
    padding: 19vw 10vw 8.5vw;
  }

  .my-header-logo {
    position: absolute;
    top: 5px;
    left: 10px;
  }

  :checked + .my-header .my-header-logo a {
    background-image: url(../img/logo-g.svg);
    color: var(--color-green);
  }

  .my-header-menu {
    display: none;
  }

  :checked + .my-header .my-header-menu {
    display: block;
  }

  .my-header-menu ul {
    display: block;
  }

  .my-header-menu li + li {
    margin-top: 15px;
  }

  .my-header-menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: none;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: var(--color-green);
  }

  .my-header-menu-reserve {
    display: none;
  }

  .my-header-hamburger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 50px;
    background: #fff url(../img/header-hamburger.svg) center center no-repeat;
    background-size: 30px auto;
    z-index: 2;
  }

  :checked + .my-header .my-header-hamburger {
    background-image: url(../img/header-hamburger-close.svg);
  }

  .my-home-hero {
    height: calc(126px + 50vw);
    min-height: 600px;
  }

  .my-home-hero-logo {
    margin-top: 150px;
    overflow: hidden;
  }

  .my-section-subtitle {
    font-size: 1.5em;
  }

  .my-home-plan-item {
    padding-left: 0;
    padding-bottom: calc(48% + 10px);
  }

  .my-home-plan-item::before {
    top: auto;
    width: 100%;
    height: 0;
    padding-top: 48%;
  }

  .my-home-plan-item dl {
    min-height: 0;
    padding: 20px;
    border-radius: 0 90px 0 0;
  }

  .my-home-plan-item dd > a {
    margin-top: 30px;
  }

  .my-home-greeting {
    background-position-x: left;
  }

  .my-home-greeting .my-section {
    min-height: 370px;
  }

  .my-home-map {
    height: 100vw;
  }

  .my-title {
    min-height: 230px;
  }

  .my-title > * {
    margin-top: 160px;
    font-size: 2em;
  }

  .my-footer-container {
    flex-direction: column;
    align-items: center;
  }

  .my-footer-menu {
    width: 100%;
    min-width: 0;
    border-left: 0;
    padding: 0 10px;
  }

  .my-body a.my-footer-reserve {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #BF2929;
    color: #fff;
    text-decoration: none;
  }

  .my-footer-reserve::before {
    content: '';
    width: 45px;
    height: 33px;
    margin-right: 10px;
    background: url(../img/icon-reserve-w.svg) center center no-repeat;
    background-size: contain;
  }

  .my-reserve .my-footer-reserve {
    display: none;
  }

  .my-body .my-scrolltop {
    bottom: 45px;
  }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .my-footer-menu ul {
    height: auto;
  }
}
