@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@font-face {
  font-family: "Adage Script";
  src: url("/fonts/adagescriptjf.woff") format("woff");
}
html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #111;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 980px) {
  html {
    min-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 6rem;
  }
}

:root {
  --spad: 3.33%;
}

.banner {
  width: 100%;
  height: calc(100vh - 6rem);
  max-height: 67.2rem;
  position: relative;
  background-color: #878787;
}
@media screen and (max-width: 767px) {
  .banner {
    height: 13rem;
  }
}
.banner--mv {
  min-height: 50rem;
  max-height: 94.7rem;
}
@media screen and (max-width: 767px) {
  .banner--mv {
    height: calc(100vh - 6rem);
    min-height: unset;
  }
}
.banner--mv .banner__logo {
  width: 14rem;
  height: 14rem;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .banner--mv .banner__logo {
    width: 7.9rem;
    height: 7.9rem;
  }
}
.banner--mv .banner__content h1 {
  font: 400 13.4rem/1 adage-script-jf, "Adage Script", cursive;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .banner--mv .banner__content h1 {
    font-size: 7rem;
  }
}
.banner__logo {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  position: absolute;
  top: 1.5rem;
  left: 3.2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .banner__logo {
    width: 2.2rem;
    height: 2.2rem;
    top: 1rem;
    left: var(--spad);
  }
}
.banner__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .banner__content {
    padding: 0 var(--spad);
  }
}
.banner__content h1 {
  font: 400 11rem/1 kaushan-script, "Kaushan Script", cursive;
  color: #fff;
  letter-spacing: 0.025em;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .banner__content h1 {
    font-size: 2.6rem;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.6);
  }
}

.section {
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 0;
  }
}
.section__head,
.section__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
}
@media screen and (max-width: 767px) {
  .section__head,
  .section__content {
    max-width: 100%;
    padding: 0 var(--spad);
  }
}
@media screen and (max-width: 767px) {
  .section__head,
  .section__content {
    font-size: 1.3rem;
  }
}
.section__head {
  color: #a1866a;
  text-align: center;
}
.section__title {
  font: 700 2.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1.8rem;
  }
}
.section__title span {
  display: block;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .section__title span {
    font-size: 1.3rem;
    margin-top: 0;
  }
}
.section__content {
  padding-bottom: 6rem;
}

@counter-style circled-numbers {
  system: fixed;
  symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰"
    "⑱" "⑲" "⑳";
}
.list-circ {
  list-style: none;
  counter-reset: item;
}
.list-circ li {
  counter-increment: item;
}
.list-circ .item-counter::before {
  content: counter(item, circled-numbers);
}

.button {
  width: 28rem;
  height: 6rem;
  border: 1px solid #a1866a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font: 700 2.8rem/1 "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  color: #7d6853;
}
@media screen and (max-width: 767px) {
  .button {
    width: 16.5rem;
    height: 3.6rem;
    font-size: 1.8rem;
  }
}
.button:hover {
  background-color: #7d6853;
  color: #fff;
}

.title-bar {
  padding: 1.4rem 2rem;
  border-left: 11px solid #a1866a;
  border-bottom: 2px solid #a1866a;
  font: 700 2.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  color: #a1866a;
}
@media screen and (max-width: 767px) {
  .title-bar {
    padding: 0.4rem 1.8rem;
    border-left-width: 10px;
    font-size: 1.6rem;
  }
}

