@charset "UTF-8";
/*変数設定用*/
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .vsp {
    display: block;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}
a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-size: 1.4rem;
  color: #715E57;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.title {
  font-size: 30px;
  font-weight: 600;
  color: #715E57;
  text-decoration: underline;
  font-family: "Zen Maru Gothic", serif;
}
.title span {
  display: inline-block;
  position: relative;
  line-height: 1.6;
}
.title span:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: radial-gradient(circle, #715E57 30%, transparent 30%) repeat-x;
  background-size: 10px 5px;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.title span i {
  font-style: normal;
}
.title span i.i-01 {
  color: #FF9300;
}
.title span i.i-02 {
  color: #FF8484;
}

.btn.mt30 {
  margin-top: 30px;
}
.btn a,
.btn button {
  width: 230px;
  height: 60px;
  border-radius: 30px;
  background: #37D3B5;
  display: grid;
  place-items: center;
  position: relative;
  margin: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn a:hover,
.btn button:hover {
  background: #E37C4A;
  opacity: 1;
}
.btn a::after,
.btn button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
  transform: translateY(-50%);
}
.btn a span,
.btn button span {
  font-size: 20px;
  font-family: "Tilt Neon", serif;
  color: #fff;
}
.btn a span img,
.btn button span img {
  width: 24px;
  height: 18px;
  margin-right: 8px;
  transform: translateY(-2px);
}
.btn button {
  border: none;
  font-size: 14px;
  color: white;
}
.btn button span {
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.btn button.btn-back {
  background: none;
  margin-top: 30px;
  width: 160px;
}
.btn button.btn-back span {
  color: #715E57;
}
.btn button.btn-back::after {
  left: 30px;
  right: initial;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  background-color: #715E57;
}

.overplay {
  height: 100vh;
  background: #FFFAE0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.outer {
  display: flex;
  overflow: hidden;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar.left {
  left: 0;
  width: calc(100vw - 540px);
  pointer-events: none;
}
.sidebar.left * {
  pointer-events: auto;
}
.sidebar.left .left-img-01 {
  position: absolute;
  top: 10%;
  left: 4%;
  max-width: 268px;
}
.sidebar.left .left-img-02 {
  position: absolute;
  bottom: 10%;
  right: 4%;
  max-width: 268px;
}
.sidebar.left .left-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.sidebar.left .left-content-logo {
  max-width: 246px;
  margin-bottom: 30px;
}
.sidebar.left .left-copy {
  position: absolute;
  left: 26px;
  bottom: 17px;
  font-size: 12px;
  font-family: "Tilt Neon", serif;
}

.content {
  position: relative;
  top: 0px;
  bottom: 0;
  left: calc(100vw - 540px);
  width: 540px;
  overflow-y: auto;
}
.content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 540px;
  opacity: 0;
  width: 100vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .content {
    left: 0;
    position: relative;
    width: 100%;
    top: 0;
  }
}
.content-wrapper {
  margin-right: 100px;
  background-color: white;
  overflow-x: hidden;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    margin-right: 0;
    margin-top: 0;
  }
}
.content .header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  width: 432px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .content .header {
    width: 100%;
    padding-right: 10px;
    position: fixed;
  }
}
.content .header-logo {
  width: 179px;
}
.content .header-contact {
  width: 62px;
}
.content .sec-intro {
  padding: 30px 20px 55px;
}
.content .sec-intro .intro-txt {
  line-height: 1.7142857143;
  font-family: "Zen Maru Gothic", serif;
  margin-top: 20px;
}
.content .sec-ttl {
  text-align: center;
  color: #715E57;
  margin-bottom: 28px;
}
.content .sec-ttl-en {
  font-family: "Tilt Neon", serif;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}
