@charset "UTF-8";
.fade-in-bottom {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.fade-in-bottom.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body {
  color: #36454F;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #36454F;
  display: flex; /* フレックスボックスに有効に */
  flex-flow: column; /* 要素を縦に並べる */
  min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
}
body main {
  flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
}
body main .w1000-container {
  max-width: 1000px;
  margin: 0 auto;
}
body img {
  width: 100%;
  vertical-align: bottom;
}
body li {
  list-style-type: none;
}
body a {
  text-decoration: none;
  color: #36454F;
}
body p {
  font-weight: normal;
}
body .section-container {
  padding: 240px 8%;
}
body h2.section-title {
  font-family: "Water Brush", cursive;
  font-size: 8.5rem;
  letter-spacing: 1rem;
  line-height: 64px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: rotate(8.97turn);
  position: relative;
  padding: 120px 0 240px 0;
  color: #008080;
  opacity: 0.5;
}
@media (max-width: 900px) {
  body h2.section-title {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
@media (max-width: 480px) {
  body h2.section-title {
    font-size: 3rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
body h2.section-title span.ja {
  font-family: "Sawarabi Mincho", serif;
  color: #131818;
  font-size: 2rem;
  display: block;
  position: absolute;
  transform: rotate(-8.97turn);
  top: 60%;
  right: 20%;
  letter-spacing: 5px;
}
@media (max-width: 900px) {
  body h2.section-title span.ja {
    font-size: 1.2rem;
    right: 30%;
    margin-top: -20px;
    opacity: 1;
  }
}
body .page-header {
  background-image: url(../img/page-title-bg.jpg);
  background-position: center;
  height: 450px;
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 900px) {
  body .page-header {
    height: 300px;
    padding: 40px 0;
  }
}
body .page-header .w1000-container h2.page-title {
  font-family: "Water Brush", cursive;
  font-size: 8.5rem;
  letter-spacing: 1rem;
  line-height: 64px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: rotate(8.97turn);
  position: relative;
  padding: 120px 0 240px 0;
  color: #E6F0F5;
  opacity: 0.5;
}
@media (max-width: 900px) {
  body .page-header .w1000-container h2.page-title {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
@media (max-width: 480px) {
  body .page-header .w1000-container h2.page-title {
    font-size: 3rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
body .page-header .w1000-container h2.page-title span.ja {
  font-family: "Sawarabi Mincho", serif;
  color: #131818;
  font-size: 2rem;
  display: block;
  position: absolute;
  transform: rotate(-8.97turn);
  top: 60%;
  right: 20%;
  letter-spacing: 5px;
}
@media (max-width: 900px) {
  body .page-header .w1000-container h2.page-title span.ja {
    font-size: 1.2rem;
    right: 30%;
    margin-top: -20px;
    opacity: 1;
  }
}
body span.category {
  color: #fff;
  padding: 5px 15px;
  margin-left: 32px;
  background-color: #DEB887;
  border-radius: 20px;
}
@media (max-width: 900px) {
  body span.category {
    font-size: 0.8rem;
  }
}
body p.date {
  letter-spacing: 3px;
}
body p.single-date {
  letter-spacing: 3px;
}
body p.single-date span.single-category {
  color: #fff;
  padding: 5px 15px;
  margin-right: 32px;
  background-color: #DEB887;
  border-radius: 20px;
}
@media (max-width: 900px) {
  body p.single-date span.single-category {
    font-size: 0.8rem;
  }
}

.more-btn {
  margin: 40px 0 40px auto;
  display: block;
  background-color: #DEB887;
  color: #fff;
  border: 3px solid #DEB887;
  padding: 24px 16px;
  width: 380px;
  border-radius: 15px;
  box-shadow: 5px 4px 10ox 0 #fff;
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 900px) {
  .more-btn {
    width: 280px;
    text-align: center;
    margin: 40px auto;
  }
}
.more-btn::after {
  content: "→";
  position: absolute;
  font-weight: bold;
  top: 30%;
  right: 10%;
  margin: 0 auto;
}
.more-btn p {
  font-weight: bold;
}
@media (max-width: 900px) {
  .more-btn p {
    font-size: 1rem;
  }
}
.more-btn:hover {
  color: #DEB887;
  background-color: #fff;
  box-shadow: 5px 4px 0 0 #DEB887;
}
.more-btn:active {
  box-shadow: none;
}

main {
  text-align: center;
  padding-top: 100px;
}
main .mainvisual {
  background-color: #008080;
}
main .mainvisual .w1000-container {
  position: relative;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container {
    min-height: 500px;
  }
}
main .mainvisual .w1000-container img.mv {
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .mainvisual .w1000-container p.mv-text {
  font-family: "Sawarabi Mincho", serif;
  font-weight: bold;
  text-align: left;
  line-height: 64px;
  position: absolute;
  bottom: 1%;
  left: 3%;
  font-size: 2.5rem;
  display: inline-block;
  text-shadow: 1px 1px 0.5px #ffffff, -1px 1px 0.5px #ffffff, 1px -1px 0.5px #ffffff, -1px -1px 0.5px #ffffff, 1px 0px 0.5px #ffffff, 0px 1px 0.5px #ffffff, -1px 0px 0.5px #ffffff, 0px -1px 0.5px #ffffff;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container p.mv-text {
    display: none;
  }
}
main .mainvisual .w1000-container ul.mv-iconlist p.sp-list-text {
  display: none;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist p.sp-list-text {
    display: inline-block;
    font-family: "Sawarabi Mincho", serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 10%;
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li {
  width: 50px;
  height: 50px;
  background-color: #008080;
  border-radius: 50%;
  position: absolute;
  position: absolute;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    background-color: #f4f6f5;
    background-color: none;
    border-radius: 0;
    padding: 3px 0;
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 30%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 20px solid #008080;
  border-bottom: 0;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li::after {
    display: none;
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-shopping-icon {
  top: 30%;
  left: 40%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-fish-icon {
  top: 35%;
  left: 18%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-spa-icon {
  top: 15%;
  left: 55%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-park-icon {
  top: 45%;
  left: 65%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-labo-icon {
  top: 25%;
  left: 70%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.mv-leaf-icon {
  top: 20%;
  left: 90%;
}
main .mainvisual .w1000-container ul.mv-iconlist li.fluffy1 {
  animation: fluffy1 3s infinite;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li.fluffy1 {
    animation: none;
  }
}
@keyframes fluffy1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li.fluffy2 {
  animation: fluffy2 2s linear infinite;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li.fluffy2 {
    animation: none;
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  65% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li.fluffy3 {
  animation: fluffy3 2s linear infinite;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li.fluffy3 {
    animation: none;
  }
}
@keyframes fluffy3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  65% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li a {
  display: block;
}
main .mainvisual .w1000-container ul.mv-iconlist li img {
  width: 30px;
  height: 40px;
  padding-top: 5px;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li img {
    background-color: #008080;
    border-radius: 50%;
    padding: 5px;
  }
}
main .mainvisual .w1000-container ul.mv-iconlist li p.sp-list {
  display: none;
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container ul.mv-iconlist li p.sp-list {
    display: inline;
  }
  main .mainvisual .w1000-container ul.mv-iconlist li p.sp-list:hover {
    color: #008080;
    font-weight: bold;
  }
}
@media (max-width: 900px) {
  main .mainvisual .w1000-container .sp-list-bg {
    position: absolute;
    bottom: 2%;
    right: 2%;
    max-width: 200px;
    height: 400px;
    background-color: #fff;
    opacity: 0.7;
    z-index: 10;
    padding: 16px;
  }
}

section#concept .section-container .w1000-container .concept-phrase {
  /* ここを長くするほど、画像がゆっくり切り替わります */
  height: 600vh;
  position: relative;
  background-color: #fff;
}
section#concept .section-container .w1000-container .concept-sticky-wrapper {
  position: sticky;
  top: calc(50% - 200px);
  height: 300px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 3%;
  max-width: 1200px;
  margin: 0 auto 240px auto;
  overflow: hidden;
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container .concept-sticky-wrapper {
    flex-direction: column;
    height: auto;
    top: 100px;
  }
}
section#concept .section-container .w1000-container .concept-text {
  width: 50%;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.25rem;
  line-height: 50px;
  letter-spacing: 8px;
  color: #008080;
}
@media (max-width: 480px) {
  section#concept .section-container .w1000-container .concept-text {
    letter-spacing: 3px;
    font-size: 1.05rem;
  }
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container .concept-text {
    width: 100%;
    margin-bottom: 80px;
  }
}
section#concept .section-container .w1000-container .concept-slide-window {
  width: 40%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container .concept-slide-window {
    height: 500px;
  }
}
@media (max-width: 480px) {
  section#concept .section-container .w1000-container .concept-slide-window {
    height: 400px;
  }
}
section#concept .section-container .w1000-container .concept-slide-window::before, section#concept .section-container .w1000-container .concept-slide-window::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container .concept-slide-window {
    width: 100%;
  }
}
section#concept .section-container .w1000-container .concept-slide-window::before {
  top: 0;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
}
section#concept .section-container .w1000-container .concept-slide-window::after {
  bottom: 0;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}
section#concept .section-container .w1000-container ul.concept-slide {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  /* JSでここを動かします */
  transition: transform 0.1s ease-out;
}
section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item {
  width: 100%;
  height: 300px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item {
    height: 500px;
  }
}
@media (max-width: 480px) {
  section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item {
    height: 400px;
  }
}
section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px 15px #fff;
}
section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item img {
    height: 500px;
  }
}
@media (max-width: 480px) {
  section#concept .section-container .w1000-container ul.concept-slide li.concept-slide-item img {
    height: 400px;
  }
}
section#concept .section-container .concept-message {
  position: relative;
  width: 100%;
  overflow: hidden;
}
section#concept .section-container .concept-message::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px 15px #fff;
  z-index: 2;
}
section#concept .section-container .concept-message video.bg {
  height: 1000px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  display: block;
}
section#concept .section-container .concept-message .w1000-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  padding: 0 24px;
  z-index: 5;
  text-align: center;
}
@media (max-width: 900px) {
  section#concept .section-container .concept-message .w1000-container {
    width: 100%;
    padding: 0 20px;
  }
}
section#concept .section-container .concept-message .w1000-container p.message-text {
  display: inline-block;
  line-height: 1.6;
  letter-spacing: 0.18em;
  font-weight: bold;
  margin: 0;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.3rem;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  section#concept .section-container .concept-message .w1000-container p.message-text {
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 2.5px;
  }
}