.header {
  width: 100%;
  max-width: 100vw;
  height: 6rem;
  background-color: #fff;
  padding: 0 4rem;
  font: 300 1.4rem kozuka-gothic-pr6n, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 var(--spad);
    font-size: 1.3rem;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.header__nav {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1460px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header__nav {
    max-width: 100%;
    padding: 0 var(--spad);
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: 100vh;
    max-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: max-height 0.3s linear;
    transition: max-height 0.3s linear;
    position: absolute;
    top: 6rem;
    left: 0;
    padding: 0;
    font-size: 1.5rem;
  }
}
.header__nav.active {
  max-height: 100vh;
}
@media screen and (max-width: 767px) {
  .header__nav-content {
    width: 100%;
    height: 100%;
    padding: 3rem calc(var(--spad) * 2);
    border-top: 1px solid rgba(135, 135, 135, 0.5);
  }
}
.header__nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.header__nav-item {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.header__nav-item:not(:last-child)::after {
  content: "　｜　";
}
@media screen and (max-width: 767px) {
  .header__nav-item:not(:last-child)::after {
    display: none;
  }
}
.header__nav-item a {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .header__nav-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 7.5rem;
    background-color: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(11, 0, 120, 0.1);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  pointer-events: none;
  z-index: -1;
}
.header__nav-item a:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.header__nav-item img {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-item img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
  }
}
.header__nav-extra {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-extra {
    margin-top: 2.5rem;
    display: block;
  }
}
.header__nav-extra a {
  display: block;
  padding: 0 1rem;
}
.header__nav-extra a:not(:first-child) {
  padding-top: 1.5rem;
}
.header__nav-extra a:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(11, 0, 120, 0.5);
}
.header__button {
  width: 20.5rem;
  height: 6rem;
  background-color: #001e36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header__button {
    width: 7.4rem;
  }
}
.header__button:hover {
  opacity: 0.7;
}
.header__hamburger {
  display: none;
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger > span {
  width: 100%;
  margin: 1rem 0;
  border-top: 1px solid #000;
  display: block;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header__hamburger.active > span:nth-child(1) {
  -webkit-transform: translate(0, 1.1rem) rotate(-45deg);
  transform: translate(0, 1.1rem) rotate(-45deg);
}
.header__hamburger.active > span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active > span:nth-child(3) {
  -webkit-transform: translate(0, -1.1rem) rotate(45deg);
  transform: translate(0, -1.1rem) rotate(45deg);
}

.footer {
  width: 100%;
  padding: 5rem 4rem 3.8rem;
  background-color: #0b0078;
  font: 700 1.6rem/1 "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 4.6rem var(--spad) 11rem;
  }
}
.footer__content {
  width: 100%;
  max-width: 524px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__content {
    max-width: 100%;
    padding: 0 var(--spad);
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 0;
    max-width: 25rem;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__logo img {
  width: 16.2rem;
  height: 16.2rem;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 12.3rem;
    height: 12.3rem;
  }
}
.footer__contact {
  max-width: 32.5rem;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    margin: 5rem auto;
  }
}
.footer__contact-details {
  margin: 1.8rem 0 3.2rem;
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__contact-details {
    margin: 3rem 0 4rem;
    gap: 1.5rem;
  }
}
.footer__contact-item {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 2.5rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .footer__contact-item {
    gap: 1rem;
  }
}
.footer__contact-item dt,
.footer__contact-item dd {
  white-space: nowrap;
}
.footer__contact-item dt {
  text-align: right;
}
.footer__contact-item dd {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .footer__contact-item dd {
    font-size: 2rem;
  }
}
.footer__nav {
  width: 100%;
  max-width: 524px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 43.89%);
  gap: 3rem 12.22%;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    max-width: 13rem;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 4rem;
  }
}
.footer__nav-item {
  height: 5rem;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    height: 3rem;
    font-size: 1.3rem;
  }
}
.footer__nav-item:hover {
  background-color: #fff;
  color: #0b0078;
}
.footer__copyright {
  margin-top: 5rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 3rem;
  }
}

.top .section__head,
.top .section__content {
  max-width: 1024px;
}
.top .section__head {
  font: 500 2.4rem/1 "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .top .section__head {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
  }
}
.top .section__title {
  font: 400 6rem/1 kaushan-script, "Kaushan Script", cursive;
}
@media screen and (max-width: 767px) {
  .top .section__title {
    font-size: 3rem;
  }
}
.top .section__title:not(:only-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top .section__title:not(:only-child) {
    margin-bottom: 1rem;
  }
}
.top .section__content {
  padding-bottom: 0;
}

.top-mv__gallery,
.top-mv__gallery-content,
.top-mv__gallery-list,
.top-mv__gallery-item {
  width: 100%;
  height: 100%;
}

