@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

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

p {
  margin: 0;
}

/* ブレイクポイント */
.font-en {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
}

.font-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1 {
  font-weight: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.h2-jp {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
}

.h3-en {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  color: #F2F2F2;
}

p {
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}

small {
  font-size: 1.4rem;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

.background {
  background: #ffffff;
}

.container,
.header-container {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(80px, 5vw, 120px);
}
@media (max-width: 767px) {
  .container,
  .header-container {
    max-width: 100%;
    padding-inline: 16px;
  }
}

header {
  position: absolute;
  width: 100%;
  max-width: 100vw;
  z-index: 110;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 767px) {
  header {
    overflow: visible;
  }
}
header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 40px;
  border-bottom: 1px solid #004000;
}
@media (max-width: 767px) {
  .header-container {
    padding-block: 16px;
    padding-inline: 16px;
    display: flex;
    max-width: 100%;
    position: relative;
  }
}
.header-container img {
  height: auto;
  width: 280px;
}
@media (max-width: 767px) {
  .header-container img {
    height: 32px;
    width: auto;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 767px) {
  .nav-overlay {
    display: block;
  }
  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

.nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: #F2F2F2;
    justify-content: space-between;
    z-index: 101;
    gap: 0;
    padding: 80px 24px 40px;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    align-items: center;
    text-align: center;
  }
  .nav.is-active {
    transform: translateY(0);
  }
}

.nav-above {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .nav-above {
    flex-direction: column;
    gap: 8px;
  }
}

.mv {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .mv {
    height: 100vh;
    min-height: 400px;
  }
}

/* ===== 背景スライダー ===== */
.mv-slider {
  position: absolute;
  inset: 0;
  position: fixed;
  z-index: -100;
}

.mv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}
.mv-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.mv-gradientWhite {
  position: absolute;
  width: 100vw;
  height: auto;
  bottom: -2;
  z-index: 5;
}

.mv-textWrap {
  display: flex;
  flex-direction: column;
  text-align: end;
  max-width: 1240px;
  margin: 10vw auto;
  z-index: 10;
  position: relative;
  align-items: end;
  width: 80%;
}
@media (max-width: 767px) {
  .mv-textWrap {
    margin: 0;
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
}

.mv-copy {
  color: #ffffff;
}
.mv-copy__01 {
  font-size: 8.5vw;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .mv-copy__01 {
    font-size: 28vw;
    line-height: 105px;
    margin-bottom: 24px;
  }
}
.mv-copy__02 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .mv-copy__02 {
    font-size: 16px;
    margin-bottom: 16px;
    margin: 0 0 16px 24px;
  }
}
.mv-copy__03 {
  font-size: 1.6rem;
  margin-bottom: 0 0 32px;
}
@media (max-width: 767px) {
  .mv-copy__03 {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 0 0 24px 24px;
  }
}

.mv-contact {
  width: 220px;
  height: 220px;
  position: relative;
  z-index: 100;
  display: block;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
  top: 40px;
  left: 0;
}
@media (max-width: 768px) {
  .mv-contact {
    top: 24px;
    left: 24px;
  }
}
.mv-contact:hover {
  opacity: 0.5;
}
.mv-contact .mv-contactText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: auto;
}
.mv-contact .mv-contactCircle {
  width: 100%;
  height: 100%;
  animation: spin 15s linear infinite;
}
@media (max-width: 767px) {
  .mv-contact {
    width: 140px;
    height: 140px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.top-contact {
  margin: 0 auto;
  padding-top: 240px;
  text-align: center;
}
@media (max-width: 767px) {
  .top-contact {
    padding-top: 120px;
  }
}
.top-contact h1 {
  font-size: 80px;
  color: #3A3A3A;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-contact h1 {
    font-size: 40px;
  }
}
.top-contact p {
  padding: 48px 0;
}
@media (max-width: 767px) {
  .top-contact p {
    font-size: 1.4rem;
    padding: 24px 0;
    line-height: 2.4rem;
  }
}
.top-contact__flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .top-contact__flex {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.price {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 160px auto 0;
  width: 100%;
  align-items: center;
}

.price-content {
  width: 100%;
}

.price-wrap__head {
  display: flex;
  flex-direction: column;
  background: #008100;
  color: #ffffff;
  font-size: 2.4rem;
  padding: 24px 0;
  text-align: center;
  border-radius: 24px 24px 0 0;
}
.price-wrap__body {
  border-radius: 0 0 24px 24px;
  border: 2px solid #008100;
  padding: 48px;
}
@media (max-width: 767px) {
  .price-wrap__body {
    padding: 24px 24px 32px;
  }
}

.price-flexBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .price-flexBox {
    flex-direction: column;
  }
}

.price-item {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  width: 100%;
  align-items: center;
}
@media (max-width: 767px) {
  .price-item {
    flex-direction: column;
    padding: 16px;
  }
}
.price-item__basic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 33%;
  border: 2px solid #D8D8D8;
  border-radius: 8px;
  color: #008100;
  transition: 0.5s all ease;
  top: 0;
}
@media (max-width: 767px) {
  .price-item__basic {
    width: 100%;
  }
}
.price-item__basic:hover {
  background: #94bba9;
  color: white;
  border: 2px solid #94bba9;
  top: 8px;
  box-shadow: none;
}
.price-item__basic:hover svg {
  fill: white;
  transition: 0.5s all ease;
}
.price-item__basic svg {
  fill: #008100;
}

.price-item {
  border-radius: 8px;
  box-shadow: 0 8px 0 #B4B4B4;
}
.price-item:hover {
  box-shadow: none;
}

.price-time {
  text-align: left;
}
@media (max-width: 767px) {
  .price-time {
    text-align: center;
  }
}
.price-time__day {
  position: relative;
  background: #ffffff;
  border: 2px solid #D8D8D8;
  transition: 0.5s all ease;
  top: 0px;
}
.price-time__day:hover {
  background: #F2F2F2;
  border: 2px solid #EFD157;
  top: 8px;
}
.price-time__night {
  position: relative;
  background: #ffffff;
  border: 2px solid #D8D8D8;
  transition: 0.5s all ease;
  top: 0px;
}
.price-time__night:hover {
  background: #F2F2F2;
  border: 2px solid #4AB1D6;
  top: 8px;
}

.price-time__text p {
  font-size: 1.8rem;
}
.price-time__text small {
  font-size: 1.6rem;
  letter-spacing: 0.25rem;
}

.price-basicList {
  padding-top: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.price-basicList li {
  height: 40px;
}
.price-basicList__left {
  font-size: 16px;
  text-align: right;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .price-basicList__left {
    font-size: 13px;
  }
}
.price-basicList__left li {
  display: flex;
  align-items: center;
  justify-content: end;
}
.price-basicList__right {
  font-size: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .price-basicList__right {
    font-size: 16px;
  }
}
.price-basicList__right li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.price-work {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .price-work {
    width: 100%;
    margin: 0;
  }
}

.price-workContent {
  display: flex;
  border: 2px solid #008100;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .price-workContent {
    flex-direction: column;
  }
}
.price-workContent__icon {
  width: 130px;
  height: 130px;
  background-color: #008100;
  position: relative;
}
@media (max-width: 767px) {
  .price-workContent__icon {
    width: 100%;
    height: 60px;
  }
}
.price-workContent__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  padding: 0;
}
@media (max-width: 767px) {
  .price-workContent__icon img {
    width: 50px;
    padding: 4px;
  }
}
.price-workContent__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  .price-workContent__text {
    padding: 16px;
  }
}
.price-workContent__text span {
  font-size: 24px;
}

.workContent-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .workContent-top {
    flex-direction: column;
    gap: 0;
  }
}

.price-spWork {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .price-spWork {
    grid-template-columns: repeat(1, 1fr);
  }
}
.price-spWork__item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #008100;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.price-spWork__item p {
  font-size: 2rem;
}
.price-spWork__item small {
  font-size: 1.4rem;
}
.price-spWork__item span {
  font-size: 2.4rem;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
}
.price-spWork__item1c {
  grid-column: span 6;
}
@media (max-width: 767px) {
  .price-spWork__item1c {
    grid-column: 1;
  }
}
.price-spWork__item2c {
  grid-column: span 3;
}
@media (max-width: 767px) {
  .price-spWork__item2c {
    grid-column: 1;
  }
}
.price-spWork__item3c {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .price-spWork__item3c {
    grid-column: 1;
  }
}