section#news {
  background-image: linear-gradient(0deg, #fff, #E6F0F5 5% 95%, #fff);
}
section#news .w1000-container article {
  max-width: 900px;
  height: 200px;
  border-radius: 15px;
  background-color: #fff;
  margin: 0 auto 120px;
  box-shadow: 5px 4px 0 #008080;
}
@media (max-width: 900px) {
  section#news .w1000-container article {
    max-width: 600px;
    height: 300px;
    height: auto;
  }
}
section#news .w1000-container article a {
  display: flex;
}
@media (max-width: 900px) {
  section#news .w1000-container article a {
    display: block;
  }
}
section#news .w1000-container article a .post-icatch {
  width: 55%;
}
@media (max-width: 900px) {
  section#news .w1000-container article a .post-icatch {
    width: 100%;
  }
}
section#news .w1000-container article a .post-icatch img {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media (max-width: 900px) {
  section#news .w1000-container article a .post-icatch img {
    clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
  }
}
section#news .w1000-container article a .post-text {
  text-align: left;
  width: 45%;
  padding: 3%;
}
@media (max-width: 900px) {
  section#news .w1000-container article a .post-text {
    width: 100%;
    padding: 5%;
  }
}
section#news .w1000-container article a .post-text p.date {
  letter-spacing: 3px;
}
section#news .w1000-container article a .post-text p.date span.category {
  color: #fff;
  padding: 5px 15px;
  margin-left: 32px;
  background-color: #DEB887;
  border-radius: 20px;
}
@media (max-width: 900px) {
  section#news .w1000-container article a .post-text p.date span.category {
    font-size: 0.8rem;
  }
}
section#news .w1000-container article a .post-text h3.post-title {
  margin: 32px 0;
  letter-spacing: 8px;
}
@media (max-width: 900px) {
  section#news .w1000-container article a .post-text h3.post-title {
    letter-spacing: 4px;
  }
}