.top-intro {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("./img/intro/bg-water.jpg");
  padding-top: 0;
  padding-bottom: 17rem;
  z-index: 3;
  -webkit-clip-path: url("#wave");
  clip-path: url("#wave");
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-intro {
    padding-top: 1.3rem;
    padding-bottom: 3rem;
  }
}
.top-intro__waves {
  height: 15rem;
}
.top-intro__item {
  display: grid;
  z-index: 1;
  grid-template-columns: [col1-start] 38.5% [col1-end col2-start] 11.5% [col2-end col3-start] 50% [col3-end];
  grid-template-rows: [row1-start] 12.5rem [row1-end row2-start] 1fr [row2-end row3-start] auto [row3-end row4-start] auto [row4-end];
}
@media screen and (max-width: 767px) {
  .top-intro__item {
    grid-template-columns: 100%;
    grid-template-rows: initial;
    grid-template-areas: "title" "gallery_main" "gallery_nav" "gallery_note" "text";
  }
}
.top-intro__item:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .top-intro__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .top-intro__item:nth-child(even) {
    grid-template-columns: [col1-start] 50% [col1-end col2-start] 11.5% [col2-end col3-start] 38.5% [col3-end];
  }
}
.top-intro__item:nth-child(even) .top-intro__gallery--main {
  grid-area: row1-start/col1-start/row2-end/col2-end;
}
.top-intro__item:nth-child(even) .top-intro__title {
  grid-area: row1-start/col2-start/row1-end/col3-end;
}
.top-intro__item:nth-child(even) .top-intro__text {
  grid-area: row2-start/col3-start/row2-end/col3-end;
}
.top-intro__item--wa .top-intro__title {
  padding-top: 2.5rem;
  color: #1f196a;
}
@media screen and (max-width: 767px) {
  .top-intro__item--wa .top-intro__title {
    padding-top: 0;
  }
}
.top-intro__item--wp .top-intro__gallery--main {
  padding-top: 3.5rem;
  height: 46.5rem;
}
@media screen and (max-width: 767px) {
  .top-intro__item--wp .top-intro__gallery--main {
    padding-top: 0;
  }
}
.top-intro__item--wp .top-intro__title {
  margin-left: -1rem;
  color: #48970e;
}
@media screen and (max-width: 767px) {
  .top-intro__item--wp .top-intro__title {
    margin-left: initial;
    text-align: initial;
  }
}
.top-intro__item--wp .top-intro__title p {
  text-indent: 19rem;
}
@media screen and (max-width: 767px) {
  .top-intro__item--wp .top-intro__title p {
    text-indent: 0;
    text-align: right;
  }
}
.top-intro__item--le .top-intro__title {
  font-size: 5.5rem;
  color: #f84600;
  font-family: poprumcute, fantasy;
  margin-left: auto;
  margin-right: 19.5%;
}
@media screen and (max-width: 767px) {
  .top-intro__item--le .top-intro__title {
    width: 12rem;
    max-width: 100%;
    padding: 0;
    margin-right: auto;
    text-align: initial;
  }
}
.top-intro__item--le .top-intro__title p {
  text-indent: 13rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .top-intro__item--le .top-intro__title p {
    text-indent: 0;
    margin-top: -1rem;
    text-align: right;
  }
}
.top-intro__title {
  grid-area: row1-start/col1-start/row1-end/col2-end;
  white-space: nowrap;
  font: 400 6rem/1 kaushan-script, "Kaushan Script", cursive;
  text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
    -2px -2px 0 #fff, 2px 0px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff,
    0px -2px 0 #fff, 2px 2px 2px rgba(255, 74, 42, 0);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-intro__title {
    grid-area: title !important;
    padding: 0 1.2rem;
    margin-bottom: 1rem;
    white-space: initial;
    font-size: 3rem !important;
    text-align: center;
    line-height: initial;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
      -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff,
      0px -1px 0 #fff, 1px 1px 1px rgba(255, 74, 42, 0);
  }
}
@media screen and (min-width: 768px) {
  .top-intro__title span {
    font-size: 4rem;
  }
}
.top-intro__text {
  grid-area: row2-start/col1-start/row2-end/col1-end;
  font: 300 1.6rem/1.6 kozuka-gothic-pr6n, sans-serif;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-intro__text {
    grid-area: text !important;
    margin-top: 1.5rem;
    padding: 0;
    font: 500 1.3rem/2 "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
      sans-serif;
  }
}
.top-intro__gallery {
  overflow: hidden;
}
.top-intro__gallery--main {
  grid-area: row1-start/col2-start/row2-end/col3-end;
  height: 43rem;
}
@media screen and (max-width: 767px) {
  .top-intro__gallery--main {
    grid-area: gallery_main !important;
    height: 24rem !important;
  }
}
.top-intro__gallery--nav {
  grid-area: row3-start/col1-start/row3-end/col3-end;
  margin: 2.5rem 0 1.5rem;
  height: 16rem;
}
@media screen and (max-width: 767px) {
  .top-intro__gallery--nav {
    grid-area: gallery_nav !important;
    margin: 1rem 0 0.7rem;
    height: 5.6rem;
  }
}
.top-intro__gallery--nav .top-intro__gallery-item {
  width: 23.4%;
  margin: 0 2.13% 0 0;
}
@media screen and (max-width: 767px) {
  .top-intro__gallery--nav .top-intro__gallery-item {
    width: 24%;
    margin-right: 1.33%;
  }
}
.top-intro__gallery-content {
  width: 100%;
  height: 100%;
}
.top-intro__gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-intro__gallery-item {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none !important;
}
.top-intro__gallery-item img {
  display: block;
}
.top-intro__gallery-note {
  grid-area: row4-start/col1-start/row4-end/col3-end;
  font: 300 1.6rem/1 kozuka-gothic-pr6n, sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-intro__gallery-note {
    grid-area: gallery_note;
    font-size: 1.1rem;
  }
}
.top-intro__footnote {
  margin-top: 3rem;
  font: 300 1.1rem/1 kozuka-gothic-pr6n, sans-serif;
  color: #4b4b4b;
  text-align: right;
}

.top-news2 {
  max-width: 100%;
}

.top-news {
  padding-top: 3.2rem;
  padding-bottom: 5rem;
  font: 300 1.4rem kozuka-gothic-pr6n, sans-serif;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-bottom: 12rem;
  }
}
.top-news .section__head {
  color: #00828f;
}
.top-news__list {
  width: 100%;
  padding: 8rem 3rem;
  position: relative;
}
.top-news__list::before,
.top-news__list::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3rem;
  background: url("./img/cloud-border-2.svg") no-repeat left top/100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-news__list::before,
  .top-news__list::after {
    background-size: cover;
  }
}
.top-news__list::before {
  top: 0;
}
.top-news__list::after {
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.top-news__item {
  width: 100%;
  /* max-width: 646px; */
  max-width: 660px;
  margin: 0 auto;
  /* display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: center; */
}
.top-news__item .ttl_wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-news__item .ttl_wrap {
    display: block;
  }
}
/* 続きを見る機能のCSS */
.text-content {
  position: relative;
}

.text-truncated {
  max-height: 60px;
  overflow: hidden;
  position: relative;
}

.text-truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(transparent, white);
}

