@charset "UTF-8";
/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "din-condensed-bold";
  src: url(../assets/font/din-condensed-bold.ttf);
}
/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.04em;
  background-color: #f8f8f8;
  color: #333333;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 981px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 980px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 981px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .pcNone {
    display: block;
  }
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.en {
  font-family: "din-condensed-bold";
}

.cursive {
  font-family: "Comforter", cursive;
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #333333;
}
@media screen and (min-width: 981px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
:root {
  --header-h: 56px;
  --bg: #fff;
  --fg: #333;
  --accent: #f17424;
  --muted: #b8c0cc;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: #fff;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  height: 34px;
  width: auto;
}

/* ハンバーガー */
.hamburger {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}

.hamburger .bar {
  width: 32px;
  height: 1px;
  background: #333;
  position: relative;
  transition: transform 0.25s, background 0.25s;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 1px;
  background: #333;
  transition: transform 0.25s, top 0.25s, opacity 0.25s;
}

.hamburger .bar::before {
  top: -8px;
}

.hamburger .bar::after {
  top: 8px;
}

/* フルスクリーンメニュー */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  color: var(--fg);
  padding: 24px;
  padding-top: calc(var(--header-h) + 12px);
  transform: translateY(2%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
}

.menu-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  margin-inline: auto;
  align-content: start;
  width: 100%;
  max-width: 280px;
}

.menu-links a {
  color: var(--fg);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  line-height: 1.5;
  position: relative;
}
.menu-links a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  color: #f17424;
}

.menu-links a:hover,
.menu-links a:focus {
  color: var(--accent);
  outline: none;
}

.menu-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 280px;
  margin: 32px auto 0;
}