section#guide .section-container .w1000-container p.guide-message {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.25rem;
  line-height: 50px;
  letter-spacing: 8px;
  color: #008080;
  position: relative;
}
@media (max-width: 480px) {
  section#guide .section-container .w1000-container p.guide-message {
    letter-spacing: 3px;
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {
  section#guide .section-container .w1000-container p.guide-message {
    display: none;
  }
}
section#guide .section-container .w1000-container p.guide-message::before {
  position: absolute;
  content: "\\\\";
  bottom: 0;
  left: 20%;
}
@media (max-width: 900px) {
  section#guide .section-container .w1000-container p.guide-message::before {
    display: none;
  }
}
section#guide .section-container .w1000-container p.guide-message::after {
  position: absolute;
  content: "//";
  bottom: 0;
  right: 20%;
}
@media (max-width: 900px) {
  section#guide .section-container .w1000-container p.guide-message::after {
    display: none;
  }
}

ul.guide-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 96px 0;
}

li.guide-item {
  width: 300px;
  height: 300px;
  background-color: #E6F0F5;
  border-radius: 15px;
}
li.guide-item a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
li.guide-item img {
  width: 150px;
  height: 150px;
}
li.guide-item p.guide-name {
  padding-top: 16px;
}

section#plan .section-container {
  background-image: linear-gradient(0deg, #fff, #E6F0F5 5% 95%, #fff);
}
section#plan .section-container .w1000-container p.plan-message {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.25rem;
  line-height: 50px;
  letter-spacing: 8px;
  color: #008080;
}
@media (max-width: 480px) {
  section#plan .section-container .w1000-container p.plan-message {
    letter-spacing: 3px;
    font-size: 1.05rem;
  }
}
section#plan .section-container .w1000-container ul.plan-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  section#plan .section-container .w1000-container ul.plan-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  section#plan .section-container .w1000-container ul.plan-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item {
  text-align: center;
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item a {
  transition: 0.3s;
  position: relative;
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item a:hover {
  transform: scale(1.05);
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item a .time-pic {
  height: 200px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 15px;
  border: 3px solid #008080;
  position: relative;
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item a .time-pic img {
  width: 150px;
  height: 150px;
}
section#plan .section-container .w1000-container ul.plan-list li.plan-item a .time-pic span.time {
  position: absolute;
  font-family: "Sawarabi Mincho", serif;
  font-size: 32px;
  color: #36454F;
}
section#plan .section-container .w1000-container .balloon {
  margin-top: 32px;
  position: relative;
  display: inline-block;
  padding: 32px;
  min-width: 120px;
  max-width: 100%;
  border-radius: 50px;
  background-color: #fff;
}
section#plan .section-container .w1000-container .balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 70%;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
  transform: skew(30deg);
  transform-origin: top;
}
@media (max-width: 900px) {
  section#plan .section-container .w1000-container .balloon::after {
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 20px solid #fff;
    border-bottom: 0;
    transform: skew(0);
  }
}
section#plan .section-container .w1000-container p.more-message {
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h3.accent-font {
  font-family: "Sawarabi Mincho", serif;
  color: #008080;
  font-size: 6rem;
  letter-spacing: 12px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  h3.accent-font {
    font-size: 4.5rem;
  }
}

p.wait-text {
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  p.wait-text {
    font-size: 1.2rem;
  }
}

.btn-wrapper {
  padding: 80px 5%;
}
.btn-wrapper a {
  margin-bottom: 32px;
}

.induction-btn {
  margin: 40px auto;
  display: block;
  background-color: #DEB887;
  color: #fff;
  border: 3px solid #DEB887;
  padding: 24px 16px;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 5px 4px 10ox 0 #fff;
  font-size: 1.5rem;
}
.induction-btn p {
  font-weight: bold;
}
@media (max-width: 900px) {
  .induction-btn p {
    font-size: 1rem;
  }
}
.induction-btn:hover {
  color: #DEB887;
  background-color: #fff;
  box-shadow: 5px 4px 0 0 #DEB887;
}
.induction-btn:active {
  box-shadow: none;
}
@media (max-width: 900px) {
  .induction-btn {
    margin: 10%;
  }
}

ul.guidetime-list {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-template-areas: "market fish" "market spa" "park labo" "park herb";
}
@media (max-width: 900px) {
  ul.guidetime-list {
    display: block;
  }
}
ul.guidetime-list p.order {
  white-space: nowrap;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  ul.guidetime-list p.order {
    font-size: 1rem;
  }
}
ul.guidetime-list li.facility {
  text-align: left;
  margin-top: 40px;
  line-height: 32px;
  /* 1番目：コネクト館（左上・縦長） */
  /* 2番目：伊豆コネクト市場（右上） */
  /* 3番目：コネクトの湯（右上の下） */
  /* 4番目：コネクト広場（左下・縦長） */
  /* 5番目：コネクトラボ（右下） */
  /* 6番目：コネクトハーブ館（右下の下） */
}
ul.guidetime-list li.facility:nth-child(1) {
  grid-area: market;
}
ul.guidetime-list li.facility:nth-child(2) {
  grid-area: fish;
}
ul.guidetime-list li.facility:nth-child(3) {
  grid-area: spa;
}
ul.guidetime-list li.facility:nth-child(4) {
  grid-area: park;
}
ul.guidetime-list li.facility:nth-child(5) {
  grid-area: labo;
}
ul.guidetime-list li.facility:nth-child(6) {
  grid-area: herb;
}
ul.guidetime-list li.facility .main-facility {
  background-color: #E6F0F5;
  padding: 3%;
}
ul.guidetime-list li.facility .main-facility h4.facility-name {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #008080;
  line-height: 50px;
  display: flex;
}
ul.guidetime-list li.facility .main-facility h4.facility-name span.facility-icon {
  margin-right: 8px;
}
ul.guidetime-list li.facility .main-facility h4.facility-name span.facility-icon img {
  width: 50px;
}
ul.guidetime-list li.facility .main-facility .flex-bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  ul.guidetime-list li.facility .main-facility .flex-bet {
    display: block;
  }
}
ul.guidetime-list li.facility .main-facility .flex-bet p.mainorder {
  color: #008080;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  ul.guidetime-list li.facility .main-facility .flex-bet p.mainorder {
    font-size: 1rem;
  }
}
ul.guidetime-list li.facility .main-facility p.facilityshop-open br {
  display: none;
}
@media (max-width: 480px) {
  ul.guidetime-list li.facility .main-facility p.facilityshop-open br {
    display: block;
  }
}
ul.guidetime-list li.facility dl.facilityshop-list {
  padding: 3%;
}
ul.guidetime-list li.facility dl.facilityshop-list dt.facilityshop-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #008080;
  font-size: 1.1rem;
  position: relative;
  padding-left: 24px;
  list-style-position: inside;
}
@media (max-width: 480px) {
  ul.guidetime-list li.facility dl.facilityshop-list dt.facilityshop-name {
    display: block;
  }
}
ul.guidetime-list li.facility dl.facilityshop-list dt.facilityshop-name::before {
  content: "●";
  position: absolute;
  left: 0;
}
ul.guidetime-list li.facility dl.facilityshop-list dd.facilityshop-opentime br {
  display: none;
}
@media (max-width: 480px) {
  ul.guidetime-list li.facility dl.facilityshop-list dd.facilityshop-opentime br {
    display: block;
  }
}

