@charset "UTF-8";
html {
  font-size: 62.5%;
  min-height: 90vh;
}

body {
  font-size: 1.6rem;
  color: #464646;
  font-family: "YuMincho", "Yu Mincho Demibold", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  min-height: 100%;
  position: relative;
}

canvas {
  vertical-align: bottom;
}

a {
  color: #000;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

/* -------------------
* レスポンシブ
* -------------------*/
.sp {
  display: none;
}

.tab {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .tab-pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* -------------------
* コンテンツ幅
* -------------------*/
.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.serif {
  font-family: "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Noto Serif JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, serif;
}

/* --------------------------
* フェードイン
* --------------------------- */
.fadeIn {
  opacity: 0;
  transform: translate(0, 100px);
  transition: 1s;
}

.fadeIn-child {
  opacity: 0;
  transform: translate(0, 100px);
}

/* --------------------------
* ヘッダー
* --------------------------- */
.header {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  /* box-shadow: 0 0 2px 2px rgba(0,0,0,0.5); */
}
.header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.header__logo {
  margin-right: auto;
}

.nav {
  display: flex;
  align-items: center;
}
.nav ul {
  display: flex;
}
.nav ul li {
  margin: 0 10px;
}
.nav ul li a {
  text-decoration: none;
  display: block;
  background: #777;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .nav {
    justify-content: center;
    position: absolute;
    top: -100vh;
    right: 0;
    height: auto;
    padding: 100px 0;
    width: 100%;
    max-width: 500px;
    background: #fff;
    transition: ease-in-out 0.3s;
  }
  .nav.is-active {
    top: 0;
  }
  .nav ul {
    display: block;
  }
  .nav ul li {
    margin: 0 10px 30px;
    min-width: 150px;
    text-align: center;
  }
}
/* --------------------------
* フッター
* --------------------------- */
.footer {
  background: #dfdfdf;
  width: 100%;
  padding: 30px 0;
}
.footer p {
  text-align: center;
}

/* --------------------------
* main
* --------------------------- */
main {
  max-width: 1080px;
  width: 100%;
  margin: 100px auto;
}

/* --------------------------
* お問い合わせ
* --------------------------- */
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  padding-left: 30px;
  position: relative;
  margin-right: 20px;
}
input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3ec4d8;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span, input[type=checkbox] + label {
  padding-left: 30px;
  position: relative;
  margin-right: 20px;
}
input[type=checkbox] + span::before, input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}
input[type=checkbox]:checked + span, input[type=checkbox]:checked + label {
  background: none;
}
input[type=checkbox]:checked + span::after, input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 7px;
  width: 8px;
  height: 16px;
  transform: rotate(40deg);
  border-bottom: 3px solid #949494;
  border-right: 3px solid #949494;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  background: #949494;
  border: none;
  color: #fff;
  transition: all 0.3s;
  transition-timing-function: ease-in-out;
  padding: 5px 10px;
  border-radius: 5px;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  outline: none;
  background: #777;
}

.contact-form dl {
  display: flex;
  flex-wrap: wrap;
}
.contact-form dl dt {
  width: 18%;
  padding-top: 6px;
  margin-bottom: 1em;
  vertical-align: middle;
  text-align: left;
}
.contact-form dl dd {
  width: 82%;
  margin-bottom: 1em;
  vertical-align: middle;
  text-align: left;
}
.contact-form dl dd.tel input[type=text] {
  width: 20%;
}
.contact-form .required::after {
  content: "必須";
  display: inline-block;
  margin-left: 1.2em;
  padding: 0.2em 1em;
  background: #3ec4d8;
  border-radius: 2px;
  font-size: 0.7em;
  color: #fff;
  vertical-align: middle;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=url],
