@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.padding_bottom {
  padding-bottom: 20px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1000;
}
#header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_logo_images {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#header .header_logo_images_logo {
  width: 85px;
  height: 85px;
}
#header .header_logo_images_text {
  width: 300px;
  height: 75px;
  margin-bottom: 6px;
  margin-left: 4px;
}
#header .header_nav_list {
  display: flex;
  gap: 24px;
  font-size: 24px;
}
#header .header_nav_list .nav-link {
  transition: color 0.3s;
}
#header .header_nav_list .nav-link.active {
  border: 1px solid #005344;
  padding: 6px;
  border-radius: 8px;
}
#header .header_nav_list_item {
  position: relative;
  z-index: 1;
}
#header .header_nav_list_item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 15px;
  background-color: #005344;
  padding: 6px;
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#header .header_nav_list_item:hover {
  color: #fff;
}
#header .header_nav_list_item:hover::before {
  opacity: 1;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(155, 155, 155, 0.49);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10000;
}
.scroll-top-btn:hover {
  background-color: #005344;
}

#wrapper {
  /* popup */
}
#wrapper .content .scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#wrapper .content .scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}
#wrapper .content .fv img {
  margin-top: 72px;
  width: 100%;
  height: calc(100vh - 72px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  display: block;
  margin-bottom: -48px;
  background-color: #005344;
}
#wrapper .content_padding {
  padding: 0 65px;
}
#wrapper .content_title {
  font-size: 28px;
  font-weight: 400;
  margin-left: -2px;
  margin-bottom: 36px;
}
#wrapper .content_title_en {
  margin-top: 120px;
  font-size: 14px;
  margin-bottom: -5px;
}
#wrapper .content .about_content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
#wrapper .content .about img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 56%;
     object-position: 50% 56%;
}
#wrapper .content .about_text {
  margin-top: 36px;
}
#wrapper .content .info_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#wrapper .content .info_wrapper_item_ttl {
  font-size: 20px;
  display: inline-block;
  color: #005344;
  border-bottom: 2px solid #005344;
}
#wrapper .content .info_wrapper_item_content {
  padding: 25px 80px 50px 5px;
}
#wrapper .content .info_wrapper_item_content_fee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
}
#wrapper .content .info_wrapper_item_content_txt_L {
  font-size: 28px;
}
#wrapper .content .info_wrapper_item_content_txt_LM {
  font-size: 24px;
}
#wrapper .content .info_wrapper_item_content_txt_M {
  font-size: 20px;
}
#wrapper .content .info_wrapper_item_content_txt_MS {
  font-size: 17px;
}
#wrapper .content .info_wrapper_item_content_txt_S {
  font-size: 12px;
}
#wrapper .content .info_wrapper_item_content_towels {
  gap: 20px;
}
#wrapper .content .info_wrapper_item_content_towels_flex {
  display: flex;
  justify-content: space-between;
}
#wrapper .content .info_wrapper_item_content_towels_flex_end {
  justify-content: flex-end;
}
#wrapper .content .info_wrapper_item_content_towels .kome_margin {
  margin-top: 10px;
}
#wrapper .content .info_wrapper_item_content_sauna {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#wrapper .content .facility .f-switch {
  text-align: start;
}
#wrapper .content .facility .f-switch .floor {
  display: flex;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
#wrapper .content .facility .f-switch .floor-1 {
  margin-right: 5px;
  cursor: pointer;
  transition: transform 0.5s ease;
}
#wrapper .content .facility .f-switch .floor-1.active {
  transform: none;
}
#wrapper .content .facility .f-switch .floor-1:not(.active):hover {
  transform: scale(1.1);
}
#wrapper .content .facility .f-switch .floor-2 {
  margin-left: 5px;
  cursor: pointer;
  transition: transform 0.5s ease;
}
#wrapper .content .facility .f-switch .floor-2.active {
  transform: none;
}
#wrapper .content .facility .f-switch .floor-2:not(.active):hover {
  transform: scale(1.1);
}
#wrapper .content .facility .f-switch .floor .slash {
  cursor: default;
  margin: 0 10px;
  color: #005344;
}
#wrapper .content .facility .f-switch .floor button {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  color: rgba(0, 83, 68, 0.4235294118);
  transition: color 0.3s;
  transition: transform 0.3s ease;
}
#wrapper .content .facility .f-switch .floor button.active {
  font-weight: bold;
  color: #005344;
}
#wrapper .content .facility .f-facility {
  display: none;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}
