@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 250px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 110px;
  }
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

main {
  margin-top: 70px;
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 50px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.page_title {
  background-color: #005844;
}
.page_title .container {
  padding: 120px 0 80px;
}
.page_title .head_text {
  margin-bottom: 0;
  font-size: 4.8rem;
}
.page_title .head_text span {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .page_title .container {
    padding: 40px 0;
  }
  .page_title .head_text {
    font-size: 3.2rem;
  }
  .page_title .head_text span {
    margin-top: 0;
  }
}

#pan {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto 60px;
  font-weight: normal;
  color: #222222;
}
#pan li {
  font-size: 1.4rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a:hover {
  color: #005844;
}
@media screen and (max-width: 767px) {
  #pan {
    margin: 10px auto 30px;
  }
}

.btn {
  border-radius: 40px;
  border: 1px solid;
  padding: 30px 50px;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.btn_green {
  border-color: #ffffff;
  background-color: #005844;
  color: #ffffff;
}
.btn_green:hover {
  opacity: 0.7;
}
.btn_black {
  width: 300px;
  padding: 20px;
  border-color: #222222;
  background-color: #222222;
  color: #ffffff;
  font-weight: 500;
}
.btn_black:hover {
  background-color: #ffffff;
  color: #222222;
}
.btn_white {
  width: 300px;
  padding: 20px;
  border-color: #222222;
  background-color: #ffffff;
  color: #222222;
}
.btn_white:hover {
  background-color: #222222;
  color: #ffffff;
}
.btn_box {
  text-align: center;
}
.head_text {
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
}
.head_text span {
  display: inline-block;
  padding: 0 0 7px 20px;
  color: #005844;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
.head_text_white {
  color: #ffffff;
}
.head_text_white span {
  color: #ffffff;
}
.head_text_center {
  text-align: center;
}
.head_text_center span {
  display: block;
  padding: 0;
  margin-top: -10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_text {
    font-size: 4rem;
  }
  .head_text span {
    display: block;
    padding: 0;
  }
}

.tel_num {
  text-decoration: underline;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
    text-decoration: none;
  }
}

.scroll_top {
  color: #005844;
  font-size: 5rem;
  position: fixed;
  bottom: 15px;
  right: 15px;
}
.scroll_top:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.targetFadeIn, .targetSlideInR, .targetSlideInL {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInL {
  animation-name: slideInAnimeL;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInR {
  animation-name: slideInAnimeR;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInAnimeL {
  from {
    opacity: 0;
    transform: translateX(1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
@keyframes slideInAnimeR {
  from {
    opacity: 0;
    transform: translateX(-1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
.fadeUpLoad {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .search-widget-search-container-bf1818 {
    display: none !important;
  }
}
.header {
  width: 100%;
  padding: 35px 35px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header.is-scrolled {
  padding: 10px 35px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header.is-scrolled .header_logo {
  width: 100px;
}
.header_logo {
  width: 170px;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header div.flex_box {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  gap: 0 40px;
}
.header nav {
  width: 80%;
  max-width: 1200px;
  border: 1px solid #005844;
  border-radius: 40px;
  padding: 10px 30px;
  background-color: #ffffff;
}
.header nav ul {
  justify-content: center;
  gap: 10px 80px;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.header nav a:hover {
  color: #005844;
}
.header nav a img {
  margin: 0 auto -5px;
}
.header .burger_menu_btn {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid #005844;
  border-radius: 50%;
  padding: 0;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
}
.header .burger_menu_btn span {
  width: 30px;
  height: 2px;
  background-color: #005844;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header .burger_menu_btn span:nth-of-type(1) {
  top: 17px;
}
.header .burger_menu_btn span:nth-of-type(2) {
  top: 27px;
}
.header .burger_menu_btn.open span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 25px;
}
.header .burger_menu_btn.open span:nth-of-type(2) {
  transform: translateX(-50%) rotate(-45deg);
  top: 25px;
}
@media screen and (max-width: 1605px) {
  .header {
    z-index: 4;
    padding: 10px 20px;
  }
  .header.is-scrolled {
    padding: 10px 20px;
  }
  .header.is-scrolled .header_logo {
    width: 55px;
  }
  .header div.flex_box {
    gap: 0 10px;
  }
  .header_logo {
    width: 85px;
  }
  .header .btn {
    padding: 15px 40px;
  }
  .header nav {
    display: none;
  }
  .header .burger_menu_btn {
    display: block;
  }
}

.burger_btn {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover {
  opacity: 0.7;
}

.overlay {
  display: none;
  width: 100%;
  height: 100vh;
  padding: 150px 20px 50px;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay ul {
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px 40px;
}
.overlay ul li {
  width: 80px;
  text-align: center;
}
.overlay ul a:hover {
  color: #005844;
}
.overlay ul a img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .overlay {
    padding: 250px 50px 50px;
  }
  .overlay ul {
    width: 90%;
    margin: 0 auto;
    gap: 50px 90px;
  }
}

.contact_area_box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 35px 40px;
  border-radius: 20px;
  background-color: #005844;
  color: #ffffff;
  text-align: center;
}
.contact_area_box p {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.contact_area_box .btn {
  width: 100%;
  max-width: 500px;
  border-radius: 60px;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .contact_area_box {
    padding: 30px 20px;
    text-align: left;
  }
  .contact_area_box .btn {
    padding: 20px;
  }
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  overflow-y: hidden;
  background-color: #005844;
  color: #ffffff;
  font-weight: 500;
}
.footer:before {
  content: "";
  width: 100%;
  height: 50%;
  max-height: 400px;
  background-image: url(../img/activity_bottom_deco.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.footer .container {
  padding-bottom: 25%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px 40px;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_info {
  flex: 1;
}
.footer_info div.flex_box {
  margin-bottom: 30px;
  align-items: flex-end;
  gap: 10px 20px;
}
.footer_info div.flex_box + p {
  font-size: 1.6rem;
}
.footer_info img {
  width: 120px;
  height: auto;
}
.footer_info_name {
  font-family: "Inter", sans-serif;
}
.footer_info_name span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.footer_info ul {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: 400;
  align-items: center;
  gap: 10px 40px;
}
.footer nav {
  width: 45%;
  max-width: 450px;
}
.footer nav ul {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px 90px;
  font-size: 1.6rem;
}
.footer nav a {
  display: block;
  width: 81px;
  text-align: center;
}
.footer nav a img {
  margin: 0 auto;
}
.footer nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .footer:before {
    max-height: 200px;
  }
  .footer .container {
    padding-bottom: 40%;
  }
  .footer_info div.flex_box {
    align-items: center;
  }
  .footer_info_name {
    text-align: center;
    font-size: 2rem;
  }
  .footer_info ul {
    margin-top: 20px;
    align-items: flex-start;
  }
  .footer nav {
    width: 100%;
  }
  .footer nav ul {
    gap: 50px 40px;
  }
}

.first_view {
  width: 100%;
  position: relative;
}
.first_view_img {
  width: 95%;
  max-width: 1700px;
  height: 780px;
  max-height: 780px;
  margin: 0 auto;
  background-image: url(../img/fv01.webp), url(../img/fv02.webp), url(../img/fv03.webp), url(../img/fv04.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: fade 15s ease-in-out infinite;
}
@keyframes fade {
  0% {
    background-image: url(../img/fv01.webp);
  }
  25% {
    background-image: url(../img/fv02.webp);
  }
  50% {
    background-image: url(../img/fv03.webp);
  }
  75% {
    background-image: url(../img/fv04.webp);
  }
  100% {
    background-image: url(../img/fv01.webp);
  }
}
.first_view_msg {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}
.first_view_msg p {
  display: inline-block;
  padding: 20px;
  font-size: 4.8rem;
  font-weight: 700;
  background-color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}
.first_view_msg p:nth-of-type(1) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .first_view_img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/7;
  }
  .first_view_msg {
    top: 50px;
    left: 20px;
    right: auto;
    transform: none;
  }
  .first_view_msg p {
    padding: 3px 8px;
    font-size: 2.4rem;
  }
  .first_view_msg p:nth-of-type(1) {
    margin-left: 10px;
  }
}

.pickup {
  padding-bottom: 100px;
  position: relative;
}
.pickup:before {
  content: "";
  width: 95%;
  max-width: 1560px;
  height: 72%;
  border-radius: 20px 0 0 20px;
  background-color: #f5f5f5;
  position: absolute;
  bottom: 30px;
  right: 0;
}
.pickup .container {
  padding-bottom: 0;
  position: relative;
}
.pickup_area {
  width: 76%;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
.pickup_slider {
  padding: 0;
  margin: 0;
}
.pickup_slider .slick-list {
  overflow: visible;
}
.pickup_slider .slick-track {
  display: flex;
  gap: 15px;
}
.pickup_slider li {
  width: 230px !important;
  height: 230px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: 0.3s ease;
}
.pickup_slider li figure,
.pickup_slider li a,
.pickup_slider li img {
  display: block;
  width: 100%;
  height: 100%;
}
.pickup_scroll_bar {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  overflow: hidden;
}
.pickup_scroll_bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: #005844;
  transition: transform 0.3s ease;
}

.concept {
  padding: 250px 0 60px;
  background-image: url(../img/concept_bg.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}
.concept_deco {
  position: absolute;
}
.concept_deco.only_pc {
  width: 30%;
}
.concept_deco.only_pc:nth-of-type(1) {
  max-width: 670px;
  top: 23%;
  left: -3%;
}
.concept_deco.only_pc:nth-of-type(2) {
  max-width: 800px;
  top: 7%;
  right: -3%;
}
.concept_deco.only_sp {
  max-width: 310px;
  bottom: 250px;
  right: -3%;
}
.concept .container {
  position: relative;
  z-index: 1;
}
.concept p {
  text-align: center;
}
.concept_text_main {
  margin-bottom: 30px;
  text-shadow: 0 0 6px #ffffff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.concept_text_main span {
  display: inline-block;
  padding-inline: 0 10px;
  font-size: 4.6rem;
}
.concept_text_sub {
  color: #ffffff;
  line-height: 2;
}
.concept_slider li {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 100px 0 60px;
  }
  .concept p {
    text-align: left;
  }
  .concept_text_main {
    font-size: 2.4rem;
    text-shadow: none;
  }
  .concept_text_main span {
    padding-inline: 0 10px;
    font-size: 3.2rem;
  }
  .concept_text_sub {
    padding-bottom: 200px;
  }
}

.activity {
  padding-bottom: 250px;
  background-color: #005844;
  color: #ffffff;
  position: relative;
  overflow-y: hidden;
}
.activity:before {
  content: "";
  width: 100%;
  height: 30%;
  max-height: 350px;
  background-image: url(../img/activity_bottom_deco.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: 1;
}
.activity_map_area {
  width: 100%;
  margin: 40px 0;
}
.activity_slider {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 各スライドの幅を固定 */
}
.activity_slider li {
  width: 420px;
  padding: 0 12px;
  box-sizing: border-box;
  transition: transform 0.4s ease, opacity 0.4s ease;
  /* 画像サイズ固定 */
}
.activity_slider li img {
  width: 420px;
  height: 525px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.activity_slider {
  /* 非アクティブ */
}
.activity_slider .slick-slide {
  transform: scale(0.8);
  opacity: 0.4;
}
.activity_slider {
  /* 中央 */
}
.activity_slider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.activity {
  /* 矢印 */
}
.activity .slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid #005844;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}
.activity .prev-arrow {
  left: 5%;
}
.activity .next-arrow {
  right: 5%;
}
.activity .slide-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #005844;
  border-right: 2px solid #005844;
}
.activity .prev-arrow::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.activity .next-arrow::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .activity {
    padding-bottom: 150px;
  }
  .activity:before {
    max-height: 250px;
  }
  .activity_slider li {
    padding: 0 8px;
  }
  .activity_slider .slick-slide {
    transform: scale(0.88);
  }
  .activity .slide-arrow {
    width: 40px;
    height: 40px;
  }
  .activity .prev-arrow {
    left: 2%;
  }
  .activity .next-arrow {
    right: 2%;
  }
}

.stay h3 {
  margin-bottom: 10px;
}
.stay h3 + p {
  margin-bottom: 30px;
}
.stay_tag_list {
  margin-bottom: 30px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
}
.stay_tag_item {
  padding: 20px 40px;
  cursor: pointer;
  transition: 0.3s ease;
}
.stay_tag_item:hover {
  border-color: #005844;
  background-color: #ffffff;
  color: #005844;
}
.stay_tag_item.selected {
  border-color: #005844;
  background-color: #ffffff;
  color: #005844;
}
.stay_content_list {
  margin-bottom: 130px;
}
.stay_content_item {
  align-items: flex-start;
  gap: 20px 0;
}
.stay_content_item.dome_item {
  display: none;
}
.stay_content_item.dome_item.selected {
  display: flex;
}
.stay_content_item_img {
  width: 50%;
  max-width: 600px;
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
}
.stay_content_item_img img {
  width: 100%;
  height: 100%;
}
.stay_content_item_detail {
  width: 50%;
  max-width: 600px;
}
.stay_content_item_detail_thumb {
  padding: 0 0 30px 20px;
  flex-direction: row;
  gap: 20px;
}
.stay_content_item_detail_thumb li {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  overflow: hidden;
}
.stay_content_item_detail_thumb li:hover {
  opacity: 0.7;
}
.stay_content_item_detail_thumb li img {
  height: 100%;
}
.stay_content_item_detail_info {
  border-radius: 0 20px 20px 0;
  padding: 20px 40px 60px;
  background-color: #f5f5f5;
  font-size: 1.6rem;
}
.stay_content_item_detail_info_name {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .stay_tag_list {
    justify-content: flex-start;
  }
  .stay_tag_item {
    padding: 15px 20px;
  }
  .stay_content_list {
    margin-bottom: 50px;
  }
  .stay_content_item {
    flex-direction: column;
    gap: 20px;
  }
  .stay_content_item_img {
    width: 100%;
    max-width: none;
  }
  .stay_content_item_detail {
    width: 100%;
    max-width: none;
  }
  .stay_content_item_detail_thumb {
    padding-left: 0;
    gap: 10px;
  }
  .stay_content_item_detail_thumb li {
    width: 70px;
    height: 70px;
  }
  .stay_content_item_detail_info {
    border-radius: 0;
    padding: 20px;
  }
  .stay_content_item_detail_info_name {
    font-size: 2rem;
  }
}

.food {
  padding-top: 100px;
  position: relative;
}
.food:before {
  content: "";
  width: 90%;
  max-width: 1560px;
  height: 65%;
  border-radius: 0 20px 20px 0;
  background-color: #f5f5f5;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.food .container {
  position: relative;
  z-index: 1;
}
.food img {
  width: 50%;
  max-width: 1035px;
  position: absolute;
  top: 50px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .food {
    padding-top: 0;
    padding-bottom: 60%;
    margin-bottom: 30px;
  }
  .food:before {
    height: 80%;
    bottom: auto;
    top: 80px;
  }
  .food img {
    width: 90%;
    max-width: 380px;
    top: auto;
    bottom: 0;
  }
}

.cake_banner .container {
  padding-top: 120px;
}
.cake_banner a {
  display: block;
}
.cake_banner a:hover {
  opacity: 0.7;
}
.cake_banner img {
  width: 80%;
  max-width: 630px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cake_banner .container {
    padding-top: 100px;
  }
}

.access {
  font-weight: 500;
}
.access_name {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 700;
}
.access_address {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.access_help {
  margin-bottom: 10px;
  color: #005844;
  font-size: 1.6rem;
}
.access_map_area {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 50px;
}
.access_map_area iframe {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.access dt {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
.access dt img {
  display: inline-block;
  margin: 0 10px 5px 0;
}
.access dd {
  margin-bottom: 50px;
  font-size: 1.6rem;
}
.access dd ul {
  gap: 25px;
}
.access dd li {
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.access_point {
  width: 300px;
  aspect-ratio: 5/2;
  background-color: #F5F5F5;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
}
.access_point:not(.finish)::after {
  content: "";
  width: 200%;
  height: 2px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.access_point.start {
  font-size: 2rem;
}
.access_point p {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access_process {
  background-color: #ffffff;
  position: relative;
  top: -30px;
}
.access_parking {
  font-weight: 500;
}
.access_parking + dd {
  padding: 30px 40px;
  margin-bottom: 0;
  background-color: #F5F5F5;
  font-size: 1.6rem;
}
.access .only_tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .access_point:not(.finish) {
    width: 100px;
    aspect-ratio: 5/6;
  }
  .access_point:not(.finish):after {
    width: 500%;
  }
  .access_point.start {
    font-size: 1.6rem;
  }
  .access .only_tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .access_name {
    font-size: 1.8rem;
  }
  .access_map_area {
    aspect-ratio: 1/1.2;
  }
  .access dt {
    font-size: 2rem;
  }
  .access_point {
    aspect-ratio: 5/1.2;
  }
  .access_point:not(.finish) {
    width: 300px;
    aspect-ratio: 5/1.2;
    margin-bottom: 50px;
  }
  .access_point:not(.finish)::after {
    width: 2px;
    height: 150%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .access_process {
    width: auto;
    top: -25px;
    left: 80px;
  }
  .access .only_tb {
    display: none;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #005844;
}
form dl {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #F5F5F5;
  font-size: 1.6rem;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #E8E8E8;
  font-weight: 500;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #E8E8E8;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #DDDDDD;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: #37A884;
  font-size: 12px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 0 0 10px;
  padding: 2px 7px;
  border-radius: 4px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.contact_msg {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

.privacy dt {
  margin-bottom: 10px;
  color: #005844;
}
.privacy dd {
  font-size: 1.6rem;
  line-height: 1.8;
}
.privacy dd:not(:last-child) {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.privacy ol {
  padding-left: 20px;
  list-style-type: decimal;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .privacy dt {
    font-size: 1.8rem;
  }
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 30px;
}
.sitemap ul {
  width: 48%;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #0071BC;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #0071BC;
}
.sitemap a:hover i {
  right: 40px;
}
.sitemap .sub_menu {
  width: 85%;
  border-bottom: none;
  margin: 0 0 0 auto;
}
.sitemap .sub_menu a i {
  position: inherit;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #37C2D2;
}
.sitemap .sub_menu .sub_menu a i {
  color: #86ebf6;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
  .sitemap .sub_menu {
    width: 90%;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page .container {
  padding-top: 200px;
}
.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page .container {
    padding-top: 120px;
  }
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */