@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Oswald:wght@400;700&family=Dancing+Script:wght@600&family=Kosugi+Maru&display=swap");
.calendar__sec {
  min-height: 400px;
}

:root {
  --blue: #005899;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.en {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.inr {
  max-width: 1600px;
  padding: 0 2%;
  box-sizing: border-box;
  margin: 0 auto;
}

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

a:link,
a:visited,
a {
  color: #000;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

.fade {
  width: 100%;
}
.fade::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(#000 30%, transparent 10%);
  background-size: 2px 2px;
  background-position: 0 0, 2px 2px;
}
.fade img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_clip {
  clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

section.padd {
  padding: 50px 0;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/*================
btn
================*/
.btn a {
  font-weight: 600;
  display: block;
  background-color: var(--blue);
  text-align: center;
  color: #fff;
  border-radius: 3px;
  padding: 10px 0;
  border-bottom: 3px solid #02355a;
  font-size: min(3vw, 14px);
}
.btn a:hover {
  opacity: 0.9;
}

/*================
ttl
================*/
.ttl {
  display: flex;
  color: var(--blue);
  align-items: baseline;
  gap: 30px;
  margin-bottom: 30px;
}
.ttl.r {
  justify-content: end;
}
.ttl.w {
  color: #fff;
}
.ttl.c {
  flex-flow: column;
  align-items: center;
}
.ttl.c p {
  line-height: 0;
  margin-top: -20px;
}
.ttl h2 {
  font-size: min(5.4vw, 70px);
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}
.ttl p {
  font-weight: bold;
}

/*================
header
================*/
header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 0 0px 0;
}
header .top_sec {
  display: flex;
  gap: 20px;
  align-items: end;
}
header .top_sec .logo {
  width: 220px;
}
header .top_sec .info {
  border-right: 1px solid #000;
  padding-right: 20px;
  margin-right: 10px;
}
header .top_sec .info h1 {
  font-size: min(3.2vw, 14px);
}
header .top_sec .info dl {
  font-size: min(3.2vw, 13px);
}
header .top_sec .bavi {
  text-align: center;
}
header .top_sec .bavi p {
  font-size: 9px;
  color: #d41f4f;
  font-weight: 500;
  margin-bottom: 5px;
}
header .top_sec .bavi a {
  display: block;
  width: 140px;
  margin: 0 auto;
}
header .top_sec .reserve {
  position: absolute;
  right: 0;
  background-color: #000;
  text-align: center;
}
header .top_sec .reserve a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 4px 50px 10px 50px;
  line-height: 1.3;
  min-width: 130px;
}
header .top_sec .reserve a span.en {
  font-size: min(38vw, 24px);
}
header .top_sec .reserve a p {
  font-size: 11px;
  font-weight: 700;
}
header nav ul {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
}
header nav ul li {
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

/*================
area_map_sec
================*/
.area_map_sec .txt {
  z-index: 2;
  position: absolute;
  width: 40%;
}
.area_map_sec .txt p {
  font-weight: bold;
  font-family: "Kosugi Maru", sans-serif;
  font-size: min(1.5vw, 18px);
  line-height: 2;
  padding: 20px 0 0 20px;
}
.area_map_sec .area {
  z-index: 1;
  position: relative;
  margin-left: 10%;
}
.area_map_sec .area ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.area_map_sec .area ul li {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
}
.area_map_sec .area ul li div {
  color: #fff;
  position: relative;
  z-index: 3;
  font-size: min(1.2vw, 16px);
  padding: 10px 30px;
  line-height: 1.2;
  text-align: center;
}
.area_map_sec .area ul li:hover::before {
  background-color: #005899;
}
.area_map_sec .area ul li::before {
  z-index: 1;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 110%;
  height: 100%;
  background-color: #000;
  clip-path: polygon(0 20%, 90% 0%, 95% 100%, 5% 98%);
}
.area_map_sec .area ul li:nth-child(1) {
  top: 10%;
  left: 70%;
}
.area_map_sec .area ul li:nth-child(2) {
  top: 40%;
  left: 80%;
}
.area_map_sec .area ul li:nth-child(3) {
  top: 68%;
  left: 70%;
}
.area_map_sec .area ul li:nth-child(4) {
  top: 18%;
  left: 45%;
}
.area_map_sec .area ul li:nth-child(5) {
  top: 48%;
  left: 10%;
}
.area_map_sec .area ul li:nth-child(6) {
  top: 60%;
  left: 40%;
}
.area_map_sec .area ul li:nth-child(7) {
  top: 50%;
  left: 50%;
}
.area_map_sec .area ul li:nth-child(8) {
  top: 85%;
  left: 50%;
}

/*================
  slider
================*/
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider .slider-track {
  display: flex;
  animation: scroll-left 50s linear infinite;
  width: 200%;
}
.slider .slider-track > div {
  flex: 0 0 auto;
}
.slider .slider-track img {
  display: block;
  height: 15vw;
  width: auto;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
section.video {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}
section.video .background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
section.video::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(#000 30%, transparent 10%);
  background-size: 2px 2px;
  background-position: 0 0, 2px 2px;
}
section.video .thumnail {
  position: absolute;
  width: 40%;
  left: 5%;
  top: 10%;
  z-index: 2;
  text-align: center;
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
}
section.video .thumnail:hover {
  opacity: 0.8;
}
section.video .thumnail img {
  border: 1px solid #fff;
}
section.video .thumnail p {
  color: #fff;
  font-size: min(2.8vw, 13px);
}
section.video .text-overlay {
  position: absolute;
  top: 20%;
  right: 0;
  color: white;
  text-align: center;
  padding: 1em;
  z-index: 3;
  font-family: "Dancing Script", cursive;
  transform: rotate(-5deg);
  line-height: 1.2;
  width: 50%;
}
section.video h2 {
  font-size: min(6.2vw, 85px);
  margin-bottom: 20px;
}
section.video p {
  font-size: min(4vw, 22px);
  margin: 0;
}

.movie_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.movie_overlay .modal-content {
  position: relative;
  background: #000;
  padding: 1rem;
  border-radius: 10px;
  max-width: 90%;
  max-height: 80%;
}
.movie_overlay .video {
  width: 100%;
  max-width: 800px;
  max-height: 100%;
  border-radius: 10px;
}
.movie_overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
.movie_overlay p {
  text-align: center;
  color: #fff;
  margin: 10px 0;
  font-size: min(2.8vw, 13px);
}

/*================
sec01
================*/
.sec01 {
  padding: 0;
  position: relative;
  min-height: 900px;
}
.sec01 .txt {
  right: 2vw;
  top: 30%;
  position: absolute;
  color: #fff;
  z-index: 5;
  line-height: 1.5;
  width: 60%;
}
.sec01 .txt p {
  margin-bottom: 30px;
}
.sec01 .txt h2 {
  margin: 0;
  font-weight: 900;
  font-size: min(3.8vw, 28px);
}
.sec01 ul {
  position: absolute;
  bottom: -40px;
  z-index: 2;
  left: 0;
  display: flex;
}
.sec01 ul li {
  width: 25%;
}
.sec01 ul li:first-child {
  transform: translateY(-100px);
}

/*================
sec02
================*/
.sec02 {
  position: relative;
}
.sec02::after {
  content: "";
  position: absolute;
  width: 35vw;
  height: 35vw;
  max-width: 450px;
  top: -30px;
  right: 20px;
  background: url("../images/sec02_bg.gif?1.2") no-repeat;
  background-size: contain;
}
.sec02 ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.sec02 ul li .txt {
  width: 65%;
  order: 1;
}
.sec02 ul li .txt h3 {
  position: relative;
  color: var(--blue);
  font-size: min(2.8vw, 30px);
  margin-bottom: 20px;
}
.sec02 ul li .txt h3::after {
  position: absolute;
  left: -10px;
  bottom: 0px;
  width: 100%;
  height: 10px;
  transform: skew(-45deg);
  background-image: repeating-linear-gradient(90deg, transparent 0 4px, #c0e2f8 4px 8px);
  content: "";
  z-index: -1;
}
.sec02 ul li .txt h3 span.en {
  font-size: min(5.8vw, 55px);
  margin-right: 20px;
  position: relative;
}
.sec02 ul li .txt h3 span.en::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -15px;
  right: -20px;
  background: url("../images/gimmick_01.png") no-repeat;
  background-size: contain;
}
.sec02 ul li .txt p {
  width: 80%;
  font-size: min(2.5vw, 16px);
  line-height: 2;
  padding-left: 10%;
}
.sec02 ul li figure {
  width: 33%;
  order: 2;
}
.sec02 ul li:nth-child(odd) .txt {
  order: 2;
}
.sec02 ul li:nth-child(odd) figure {
  order: 1;
}

/*================
sec03
================*/
.sec03 {
  background-color: var(--blue);
  position: relative;
}
.sec03::before {
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 40vw;
  height: 25vw;
  background: url("../images/gimmick_02.png") no-repeat;
  background-size: contain;
}
.sec03 ul {
  position: relative;
  z-index: 1;
}
.sec03 ul li {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  align-items: center;
}
.sec03 ul li figure {
  width: 48%;
  height: auto;
  cursor: pointer;
  position: relative;
}
.sec03 ul li figure:hover {
  opacity: 0.8;
}
.sec03 ul li figure::after {
  content: "";
  position: absolute;
  width: 22vw;
  height: 22vw;
  top: -50px;
  left: -20px;
  transform: rotate(-5deg);
  background: url("../images/area_icon01.gif?1") no-repeat;
  background-size: contain;
  z-index: 1;
}
.sec03 ul li:nth-child(2) figure::after {
  transform: rotate(5deg);
  left: auto;
  right: -20px;
  background: url("../images/area_icon02.gif?1") no-repeat;
  background-size: contain;
}
.sec03 ul li:nth-child(3) figure::after {
  transform: rotate(-14deg);
  top: auto;
  background: url("../images/area_icon03.gif?2") no-repeat;
  background-size: contain;
}
.sec03 ul li .info {
  width: 48%;
}
.sec03 ul li .info h3 {
  font-size: min(4.5vw, 28px);
  color: var(--blue);
  margin-bottom: 10px;
}
.sec03 ul li .info h3 span {
  font-size: 75%;
}
.sec03 ul li .info .price {
  font-weight: bold;
  color: #d41f4f;
  text-align: right;
}
.sec03 ul li .info .price span {
  font-size: min(4.5vw, 24px);
}
.sec03 ul li .info table {
  margin: 10px 0;
  font-size: 85%;
}
.sec03 ul li .info table td,
.sec03 ul li .info table th {
  padding: 8px 8px;
  border: 1px solid #000;
}
.sec03 ul li .info table th {
  text-align: center;
  width: 25%;
  font-weight: 500;
  background-image: repeating-linear-gradient(45deg, transparent 0 2px, #e3f3fe 2px 4px);
}
.sec03 .note {
  background-color: #fff;
  padding: 20px;
}
.sec03 .note dl {
  font-size: 90%;
  display: flex;
  color: #000;
  gap: 20px;
  margin: 5px 0;
  border-bottom: 1px dashed var(--blue);
  padding: 10px 0;
}
.sec03 .note dl dt {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 15%;
}
.sec03 .note dl dd {
  width: 85%;
}

/*================
modal_sec
================*/
.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto; /* スクロール有効に */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5vh; /* 上余白 */
  box-sizing: border-box;
  z-index: 9999;
}

.modal_sec {
  background-color: #fff;
  width: 90%;
  max-width: 1000px;
  max-height: none;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeInUp 0.3s ease-out;
  margin-bottom: 5vh; /* 下余白で余裕を持たせる */
}
.modal_sec h2 {
  text-align: center;
}
.modal_sec h2 + p {
  margin-top: 20px;
  text-align: center;
  font-size: min(2.8vw, 15px);
}
.modal_sec .room_info {
  width: 70%;
  margin: 20px auto;
}
.modal_sec .swiper-button-next,
.modal_sec .swiper-button-prev {
  opacity: 0.6;
  outline: none !important; /* フォーカスの青枠を消す */
  box-shadow: none !important; /* 影の線を消す */
  background: none; /* 不要な背景があればリセット */
  border: none; /* 枠線があれば消す */
}
.modal_sec .swiper-button-next:hover,
.modal_sec .swiper-button-prev:hover {
  opacity: 1;
}
.modal_sec .main-swiper, .modal_sec .img {
  width: 90%;
  margin: 40px auto 0 auto;
  max-width: 1200px;
  margin-bottom: 10px;
}
.modal_sec .main-swiper img, .modal_sec .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal_sec .thumb-swiper {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.modal_sec .thumb-swiper .swiper-slide {
  width: 15%;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.modal_sec .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
@media (max-width: 480px) {
  .modal_sec {
    width: 95%;
    padding: 1.5rem 1rem;
  }
}

.close_btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}
.close_btn:hover {
  color: #333;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*================
option_sec
================*/
.option_sec {
  background-color: #3385c1;
}
.option_sec .inr .ttl {
  position: relative;
}
.option_sec .inr .ttl::after {
  content: "";
  position: absolute;
  width: 25vw;
  height: 25vw;
  max-width: 350px;
  top: -100px;
  right: -20px;
  background: url("../images/option_bg.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
.option_sec ul {
  position: relative;
  z-index: 2;
  order: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.option_sec ul::after {
  content: "";
  width: 33%;
  display: block;
}
.option_sec ul li {
  width: 33%;
  margin-bottom: 20px;
  background-color: #fff;
}
.option_sec ul li .info {
  padding: 10px 20px;
}
.option_sec ul li dl dt {
  font-weight: bold;
  font-size: min(3.5vw, 16px);
}
.option_sec ul li dl dd {
  color: #d41f4f;
  text-align: right;
  font-weight: bold;
  font-size: min(3vw, 13px);
}
.option_sec ul li dl dd span {
  font-size: min(3.5vw, 18px);
}
.option_sec ul li p {
  font-size: min(2.8vw, 14px);
}

/*================
calendar_sec
================*/
.calendar_sec {
  background-color: var(--blue);
}
.calendar_sec .cal_info {
  border: 1px solid #000;
}
.calendar_sec .table {
  margin-bottom: 10px;
}
.calendar_sec .slider__arrow {
  padding: 15px 0 !important;
}
.calendar_sec .year_month {
  color: #fff;
}

/*================
information_sec
================*/
.information_sec .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.information_sec .info table {
  width: 45%;
  font-size: 85%;
}
.information_sec .info table td,
.information_sec .info table th {
  padding: 15px 8px;
  border: 1px solid #000;
}
.information_sec .info table th {
  text-align: center;
  width: 25%;
  font-weight: 500;
  background-image: repeating-linear-gradient(45deg, transparent 0 2px, #e3f3fe 2px 4px);
}
.information_sec .info .map {
  width: 55%;
}
.information_sec .info .map iframe {
  width: 100%;
  height: 400px;
}
.information_sec .abount_access h3 + p {
  margin-bottom: 20px;
}
.information_sec .abount_access ul {
  display: flex;
  gap: 5px;
}
.information_sec .abount_access ul li {
  font-size: 85%;
  text-align: center;
}

/*================
faqs_sec
================*/
.faqs_sec h3 {
  margin-bottom: 15px;
}
.faqs_sec h3:last-of-type {
  margin-top: 30px;
}
.faqs_sec dl {
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.faqs_sec dl span {
  background-color: #000;
  border-radius: 999px;
  text-align: center;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 25px;
  margin-right: 10px;
  color: #fff;
  font-weight: bold;
}
.faqs_sec dl dt,
.faqs_sec dl dd {
  display: flex;
}
.faqs_sec dl dt {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
}
.faqs_sec dl dt span {
  background-color: var(--blue);
}
.faqs_sec dl dd {
  font-size: 90%;
}
.faqs_sec dl dd span {
  background-color: #d41f4f;
}

/*================
reserve_sec
================*/
.reserve_sec ul {
  display: flex;
  justify-content: center;
}
.reserve_sec ul li {
  width: 30%;
  margin: 0 30px;
  text-align: center;
}
.reserve_sec ul li figure {
  width: 50%;
  margin: 0 auto;
}
.reserve_sec ul li figure p {
  font-weight: bold;
}
.reserve_sec ul li .info {
  margin-top: 20px;
}
.reserve_sec ul li .info a {
  margin-bottom: 10px;
}
.reserve_sec ul li .info .btn.line a {
  background-color: #09a75a;
  border-bottom-color: #046034;
}
.reserve_sec .flow {
  width: 80%;
  max-width: 900px;
  margin: 50px auto 30px auto;
}
.reserve_sec .flow h3 {
  border-top: 2px var(--blue) solid;
  border-bottom: 2px var(--blue) solid;
  text-align: center;
  color: var(--blue);
  padding: 12px 0;
  font-size: min(3.5vw, 20px);
  margin-bottom: 30px;
}
.reserve_sec .flow dl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #999;
}
.reserve_sec .flow dl dt {
  font-weight: 500;
  margin-bottom: 5px;
}
.reserve_sec .flow dl dd {
  font-size: min(3.5vw, 15px);
}

.spot_sec {
  background-color: #f4f4f4;
  text-align: center;
  margin-top: 80px;
  padding: 40px 0;
}
.spot_sec h4 {
  font-size: min(2.5vw, 14px);
}
.spot_sec .hinohara_logo {
  width: 220px;
  margin: 40px auto 20px auto;
}
.spot_sec dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.spot_sec dl dd {
  font-size: 13px;
}

/*---------------------------------------

footer

---------------------------------------*/
footer {
  margin-top: 50px;
  text-align: center;
}
footer .logo {
  width: 210px;
  margin: 10px auto;
}
footer dl.bavi_sec dt {
  font-weight: 500;
  font-size: min(3vw, 14px);
  color: #d41f4f;
}
footer dl.bavi_sec dd {
  font-size: min(3vw, 13px);
  text-decoration: underline;
}
footer .sns_sec {
  margin: 30px 0;
}
footer .sns_sec ul {
  justify-content: center;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
footer .sns_sec ul li {
  width: 45px;
}
footer .copyright {
  font-size: 11px;
}

@media screen and (min-width: 1280px) {
  /*================
  sec02
  ================*/
  .sec02 ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sec02 ul li {
    flex-flow: column;
    justify-content: space-between;
    gap: 10px;
    width: 48%;
  }
  .sec02 ul li:nth-child(even) {
    padding-top: 80px;
  }
  .sec02 ul li .txt {
    order: 2;
    width: 90%;
    margin: 0 auto;
  }
  .sec02 ul li .txt h3 {
    text-align: center;
  }
  .sec02 ul li .txt p {
    padding: 0;
  }
  .sec02 ul li figure {
    order: 1;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
}