#wrapper .content .facility .f-facility.visible {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
#wrapper .content .facility .f-facility-items {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
#wrapper .content .facility .f-facility-items .item-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  transition: transform 0.3s ease;
}
#wrapper .content .facility .f-facility-items .item-img:hover {
  transform: scale(1.025);
}
#wrapper .content .facility .f-facility-2 {
  display: none;
}
#wrapper .content .facility .f-facility img {
  cursor: pointer;
  border-radius: 2px;
}
#wrapper .content .p_text {
  font-size: 16px;
}
#wrapper .content .access_text {
  margin-bottom: 36px;
}
#wrapper .content .access .tel {
  color: #005344;
  text-decoration: underline;
}
#wrapper .content .faq_q {
  font-size: 20px;
  color: #005344;
}
#wrapper .content .faq_a {
  margin: 10px 0 50px 3px;
  font-size: 16px;
  position: relative;
}
#wrapper .content .faq_a::after {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 0;
  background-color: #d9d9d9;
  width: 100%;
  height: 1px;
}
#wrapper .content .map {
  margin-top: 100px;
}
#wrapper .content .map--gray {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
#wrapper .content .map--gray:hover {
  filter: grayscale(0%);
}
#wrapper .content iframe {
  position: relative;
  z-index: 1;
}
#wrapper .popup {
  position: fixed;
  top: 93px;
  left: 0;
  width: 100%;
  height: calc(100% - 93px);
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#wrapper .popup-content {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  max-width: 100%;
  width: 70%;
  max-height: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrapper .popup-content img {
  max-width: calc(100% - 30px);
  max-height: 60vh;
  width: 82%;
  margin-bottom: 10px;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
}
#wrapper .popup-text {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  max-width: 80%;
  width: 100%;
  margin: 10px auto 0;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
}
#wrapper .popup.visible {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
#wrapper .popup-content .close {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  font-size: 24px;
}

#wrapper {
  /* popup */
}
#wrapper .content .scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#wrapper .content .scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}
#wrapper .content .fv img {
  margin-top: 72px;
  width: 100%;
  height: calc(100vh - 72px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  display: block;
  margin-bottom: -48px;
  background-color: #005344;
}

#footer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#footer img {
  width: 250px;
  margin: 50px 0 30px 9px;
}
#footer small {
  margin-bottom: 10px;
}

.fee_margin {
  margin-top: -10px;
  margin-bottom: 10px;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background-color: black;
  transition: 0.3s;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #005344;
  box-shadow: 0 0 5px rgba(0, 83, 68, 0.5);
  outline: none;
}

select, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
}

select:focus, textarea:focus {
  border-color: #005344;
  box-shadow: 0 0 5px rgba(0, 83, 68, 0.5);
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #005344;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #007a64;
  transform: scale(1.05);
}

.submit-btn:active {
  background-color: #00402a;
  transform: scale(0.95);
}



nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

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

@media screen and (max-width: 900px) {
  #wrapper .content .info_wrapper {
    display: flex;
    flex-direction: column;
  }
  #wrapper .content .info_wrapper_item_content {
    padding: 25px 0px 50px 5px;
  }
  #wrapper .content .facility .f-facility-items {
    grid-template-columns: repeat(2, 1fr);
  }
  #wrapper .content .popup-content {
    height: 70%;
  }
}
@media screen and (max-width: 750px) {
  #header .header_nav {
    display: none;
  }
  .hamburger {
    position: fixed;
    display: flex;
    top: 41px;
    right: 25px;
    z-index: 1001;
  }
  .menu {
    display: none;
    flex-direction: column;
    gap: 23px;
    background-color: #005344;
    position: absolute;
    top: 73px;
    right: 20px;
    width: 200px;
    padding: 17px;
    border-radius: 5px;
    z-index: 2000;
  }
  .menu.active {
    display: flex;
    position: fixed;
  }
}
@media screen and (max-width: 700px) {
  #wrapper .content_padding {
    padding: 0 45px;
  }
  #wrapper .content .popup-content {
    height: 65%;
  }
}
@media screen and (max-width: 650px) {
  #wrapper .content .facility .f-facility-items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  #wrapper .content .popup-content {
    height: 60%;
  }
}
@media screen and (max-width: 500px) {
  #wrapper .content .popup-content {
    height: 50%;
  }
}
@media screen and (max-width: 450px) {
  #wrapper .content .popup-content {
    height: 50%;
  }
  #wrapper .content .info_wrapper_item_content_sauna {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 600px) {
  .form-container {
    width: 90%;
    padding: 15px;
  }
}
.inline-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin: 15px 0; /* ←これ重要 */
}

.inline-group > div {
  width: 50%;
  text-align: left;
}

.inline-group label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.inline-group select,
.inline-group input {
  width: 100%;
  height: 42px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .inline-group {
    flex-direction: column;
  }
}