html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #333;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Noto Sans JP", serif;
  line-height: 1.8;
  letter-spacing: 0.02 em;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

img {
  width: 100%;
}

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

@media screen and (max-width: 600px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 959px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}

.section-space {
  margin-top: 148px;
}
@media screen and (max-width: 600px) {
  .section-space {
    margin-top: 72px;
  }
}

.section-title {
  line-height: 1;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  width: 52px;
  height: 1px;
  background-color: #B69356;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 600px) {
  .section-title {
    margin-bottom: 48px;
  }
}

.section-title .en {
  font-family: "Cormorant Garamond";
  color: #B69356;
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .section-title .en {
    font-size: 24px;
    margin-bottom: 4px;
  }
}

.section-title .ja {
  font-family: "Noto Serif JP";
  display: block;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .section-title .ja {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.headline-en {
  font-size: clamp(1.25rem, 0.25rem + 2.67vw, 1.75rem);
  font-family: "Cormorant Garamond", "Noto Serif JP";
  color: #B69356;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .headline-en {
    margin-bottom: 10px;
  }
}

.headline-ja {
  font-size: clamp(1.5rem, 0.5rem + 2.67vw, 2rem);
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .headline-ja {
    margin-bottom: 32px;
  }
}

.util-button {
  position: relative;
  font-size: 18px;
  color: #B69356;
  border: solid 1px #B69356;
  font-family: "Noto Sans JP";
  background: #fff;
  display: inline-block;
  padding: 16px 80px;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (max-width: 600px) {
  .util-button {
    width: 100%;
    padding: 16px 40px;
  }
}
.util-button::after {
  content: "";
  position: absolute;
  background: url("../img/arrow-gold.svg") no-repeat;
  width: 30px;
  height: 10px;
  top: 40%;
  right: 4.5%;
}
.util-button:hover {
  background: #B69356;
  color: #fff;
}
.util-button:hover::after {
  background: url("../img/arrow-white.svg") no-repeat;
}

.attention {
  font-size: 12px;
  color: #E7728E;
  vertical-align: super;
  line-height: 1;
}

.contact {
  background: url(../img/contact.jpg) center center/cover;
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 36px 0;
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.contact-wrapper {
  position: relative;
}

.contact-message {
  text-align: center;
  font-family: "Noto Sans JP";
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-button-inner {
  width: 90%;
  margin: 60px auto 0;
}
@media screen and (min-width: 960px) {
  .contact-button-inner {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
  }
}

.contact-button {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Sans JP";
  background: #B69356;
  border: solid 1px #B69356;
  color: #fff;
  display: inline-block;
  padding: 16px 80px;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.25);
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (min-width: 960px) {
  .contact-button {
    width: 48.4%;
  }
}
@media screen and (max-width: 959px) {
  .contact-button + .contact-button {
    margin-top: 20px;
  }
}
.contact-button::after {
  content: "";
  position: absolute;
  background: url("../img/arrow-white.svg") no-repeat;
  width: 30px;
  height: 10px;
  top: 40%;
  right: 4.5%;
}
.contact-button:hover {
  background: #fff;
  color: #B69356;
}
.contact-button:hover::after {
  background: url("../img/arrow-gold.svg") no-repeat;
}

.footer {
  background-color: #FFF8F8;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-bottom: 60px;
  }
}

.footer-wrapper {
  margin: 0 auto;
  padding: 60px 16px;
}
@media screen and (min-width: 960px) {
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
  }
}
@media screen and (max-width: 959px) {
  .footer-wrapper {
    text-align: center;
  }
}

.footer-logo {
  width: 155px;
}

.footer-shop-describe {
  margin: 8px;
  color: #B69356;
  line-height: 1.5;
  font-family: "Noto Serif JP";
}

.footer-nav-list {
  display: flex;
  align-items: center;
  height: 48px;
}
@media screen and (max-width: 959px) {
  .footer-nav-list {
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
}

.footer-nav-item {
  color: #B69356;
}
.footer-nav-item + .footer-nav-item {
  margin-left: 30px;
}

.footer-link {
  position: relative;
  height: 48px;
  line-height: 48px;
  display: block;
}
.footer-link::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #B69356;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.footer-link:hover::after {
  transform: scale(1, 1);
}

.sns-link:hover {
  opacity: 0.6;
}
.sns-link:hover::after {
  transform: scale(0, 1);
}

.sns-icon {
  width: 30px;
  fill: #B69356;
}

.footer-copy-right {
  text-align: center;
  font-size: 12px;
  padding-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .footer-copy-right {
    margin-top: 60px;
    padding-bottom: 16px;
  }
}

.sp-reserve-nav {
  opacity: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  z-index: 500;
  padding: 16px;
}
@media screen and (min-width: 960px) {
  .sp-reserve-nav {
    display: none;
  }
}

.sp-reserve-nav-wrapper {
  display: flex;
  justify-content: space-between;
}

.reserve-button {
  width: 48%;
}

.reserve-link {
  text-align: center;
  font-size: clamp(1rem, 0.167rem + 2.22vw, 1.5rem);
  padding: 10px 0;
  display: block;
  color: #fff;
  background-color: #B69356;
  transition: background-color 0.4s, color 0.4s;
}
.reserve-link:hover {
  background-color: #fff;
  color: #B69356;
  border: 1px solid #B69356;
}

.yukiritual-logo {
  position: absolute;
  top: 0;
  left: 1.4%;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .yukiritual-logo {
    top: 10px;
    left: 0.4%;
  }
}

.logo-link img {
  width: 180px;
}
@media screen and (max-width: 600px) {
  .logo-link img {
    width: 140px;
  }
}

.page-title-img {
  padding-top: 24%;
  border-radius: 30px 0 0 30px;
  opacity: 0.7;
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .page-title-img {
    padding-top: 50%;
  }
}

.page-title {
  position: relative;
  margin-top: 16px;
}

.en {
  display: block;
  font-family: "Cormorant Garamond";
  color: #B69356;
  font-size: clamp(2.5rem, 0.75rem + 4.67vw, 3.375rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ja {
  display: block;
  font-family: "Noto Serif JP";
  font-size: clamp(0.875rem, 0.458rem + 1.11vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-title-area {
  position: relative;
}

.page-title-text {
  width: 90%;
  margin-left: auto;
  align-self: center;
  position: relative;
}

.sp-reserve-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  z-index: 500;
  padding: 16px;
  padding-bottom: env(safe-area-inset-bottom);
}
@media screen and (min-width: 960px) {
  .sp-reserve-nav {
    display: none;
  }
}

.sp-reserve-nav-wrapper {
  display: flex;
  justify-content: space-between;
}

.reserve-button {
  width: 48%;
}

.reserve-link {
  text-align: center;
  font-size: clamp(1rem, 0.167rem + 2.22vw, 1.5rem);
  padding: 10px 0;
  display: block;
  color: #fff;
  background-color: #B69356;
  transition: background-color 0.4s, color 0.4s;
}
.reserve-link:hover {
  background-color: #fff;
  color: #B69356;
  border: 1px solid #B69356;
}

.fadeInTrigger,
.fadeInUpTrigger {
  opacity: 0;
}

.delay-time1 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-time2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-time3 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay-time4 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
}
#pagetop span {
  position: relative;
  z-index: 500;
  color: #B69356;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  writing-mode: vertical-rl;
}
#pagetop::before {
  content: "";
  position: absolute;
  bottom: 95px;
  right: 6px;
  width: 1px;
  height: 14px;
  background: #B69356;
  transform: skewX(31deg);
}
#pagetop::after {
  content: "";
  position: absolute;
  bottom: 60px;
  right: 11px;
  width: 1px;
  height: 50px;
  background: #B69356;
}

.page-title-img {
  background: url(../img/contact.jpg) center center/cover;
}

.contact-form-info-message {
  margin: 60px 0;
  font-family: "Noto Sans JP";
  text-align: center;
}

.form-button-inner {
  width: 100%;
  margin: 20px auto 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.form-button {
  width: 48%;
  position: relative;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans JP";
  background: #fff;
  border: solid 1px #B69356;
  color: #B69356;
  display: inline-block;
  padding: 16px 40px;
  transition: background-color 0.4s;
}
@media screen and (max-width: 600px) {
  .form-button {
    font-size: 12px;
    padding: 16px;
  }
}
.form-button:hover {
  opacity: 0.6;
}
.form-button.is-active {
  background: #B69356;
  color: #fff;
}

.contact-form {
  display: none;
}
.contact-form.is-active {
  display: block;
}

.contact-conatiner {
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 960px) {
  .contact-conatiner {
    width: 80%;
    margin: 0 auto;
    padding: 0 30px;
  }
}

.form-message {
  font-family: "Noto Sans JP";
  text-align: center;
  margin-bottom: 60px;
}

.contact-table {
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .contact-item-wrapper {
    display: flex;
    align-items: flex-start;
  }
}

.contact-title,
.contact-input {
  padding: 10px;
}
@media screen and (min-width: 960px) {
  .contact-title,
.contact-input {
    padding: 20px 10px;
  }
}

.contact-title {
  text-align: left;
  width: 30%;
  font-weight: 700;
  vertical-align: text-top;
}
@media screen and (max-width: 959px) {
  .contact-title {
    width: 100%;
    display: block;
  }
}

.required {
  margin-left: 10px;
  font-size: 12px;
  color: #fff;
  background: #F59D9D;
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1;
}

.any {
  margin-left: 10px;
  font-size: 12px;
  color: #fff;
  background: rgb(134, 194, 255);
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1;
}

.contact-input {
  width: 70%;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .contact-input {
    width: 100%;
    display: block;
  }
}

.contact-radio {
  width: 30%;
}
.contact-radio + .contact-radio {
  margin-left: 20px;
}

input[type=radio] {
  opacity: 0;
  position: absolute;
}

.radio-input-item {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  line-height: 2.2;
  font-family: "Noto Sans JP";
}
.radio-input-item::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border: 1px solid #B69356;
  width: 20px;
  height: 20px;
  top: 8px;
  left: 0;
}
.radio-input-item:hover::before {
  box-shadow: 0 0 4px #B69356;
}
.radio-input-item::after {
  content: "";
  position: absolute;
  top: 36%;
  left: 5px;
  display: block;
  border-bottom: 2px solid #B69356;
  border-left: 2px solid #B69356;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}

.radio-input:checked + .radio-input-item::after {
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  font-size: 16px;
  padding: 0.2em 0.5em;
  border: 1px solid #B69356;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
textarea:hover,
textarea:focus {
  box-shadow: 0 0 4px #B69356;
  outline: none;
}

input[type=text],
input[type=email],
input[type=tel] {
  height: 40px;
}

textarea {
  min-height: 200px;
  resize: vertical;
}

input[type=text] + input[type=text] {
  margin-top: 10px;
}

.reserve-title {
  padding: 10px;
}

.reserve-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .reserve-input {
    display: block;
  }
}

.date-area,
.time-area {
  width: 100%;
}

#datepicker1,
#datepicker2,
#datepicker3 {
  width: 70%;
  margin: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.select-wrapper {
  position: relative;
}

.reserve-time {
  width: 70%;
  height: 40px;
  font-size: 16px;
  padding: 0.2em 0.5em;
  border: 1px solid #B69356;
}
@media screen and (max-width: 600px) {
  .reserve-time {
    margin-top: 20px;
  }
}
.reserve-time:hover, .reserve-time:focus {
  box-shadow: 0 0 4px #B69356;
  outline: none;
}

.checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}

.check-policy {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  padding-left: 36px;
}
.check-policy::before {
  position: absolute;
  left: 0;
  display: block;
  border: 1px solid #B69356;
  content: "";
  width: 20px;
  height: 20px;
  transform: translateX(0%);
}
.check-policy:hover::before {
  box-shadow: 0 0 4px #B69356;
}

.checkbox-input:checked + .check-policy::after {
  position: absolute;
  top: 30%;
  left: 6px;
  display: block;
  border-bottom: 2px solid #B69356;
  border-left: 2px solid #B69356;
  content: "";
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
}

.privacy-link {
  color: #B69356;
}
.privacy-link:hover {
  opacity: 0.7;
}

.attention-text {
  font-family: "Noto Sans JP";
  font-weight: 14px;
}

.just-pilates {
  display: none;
}

.submit-btn {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Sans JP";
  background: #B69356;
  border: solid 1px #B69356;
  color: #fff;
  display: inline-block;
  padding: 16px 80px;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (min-width: 960px) {
  .submit-btn {
    width: 48.4%;
  }
}
.submit-btn:hover {
  background: #fff;
  color: #B69356;
}
.submit-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.privacy-main-text {
  text-align: center;
  font-family: "Noto Sans JP";
  margin-bottom: 60px;
}

.privacy-box {
  width: 100%;
  height: 300px;
  border: 1px solid #B69356;
  overflow-y: scroll;
}

.privacy-list {
  margin: 40px auto;
  width: 90%;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .privacy-list {
    width: 100%;
    padding: 0 16px;
  }
}

.privacy-title {
  font-size: clamp(1.125rem, 0.917rem + 0.56vw, 1.25rem);
  font-family: "Noto Serif JP";
  color: #B69356;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #A3A3A3;
  padding: 0.2em 0.5em;
  border-left: solid 5px #B69356;
}

.privacy-text {
  padding-left: 20px;
  margin: 40px 0;
  font-family: "Noto Sans JP";
  line-height: 2;
}

.inquiry {
  margin-top: 20px;
}

.contact-message {
  text-align: left;
  margin-top: 40px;
  border: 1px solid #B69356;
  padding: 60px;
  display: none;
}
@media screen and (min-width: 960px) {
  .contact-message {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .contact-message {
    padding: 40px 20px;
  }
}

.-error {
  color: red;
  border: 0px solid #B69356;
}