.caution {
  margin-top: 40px;
}

/* 料金詳細エリアの表示/非表示 */
.price-details-wrapper {
  display: none;
  width: 100%;
  /* 親要素の幅に合わせる */
}

.price-details-wrapper.is-active {
  display: block;
}

/* 選択中のボタンのスタイル */
.price-time.is-active.price-time__day {
  background: #f3ebdb;
  border: 2px solid #EFD157;
  top: 8px;
  box-shadow: none;
}

.price-time.is-active.price-time__night {
  background: #c0d4d7;
  border: 2px solid #4AB1D6;
  top: 8px;
  box-shadow: none;
}

.price-item__basic.is-active {
  background: #008100;
  color: white;
  border: 2px solid #008100;
  top: 8px;
  box-shadow: none;
}

.price-item__basic.is-active svg {
  fill: white;
}

.price-basicList {
  opacity: 0;
  display: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-basicList.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.price-modal {
  opacity: 0;
  display: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-modal.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 40px;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
}

table {
  margin: 0 auto;
  border: 1px solid #D8D8D8;
  border-collapse: collapse;
  font-size: 1.6rem;
}
table td,
table th {
  padding: 16px;
  height: 25px;
  border: 1px solid #D8D8D8;
}
table td:nth-child(1) {
  text-align: end;
  width: 200px;
}
table td:nth-child(2) {
  width: 400px;
}
table th {
  background: #f0e6cc;
}

.even {
  background: #fbf8f0;
}

.odd {
  background: #fefcf9;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #D8D8D8;
  text-align: center;
}

.pc-only {
  display: initial;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: initial;
  }
}

.contact {
  padding: 16px;
}

.button_links {
  text-decoration: underline;
  position: relative;
}
.button_links::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: -19px;
  bottom: 1px;
  background-image: url(image/link-icon.svg);
  background-size: contain;
}

.button-nav {
  color: #3A3A3A;
  transition: 0.35s all ease;
  font-weight: 500;
  font-size: 1.5rem;
}
.button-nav:hover {
  color: #004000;
}
.button-nav__contact {
  display: flex;
  font-weight: 800;
  padding: 8px 16px;
  border: 1px solid #008100;
  color: #008100;
  transition: 0.5s all ease;
  border-radius: 100px;
  align-items: center;
  gap: 4px;
}
.button-nav__contact:hover {
  color: #ffffff;
  background: #008100;
}
.button-nav__contact:hover .contact-icon {
  fill: #ffffff;
}
.button-nav__contact img {
  height: 16px;
}
.button-nav .contact-icon {
  fill: #008100;
  transition: fill 0.5s ease;
}
@media (max-width: 767px) {
  .button-nav {
    font-size: 1.4rem;
    display: block;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    border: none;
  }
  .button-nav__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border: none;
    color: #3A3A3A;
    padding: 12px 16px;
    display: flex;
  }
}
@media (max-width: 767px) and (max-width: 768px) {
  .button-nav__contact {
    flex-direction: row;
    border: 1px solid #008100;
    margin-bottom: 16px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .button-nav__contact p {
    margin: 0;
    font-size: 1.3rem;
  }
  .button-nav__contact:active {
    background: #F2F2F2;
  }
}

.button-contact {
  display: flex;
  padding: 32px;
  gap: 24px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 40%;
  border: 2px solid #008100;
  border-radius: 16px;
  background: white;
  color: #008100;
  transition: 0.35s all ease;
}
.button-contact:hover {
  color: white;
  background: #008100;
}
.button-contact:hover svg {
  fill: white;
}
.button-contact svg {
  height: 40px;
  fill: #008100;
  transition: 0.35s fill ease;
}
.button-contact p {
  padding: 0;
}
@media (max-width: 767px) {
  .button-contact {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    gap: 16px;
    flex-direction: column;
  }
}

section {
  margin-top: 160px;
}

.section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

/* Hamburger base (desktop: hidden; shown via media query in layout/_layout.scss) */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  z-index: 109;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
    position: relative;
  }
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #004000;
  border-radius: 2px;
  transition: 0.3s ease;
  display: block;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}/*# sourceMappingURL=style.css.map */