.contact-form input[type=password],
.contact-form input[type=search],
.contact-form input[type=number],
.contact-form input[type=tel],
.contact-form input[type=range],
.contact-form input[type=date],
.contact-form input[type=month],
.contact-form input[type=week],
.contact-form input[type=time],
.contact-form input[type=datetime],
.contact-form input[type=datetime-local],
.contact-form input[type=color],
.contact-form textarea {
  background: #fff;
  padding: 5px 10px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #fff;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=url]:focus,
.contact-form input[type=password]:focus,
.contact-form input[type=search]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=range]:focus,
.contact-form input[type=date]:focus,
.contact-form input[type=month]:focus,
.contact-form input[type=week]:focus,
.contact-form input[type=time]:focus,
.contact-form input[type=datetime]:focus,
.contact-form input[type=datetime-local]:focus,
.contact-form input[type=color]:focus,
.contact-form textarea:focus {
  border: 1px solid #3ec4d8;
}
.contact-form input[name=zip] {
  width: 120px;
}
@media screen and (max-width: 1024px) {
  .contact-form dl dt {
    width: 30%;
  }
  .contact-form dl dd {
    width: 70%;
  }
  .contact-form button,
.contact-form input[type=button],
.contact-form input[type=reset],
.contact-form input[type=submit] {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-form dl {
    display: block;
  }
  .contact-form dl dt {
    width: 100%;
  }
  .contact-form dl dd {
    width: 100%;
  }
  .contact-form .mwform-checkbox-field {
    display: block;
  }
  .contact-form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
  .contact-form button,
.contact-form input[type=button],
.contact-form input[type=reset],
.contact-form input[type=submit] {
    font-size: 1.6rem;
    width: 60%;
  }
}

#topBtn {
  position: fixed;
  right: 15px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  padding: 0 0;
  background: rgba(62, 196, 216, 0.8);
  z-index: 80;
}
#topBtn:hover {
  background: #3ec4d8;
}
#topBtn::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  top: 20px;
  left: 12px;
  position: absolute;
  border: 1px solid #fff;
  border-width: 1px 0 0 1px;
  transform: rotate(45deg);
  z-index: 81;
}
#topBtn a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #topBtn {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 70px;
  }
  #topBtn::before {
    width: 20px;
    height: 20px;
    top: 15px;
    left: 10px;
  }
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------
  ドロワー
-------------------------------------- */
.drawer {
  display: none;
}
@media screen and (max-width: 1024px) {
  .drawer {
    display: block;
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 21px;
  }
  .drawer span {
    display: block;
    width: 100%;
    height: 0;
    border-top: 3px solid #000;
    transition: ease-in-out 0.3s;
  }
  .drawer span:not(:last-child) {
    margin-bottom: 6px;
  }
  .drawer.is-active span {
    position: absolute;
    width: 32px;
    margin-bottom: 0;
  }
  .drawer.is-active span:nth-child(1) {
    top: 8px;
    left: -1px;
    transform: rotate(-45deg);
    opacity: 0;
  }
  .drawer.is-active span:nth-child(2) {
    top: 8px;
    left: -1px;
    transform: rotate(-45deg);
  }
  .drawer.is-active span:nth-child(3) {
    top: 8px;
    left: -1px;
    transform: rotate(45deg);
  }
}

/* ------------------------------------
  WP-Members
-------------------------------------- */
.link-text a {
  text-decoration: underline;
  margin-left: 0.5em;
}
.link-text a:hover {
  opacity: 0.7;
}

/* ------------------------------------
  タイトル　帯
-------------------------------------- */
main h2 {
  position: relative;
  font-size: 20px;
  padding: 15px 5px 10px 20px;
  margin: 30px 0;
  border-left: 10px solid #777;
  border-bottom: 1px dashed #555;
}
main h2:first-child {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  main h2 {
    font-size: 18px;
    padding: 5px 5px 5px 20px;
  }
}
/* ------------------------------------
  入力エリア
-------------------------------------- */
#wpmem_login, #wpmem_msg, #wpmem_reg, .wpmem_msg {
  width: 90% !important;
  margin: 60px auto;
}

#wpmem_login, #wpmem_reg {
  font-family: "YuMincho", "Yu Mincho Demibold", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
}

#wpmem_login legend, #wpmem_reg legend {
  font-size: 18px !important;
  margin-bottom: 30px !important;
}

@media screen and (max-width: 480px) {
  #wpmem_login, #wpmem_msg, #wpmem_reg, .wpmem_msg {
    width: 100% !important;
    margin: 30px auto;
  }
  #wpmem_login .link-text {
    padding: 4px 0;
    text-align: left !important;
  }
  #wpmem_login, #wpmem_reg {
    font-size: 14px !important;
  }
  #wpmem_login legend, #wpmem_reg legend {
    font-size: 16px !important;
  }
}

#booking-package_schedulePage .descriptionOfService, #booking-package_servicePage .descriptionOfService {
    display: none;
}
/*# sourceMappingURL=style.css.map */