.access-box {
  margin: 80px 0;
  padding-top: 80px;
  background-color: #fff;
}
.access-box .flex-content {
  margin-top: 80px;
  display: flex;
}
@media (max-width: 900px) {
  .access-box .flex-content {
    display: block;
  }
}
.access-box .flex-content .accessitem-map {
  width: 50%;
}
@media (max-width: 900px) {
  .access-box .flex-content .accessitem-map {
    width: 100%;
  }
}
.access-box .flex-content .accessitem-map i {
  width: 100%;
}
.access-box .flex-content .accessitem-text {
  width: 50%;
  text-align: left;
}
@media (max-width: 900px) {
  .access-box .flex-content .accessitem-text {
    width: 100%;
  }
}
.access-box .flex-content .accessitem-text .text-left {
  padding: 2%;
}
.access-box .flex-content .accessitem-text .text-left p.access-concept {
  font-family: "Sawarabi Mincho", serif;
  color: #008080;
  letter-spacing: 3px;
}
@media (max-width: 480px) {
  .access-box .flex-content .accessitem-text .text-left p.access-concept {
    font-size: 0.9rem;
  }
}
.access-box .flex-content .accessitem-text .text-left h4.access-name {
  font-size: 2.2rem;
  color: #008080;
  letter-spacing: 8px;
}
@media (max-width: 900px) {
  .access-box .flex-content .accessitem-text .text-left h4.access-name {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .access-box .flex-content .accessitem-text .text-left h4.access-name {
    font-size: 1.5rem;
  }
}
.access-box .flex-content .accessitem-text .text-left p.access-ad {
  font-size: 1.2rem;
  letter-spacing: 3px;
}
.access-box .flex-content .accessitem-text ul.access-method li.car-access {
  padding: 5px 0;
  position: relative;
  z-index: 1;
}
.access-box .flex-content .accessitem-text ul.access-method li.car-access::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 200px;
  height: 200px;
  background-image: url("../img/access_car-icon-w.png");
  background-size: contain;
  right: -30px;
  top: -20px;
  z-index: -1;
}
.access-box .flex-content .accessitem-text ul.access-method li.train-access {
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.access-box .flex-content .accessitem-text ul.access-method li.train-access::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  background-image: url("../img/access_train-icon-w.png");
  background-size: contain;
  right: -10px;
  top: 0;
  z-index: -1;
}
.access-box .flex-content .accessitem-text ul.access-method li {
  background: rgba(0, 128, 128, 0.8);
  margin: 20px 0;
  height: 150px;
}
.access-box .flex-content .accessitem-text ul.access-method li dl {
  margin: 20px;
}
.access-box .flex-content .accessitem-text ul.access-method li dl dt {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
}
.access-box .flex-content .accessitem-text ul.access-method li dl dt::before {
  position: absolute;
  content: "■";
  left: 0;
  top: 0;
}
.access-box .flex-content .accessitem-text ul.access-method li dl dd {
  font-size: 1.25rem;
}
@media (max-width: 480px) {
  .access-box .flex-content .accessitem-text ul.access-method li dl dd {
    font-size: 1rem;
  }
}

.contact-about {
  padding: 5% 5% 80px;
}
.contact-about p.accent {
  font-family: "Sawarabi Mincho", serif;
  color: #008080;
  letter-spacing: 3px;
  line-height: 64px;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .contact-about p.accent {
    font-size: 1rem;
    line-height: 48px;
  }
}
.contact-about p.accent a.border-link {
  color: #008080;
  border-bottom: 1px solid #008080;
}
.contact-about p.accent a.border-link:hover {
  color: #36454F;
  border-bottom: 1px solid #36454F;
}

.W800-contentbox {
  padding: 2%;
}
.W800-contentbox form {
  max-width: 800px;
  margin: 0 auto;
}
.W800-contentbox form p.must-text {
  color: #008080;
  letter-spacing: 3px;
  text-align: right;
}
.W800-contentbox form dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 900px) {
  .W800-contentbox form dl {
    display: block;
  }
}
.W800-contentbox form dl dt {
  width: 20%;
  text-align: right;
  padding: 12px;
  margin: 16px 0;
}
@media (max-width: 900px) {
  .W800-contentbox form dl dt {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
}
.W800-contentbox form dl dt .required {
  color: #008080;
}
.W800-contentbox form dl dd {
  width: 80%;
  text-align: left;
  background-color: #E6F0F5;
  margin: 16px 0;
  padding: 12px;
}
@media (max-width: 900px) {
  .W800-contentbox form dl dd {
    width: 100%;
    margin-top: 0;
  }
}
.W800-contentbox form dl dd input#name,
.W800-contentbox form dl dd input#kana,
.W800-contentbox form dl dd input#email {
  width: 100%;
}
.W800-contentbox form dl dd textarea {
  width: 100%;
  line-height: 5;
  margin-top: -28px;
}
.W800-contentbox form dl dd .radio-group {
  display: flex;
}
.W800-contentbox form dl dd .radio-group label {
  margin: 0 16px 0 4px;
}
.W800-contentbox form p.attention {
  margin: 32px 0;
}
.W800-contentbox form p.consent {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 8px;
}
.W800-contentbox form p.consent a {
  text-decoration: underline;
}
.W800-contentbox form input.form-btn {
  display: block;
  margin: 0 auto;
  background-color: #DEB887;
  color: #fff;
  border: 3px solid #DEB887;
  padding: 20px 12px;
  width: 380px;
  font-size: 1.5rem;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 900px) {
  .W800-contentbox form input.form-btn {
    width: 280px;
    text-align: center;
    margin: 10px auto;
  }
}
.W800-contentbox form input.form-btn:hover {
  color: #DEB887;
  background-color: #fff;
}

.accordion-wrapper {
  margin: 0 auto;
  width: 80%;
  margin-top: 40px;
}
.accordion-wrapper .accordion-item {
  margin-bottom: 24px;
}
.accordion-wrapper .accordion-item:last-of-type {
  border-bottom: none;
}
.accordion-wrapper .accordion-item[open] .accordion-title::after {
  content: "－";
  font-weight: bold;
  color: #DEB887;
  font-size: 40px;
}
.accordion-wrapper .accordion-title {
  position: relative;
  display: block;
  padding: 20px 50px;
  color: #008080;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  background-color: #fff;
  transition: background-color 0.3s ease;
  border: 3px solid #008080;
  text-align: left;
}
.accordion-wrapper .accordion-title::-webkit-details-marker {
  display: none;
}
.accordion-wrapper .accordion-title:hover {
  background-color: #008080;
  color: #fff;
}
.accordion-wrapper .accordion-title::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: #DEB887;
  line-height: 1;
}
.accordion-wrapper .accordion-title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: bold;
  color: #DEB887;
  line-height: 1;
}
.accordion-wrapper .panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
  background: rgba(0, 128, 128, 0.2);
  border: 3px solid #008080;
  border-top: none;
  text-align: left;
}
.accordion-item[open] .accordion-wrapper .panel {
  grid-template-rows: 1fr;
}
.accordion-wrapper .panel .inner {
  min-height: 0;
  padding: 20px 50px 20px 100px;
  font-size: 1.25rem;
  line-height: 1.8;
  position: relative;
}
.accordion-wrapper .panel .inner::before {
  content: "A";
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: #DEB887;
  line-height: 1.8;
}
.accordion-wrapper .panel .inner ul {
  margin-top: 10px;
  padding-left: 20px;
}
.accordion-wrapper .panel .inner ul li {
  margin-bottom: 5px;
}
.accordion-wrapper .panel .inner p {
  margin: 0;
}
.accordion-wrapper .panel .inner p:not(:last-child) {
  margin-bottom: 1em;
}

.page-wrapper .w1000-container .w850-contentbox article h2.single-news-title {
  max-width: 800px;
  background-color: #008080;
  color: #fff;
  font-family: "Sawarabi Mincho", serif;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 10px;
}
@media (max-width: 900px) {
  .page-wrapper .w1000-container .w850-contentbox article h2.single-news-title {
    letter-spacing: 5px;
  }
}
.page-wrapper .w1000-container .w850-contentbox article p.single-date {
  text-align: right;
}
.page-wrapper .w1000-container .w850-contentbox article .single-post-icatch {
  margin: 48px;
}
.page-wrapper .w1000-container .w850-contentbox article .single-post-icatch img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  max-width: 480px;
  max-height: 300px;
}
.page-wrapper .w1000-container .w850-contentbox article .article-content {
  letter-spacing: 2px;
  line-height: 40px;
  text-align: left;
}
.page-wrapper a.allnews-btn {
  margin: 40px auto;
  display: block;
  background-color: #DEB887;
  color: #fff;
  border: 3px solid #DEB887;
  padding: 24px 16px;
  width: 380px;
  border-radius: 15px;
  box-shadow: 5px 4px 10ox 0 #fff;
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 900px) {
  .page-wrapper a.allnews-btn {
    width: 280px;
    text-align: center;
    margin: 40px auto;
  }
}
.page-wrapper a.allnews-btn::after {
  content: "→";
  position: absolute;
  font-weight: bold;
  top: 30%;
  right: 10%;
  margin: 0 auto;
}
.page-wrapper a.allnews-btn p {
  font-weight: bold;
}
@media (max-width: 900px) {
  .page-wrapper a.allnews-btn p {
    font-size: 1rem;
  }
}
.page-wrapper a.allnews-btn:hover {
  color: #DEB887;
  background-color: #fff;
  box-shadow: 5px 4px 0 0 #DEB887;
}
.page-wrapper a.allnews-btn:active {
  box-shadow: none;
}

ul.post-list li {
  padding: 40px 16px 16px;
  margin: 0 5%;
  border-bottom: 3px dotted #008080;
}
ul.post-list li .flex-content {
  display: flex;
  text-align: left;
}
@media (max-width: 900px) {
  ul.post-list li .flex-content {
    flex-direction: column;
  }
}
ul.post-list li .flex-content p.single-date {
  width: 40%;
  padding: 0 16px;
}
@media (max-width: 900px) {
  ul.post-list li .flex-content p.single-date {
    width: 100%;
  }
}
ul.post-list li .flex-content p.single-date .single-category {
  margin: 0 16px;
}
ul.post-list li .flex-content h3.single-news-title {
  width: 60%;
  letter-spacing: 3px;
}
@media (max-width: 900px) {
  ul.post-list li .flex-content h3.single-news-title {
    width: 100%;
    margin-left: 16px;
    margin-top: 8px;
  }
}

.nav-links {
  margin-top: 80px;
}

.fa-circle-arrow-left, .fa-circle-arrow-right {
  font-size: 2.5rem;
  color: #DEB887;
}