.content .sec-ttl-en span {
  display: inline-block;
  position: relative;
  padding: 0 12px;
}
.content .sec-ttl-en span:before {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF9300;
}
.content .sec-ttl-en span:after {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF8484;
}
.content .sec-ttl-jp {
  font-family: "Zen Maru Gothic", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: block;
  padding-top: 15px;
  position: relative;
}
.content .sec-ttl-jp::after {
  content: "";
  position: absolute;
  background: url(../img/icon-08.png) no-repeat center center;
  background-size: 100%;
  width: 28px;
  height: 4px;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
}
.content .sec-ttl-jp i {
  font-style: normal;
  color: #EB9764;
}
.content .sec-ttl.mt120 {
  margin-top: 120px;
}
.content .sec-txt {
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
}
.content .inner {
  padding: 0 20px;
}
.content .sec-concept {
  padding: 46px 0 60px;
  position: relative;
  background: url(../img/bg-concept.png) no-repeat top center;
  background-size: 100%;
}
.content .sec-concept .concept-flex {
  display: flex;
  margin-top: 26px;
  margin-right: 20px;
  gap: 25px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .content .sec-concept .concept-flex {
    gap: 18px;
  }
}
.content .sec-concept .concept-flex img {
  width: 169px;
  padding-top: 29px;
}
.content .sec-concept .concept-flex p {
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
.content .sec-vision {
  position: relative;
  padding-top: 44px;
}
.content .sec-vision .sec-ttl {
  margin-bottom: 30px;
}
.content .sec-vision .vision {
  position: relative;
}
.content .sec-vision .vision-ttl {
  font-size: 20px;
  font-weight: 600;
  color: #715E57;
  letter-spacing: 0.04em;
  width: max-content;
  line-height: 1.6;
  margin-bottom: 5px;
  font-family: "Zen Maru Gothic", serif;
}
.content .sec-vision .vision-ttl i.i-01 {
  color: #FF9300;
}
.content .sec-vision .vision-ttl i.i-02 {
  color: #FF8484;
}
.content .sec-vision .vision .sec-txt {
  margin-bottom: 27px;
}
.content .sec-about .sec-ttl {
  margin-top: 44px;
  position: relative;
  margin-bottom: -9px;
}
.content .sec-about .sec-ttl-en, .content .sec-about .sec-ttl-jp {
  position: relative;
  z-index: 1;
}
.content .sec-about .about {
  background: url(../img/bg-02.png) no-repeat center center;
  background-size: cover;
}
.content .sec-about .about .card-box {
  padding-top: 160px;
  padding-bottom: 60px;
}
.content .sec-about .about .card-box .card {
  position: relative;
  background-color: #F8F6F1;
  border-radius: 20px;
  padding: 121px 20px 30px;
}
.content .sec-about .about .card-box .card.-card01 {
  background: #FFF6EA;
}
.content .sec-about .about .card-box .card.-card01 h4 {
  color: #FF9300;
}
.content .sec-about .about .card-box .card.-card02 {
  background: #FFF0F0;
  margin-top: 147px;
}
.content .sec-about .about .card-box .card.-card02 h4 {
  color: #FF8484;
}
.content .sec-about .about .card-box .card.-card03 {
  background: #EAFCF9;
  margin-top: 150px;
}
.content .sec-about .about .card-box .card.-card03 h4 {
  color: #37D3B5;
}
.content .sec-about .about .card-box .card img {
  width: 221px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -120px;
}
.content .sec-about .about .card-box .card h4 {
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  text-align: center;
}
.content .sec-about .about .card-box .card p {
  margin-top: 12px;
}
.content .sec-reason {
  padding-top: 43px;
  position: relative;
  padding-bottom: 40px;
}
.content .sec-reason .reason {
  margin-top: 48px;
  margin-bottom: 30px;
}
.content .sec-reason .reason-list {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
}
.content .sec-reason .reason-list img {
  width: 50px;
}
.content .sec-reason .reason h4 {
  color: #EB9764;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.content .sec-reason .reason-txt {
  padding: 20px;
  border-radius: 20px;
  background-color: #FFFAE0;
  margin-top: 14px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
}
.content .sec-reason .reason-box {
  margin-bottom: 25px;
}
.content .sec-facility {
  position: relative;
  padding-top: 44px;
  padding-bottom: 64px;
  background: url(../img/bg-facility.png) no-repeat top center;
  background-size: 100%;
}
.content .sec-facility .sec-ttl {
  position: relative;
  z-index: 1;
}
.content .sec-facility .facility-access {
  margin-top: 32px;
}
.content .sec-facility .facility-access h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Zen Maru Gothic", serif;
  margin-bottom: 14px;
  text-align: center;
  color: #EB9764;
}
.content .sec-facility .facility-access dl {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.content .sec-facility .facility-access dl dt {
  background: linear-gradient(transparent 70%, #FFA9A9 0%);
  height: max-content;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content .sec-facility .facility-access dl dt {
    width: 46px;
    flex-shrink: 0;
  }
}
.content .sec-facility .facility-access dl dd {
  line-height: 1.5em;
}
.content .sec-facility .facility-note {
  background: white;
  padding: 20px;
  border-radius: 20px;
}
.content .sec-facility .facility-note h6 {
  background: linear-gradient(transparent 70%, #FFA9A9 0%);
  width: max-content;
  margin: 0 auto 11px;
  font-size: 14px;
  font-weight: 400;
}
.content .sec-facility .facility .btn {
  margin-top: 28px;
}
.content .sec-facility .facility .btn a {
  width: 260px;
  background: #FF9300;
}
@media screen and (max-width: 768px) {
  .content .sec-facility .facility .btn a {
    width: 100%;
    max-width: 260px;
  }
}
.content .sec-facility .facility .btn a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
.content .sec-facility .facility .btn a::after {
  top: 52%;
}
@media screen and (max-width: 768px) {
  .content .sec-facility .facility .btn a::after {
    right: 15px;
  }
}
.content .sec-contact {
  margin-top: 40px;
  margin-bottom: 60px;
}
.content .sec-contact .sec-txt {
  text-align: center;
  margin-bottom: 29px;
}
.content .sec-contact .contact-step {
  margin-bottom: 30px;
  position: relative;
}
.content .sec-contact .contact-step::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 2px;
  background-color: #C6BFBD;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.content .sec-contact .contact-step-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.content .sec-contact .contact-step-list .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 19px;
  align-items: center;
}
.content .sec-contact .contact-step-list .active .step_no::after {
  background-color: #EB9764;
  border: 1px solid #EB9764;
}
.content .sec-contact .contact-step .step_no {
  position: relative;
  font-family: "Tilt Neon", serif;
}
.content .sec-contact .contact-step .step_no::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #C6BFBD;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
}
.content .sec-contact .contact-step .step_no i {
  color: #FF9300;
  font-style: normal;
}
.content .sec-contact .contact-list {
  margin-bottom: 28px;
}
.content .sec-contact .contact-ttl {
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.content .sec-contact .contact-ttl.center {
  text-align: center;
}
.content .sec-contact .contact-ttl .req {
  color: white;
  font-size: 10px;
  padding: 1px 7px;
  background-color: #FF8484;
  border-radius: 10px;
  margin-left: 6px;
}
.content .sec-contact .contact-content .wide {
  height: 50px;
  width: 100%;
  background-color: #FFFAE0;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 15px;
}
.content .sec-contact .contact-content .wide-area {
  width: 100%;
  height: 146px;
  background-color: #FFFAE0;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 15px;
}
.content .sec-contact .contact-content .req {
  color: white;
  font-size: 10px;
  padding: 1px 5px;
  background-color: #FF8484;
  border-radius: 10px;
  margin-left: 5px;
}
.content .sec-contact .contact-content .privacy-lable {
  text-align: center;
  display: block;
}
.content .sec-contact .contact .privacy-text {
  height: 215px;
  border-radius: 8px;
  overflow-y: scroll;
  background-color: #FFFAE0;
  padding: 15px;
  margin-bottom: 25px;
}
.content .sec-contact .contact .privacy-text strong {
  font-weight: bold;
}
.content .sec-contact .contact .confirm-content {
  width: 100%;
  background-color: #F8F6F1;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 15px;
}
.content .thanks-content h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", serif;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.content .thanks-content p {
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
}
.content .thanks-content .btn a span {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.content .page-top {
  background: #F8F6F1;
  text-align: center;
}
.content .page-top a {
  font-size: 12px;
  font-family: "Tilt Neon", serif;
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 20px 0;
}
.content .page-top a span {
  display: inline-block;
  position: relative;
  color: #715E57;
  transform: translateX(11px);
}
.content .page-top a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  width: 10px;
  height: 10px;
  background-color: #FF9300;
}
.content .page-top a span i {
  color: #FF9300;
  font-style: normal;
}
.content .footer {
  text-align: center;
  padding: 30px 0;
  background-color: #715E57;
}
.content .footer img {
  width: 139px;
}
.content .footer p {
  margin-top: 20px;
  color: white;
  font-size: 12px;
  font-family: "Tilt Neon", serif;
  letter-spacing: 0.08em;
}
.content .error-text {
  color: #E06049;
  font-size: 12px;
}
.content .disabled {
  pointer-events: none;
  background: #D8D8D8;
}

@media screen and (max-width: 768px) {
  input,
textarea {
    font-size: 16px;
  }
}

input::placeholder,
textarea::placeholder {
  color: #C6BFBD;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #C6BFBD;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #C6BFBD;
}