.js-read-more {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
  text-decoration: underline;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.js-read-more:hover {
  color: #764ba2;
}

.text-expanded {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    max-height: 60px;
  }
  to {
    opacity: 1;
    max-height: 1000px;
  }
}
.top-news__item .ttl {
  font-size: 20px;
}
.top-news__item .text {
  font-family: "kozuka-gothic-pr6n", sans-serif;
}
.top-news__item:not(:last-of-type) {
  margin-bottom: 2rem;
}
.top-news__item a {
  color: #00828f;
}
.top-news__movie {
  width: 100%;
  margin-top: 3.5rem;
}
.top-news__movie video,
.top-news__movie iframe {
  width: 100%;
  border: none;
  aspect-ratio: 1024/575;
}

.top-camp {
  padding-top: 15rem;
  padding-bottom: 6.2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-camp {
    padding-top: 7.3rem;
    padding-bottom: 3.5rem;
  }
}
.top-camp .section__head {
  color: #025f64;
  margin-bottom: 6.7rem;
}
.top-camp__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 48.8%);
  gap: 5rem 2.4%;
}
@media screen and (max-width: 767px) {
  .top-camp__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.top-fa {
  padding: 8rem 0 6.5rem;
  background-color: #dbdcdf;
}
@media screen and (max-width: 767px) {
  .top-fa {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
}
.top-fa .section__head {
  color: #736f6f;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 767px) {
  .top-fa .section__head {
    margin-bottom: 2.6rem;
  }
}
.top-fa .section__content {
  max-width: 100%;
}
.top-fa__item {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-areas: "left right";
}
@media screen and (max-width: 767px) {
  .top-fa__item {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
}
@media screen and (max-width: 767px) {
  .top-fa__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.top-fa__item:nth-of-type(even) .top-fa__details {
  grid-area: left;
}
@media screen and (max-width: 767px) {
  .top-fa__item:nth-of-type(even) .top-fa__details {
    grid-area: initial;
  }
}
.top-fa__item:nth-of-type(even) .top-fa__image {
  grid-area: right;
}
@media screen and (max-width: 767px) {
  .top-fa__item:nth-of-type(even) .top-fa__image {
    grid-area: initial;
  }
}
.top-fa__details {
  padding: 5.3rem 7.6rem 5.3rem 3.2rem;
  font: 300 1.6rem kozuka-gothic-pr6n, sans-serif;
  color: #000;
}
@media screen and (max-width: 767px) {
  .top-fa__details {
    padding: 1.8rem 0 0;
  }
}
.top-fa__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 49.5rem;
  margin-bottom: 3.3rem;
  border-bottom: 7px solid #736f6f;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .top-fa__title {
    text-align: center;
    max-width: initial;
    margin-bottom: 1rem;
    border-bottom: 1px solid #fff;
    padding: 0 0 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.top-fa__title-text {
  display: inline-block;
  font: 300 2.8rem/1.4 kozuka-gothic-pr6n, sans-serif;
}
@media screen and (max-width: 767px) {
  .top-fa__title-text {
    font-size: 1.8rem;
  }
}
.top-fa__title-icon {
  margin-left: 1.5rem;
  margin-bottom: -1.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-fa__title-icon {
    margin-left: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-fa__title-icon img {
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-fa__title-icon.icon-cafe img {
    height: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-fa__text {
    font-size: 1.2rem;
  }
}
.top-fa__event {
  margin-top: 13.3rem;
}
@media screen and (max-width: 767px) {
  .top-fa__event {
    margin-top: 3rem;
  }
}
.top-fa__event .top-fa__text {
  max-width: 100%;
}
.top-fa__event-title {
  font: 400 6rem/1 kozuka-gothic-pr6n, sans-serif;
  color: #736f6f;
  text-align: center;
  margin-bottom: 3.2rem;
}
.top-fa__button {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .top-fa__button {
    margin: 1.8rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.top-fa__button .button {
  width: 22.85rem;
  height: 4rem;
  border-color: #736f6f;
  font: 400 2rem kozuka-gothic-pr6n, sans-serif;
  color: #4c4b4b;
}
.top-fa__button .button:hover {
  color: #dbdcdf;
  background-color: #736f6f;
}

.top-gallery {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .top-gallery {
    padding-top: 7.3rem;
    padding-bottom: 3.5rem;
  }
}
.top-gallery .section__head {
  color: #025f64;
  margin-bottom: 6.7rem;
}
@media screen and (max-width: 767px) {
  .top-gallery .section__head {
    margin-bottom: 2.6rem;
  }
}
.top-gallery .section__content {
  max-width: 100%;
}
.top-gallery .top-gallery__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.top-gallery .top-gallery__item {
  max-width: 30%;
  width: 100%;
  height: auto;
}
.top-gallery .movie-list .top-gallery__item {
  max-width: 1024px;
}
@media screen and (max-width: 767px) {
  .top-gallery .top-gallery__item {
    max-width: calc((100% - 1.5rem) / 2);
  }
  .top-gallery .movie-list .top-gallery__item {
    max-width: 100%;
  }
}
.top-gallery .top-gallery__item .top-gallery__image img {
  width: 100%;
  height: auto;
}
.top-gallery .top-gallery__item .top-gallery__movie video{
  aspect-ratio: 1024 / 575;
  width: 100%;
  height: auto;
  min-width: 0;
}

.top-qa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-qa {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.top-qa .section__head {
  cursor: pointer;
  max-width: 300px;
  position: relative;
  color: #025f64;
}
.top-qa .section__head::before,
.top-qa .section__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  border-top: 2px solid #025f64;
}
.top-qa .section__head::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top-qa .section__head::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-qa .section__head.active::after {
  opacity: 0;
}
.top-qa .section__title span {
  font-family: a-otf-ryumin-pr6n, serif;
  font-style: italic;
  font-size: inherit;
}
.top-qa .section__title > * {
  display: inline-block;
}
.top-qa .section__content {
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s linear;
  transition: max-height 1s linear;
}
.top-qa__item:not(:last-child) {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .top-qa__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.top-qa__item-q,
.top-qa__item-a {
  font: 300 1.8rem kozuka-gothic-pr6n, sans-serif;
  color: #4b4b4b;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .top-qa__item-q,
  .top-qa__item-a {
    font-size: 1.3rem;
  }
}
.top-qa__item-q::before,
.top-qa__item-a::before {
  font: 400 2rem kaushan-script, "Kaushan Script", cursive;
  color: #025f64;
  display: block;
}
.top-qa__item-q::before {
  content: "Q";
}
.top-qa__item-a {
  font: 300 1.8rem kozuka-gothic-pr6n, sans-serif;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .top-qa__item-a {
    padding-left: 1rem;
  }
}
.top-qa__item-a::before {
  content: "A";
}

.camp__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 48.8%);
  gap: 5rem 2.4%;
}
@media screen and (max-width: 767px) {
  .camp__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.camp__item {
  width: 100%;
  font-size: 1.6rem;
  color: #a1866a;
}
@media screen and (max-width: 767px) {
  .camp__item {
    font-size: 1.3rem;
  }
}
.camp__gallery-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .camp__gallery-wrap {
    margin-bottom: 2rem !important;
  }
}
.camp__gallery {
  width: 100%;
  overflow: hidden;
}
.camp__gallery--main {
  height: 32rem;
}
@media screen and (max-width: 767px) {
  .camp__gallery--main {
    height: 22.3rem !important;
  }
}
.camp__gallery--nav {
  margin-top: 1rem;
  height: 10.6rem;
}
@media screen and (max-width: 767px) {
  .camp__gallery--nav {
    margin-top: 0.8rem;
    height: 7.3rem !important;
  }
}
.camp__gallery--nav .camp__gallery-item {
  width: 33.33%;
}
.camp__gallery-content {
  width: 100%;
  height: 100%;
}
.camp__gallery-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.camp__gallery-item {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none !important;
}
.camp__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .camp__title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
.camp__desc {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .camp__desc {
    max-width: 32rem !important;
  }
}

.page .section {
  margin-bottom: 4rem;
}
.page .section:last-child .section__content {
  padding-bottom: 0;
}
.page .section:last-child .section__content::after {
  display: none;
}
.page .section__content {
  position: relative;
}
.page .section__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 2px solid rgba(161, 134, 106, 0.3019607843);
}

.meal {
  color: #a1866a;
}
.meal .section__content {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .meal .section__content::after {
    width: calc(100% - var(--spad) * 2);
  }
}
.meal__desc {
  margin-top: 6.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .meal__desc {
    margin-top: 3.5rem;
  }
}
.meal__desc .section__head {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .meal__desc .section__head {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .meal__desc .section__content {
    font-size: 1.2rem;
    padding-bottom: 3.9rem;
  }
}
.meal__dinner .section__head {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .meal__dinner .section__head {
    margin-bottom: 2rem;
  }
}
.meal__morning .section__head {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .meal__morning .section__head {
    margin-bottom: 3.1rem;
  }
}
.meal__menu {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 63.8%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title gallery" "cont gallery";
  gap: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .meal__menu {
    grid-template-columns: 100%;
    grid-template-areas: "title" "gallery" "cont";
    gap: 0;
  }
}
.meal__menu:not(:last-child) {
  margin-bottom: 6.3rem;
}
.meal__menu-title {
  grid-area: title;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .meal__menu-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.1rem;
  }
}
.meal__menu-content {
  grid-area: cont;
}
@media screen and (max-width: 767px) {
  .meal__menu-content {
    max-width: 300px;
    margin: 0 auto;
  }
}
.meal__menu-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 74.6% 23.9%;
  gap: 1rem 1.5%;
}
@media screen and (max-width: 767px) {
  .meal__menu-gallery {
    margin-bottom: 2rem;
    grid-template-columns: 100%;
  }
}
.meal__gallery {
  overflow: hidden;
  height: 40rem;
}
@media screen and (max-width: 767px) {
  .meal__gallery {
    height: 27.8rem;
  }
}
@media screen and (max-width: 767px) {
  .meal__gallery--nav {
    display: none;
  }
}
.meal__gallery--nav .meal__gallery-item {
  height: 13rem;
  margin: 0 0 0.6rem;
}
.meal__gallery-content {
  width: 100%;
  height: 100%;
}
.meal__gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.meal__gallery-item {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .meal__reservation {
    margin-bottom: 2.7rem;
  }
}
@media screen and (max-width: 767px) {
  .meal__reservation .section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: unset;
    padding: 0 0 11rem;
  }
}
.meal__reservation-content {
  width: 100%;
  margin-top: 8rem;
  background-color: #f1efea;
  padding: 6.5rem 4rem 13.5rem;
}
@media screen and (max-width: 767px) {
  .meal__reservation-content {
    margin-top: 4rem;
    padding: 8rem var(--spad);
  }
}
.meal__reservation-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-template-columns: repeat(3, 30rem);
  gap: 6rem 2rem;
}
@media screen and (max-width: 1200px) {
  .meal__reservation-list {
    max-width: 700px;
    grid-template-columns: repeat(2, 30rem);
  }
}
@media screen and (max-width: 767px) {
  .meal__reservation-list {
    max-width: 214px;
    grid-template-columns: 100%;
    gap: 4rem;
  }
}
.meal__reservation-text {
  height: 10.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .meal__reservation-text {
    height: auto;
    margin-bottom: 2.4rem;
  }
}
.meal__reservation-title {
  font-size: 2.8rem;
  color: #616161;
}
@media screen and (max-width: 767px) {
  .meal__reservation-title {
    font-size: 1.6rem;
  }
}
.meal__reservation-title p {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .meal__reservation-title p {
    font-size: 1.6rem;
  }
}
.meal__reservation-price {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  color: #616161;
}
@media screen and (max-width: 767px) {
  .meal__reservation-price {
    font-size: 13px;
  }
}
.meal__reservation-img {
  max-height: 40rem;
}
.meal__reservation-img img {
  width: 100%;
}
.meal__reservation-note {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .meal__reservation-note {
    margin-top: unset;
  }
}
@media screen and (max-width: 767px) {
  .meal__drink {
    margin-bottom: 19.8rem;
  }
}
.meal__drink .section__head {
  margin-bottom: 14.5rem;
}
@media screen and (max-width: 767px) {
  .meal__drink .section__head {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .meal__drink .section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.meal__drink-list {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 45.37%);
  gap: 6rem 9.26%;
}
@media screen and (max-width: 767px) {
  .meal__drink-list {
    grid-template-columns: 100%;
    gap: 62px;
  }
}
.meal__drink-item {
  line-height: 1;
  padding: 0 5rem 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .meal__drink-item {
    line-height: 1.45;
  }
}
.meal__drink-note {
  margin-top: 7.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .meal__drink-note {
    margin-top: 0;
    margin-bottom: 4.4rem;
  }
}

.access {
  margin-top: 6.8rem;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 1.4rem;
  }
}
.access .section__head {
  color: #7d6853;
}
.access__navi {
  margin-bottom: 9.9rem;
}
@media screen and (max-width: 767px) {
  .access__navi {
    margin-bottom: 6.5rem;
  }
}
.access__navi .section__content {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .access__navi .section__content {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.access__navi-map {
  width: 100%;
  height: 90rem;
  background-color: #878787;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .access__navi-map {
    height: 24.6rem;
    margin-bottom: 4.5rem;
  }
}
.access__navi-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.access__navi-image {
  max-width: 1193px;
  margin: 0 auto;
}
.access__info {
  margin-bottom: 9.4rem;
}
@media screen and (max-width: 767px) {
  .access__info {
    margin-bottom: 3.1rem;
  }
}
.access__info .section__content {
  padding-bottom: 5.3rem;
}
@media screen and (max-width: 767px) {
  .access__info .section__content {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.access__info-table {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
@media screen and (max-width: 767px) {
  .access__info-table {
    grid-template-columns: 46.3% 1fr;
  }
}
.access__info-table .icon-dia {
  width: 2.5rem;
  height: 2rem;
  margin: 0 0.7rem;
  display: inline-block;
}
.access__info-table dt,
.access__info-table dd {
  border-bottom: 2px solid #a1866a;
  padding-bottom: 2.4rem;
  font-size: 2.8rem;
  color: #616161;
}
@media screen and (max-width: 767px) {
  .access__info-table dt,
  .access__info-table dd {
    padding-bottom: 1.5rem;
  }
}
.access__info-table dt:nth-child(n + 3),
.access__info-table dd:nth-child(n + 3) {
  padding-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .access__info-table dt:nth-child(n + 3),
  .access__info-table dd:nth-child(n + 3) {
    padding-bottom: 1.5rem;
  }
}
.access__info-table dt {
  font-weight: 700;
  text-align: right;
  padding-right: 21.48%;
}
@media screen and (max-width: 767px) {
  .access__info-table dt {
    font-size: 1.4rem;
    text-align: center;
  }
}
.access__info-table dd {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .access__info-table dd {
    font-size: 1.3rem;
  }
}
.access__nearby-facility {
  display: grid;
  grid-template-columns: 1fr 49%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title image" "desc image";
  gap: 2.8rem 2.3%;
}
@media screen and (max-width: 767px) {
  .access__nearby-facility {
    grid-template-columns: 100%;
    grid-template-areas: "image" "title" "desc" !important;
    gap: initial !important;
  }
}
.access__nearby-facility:not(:last-child) {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .access__nearby-facility:not(:last-child) {
    margin-bottom: 4.6rem;
  }
}
.access__nearby-name {
  grid-area: title;
  border-left: 30px solid #7d6853;
  color: #616161;
}
@media screen and (max-width: 767px) {
  .access__nearby-name {
    margin: 3rem 0 2rem;
    font-size: 1.3rem;
  }
}
.access__nearby-details {
  grid-area: desc;
  font: 400 1.6rem kozuka-gothic-pr6n, sans-serif;
  color: #616161;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  .access__nearby-details {
    font-size: 1.3rem;
    padding-right: 0;
  }
}
.access__nearby-image {
  grid-area: image;
}
@media screen and (max-width: 767px) {
  .access__nearby-image {
    height: 22.3rem;
  }
}
.access__nearby-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access__nearby-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.access__nearby-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .access__nearby-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .access__nearby-info p {
    width: 100%;
  }
}
.access__onsen {
  margin-bottom: 8.6rem;
}
@media screen and (max-width: 767px) {
  .access__onsen {
    margin-bottom: 1.8rem;
  }
}
.access__onsen .section__head {
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .access__onsen .section__head {
    margin-bottom: 3.7rem;
  }
}
.access__onsen .section__content {
  padding-bottom: 20.6rem;
}
@media screen and (max-width: 767px) {
  .access__onsen .section__content {
    padding-bottom: 7.2rem;
  }
}
.access__tour {
  margin-bottom: 10.6rem;
}
@media screen and (max-width: 767px) {
  .access__tour {
    margin-bottom: 3.5rem;
  }
}
.access__tour .section__head {
  margin-bottom: 9.8rem;
}
@media screen and (max-width: 767px) {
  .access__tour .section__head {
    margin-bottom: 2.3rem;
  }
}
.access__tour .section__content {
  padding-bottom: 3.5rem;
}
.access__tour-list .access__nearby-facility:nth-child(even) {
  grid-template-areas: "image title" "image desc";
}
@media screen and (max-width: 767px) {
  .access__tour-list .access__nearby-facility:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
.access__hospital {
  margin-bottom: 25.5rem;
}
@media screen and (max-width: 767px) {
  .access__hospital {
    margin-bottom: 15rem;
  }
}
.access__hospital .section__title {
  margin-bottom: 9.1rem;
}
@media screen and (max-width: 767px) {
  .access__hospital .section__title {
    margin-bottom: 3.8rem;
  }
}
.access__hospital .section__content {
  max-width: 60rem;
}
.access__hospital-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .access__hospital-table {
    margin-top: 1.8rem;
  }
}
.access__hospital-table th {
  text-align: center;
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  .access__hospital-table th {
    width: 20%;
    min-width: 6.5rem;
  }
}
.access__hospital-table th,
.access__hospital-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #7d6853;
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    sans-serif;
  color: #616161;
}
@media screen and (max-width: 767px) {
  .access__hospital-table th,
  .access__hospital-table td {
    font-size: 1.1rem;
    padding: 0.75rem 0.5rem;
  }
}

.white {
  color: #fff;
}

.white-bg {
  background: #fff;
}

.black {
  color: #000;
}

.black-bg {
  background: #000;
}

.overflow {
  overflow: hidden;
}

.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 1;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.facilities {
  margin-top: 4.8rem;
  color: #a1866a;
}
.facilities > *:not(.facilities__intro) .section__title {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .facilities > *:not(.facilities__intro) .section__title {
    font-size: 1.8rem;
  }
}
.facilities__intro .section__content {
  padding-bottom: 4rem;
  text-align: center;
}
.facilities__map {
  margin-bottom: 6rem;
}
.facilities__map .section__head {
  margin-bottom: 4.6rem;
}
.facilities__map .section__title {
  font-family: ta-f1blockline, sans-serif;
}
@media screen and (max-width: 767px) {
  .facilities__map .section__title {
    font-size: 1.8rem;
  }
}
.facilities__map .section__content {
  padding-bottom: 4.6rem;
}
.facilities__map-img {
  width: 100%;
}
.facilities__map-img img {
  width: 100%;
}
.facilities__campsites {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .facilities__campsites {
    margin-bottom: 3rem;
  }
}
.facilities__campsites .section__head {
  margin-bottom: 5.8rem;
}
.facilities__campsites .section__content {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .facilities__campsites .section__content {
    padding-bottom: 10rem;
  }
}
.facilities__campsites-list {
  display: grid;
  grid-template-columns: repeat(2, 48.8%);
  gap: 8rem 2.4%;
}
@media screen and (max-width: 767px) {
  .facilities__campsites-list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.facilities__campsites-list .camp__gallery-wrap {
  margin-bottom: 8.5rem;
}
.facilities__campsites-list .camp__gallery--main {
  height: 40rem;
}
.facilities__campsites-list .camp__gallery--nav {
  height: 13.2rem;
}
.facilities__campsites-list .camp__desc {
  max-width: 49.2rem;
}
.facilities__other {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .facilities__other {
    margin-bottom: 6.8rem;
  }
}
.facilities__other .section__head {
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 767px) {
  .facilities__other .section__head {
    margin-bottom: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .facilities__other .section__content {
    padding: 0;
  }
}
.facilities__other-feat {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  gap: 7rem 2%;
}
@media screen and (max-width: 767px) {
  .facilities__other-feat {
    grid-template-columns: 100%;
    gap: 2.6rem;
    padding: 0 var(--spad);
  }
}
.facilities__other-list {
  margin-top: 7rem;
  border-top: 2px solid rgba(161, 134, 106, 0.3019607843);
}
@media screen and (max-width: 767px) {
  .facilities__other-list {
    margin-top: 4.8rem;
  }
}
.facilities__other-item {
  padding: 1.2rem 1rem;
  border-bottom: 2px solid rgba(161, 134, 106, 0.3019607843);
}
@media screen and (max-width: 767px) {
  .facilities__other-item {
    padding: 1.8rem var(--spad);
  }
}
.facilities__other-item--feat {
  padding: 0 !important;
  border: none;
}
.facilities__other-item--feat .facilities__other-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 300 2.4rem kozuka-gothic-pr6n, sans-serif;
  margin: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .facilities__other-item--feat .facilities__other-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.facilities__other-item--feat .facilities__other-desc {
  font: 300 1.6rem kozuka-gothic-pr6n, sans-serif;
}
@media screen and (max-width: 767px) {
  .facilities__other-item--feat .title-icon img {
    height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .facilities__other-item--feat .icon-cafe img {
    height: 3.5rem;
  }
}
.facilities__other-img {
  width: 100%;
  height: 40rem;
}
@media screen and (max-width: 767px) {
  .facilities__other-img {
    height: 22.2rem;
  }
}
.facilities__other-title {
  margin-bottom: 0.5rem;
}
.facilities__other-title h3 {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .facilities__other-title h3 {
    font: 700 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
      sans-serif !important;
  }
}
.facilities__other-title .title-icon img {
  margin-left: 1rem;
}
.facilities__other-desc {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .facilities__other-desc {
    font: 500 1.3rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
      sans-serif !important;
  }
}

.meal__gallery--main .splide__arrow {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .meal__gallery--main .splide__arrow {
    display: none;
  }
}
.meal__gallery--main .splide__arrow:hover {
  opacity: 0.7;
}

/*========= LoadingのためのCSS ===============*/
#splash,
#splash_logo {
  -webkit-transition: opacity 1500ms ease 2500ms;
  transition: opacity 1500ms ease 2500ms;
}
#splash.hide,
#splash_logo.hide {
  opacity: 0;
  pointer-events: none;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  #splash_logo svg {
    width: 375px;
    -webkit-transform: scale(0.8) translateX(-10px);
    transform: scale(0.8) translateX(-10px);
  }
}

/*========= SVG操作手書き風にするためのCSS ===============*/
#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 95; /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* 線の間隔を指定する */
  stroke-dashoffset: 1500; /* 線の位置を指定する */
}

/*========= customise 2023.04.10~ ===============*/
.footer-contact {
  margin: 35px auto;
}

.footer-contact p {
  margin-bottom: 25px;
}

.footer-contact dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

.footer-contact dl dt {
  display: inline-block;
  padding-right: 2%;
  text-align: right;
  vertical-align: middle;
  padding-bottom: 10px;
  width: 48%;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact dl dt small {
  font-size: 55%;
}

.footer-contact dl dd {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  padding-bottom: 10px;
  width: 48%;
  padding-left: 2%;
  letter-spacing: 0.08em;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .footer-contact dl {
    display: block;
  }
  .footer-contact dl dt {
    display: block;
    padding-right: 0;
    text-align: center;
    padding-bottom: 5px;
    width: 100%;
    font-size: 13px;
  }
  .footer-contact dl dt small {
    font-size: 55%;
  }
  .footer-contact dl dd {
    display: block;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    padding-left: 0;
    font-size: 18px;
  }
}

/*========= 2023.10.31 top-banner ===============*/

.top-banner img {
  width: 100%;
}

/*========= 2023.10.31 leaves ===============*/

.leaves-container {
  padding: 50px 0 35px;
  position: relative;
  overflow: hidden; /* コンテナからはみ出した要素を隠す */
}

/* ===== 落ち葉のスタイル ===== */

/* 落ち葉の共通スタイル */
.leaf {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  animation: animate-leaf 8s linear;
}

/* 落ち葉1 */
.leaf-1 {
  background-image: url("img/leaves/leaf-1.svg"); /* 任意のパスを記入 */
}

/* 落ち葉2 */
.leaf-2 {
  background-image: url("img/leaves/leaf-2.svg"); /* 任意のパスを記入 */
}

/* 落ち葉3 */
.leaf-3 {
  background-image: url("img/leaves/leaf-3.svg"); /* 任意のパスを記入 */
}

/* ===== 落ち葉が降るアニメーション ===== */
@keyframes animate-leaf {
  0% {
    opacity: 0;
    top: 0;
    transform: rotate(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(1080deg);
  }
}