body .page-header {
  background-image: url(../img/page-title-bg.jpg);
  background-position: center;
  height: 450px;
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 900px) {
  body .page-header {
    height: 300px;
  }
}
@media (max-width: 480px) {
  body .page-header {
    height: 250px;
    padding: 40px 0;
  }
}
body .page-header h2.page-title {
  font-family: "Water Brush", cursive;
  font-size: 8.5rem;
  letter-spacing: 1rem;
  line-height: 64px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: rotate(8.97turn);
  position: relative;
  padding: 120px 0 240px 0;
  color: #E6F0F5;
  opacity: 0.8;
}
@media (max-width: 900px) {
  body .page-header h2.page-title {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
@media (max-width: 480px) {
  body .page-header h2.page-title {
    font-size: 3rem;
    letter-spacing: 0.5rem;
    padding: 60px 0 120px;
  }
}
body .page-header h2.page-title span.ja {
  font-family: "Sawarabi Mincho", serif;
  color: #131818;
  font-size: 2rem;
  display: block;
  position: absolute;
  transform: rotate(-8.97turn);
  top: 60%;
  right: 20%;
  letter-spacing: 5px;
}
@media (max-width: 900px) {
  body .page-header h2.page-title span.ja {
    font-size: 1.2rem;
    right: 30%;
    margin-top: -20px;
    opacity: 1;
  }
}
body .page-wrapper {
  background-color: #E6F0F5;
  padding: 80px 0;
  margin: 0 auto;
}
body .page-wrapper .w1000-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 0;
}
body .page-wrapper .w1000-container .w850-contentbox {
  max-width: 850px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  body .page-wrapper .w1000-container .w850-contentbox {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  body .page-wrapper .w1000-container .w850-contentbox {
    padding: 0 16px;
  }
}
body h3.content-title {
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 10px;
}
body h3.content-title::before {
  position: absolute;
  border-bottom: 5px solid #008080;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  content: "";
}

section .page-wrapper {
  padding-top: -80px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox {
    padding: 0 5%;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle {
  position: relative;
  margin-bottom: 80px;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle img {
  height: 500px;
  margin-top: -80px;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text {
  height: 240px;
  background-color: #008080;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 480px;
  padding: 24px 0;
}
@media (max-width: 900px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text {
    max-width: 320px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text h3.section-guidename {
  font-size: 36px;
  margin: 20px 0;
  letter-spacing: 10px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text h3.section-guidename {
    font-size: 24px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text dl.section-guidetimelist {
  display: flex;
  flex-wrap: wrap;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text dl.section-guidetimelist dt {
  width: 40%;
  text-align: right;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text dl.section-guidetimelist dd {
  width: 60%;
  text-align: left;
  padding-left: 16px;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text p {
  text-align: center;
  line-height: 22px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text p {
    font-size: 14px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text p:first-of-type {
  margin-top: 16px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text {
    height: 200px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa {
  height: 300px;
  background-color: #008080;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 480px;
  padding: 24px 0;
}
@media (max-width: 900px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa {
    max-width: 320px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa h3.section-guidename {
  font-size: 36px;
  margin: 20px 0;
  letter-spacing: 10px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa h3.section-guidename {
    font-size: 24px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa dl.section-guidetimelist {
  display: flex;
  flex-wrap: wrap;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa dl.section-guidetimelist dt {
  width: 40%;
  text-align: right;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa dl.section-guidetimelist dd {
  width: 60%;
  text-align: left;
  padding-left: 16px;
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa p {
  text-align: center;
  line-height: 22px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa p {
    font-size: 14px;
  }
}
section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa p:first-of-type {
  margin-top: 16px;
}
@media (max-width: 480px) {
  section .page-wrapper .w1000-container .w800-contentbox .content-guidetitle .guidetitle-text-spa {
    height: 280px;
  }
}

h4.content-title-sub {
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 10px;
  margin: 48px 0;
}
h4.content-title-sub::before {
  position: absolute;
  border-bottom: 5px solid #008080;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  content: "";
}
@media (max-width: 900px) {
  h4.content-title-sub {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  h4.content-title-sub {
    font-size: 1.25rem;
  }
}

p.content-guideintroduction {
  letter-spacing: 3px;
  line-height: 30px;
  max-width: 750px;
  margin: 0 auto;
  padding: 5%;
}

.splide__slide img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 480px) {
  .splide__slide img {
    height: 200px;
  }
}

ul.guide-shop-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  padding: 2%;
  box-sizing: border-box;
}
ul.guide-shop-list li.guide-shop-item {
  width: 320px;
  display: flex; /* 追加 */
  flex-direction: column; /* 追加 */
}
ul.guide-shop-list li.guide-shop-item img {
  width: 320px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction {
  background-color: #E6F0F5;
  text-align: left;
  padding: 8px;
  display: flex; /* 追加 */
  flex-direction: column; /* 追加 */
  /* 残りのスペースを全て埋めるように設定 */
  flex-grow: 1; /* 追加 */
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction h5.shop-name {
  color: #008080;
  font-size: 1.25rem;
  position: relative;
  margin-left: 24px;
  padding: 8px 0;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction h5.shop-name::before {
  position: absolute;
  content: "●";
  left: -20px;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction h5.shop-name span.place-smalltext {
  display: block;
  font-size: 0.75rem;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction p.shop-introduction-text {
  border-bottom: 2px dotted #008080;
  letter-spacing: 2px;
  flex-grow: 1;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction dl.guide-shop-opentime {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0; /* 追加 */
  letter-spacing: 5px;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction dl.guide-shop-opentime dt {
  width: 30%;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction dl.guide-shop-opentime dd {
  width: 70%;
}
ul.guide-shop-list li.guide-shop-item .guide-shop-introduction h6.shop-info-title {
  color: #008080;
  font-size: 14px;
}

p.concept-font-text {
  font-family: "Sawarabi Mincho", serif;
  color: #008080;
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 1.25rem;
  margin-top: 80px;
  padding: 5%;
}

ul.spa-image {
  display: flex;
}
ul.spa-image li {
  height: 500px;
  width: 50%;
  position: relative;
}
@media (max-width: 480px) {
  ul.spa-image li {
    height: 300px;
  }
}
ul.spa-image li img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  ul.spa-image li img {
    height: 300px;
  }
}
ul.spa-image li p.sea-text {
  color: #fff;
  width: 200px;
  line-height: 72px;
  font-size: 1.25rem;
  background-color: #008080;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 900px) {
  ul.spa-image li p.sea-text {
    width: 120px;
    line-height: 48px;
    font-size: 1rem;
  }
}
ul.spa-image li p.sky-text {
  color: #fff;
  width: 200px;
  line-height: 72px;
  font-size: 1.25rem;
  background-color: #008080;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 900px) {
  ul.spa-image li p.sky-text {
    width: 120px;
    line-height: 48px;
    font-size: 1rem;
  }
}

.w1000-container .w800-contentbox table {
  margin: 0 auto 80px auto;
  width: 90%;
}
.w1000-container .w800-contentbox table,
.w1000-container .w800-contentbox tr,
.w1000-container .w800-contentbox td {
  border: 1px solid #b9b9b9;
  border-collapse: collapse;
}
.w1000-container .w800-contentbox table.efficacy tr {
  padding: 2%;
}
.w1000-container .w800-contentbox table.efficacy tr th {
  background-color: #008080;
  color: #fff;
  height: 70px;
  width: 25%;
  font-size: 1.25rem;
}
.w1000-container .w800-contentbox table.efficacy tr td {
  width: 75%;
  padding: 2%;
}
.w1000-container .w800-contentbox h5.place-list-title {
  font-size: 2rem;
  font-weight: normal;
  text-align: left;
  margin-bottom: 24px;
  position: relative;
  margin-left: 8%;
}
@media (max-width: 900px) {
  .w1000-container .w800-contentbox h5.place-list-title {
    font-size: 1.5rem;
  }
}
.w1000-container .w800-contentbox h5.place-list-title::before {
  position: absolute;
  content: "●";
  left: -32px;
}
.w1000-container .w800-contentbox h5.otherplace {
  font-size: 2rem;
  font-weight: normal;
  text-align: left;
  margin-bottom: 24px;
  margin-left: 3%;
}
@media (max-width: 900px) {
  .w1000-container .w800-contentbox h5.otherplace {
    font-size: 1.5rem;
  }
}
.w1000-container .w800-contentbox table.rental-place,
.w1000-container .w800-contentbox table.profit-place {
  margin: 0 auto 80px auto;
  width: 90%;
}
.w1000-container .w800-contentbox table.rental-place tr,
.w1000-container .w800-contentbox table.profit-place tr {
  height: 70px;
}
.w1000-container .w800-contentbox table.rental-place tr th,
.w1000-container .w800-contentbox table.profit-place tr th {
  font-size: 1.25rem;
  background-color: #008080;
  color: #fff;
  width: 30%;
}
.w1000-container .w800-contentbox table.rental-place tr td,
.w1000-container .w800-contentbox table.profit-place tr td {
  width: 20%;
}
.w1000-container .w800-contentbox .point-small {
  display: block;
  font-size: 0.75rem;
}
.w1000-container .w800-contentbox table.oneday-place,
.w1000-container .w800-contentbox table.morning-place,
.w1000-container .w800-contentbox table.night-place,
.w1000-container .w800-contentbox table.entry-fee_oneday,
.w1000-container .w800-contentbox table.entry-fee_3h {
  margin: 0 auto 80px auto;
  width: 90%;
}
.w1000-container .w800-contentbox table.oneday-place tr,
.w1000-container .w800-contentbox table.morning-place tr,
.w1000-container .w800-contentbox table.night-place tr,
.w1000-container .w800-contentbox table.entry-fee_oneday tr,
.w1000-container .w800-contentbox table.entry-fee_3h tr {
  height: 70px;
}
.w1000-container .w800-contentbox table.oneday-place tr th.air,
.w1000-container .w800-contentbox table.oneday-place tr th.adult,
.w1000-container .w800-contentbox table.oneday-place tr th.child,
.w1000-container .w800-contentbox table.morning-place tr th.air,
.w1000-container .w800-contentbox table.morning-place tr th.adult,
.w1000-container .w800-contentbox table.morning-place tr th.child,
.w1000-container .w800-contentbox table.night-place tr th.air,
.w1000-container .w800-contentbox table.night-place tr th.adult,
.w1000-container .w800-contentbox table.night-place tr th.child,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.air,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.adult,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.child,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.air,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.adult,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.child {
  background-color: #008080;
  color: #fff;
  width: 20%;
  border: 1px solid #b9b9b9;
  font-size: 1.25rem;
}
.w1000-container .w800-contentbox table.oneday-place tr th.air span.point-small,
.w1000-container .w800-contentbox table.oneday-place tr th.adult span.point-small,
.w1000-container .w800-contentbox table.oneday-place tr th.child span.point-small,
.w1000-container .w800-contentbox table.morning-place tr th.air span.point-small,
.w1000-container .w800-contentbox table.morning-place tr th.adult span.point-small,
.w1000-container .w800-contentbox table.morning-place tr th.child span.point-small,
.w1000-container .w800-contentbox table.night-place tr th.air span.point-small,
.w1000-container .w800-contentbox table.night-place tr th.adult span.point-small,
.w1000-container .w800-contentbox table.night-place tr th.child span.point-small,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.air span.point-small,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.adult span.point-small,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.child span.point-small,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.air span.point-small,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.adult span.point-small,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.child span.point-small {
  display: block;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .w1000-container .w800-contentbox table.oneday-place tr th.air span.point-small,
  .w1000-container .w800-contentbox table.oneday-place tr th.adult span.point-small,
  .w1000-container .w800-contentbox table.oneday-place tr th.child span.point-small,
  .w1000-container .w800-contentbox table.morning-place tr th.air span.point-small,
  .w1000-container .w800-contentbox table.morning-place tr th.adult span.point-small,
  .w1000-container .w800-contentbox table.morning-place tr th.child span.point-small,
  .w1000-container .w800-contentbox table.night-place tr th.air span.point-small,
  .w1000-container .w800-contentbox table.night-place tr th.adult span.point-small,
  .w1000-container .w800-contentbox table.night-place tr th.child span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_oneday tr th.air span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_oneday tr th.adult span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_oneday tr th.child span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_3h tr th.air span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_3h tr th.adult span.point-small,
  .w1000-container .w800-contentbox table.entry-fee_3h tr th.child span.point-small {
    font-size: 0.75rem;
  }
}
.w1000-container .w800-contentbox table.oneday-place tr th.weekdays,
.w1000-container .w800-contentbox table.oneday-place tr th.holiday,
.w1000-container .w800-contentbox table.morning-place tr th.weekdays,
.w1000-container .w800-contentbox table.morning-place tr th.holiday,
.w1000-container .w800-contentbox table.night-place tr th.weekdays,
.w1000-container .w800-contentbox table.night-place tr th.holiday,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.weekdays,
.w1000-container .w800-contentbox table.entry-fee_oneday tr th.holiday,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.weekdays,
.w1000-container .w800-contentbox table.entry-fee_3h tr th.holiday {
  width: 35%;
  font-size: 1.25rem;
}
.w1000-container .w800-contentbox table.oneday-place tr td,
.w1000-container .w800-contentbox table.morning-place tr td,
.w1000-container .w800-contentbox table.night-place tr td,
.w1000-container .w800-contentbox table.entry-fee_oneday tr td,
.w1000-container .w800-contentbox table.entry-fee_3h tr td {
  padding: 2%;
}
.w1000-container .w800-contentbox ul.usage-guide {
  padding: 10%;
  text-align: left;
}
.w1000-container .w800-contentbox ul.usage-guide li {
  letter-spacing: 3px;
  line-height: 30px;
  list-style: disc;
}
.w1000-container .w800-contentbox ul.usage-guide p.usage-guide-attention {
  margin: 24px 0;
  font-size: 1.25rem;
}

main .Privacy {
  margin: 3%;
  text-align: left;
  line-height: 30px;
  letter-spacing: 3px;
}
main .Privacy h3 {
  margin: 24px 0;
}
main .Privacy ul li {
  list-style-type: disc;
  list-style-position: inside;
}
main .Privacy dl {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  max-width: 500px;
  padding: 50px;
}
main .Privacy dl dt {
  width: 30%;
}
main .Privacy dl dd {
  width: 70%;
}
main .Privacy .policy-date {
  margin-top: 40px;
  text-align: right;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 50;
  margin-top: 0px;
  box-shadow: 0px 10px 10px -5px #808080;
}
header h1 {
  width: 250px;
}
header .hamburger {
  display: none;
}
@media (max-width: 900px) {
  header .hamburger {
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.5s;
    position: relative;
    display: block;
  }
}
@media (max-width: 900px) {
  header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #DEB887;
    transition: all 0.5s;
    position: absolute;
    right: 40%;
  }
  header .hamburger span:nth-child(1) {
    top: 25%;
  }
  header .hamburger span:nth-child(2) {
    top: 50%;
  }
  header .hamburger span:nth-child(3) {
    top: 75%;
  }
}
@media (max-width: 900px) {
  header nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #E6F0F5;
    transition: 0.5s;
    z-index: 15;
  }
}
header nav ul.menu {
  display: flex;
}
@media (max-width: 900px) {
  header nav ul.menu {
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    margin-top: 70px;
  }
}
header nav ul.menu li {
  padding-right: 32px;
}
@media (max-width: 900px) {
  header nav ul.menu li {
    padding: 24px;
    font-size: 1.2rem;
  }
}
header nav ul.menu li :hover {
  color: #DEB887;
}
header .mask {
  display: none;
  transition: 0.5s;
}

@media (max-width: 900px) {
  header.open .hamburger span {
    background-color: #DEB887;
  }
  header.open .hamburger span:nth-child(1) {
    transform: rotate(-315deg);
    top: 50%;
  }
  header.open .hamburger span:nth-child(2) {
    display: none;
  }
  header.open .hamburger span:nth-child(3) {
    top: 50%;
    transform: rotate(315deg);
  }
  header.open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
    background-color: #fff;
  }
  header.open nav {
    right: 0;
  }
}

footer {
  text-align: center;
  padding-top: 80px;
}
footer .w1000-container .footer-nav ul.nav-menu {
  display: flex;
  justify-content: center;
}
footer .w1000-container .footer-nav ul.nav-menu li {
  padding: 8px 48px;
  border-right: 1px solid #36454F;
}
@media (max-width: 900px) {
  footer .w1000-container .footer-nav ul.nav-menu li {
    display: none;
  }
}
footer .w1000-container .footer-nav ul.nav-menu li:last-of-type {
  border-right: none;
}
footer .w1000-container .footer-nav ul.nav-menu li a:hover {
  color: #DEB887;
}
@media (max-width: 480px) {
  footer .w1000-container .footer-info {
    padding: 0 3%;
  }
}
footer .w1000-container .footer-info p.sitetitle {
  color: #008080;
  letter-spacing: 20px;
  font-weight: bold;
  font-size: 48px;
  margin: 32px 0;
}
@media (max-width: 900px) {
  footer .w1000-container .footer-info p.sitetitle {
    font-size: 32px;
  }
}
footer .w1000-container .footer-info .tel-fax {
  display: flex;
  justify-content: center;
  gap: 32px;
}
footer .w1000-container .footer-info ul.footer-info-btn {
  margin: 32px 0;
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 480px) {
  footer .w1000-container .footer-info ul.footer-info-btn {
    display: block;
  }
}
footer .w1000-container .footer-info ul.footer-info-btn li {
  transition: 0.2s ease;
  width: 240px;
  background-color: #008080;
  font-size: 24px;
  font-weight: bold;
  border-radius: 15px;
}
@media (max-width: 900px) {
  footer .w1000-container .footer-info ul.footer-info-btn li {
    font-size: 16px;
    width: 160;
    line-height: 48px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  footer .w1000-container .footer-info ul.footer-info-btn li {
    width: 100%;
    line-height: 48px;
    margin-bottom: 16px;
  }
}
footer .w1000-container .footer-info ul.footer-info-btn li:hover {
  background-color: #DEB887;
}
footer .w1000-container .footer-info ul.footer-info-btn li a {
  color: #fff;
}
footer .w1000-container .footer-info ul.footer-sns-icon {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}
footer .w1000-container .footer-info ul.footer-sns-icon li {
  width: 50px;
  height: auto;
}
footer small {
  display: block;
  background-color: #DEB887;
  line-height: 50px;
  letter-spacing: 5px;
}

.top-btn p {
  font-weight: bold;
}

button {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 80px;
  right: 20px;
  bottom: -160px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background-image: linear-gradient(181deg, #DEB887 15%, #008080);
  transition: 0.2s ease;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 100px 100px 0 0;
  z-index: 50;
}
button button i {
  position: absolute;
  font-size: 30px;
  color: #fff;
  top: 15px;
  font-weight: bold;
}

button p {
  margin: 0;
  font-size: 15px;
  bottom: 13px;
  position: absolute;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

button.is-active {
  bottom: 0px;
}/*# sourceMappingURL=style.css.map */