.btn {
  font-size: 18px;
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  background-color: #f17424;
  color: #fff;
  border-radius: 100vmax;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn.line_btn {
  background-color: #53b535;
}

/* 開閉時のハンバーガー変形 */
.menu-open .hamburger .bar {
  background: transparent;
}

.menu-open .hamburger .bar::before {
  top: 0;
  transform: rotate(45deg);
  background: #111;
}

.menu-open .hamburger .bar::after {
  top: 0;
  transform: rotate(-45deg);
  background: #111;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer {
  padding-top: 80px;
}
footer .logo {
  width: 120px;
  margin-inline: auto;
}
footer .footer_li {
  display: grid;
  gap: 24px;
  width: fit-content;
  margin: 40px auto;
}
footer .footer_li a {
  text-align: center;
  text-decoration: underline;
}
footer .instagram {
  width: 32px;
  margin-inline: auto;
}
footer .copy {
  font-size: 11px;
  text-align: center;
  padding: 64px 0;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* フロント
*--------------------------------------*/
.index_grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
}

.cta {
  position: relative;
}
.cta .cta_btn:not(.absolute) {
  width: 92%;
  margin: 24px auto;
}
.cta .cta_btn.absolute {
  width: 92%;
  position: absolute;
  z-index: 10;
  bottom: 24px;
  translate: -50% 0;
  left: 50%;
}

.infromation {
  width: 84%;
  margin-inline: auto;
  font-size: 12px;
  display: flex;
  line-height: 1.5;
  color: #7e7e7e;
}

.point .point_title {
  margin-bottom: 32px;
}

.price,
.flow,
.qa {
  padding-top: 80px;
}

h2 {
  font-size: 24px;
  text-align: center;
  padding-bottom: 24px;
}

.floating_btn {
  position: fixed;
  bottom: 16px;
  width: 92%;
  translate: -50% 0;
  left: 50%;
  z-index: 98;
}

.voice_slider {
  padding-bottom: 48px !important;
}
.voice_slider .swiper-pagination {
  bottom: 24px !important;
}
.voice_slider .swiper-button-prev,
.voice_slider .swiper-button-next {
  content: "" !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.voice_slider .swiper-button-prev svg,
.voice_slider .swiper-button-next svg {
  display: none;
}
.voice_slider .swiper-button-prev {
  background-image: url(./assets/images/prev.svg);
  left: 16px !important;
}
.voice_slider .swiper-button-next {
  background-image: url(./assets/images/next.svg);
  right: 16px !important;
}
.voice_slider .swiper-pagination-bullet {
  background-color: #333;
  margin: 0 12px !important;
}

.qa_wrapper {
  width: 96.6386554622%;
  max-width: 400px;
  margin-inline: auto;
  padding-bottom: 80px;
}
.qa_wrapper .faq-item {
  border-bottom: 1px solid #d6d6d6;
  padding: 12px 0;
}
.qa_wrapper .faq-question,
.qa_wrapper .faq-answer {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  gap: 16px;
}
.qa_wrapper .faq-question {
  cursor: pointer;
  font-size: 14px;
  justify-content: space-between;
}
.qa_wrapper .faq-question .faq-text {
  flex: 1;
}
.qa_wrapper .faq-label {
  font-weight: bold;
  color: #ea624d; /* 好みで変更可 */
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  font-size: 18px;
}
.qa_wrapper .faq-icon {
  margin-left: 8px;
  font-size: 18px;
  flex-shrink: 0;
}
.qa_wrapper .faq-answer {
  margin-top: 8px;
  display: none;
  line-height: 1.6;
  font-size: 12px;
}
.qa_wrapper .faq-answer .faq-label {
  color: #1c57eb;
}
.qa_wrapper .faq-item.active .faq-answer {
  display: flex;
}
.qa_wrapper .faq-item.active .faq-icon {
  transform: rotate(45deg); /* ＋ → × */
}

.thanks_page {
  width: 80%;
  margin-inline: auto;
}

@media screen and (max-width: 980px) {
  .sp_wrapper {
    max-width: 375px;
    margin-inline: auto;
  }
  .floating_btn {
    max-width: 345px;
  }
}
@media screen and (min-width: 981px) {
  .sp_wrapper,
  footer {
    max-width: 560px;
    width: 38.8888888889vw;
    margin: 0 11.1111111111% 0 auto;
    box-shadow: 8px 0 6px -4px rgba(0, 0, 0, 0.1), -8px 0 6px -4px rgba(0, 0, 0, 0.1);
  }
  .sp_wrapper:before, .sp_wrapper:after,
  footer:before,
  footer:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    z-index: -1;
  }
  .sp_wrapper:before,
  footer:before {
    left: -12px;
    box-shadow: 10px 0 8px rgba(0, 0, 0, 0.15); /* 左 */
  }
  .sp_wrapper:after,
  footer:after {
    right: -12px;
    box-shadow: -10px 0 8px rgba(0, 0, 0, 0.15); /* 右 */
  }
  .sp_wrapper {
    margin: 0 11.1111111111% -8px auto;
  }
  .floating_btn {
    max-width: 345px;
  }
  .site-header {
    display: none;
  }
  .pc_menu {
    position: fixed;
    translate: 0 -50%;
    top: 50%;
    left: 40px;
    width: 27.7777777778vw;
    margin: 0 8.3333333333%;
  }
  .pc_menu .logo {
    width: 240px;
    margin: 0 auto 40px;
  }
  .pc_menu .cta_btn {
    margin-top: 40px;
  }
  .menu-links {
    max-width: 27.7777777778vw;
  }
  .infromation {
    font-size: 16px;
  }
  .qa_wrapper .faq-item {
    padding: 20px 0;
  }
  .qa_wrapper .faq-question {
    font-size: 18px;
  }
  .qa_wrapper .faq-answer {
    font-size: 16px;
    margin-top: 16px;
  }
  .qa_wrapper .faq-icon {
    font-size: 20px;
  }
}
/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* コンタクト
*--------------------------------------*/
/* 共通 */
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  appearance: none; /* iOS / Webkitのデフォルト装飾を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* input[type="text"]などによく付く枠線も削除 */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
input[type=password],
input[type=search],
textarea {
  outline: none;
}

/* iOSでフォームが自動で拡大しないように */
input,
textarea,
select {
  font-size: 14px;
}

/* textareaのサイズ変更つまみを無効化（必要なら） */
textarea {
  resize: vertical; /* または none */
}

/* buttonのデフォルト装飾リセット */
button {
  background: none;
  cursor: pointer;
}

/* selectの▼マークを消したい場合（独自デザインにする場合のみ） */
select::-ms-expand {
  display: none; /* IE */
}

::placeholder {
  /* 標準 */
  color: #cbcbcb;
}

::-webkit-input-placeholder {
  /* Chrome, Safari, iOS */
  color: #cbcbcb;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #cbcbcb;
}

::-ms-input-placeholder {
  /* Edge */
  color: #cbcbcb;
}

.page-content {
  background-color: #eee;
  padding-bottom: 120px;
}
.page-content:has(.thanks_page) {
  padding-bottom: 40px;
}

.wpcf7 form {
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

.reserve-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  padding: 32px 0 0 0;
}

.reserve-lead {
  font-size: 13px;
  line-height: 1.7;
}

.cta-buttons {
  display: grid;
  gap: 8px;
  margin: 24px auto 32px;
  width: 280px;
}

.form-group {
  margin: 24px 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.req {
  color: #e60033;
  font-size: 11px;
  margin-left: 4px;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=date],
.wpcf7 input[type=time],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #333333;
  border-radius: 3px;
  font-size: 14px;
  background: #fff;
}

.wpcf7 textarea {
  min-height: 110px;
}

.submit-wrap {
  text-align: center;
  margin: 16px auto 0;
  width: fit-content;
}

.wpcf7-spinner {
  display: none;
}

.btn-submit {
  background: #f17424;
  color: #fff;
  text-align: center;
  width: 180px;
  padding: 10px 0;
  border-radius: 100vmax;
  font-size: 18px;
}

.btn_wrap {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  padding: 40px 0;
  max-width: 400px;
  width: 90%;
}

@media screen and (min-width: 981px) {
  .reserve-title {
    font-size: 32px;
    padding-top: 80px;
  }
  .reserve-lead {
    font-size: 16px;
  }
  .cta-buttons {
    width: 320px;
    font-size: 18px;
  }
  .cta-buttons .btn {
    font-size: 20px;
  }
  .btn-submit {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */