@charset "UTF-8";
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 300;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

strong {
  font-weight: bold;
}

html {
  font-size: 16px;
}

body {
  font-family: "Open Sans", YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #272727;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

a {
  color: #272727;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  opacity: 0.7;
}

p {
  margin-bottom: 1em;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

h3,
h4 {
  line-height: 1.5;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-arrow-up:before {
  content: "\f062";
}

.grecaptcha-badge {
  visibility: hidden;
}

/* --------------------------
media query
-------------------------- */
.c-section {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .c-section {
    margin: 40px 0;
  }
}
.c-section--bg {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .c-section--bg {
    padding: 40px 0;
  }
}
.c-section-container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.c-section-container--narrow {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.u-text-x-small {
  font-size: 12px;
}

/* --------------------------
フォーム
-------------------------- */
.c-form-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  background-color: #f8f8f8;
  width: 100%;
  padding: 8px;
}
.c-form-text--small {
  width: 160px;
}
.c-form-text:focus {
  outline: none;
}
.c-form-text:invalid, .c-form-text.js-zip-field {
  background: #fff4f5;
}
.c-form-text.js-zip-field.is-filled {
  background-color: #f8f8f8;
}
.c-form-text.calendar {
  background-image: url("../../assets/images/reservation/icon-calendar.png");
  background-repeat: no-repeat, repeat;
  background-position: right 20px top 50%, 0 0;
  background-size: 16px auto, 100%;
}
.c-form-textarea {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  background-color: #f8f8f8;
  width: 100%;
  padding: 8px;
  height: 15em;
}
.c-form-textarea:focus {
  outline: none;
}
.c-form-textarea:invalid {
  background: #fff4f5;
}
.c-form-checkbox {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  border-radius: 4px;
}
.c-form-checkbox:checked {
  border-color: #026db8;
  background: #026db8;
}
.c-form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 6.5px;
  left: 5px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}
.c-form-checkbox-label {
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.c-form-radio {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 16px;
  background: #f8f8f8;
}
.c-form-radio.is-checked {
  color: #fff;
  background-color: #026db8;
}
.c-form-radio-input {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 9999px;
  cursor: pointer;
}
.c-form-radio-input:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #026db8;
}
.c-form-select {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  appearance: none;
  border: 2px solid #f8f8f8;
  background-color: #f8f8f8;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='caret-down' class='svg-inline--fa fa-caret-down fa-w-10' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='currentColor' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 20px top 50%, 0 0;
  background-size: 16px auto, 100%;
}
.c-form-select:option:first-child {
  color: rgb(39, 39, 39);
}
.c-form-select::-ms-expand {
  display: none;
}
.c-form-select:focus {
  outline: none;
}
.c-form-select:invalid {
  background-color: #fff4f5;
}
.c-form-select--small {
  width: 160px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-form-select--small {
    width: 145px;
  }
}
.c-form-select--middle {
  width: 320px;
  display: inline-block;
}
.c-form-select option {
  font-weight: normal;
}

[data-validate] {
  display: none;
}
[data-validate].invalid-message {
  display: block;
}
[data-validate].invalid-message + [data-validate] {
  display: none;
}

.p-footer {
  background-color: #272727;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 80px;
  }
}
.p-footer-margin {
  padding-bottom: 255px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-footer-margin {
    padding-bottom: 120px;
  }
}
.p-footer-container {
  color: #fff;
  position: relative;
  max-width: 1160px;
  padding: 60px 25px 30px;
  margin: 0 auto;
}
.p-footer-pagetop {
  position: absolute;
  top: -35px;
  right: -75px;
}
@media screen and (max-width: 767px) {
  .p-footer-pagetop {
    right: 0;
    left: 0;
    width: 100%;
  }
}
.p-footer-pagetop a {
  width: 70px;
  height: 70px;
  color: #272727;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 3px solid #272727;
  border-radius: 50%;
  font-size: 20px;
  margin: auto;
  transition: all 0.2s;
}
.p-footer-pagetop a:hover {
  opacity: 1;
  background-color: #272727;
  color: #fff;
}
.p-footer-logo {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .p-footer-logo {
    width: 235px;
  }
}
.p-footer-nav {
  padding-left: 62px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-footer-nav {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-nav {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.p-footer-nav-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer-nav-wrapper {
    display: block;
  }
}
.p-footer-nav li {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer-nav li {
    width: 50%;
    margin-bottom: 23px;
  }
}
.p-footer-nav li a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer-nav li a {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-footer-nav li a.disabled {
  pointer-events: none;
  color: #777;
}
.p-footer-caution {
  font-size: 12px;
  margin: 50px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-footer-caution {
    margin: 8px 0 20px;
  }
}
.p-footer-subnav {
  font-size: 12px;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-footer-subnav {
    flex-wrap: wrap;
    line-height: 1.5;
  }
}
.p-footer-subnav a {
  color: #fff;
}
.p-footer-copyright {
  font-size: 10px;
}
.p-footer-reuse {
  width: 280px;
  display: block;
  margin-left: 62px;
}
@media screen and (max-width: 767px) {
  .p-footer-reuse {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.contact-header {
  padding: 16px;
  text-align: center;
}
.contact-header a {
  display: block;
}
.contact-header a img {
  max-width: 200px;
}
.contact-bg {
  background: #caeefc;
}
.contact-panel {
  background: #fff;
}
.contact-panel-contents {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .contact-panel-contents {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .contact-panel-contents--sp {
    padding: 0;
  }
}
.contact-panel-label {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  padding: 8px;
  background: #026db8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-panel-label {
    font-size: 16px;
  }
}
.contact-panel-label span {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .contact-panel-label span {
    font-size: 24px;
  }
}
.contact-panel-text {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .contact-panel-text {
    font-size: 16px;
    text-align: center;
  }
}
.contact-panel-headline {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  color: #026db8;
}
@media screen and (max-width: 767px) {
  .contact-panel-headline {
    font-size: 24px;
    text-align: center;
  }
}
.contact-step {
  font-size: 24px;
  list-style: none;
  counter-reset: number; /*数字をリセット*/
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10em;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .contact-step {
    font-size: 16px;
    gap: 5em;
  }
}
.contact-step-item {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.5em;
  padding-left: 2em;
}
.contact-step-item:not(:last-child) {
  padding-right: 1em;
}
.contact-step-item:not(:last-child)::after {
  position: absolute;
  left: 100%;
  content: "";
  width: 9em;
  height: 1px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .contact-step-item:not(:last-child)::after {
    width: 4em;
  }
}
.contact-step-item.current::before {
  color: #fff;
  background: #026db8;
}
.contact-step-item::before {
  /* 以下数字をつける */
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-step-item::before {
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
.contact-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact-headline {
    gap: 16px;
    justify-content: flex-start;
  }
}
.contact-label {
  display: inline-block;
  width: 60px;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  text-align: center;
}
.contact-label-required {
  background-color: #ee7800;
}
.contact-label-ok {
  background-color: #48a63f;
}
.contact-label-optional {
  background-color: #8e8e8e;
}
.contact-list-item {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.contact-list-item:not(:last-child) {
  margin-bottom: 1em;
}
.contact-inner {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.contact-inner .calendar {
  width: 4em;
}
.contact-inner .calendar img {
  width: 100%;
}
.contact-button {
  width: auto;
  display: inline-block;
  height: 44px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 8px;
  color: #fff;
  background: #272727;
  border-radius: 8px;
  border: none;
  text-align: center;
}
.contact-caution {
  margin-top: 0.5em;
  font-size: 12px;
  line-height: 1.25;
}
.contact-hr {
  border: 1px solid #eee;
}
.contact-submit {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 16px 32px;
  border: none;
  background-color: #272727;
  border-radius: 5px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
}
.contact-submit.form-button--error {
  pointer-events: none;
  color: #fff;
  background-color: #272727;
}
.contact-submit:disabled {
  opacity: 0.3;
}
.contact-submit:not(:disabled):not(.form-button--error) {
  color: #fff;
  background: #ee7802;
}
.contact-submit::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  transform: translateY(-50%);
}
.contact-back {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #272727;
  padding: 14px 32px;
  border: none;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid #272727;
}
.contact-policy {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .contact-policy {
    font-size: 20px;
  }
}
.contact-policy-list > li {
  font-size: 24px;
  line-height: 1.5;
  padding-left: 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-policy-list > li {
    font-size: 16px;
  }
}
.contact-policy-list > li::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #036db8;
  position: absolute;
  top: 0.25em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contact-policy-list > li::before {
    width: 16px;
    height: 16px;
  }
}
.contact-policy-list > li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 16px;
  height: 8px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .contact-policy-list > li::after {
    top: 8px;
    left: 2px;
    width: 12px;
    height: 6px;
  }
}
.contact-policy-list > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.contact-cta {
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  background: #08124d;
}
.contact-cta-text {
  font-size: 24px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact-cta-text {
    font-size: 16px;
  }
}
.contact-cta-text span {
  color: #f98d02;
}
.contact-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 54px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
.contact-floating {
  position: fixed;
  left: 0;
  top: 160px;
  width: 120px;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 8px 8px 0;
  color: #fff;
  background-color: #026db8;
  text-align: center;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .contact-floating {
    display: none;
  }
}
.contact-floating-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact-floating-title {
    font-size: 12px;
    flex-shrink: 0;
  }
}
.contact-floating-count {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-floating-count {
    font-size: 12px;
    flex-shrink: 0;
  }
}
.contact-floating-count span {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .contact-floating-count span {
    font-size: 24px;
  }
}

.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.form-overlay-inner {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.form-overlay-inner .loader,
.form-overlay-inner .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.form-overlay-inner .loader {
  margin: 20px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(128, 173, 255, 0.6);
  border-right: 1.1em solid rgba(128, 173, 255, 0.6);
  border-bottom: 1.1em solid rgba(128, 173, 255, 0.6);
  border-left: 1.1em solid rgb(128, 173, 255);
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-title {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .form-title {
    line-height: 1.6;
    font-size: 1.375rem;
  }
  .form-title small {
    font-size: 1rem;
  }
}/*# sourceMappingURL=contact.css.map */