@charset "UTF-8";
/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
/*** カラー **************************************************************/
/*** タイポグラフィ ******************************************************/
/*** スペーシング *********************************************************/
/*** ブレイクポイント *****************************************************/
/* 既存の max 系 mixin は境界ずらし版にすると安全 */
/* map はそのままOK */
/* min-width 用 */
/* max-width 用（境界ずらし） */
/* デフォは改行しない */
br[class^=br-] {
  display: none;
}

/* そのBP以上で改行 */
@media (min-width: 640px) {
  br.br-sm {
    display: inline;
  }
}
@media (min-width: 768px) {
  br.br-md {
    display: inline;
  }
}
@media (min-width: 960px) {
  br.br-lg {
    display: inline;
  }
}
@media (min-width: 1024px) {
  br.br-xl {
    display: inline;
  }
}
/* そのBP未満だけ改行 */
@media (max-width: 639.98px) {
  br.br-only-sm {
    display: inline;
  }
}
@media (max-width: 767.98px) {
  br.br-only-md {
    display: inline;
  }
}
@media (max-width: 959.98px) {
  br.br-only-lg {
    display: inline;
  }
}
@media (max-width: 1023.98px) {
  br.br-only-xl {
    display: inline;
  }
}
/*** レスポンシブ画像表示 *****************************************************/
img[class*=img-],
picture[class*=img-],
[class*=img-] {
  display: none;
}

@media (max-width: 639.98px) {
  .img-sm,
  img.img-sm,
  picture.img-sm {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .img-md,
  img.img-md,
  picture.img-md {
    display: block;
  }
}
@media (max-width: 959.98px) {
  .img-lg,
  img.img-lg,
  picture.img-lg {
    display: block;
  }
}
@media (max-width: 1023.98px) {
  .img-xl,
  img.img-xl,
  picture.img-xl {
    display: block;
  }
}
@media (min-width: 640px) {
  .img-sm-up,
  img.img-sm-up,
  picture.img-sm-up {
    display: block;
  }
}
@media (min-width: 768px) {
  .img-md-up,
  img.img-md-up,
  picture.img-md-up {
    display: block;
  }
}
@media (min-width: 960px) {
  .img-lg-up,
  img.img-lg-up,
  picture.img-lg-up {
    display: block;
  }
}
@media (min-width: 1024px) {
  .img-xl-up,
  img.img-xl-up,
  picture.img-xl-up {
    display: block;
  }
}
/*** リンク系 *****************************************************/
/*** チェックリスト *****************************************************/
/* =======================================================================
   reset.scss  必要に応じてnormalize.css等をここに貼る
   この雛形では最小限の初期化のみ
   ======================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
body {
  font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  letter-spacing: -0.75px;
  font-size: 18px;
  line-height: 1.8;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}
.container a {
  color: #68808b;
  transition: color 0.2s ease;
}
@media (max-width: 959.98px) {
  .container {
    width: calc(100% - 20px);
  }
}

.serif {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "MS PMincho", "MS Mincho", "Times New Roman", Georgia, serif;
}

/*** リンク **************************************************************/
/* ベース：色は常に親から継承 */
a:where(:link, :visited) {
  color: inherit;
  text-decoration: none;
  transition: text-decoration-color 0.2s ease;
}

/* hover / focus-visible / active を同じ見た目に */
a:where(:hover, :focus-visible, :active) {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}

/* キーボード用のフォーカスリング */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/*** 見出し **************************************************************/
h1 {
  font-size: clamp(1.4375rem, 2vw, 1.75rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin: 0 0 1.5rem;
  font-weight: 500;
  color: #68808b;
  border-bottom: 1px solid #68808b;
  padding: 0.25rem 0;
}

h3 {
  color: #4d4d4d;
  font-size: 1.5rem;
}

/*** ヘルパ（必要に応じて追加） *******************************************/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*** ボタン **************************************************************/
a.rtri-btn,
.anchor-link {
  display: inline-flex;
  align-items: center;
  background: #68808b;
  color: #fff;
  font-size: 20px;
  padding: 0.5rem 3rem;
  border-radius: 25px;
  transition: background-color 0.2s ease;
}
a.rtri-btn:hover, a.rtri-btn:focus-visible,
.anchor-link:hover,
.anchor-link:focus-visible {
  background-color: #1c2a53;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 639.98px) {
  a.rtri-btn,
  .anchor-link {
    padding: 0.5rem 1rem;
  }
}
a.rtri-btn::after,
.anchor-link::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid white;
  border-right: 2px solid white;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.anchor-link {
  cursor: pointer;
}
.anchor-link.is-active::after {
  transform: rotate(135deg);
}

a.txt_tri_link span {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}
a.txt_tri_link span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #68808b;
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  margin: auto;
}

a:where(.rtri-btn, .btn, .button):visited {
  color: white;
}

/*** FV **************************************************************/
section.sec-fv .topimg {
  height: 340px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3em 0;
}
@media (max-width: 639.98px) {
  section.sec-fv .topimg {
    height: 300px;
    padding: 0.25rem 0;
    background-position: center bottom;
    background-color: #faf9f8;
  }
}
section.sec-fv .topimg > .inner, section.sec-fv .topimg > .inner > .container {
  height: 100%;
}
section.sec-fv .topimg .container {
  display: flex;
  flex-direction: column;
}
section.sec-fv .topimg .fv-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.sec-fv .topimg .fv-main h1 {
  color: #68808b;
  font-size: 28px;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}
section.sec-fv .topimg .fv-main h1 + p {
  background-color: #bdb295;
  text-align: center;
  color: white;
  font-size: 20px;
  margin: 0;
  border-radius: 3em;
  padding: 0.15em 3em;
}
@media (max-width: 639.98px) {
  section.sec-fv .topimg .fv-main h1 + p {
    font-size: 16px;
    padding: 0.15em 1em;
  }
}

@media (max-width: 639.98px) {
  .fv-title.flow p {
    letter-spacing: -2px;
  }
}

/*** カウント付きコンテナ 共通mixin **************************************************************/
/*** flow_container（インライン表示） **************************************************************/
.flow_container {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas: "img title" "img txt";
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: start;
  margin: 2rem auto;
  counter-increment: counter;
}
.flow_container .img {
  grid-area: img;
  text-align: center;
  align-self: start;
}
.flow_container .title {
  grid-area: title;
}
.flow_container .title h3 {
  color: #4d4d4d;
  margin: 0;
  padding: 0 0.5rem;
  border-bottom: 1px solid #68808b;
  letter-spacing: -0.75px;
}
.flow_container .title h3::before {
  content: counter(counter, decimal-leading-zero);
  font-size: 56px;
  font-family: "Crimson Text", serif;
  font-weight: 500;
  line-height: 1;
  color: #68808b;
  letter-spacing: 2px;
}
@media (max-width: 639.98px) {
  .flow_container .title h3 {
    padding: 0;
    display: flex;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .flow_container .title h3::before {
    display: inline-block;
    font-size: 48px;
    margin-right: 0.75rem;
  }
}
.flow_container .txt {
  grid-area: txt;
  min-height: 100px;
}
@media (max-width: 639.98px) {
  .flow_container .txt {
    min-height: auto;
  }
}
.flow_container .txt p {
  margin: 0;
  padding: 0.5rem;
}
@media (max-width: 639.98px) {
  .flow_container .txt p {
    padding: 0;
  }
}
@media (max-width: 959.98px) {
  .flow_container {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto auto;
  }
}
@media (max-width: 639.98px) {
  .flow_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "img" "txt";
    gap: 12px;
  }
}
.flow_container .title h3 {
  display: flex;
  align-items: center;
}
.flow_container .title h3::before {
  display: inline-block;
  margin-right: 0.75rem;
}
.flow_container .txt {
  min-height: 148px;
}
@media (max-width: 639.98px) {
  .flow_container .txt {
    min-height: auto;
  }
}

/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0;
}
.site-header p.htxt {
  background-color: #bdb295;
  text-align: center;
  font-size: 10px;
  margin: 0;
  color: white;
  letter-spacing: 1.5px;
}
@media (max-width: 639.98px) {
  .site-header p.htxt span:last-child {
    display: none;
  }
}
.site-header .first-header {
  background-color: white;
}
.site-header .first-header .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media (max-width: 959.98px) {
  .site-header .first-header .container {
    gap: 20px;
  }
}
@media (max-width: 639.98px) {
  .site-header .first-header .container {
    grid-template-columns: 1fr 40px;
  }
}
.site-header .first-header .container .logo-area {
  color: #1c2a53;
}
@media (max-width: 639.98px) {
  .site-header .first-header .container .logo-area {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
  }
}
.site-header .first-header .container .logo-area h1 {
  font-size: 1rem;
  margin: 0;
}
.site-header .first-header .container .logo-area p {
  font-size: 10px;
  margin: 0.25rem auto;
}
@media (max-width: 639.98px) {
  .site-header .first-header .container .logo-area p {
    font-size: inherit;
    order: 2;
    margin: 0;
  }
  .site-header .first-header .container .logo-area p > span:first-child {
    display: none;
  }
  .site-header .first-header .container .logo-area p > span:last-child span {
    display: none;
  }
}
.site-header .first-header .container .logo-area .logo {
  display: block;
  max-width: 164px;
}
@media (max-width: 639.98px) {
  .site-header .first-header .container .logo-area .logo {
    order: 1;
    max-width: 124px;
    width: 100%;
  }
}
.site-header .first-header .container .logo-area .logo img {
  width: 100%;
}
.site-header .first-header .container .header-summary {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1em;
}
.site-header .first-header .container .header-summary .phone a {
  display: block;
}
.site-header .first-header .container .header-summary .phone a img {
  max-width: 250px;
  width: 100%;
}
@media (max-width: 639.98px) {
  .site-header .first-header .container .header-summary .phone {
    display: none;
  }
}
.site-header .first-header .container .header-summary .reserve {
  max-width: 152px;
  width: 100%;
}
.site-header .first-header .container .header-summary .reserve a {
  background: #68808b;
  display: flex;
  color: white;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.3em 0.25em 0.25em;
  border-radius: 3em;
  letter-spacing: 2px;
  transition: background-color 0.2s ease;
}
.site-header .first-header .container .header-summary .reserve a::before {
  content: url("../img/icon-calender.svg");
  width: 26px;
  height: 22px;
  display: block;
}
.site-header .first-header .container .header-summary .reserve a:hover, .site-header .first-header .container .header-summary .reserve a:focus-visible {
  background-color: #1c2a53;
}
@media (max-width: 639.98px) {
  .site-header .first-header .container .header-summary .reserve {
    display: none;
  }
}
.site-header .first-header .container .header-summary .access a {
  display: flex;
  background: #68808b;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: background-color 0.2s ease;
}
.site-header .first-header .container .header-summary .access a img {
  max-width: 20px;
  width: 100%;
}
.site-header .first-header .container .header-summary .access a:hover, .site-header .first-header .container .header-summary .access a:focus-visible {
  background-color: #1c2a53;
}
.site-header .second-header {
  background-color: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  padding: 0.75rem 0;
}
.site-header .second-header.scrolled, .site-header .second-header.menu-open {
  background-color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
}
.site-header .second-header .gnav > ul {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(6, 1fr);
}
.site-header .second-header .gnav > ul > li {
  position: relative;
  /* PC: ドロップダウン */
  /* サブメニュー持ちに下向きケアレ（PC） */
}
.site-header .second-header .gnav > ul > li a {
  display: block;
  padding: 0.25rem 0;
  border-right: 1px solid #68808b;
  text-align: center;
  color: #68808b;
}
.site-header .second-header .gnav > ul > li:first-child a {
  border-left: 1px solid #68808b;
}
.site-header .second-header .gnav > ul > li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 10000;
}
.site-header .second-header .gnav > ul > li > ul li a {
  display: block;
  padding: 0.65em 1em;
  text-align: left;
  color: #68808b;
  border: 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.site-header .second-header .gnav > ul > li > ul li a:hover, .site-header .second-header .gnav > ul > li > ul li a:focus-visible {
  background-color: #68808b;
  color: #fff;
}
.site-header .second-header .gnav > ul > li.open > ul, .site-header .second-header .gnav > ul > li:hover > ul, .site-header .second-header .gnav > ul > li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .second-header .gnav > ul > li.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.4em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.sp-under-menu {
  display: none;
}
@media (max-width: 639.98px) {
  .sp-under-menu {
    display: block;
  }
}

/* ===== SP用スタイル ===== */
@media (max-width: 639.98px) {
  .site-header .second-header {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 0;
    /* ハンバーガー */
    /* 開閉時のアニメーション状態 */
  }
  .site-header .second-header .container {
    width: 100%;
  }
  .site-header .second-header .sp-under-menu {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 75px;
    position: relative;
    z-index: 9999;
    font-size: 14px;
  }
  .site-header .second-header .sp-menu-content a {
    display: flex;
    align-items: center;
    background: #bdb295;
    color: #fff;
    flex-flow: column;
    padding: 6px 0;
    height: 56px;
    line-height: 1.3;
    transition: background-color 0.2s ease;
  }
  .site-header .second-header .sp-menu-content a:hover, .site-header .second-header .sp-menu-content a:focus-visible {
    background-color: #1c2a53;
  }
  .site-header .second-header .sp-menu-content a.reserve::before {
    content: url("../img/icon-calender.svg");
    width: 26px;
  }
  .site-header .second-header .sp-menu-content a.line::before {
    content: url("../img/icon-line.svg");
    width: 26px;
  }
  .site-header .second-header .sp-menu-content a.tel::before {
    content: url("../img/icon-tel.svg");
    width: 26px;
  }
  .site-header .second-header .sp-menu-content:last-child {
    background-color: #bdb295;
    height: 100%;
    display: flex;
  }
  .site-header .second-header .sp-mainmenu {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    margin: auto;
  }
  .site-header .second-header .sp-mainmenu span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .site-header .second-header .sp-mainmenu span:nth-child(1) {
    top: 12px;
  }
  .site-header .second-header .sp-mainmenu span:nth-child(2) {
    top: 19px;
  }
  .site-header .second-header .sp-mainmenu span:nth-child(3) {
    top: 26px;
  }
  .site-header .second-header .main-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 999;
    background: #fff;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 56px - 16px);
    overflow: auto;
    padding: 1.5rem 1rem;
    transform: translateY(105%);
    transition: transform 0.35s ease;
    /* SP: アコーディオン */
  }
  .site-header .second-header .main-menu .gnav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .site-header .second-header .main-menu .gnav ul li {
    /* 通常のリンク */
    /* サブメニュー */
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub {
    position: relative;
    overflow: hidden;
    /* リンクとボタンのコンテナ */
    /* アコーディオントグルボタン */
    /* 開いた状態の矢印を上向きに */
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub > a {
    display: block;
    padding: 0.75rem 0.5rem;
    text-align: left;
    font-size: 18px;
    color: #68808b;
    border: 0;
    text-decoration: none;
    transition: background-color 0.2s ease;
    /* PC用の矢印を非表示 */
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub > a:hover, .site-header .second-header .main-menu .gnav ul li.has-sub > a:focus-visible {
    background-color: #68808b;
    color: white;
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub > a::after {
    display: none;
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub .accordion-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: rgb(236, 244, 247);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
    z-index: 999;
    /* 矢印アイコン */
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub .accordion-toggle:hover, .site-header .second-header .main-menu .gnav ul li.has-sub .accordion-toggle:focus {
    background-color: rgba(104, 128, 139, 0.05);
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub .accordion-toggle .arrow {
    display: block;
    width: 0.7em;
    height: 0.7em;
    border-right: 2px solid #68808b;
    border-bottom: 2px solid #68808b;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .site-header .second-header .main-menu .gnav ul li.has-sub.open .accordion-toggle .arrow {
    transform: rotate(-135deg);
  }
  .site-header .second-header .main-menu .gnav ul li a {
    display: block;
    padding: 0.75rem 0.5rem;
    text-align: left;
    font-size: 18px;
    color: #68808b;
    border: 0;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .site-header .second-header .main-menu .gnav ul li a:hover, .site-header .second-header .main-menu .gnav ul li a:focus-visible {
    background-color: #68808b;
    color: white;
  }
  .site-header .second-header .main-menu .gnav ul li > ul {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 0.5rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.28s ease;
  }
  .site-header .second-header .main-menu .gnav ul li > ul li a {
    font-size: 16px;
    padding: 0.7em 0.8em;
  }
  .site-header .second-header .main-menu .gnav ul li.open > ul {
    max-height: 1000px;
  }
  .site-header .second-header.menu-open .main-menu {
    transform: translateY(0%);
  }
  .site-header .second-header.menu-open .sp-mainmenu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header .second-header.menu-open .sp-mainmenu span:nth-child(2) {
    opacity: 0;
  }
  .site-header .second-header.menu-open .sp-mainmenu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* メニュー展開中はボディスクロールを止める */
  body.no-scroll {
    overflow: hidden;
    touch-action: none;
  }
}
/* パンくず含む */
/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
.footer-contact {
  background-color: #68808b;
  padding: 2rem 1rem;
  color: white;
}
.footer-contact .img {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.footer-contact .img + p {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 639.98px) {
  .footer-contact .img + p {
    font-size: 22px;
  }
}
.footer-contact .footer-phone {
  max-width: 310px;
  margin: auto;
  text-align: center;
}
.footer-contact .footer-phone .reserve-btn a {
  background-color: white;
  color: #68808b;
  font-size: 23px;
  border-radius: 2em;
  display: block;
  padding: 0.25rem;
  transition: background-color 0.2s ease;
}
.footer-contact .footer-phone .reserve-btn a:hover, .footer-contact .footer-phone .reserve-btn a:focus-visible {
  background-color: #333333;
  color: white;
}

.footer-menu {
  padding: 1rem;
}
@media (max-width: 639.98px) {
  .footer-menu {
    font-size: 16px;
  }
}
.footer-menu .sub-menu {
  color: #68808b;
}
.footer-menu .sub-menu p {
  margin: 0.5em auto 0;
}
.footer-menu .sub-menu p:first-child {
  margin-top: 0;
}
.footer-menu .sub-menu ul {
  display: flex;
  list-style: none;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  flex-flow: row wrap;
  padding-left: 0.65em;
}
@media (max-width: 639.98px) {
  .footer-menu .sub-menu ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.footer-menu .sub-menu ul li a {
  display: block;
  padding-left: 1.25em;
}
.footer-menu .sub-menu ul li a::before {
  content: url("../img/icon-tri01.svg");
  display: inline-block;
  width: 0.75em;
  margin-right: 0.5rem;
  margin-left: -1.25em;
}
.footer-menu .under-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 3em;
}

.copyright {
  background-color: #68808b;
  text-align: center;
  color: white;
  font-size: 12px;
  padding: 0.5rem;
}
@media (max-width: 639.98px) {
  .copyright {
    padding-bottom: 70px;
  }
}

/* style.css */
.topback {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: #68808b;
  cursor: pointer;
  transition: 0.3s ease 0s;
  z-index: 1000;
  font-family: "Crimson Text", serif;
  background-color: rgba(255, 255, 255, 0);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  gap: 0.25em;
  mix-blend-mode: multiply;
}
@media (max-width: 639.98px) {
  .topback {
    bottom: 50px;
  }
}
.topback::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  border-radius: 100%;
  background-color: #68808b;
}
.topback.show {
  opacity: 1;
  visibility: visible;
}
.topback:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
/*** パンくずリスト *******************************************************/
.breadcrumbs {
  padding: 1rem 0;
  font-size: 11px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs .crumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.breadcrumbs .crumb:not(:last-child)::after {
  content: "›";
  padding: 0 0.25rem;
  opacity: 0.6;
}
.breadcrumbs [aria-current=page] {
  color: #68808b;
}

/*** ボタン ****************************************************************/
.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  text-decoration: none;
}

/*** カード ****************************************************************/
.card {
  border: 1px solid #f0eee9;
  border-radius: 8px;
  padding: 1rem;
}

/*** バッジ ****************************************************************/
.badge {
  display: inline-block;
  border: 1px solid #f0eee9;
  border-radius: 999px;
  padding: 0 0.5em;
  font-size: 0.85em;
}

.faq-container {
  margin: 0.75rem 0;
  overflow: hidden;
}

.faq-q {
  display: grid;
  grid-template-columns: 1rem 1fr 1rem;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  cursor: pointer;
  font-size: 18px;
  background-color: #68808b;
  outline: none;
  color: white;
}
@media (max-width: 767.98px) {
  .faq-q {
    font-size: 16px;
  }
}

.faq-q span:first-child::before {
  content: "Q";
  font-family: "Crimson Text", serif;
}

.faq-q span:nth-child(2) {
  position: relative;
}
.faq-q span:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  border: 8px solid transparent;
  border-top: 12px solid #fff;
  transition: transform 0.2s ease;
}

.faq-container.is-open .faq-q span:nth-child(2)::after {
  transform: rotate(-180deg);
  top: 0px;
}

.faq-a {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background-color: #fff;
  border-top: 1px solid #f0eee9;
}

.faq-container.is-open .faq-a {
  padding: 0.8rem 1rem;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 0.75rem;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.price-table-container table.price-table {
  border-collapse: collapse;
  width: 100%;
}
.price-table-container table.price-table tbody tr th {
  border: 1px solid #efede9;
  background-color: #68808b;
  color: white;
  width: 580px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 767.98px) {
  .price-table-container table.price-table tbody tr th {
    width: auto;
  }
}
@media (max-width: 639.98px) {
  .price-table-container table.price-table tbody tr th {
    display: block;
    width: 100%;
    padding: 0.5rem;
  }
}
.price-table-container table.price-table tbody tr td {
  border: 1px solid #efede9;
  background-color: white;
  text-align: center;
  padding: 0.5rem;
}
@media (max-width: 639.98px) {
  .price-table-container table.price-table tbody tr td {
    display: block;
    width: 100%;
    text-align: right;
  }
}

.access-logo {
  text-align: center;
  margin: 1rem auto;
}
.access-logo img {
  max-width: 168px;
}

.shop-table-container {
  max-width: 940px;
  width: 100%;
  margin: auto;
}
.shop-table-container table.shop-table {
  width: 100%;
  border-collapse: collapse;
  letter-spacing: -0.5px;
}
.shop-table-container table.shop-table tbody tr th {
  text-align: left;
  vertical-align: top;
  width: 30%;
  padding: 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid #68808b;
}
.shop-table-container table.shop-table tbody tr th span.dot {
  color: #68808b;
  margin-right: 0.5rem;
}
@media (max-width: 639.98px) {
  .shop-table-container table.shop-table tbody tr th {
    display: block;
    width: 100%;
    border: none;
    padding-bottom: 0;
  }
}
.shop-table-container table.shop-table tbody tr td {
  padding: 0.5rem;
  border-bottom: 1px solid #68808b;
}
@media (max-width: 639.98px) {
  .shop-table-container table.shop-table tbody tr td {
    display: block;
    padding-top: 0.25rem;
  }
}
.shop-table-container table.shop-table tbody tr td span.img-sm-up {
  display: inline;
}
@media (max-width: 639.98px) {
  .shop-table-container table.shop-table tbody tr td span.img-sm-up {
    display: none;
  }
}

/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
.tel-box {
  max-width: 640px;
  margin: 2em auto;
  border: 1px solid;
}
.tel-box > p {
  background-color: #68808b;
  color: white;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0;
  padding: 0.25em;
}
.tel-box .tel-num {
  max-width: 350px;
  margin: 1em auto;
  color: #68808b;
  padding: 0 0.5em;
}
.tel-box .tel-num a {
  display: block;
  margin: 1.5em auto 1em;
}
.tel-box .tel-num span {
  display: block;
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "MS PMincho", "MS Mincho", "Times New Roman", Georgia, serif;
  font-weight: 600;
}
.tel-box + p.tel-txt {
  text-align: center;
}
@media (max-width: 639.98px) {
  .tel-box + p.tel-txt {
    text-align: left;
    font-size: 16px;
  }
}

/*** 入力要素 *************************************************************/
form.mailform input[type=text],
form.mailform input[type=tel],
form.mailform input[type=email],
form.mailform select,
form.mailform input[type=date] {
  width: 90%;
  font-size: 18px;
  display: inline-block;
  padding: 0.8em;
  height: 100%;
  border: solid 1px #4d4d4d;
  border-radius: 3px;
  vertical-align: middle;
  height: 56px;
  background: white;
  box-sizing: border-box;
}
form.mailform input[type=text]::-moz-placeholder, form.mailform input[type=tel]::-moz-placeholder, form.mailform input[type=email]::-moz-placeholder, form.mailform select::-moz-placeholder, form.mailform input[type=date]::-moz-placeholder {
  color: #ccc;
}
form.mailform input[type=text]::placeholder,
form.mailform input[type=tel]::placeholder,
form.mailform input[type=email]::placeholder,
form.mailform select::placeholder,
form.mailform input[type=date]::placeholder {
  color: #ccc;
}
@media (max-width: 639.98px) {
  form.mailform input[type=text],
  form.mailform input[type=tel],
  form.mailform input[type=email],
  form.mailform select,
  form.mailform input[type=date] {
    width: 100%;
    max-width: 100%;
  }
}
form.mailform input[type=date] {
  -webkit-appearance: none; /* iOSの独自見た目を抑える方向 */
  -moz-appearance: none;
       appearance: none;
}
form.mailform textarea {
  width: 90%;
  font-size: 18px;
  padding: 1em;
  margin: 1em auto;
  resize: vertical;
}
form.mailform textarea::-moz-placeholder {
  color: #ccc;
}
form.mailform textarea::placeholder {
  color: #ccc;
}
@media (max-width: 639.98px) {
  form.mailform textarea {
    width: 100%;
  }
}

p.ttl-menu {
  margin-bottom: 0;
  border-bottom: 1px solid #CCC;
}

/*** エラーメッセージ ******************************************************/
.error {
  color: #b00020;
  margin: 1em auto 2em;
}
.error ul {
  padding-left: 1.5em;
}

/*** レイアウト *************************************************************/
form.mailform {
  margin: auto;
}
form.mailform h3 {
  margin: 0;
  background-color: #efede9;
  font-size: 18px;
  font-weight: 500;
  padding: 0.5em 2%;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
form.mailform span {
  display: inline-block;
  color: white;
  font-size: 0.6em;
  padding: 0.15em 0.5em;
  letter-spacing: 0;
}
form.mailform span.required {
  background-color: #68808b;
}
form.mailform span.optional {
  background-color: #999999;
}
form.mailform .contents {
  margin: 0.5em auto 1em;
}
form.mailform .contents.privacy {
  text-align: center;
  margin-top: 3em;
}
form.mailform .day .contents {
  margin: 0;
}

.check-vertical label {
  display: block;
}

.day {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid #808080;
  padding-bottom: 0.5em;
  margin: 1em auto;
}
.day .ttl {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 639.98px) {
  .day .ttl {
    align-items: flex-start;
  }
}
.day .contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media (max-width: 639.98px) {
  .day .contents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 639.98px) {
  .day {
    grid-template-columns: 1fr;
  }
}

section.nav .inner-box {
  border: 1px solid #bdb295;
  padding: 2em;
  max-width: 640px;
  width: 100%;
  margin: auto;
}
section.nav .inner-box h3 {
  background-color: #68808b;
  color: white;
  max-width: 450px;
  text-align: center;
  margin: auto;
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
}
section.nav .inner-box ul {
  padding-left: 1.5em;
  margin: 2em auto;
}

.send-btn {
  text-align: center;
}
.send-btn button.btn {
  background-color: #68808b;
  border: none;
  padding: 0.6em 2em;
  font-weight: 300;
  margin: 0.5em;
}
.send-btn button.btn:hover {
  background-color: black;
}

/*** 確認ページ *************************************************************/
ul.confirm-list {
  padding-left: 1.5em;
}

/*** サンクスページ *************************************************************/
.thanks-icon {
  text-align: center;
}

.thanks-buttons.btn {
  text-align: center;
  margin: auto;
  display: block;
}

/* =======================================================================
   style.scss  → /assets/css/style.css に出力
   ======================================================================= */
/*** キャンペーン **********************************************************/
.campaign-container {
  padding: 2rem 0 1rem;
  background-color: #68808b;
}

/* Swiper */
.campaign-slider {
  width: 100%;
  overflow: hidden;
}
.campaign-slider .campaign-slider-inner {
  width: calc(100% + 30px);
  margin-left: -15px;
}

/*** 導入 **********************************************************/
.intro-container p.intro-txt {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .intro-container p.intro-txt {
    text-align: left;
  }
}
.intro-container .menu-btn {
  text-align: center;
}

.anchor-menu {
  text-align: center;
}
.anchor-menu .anchor-menu-container {
  max-width: 500px;
  margin: auto;
  background: #efede9;
  border-radius: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.anchor-menu .anchor-menu-container .inner {
  padding: 1em;
}
.anchor-menu .anchor-menu-container .inner ul {
  list-style-type: none;
  text-align: left;
}
.anchor-menu .anchor-menu-container .inner ul li a {
  display: block;
  border-bottom: 1px dashed #68808b;
  line-height: 1;
  font-size: 18px;
  padding: 1rem 0.5rem 1rem 1em;
}
.anchor-menu .anchor-menu-container .inner ul li a::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #68808b;
  border-right: 1px solid #68808b;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  margin-right: 0.75rem;
  margin-left: -1.25em;
}
.anchor-menu .anchor-menu-container.is-open {
  max-height: 500px;
}

/*** price_導入 **********************************************************/
section.sec.sec-payment.top_payment {
  background-color: initial;
}
section.sec.sec-payment.top_payment .menu-btn {
  text-align: center;
  margin: 2rem 0;
}

.price-btn {
  max-width: 380px;
  width: 100%;
  justify-content: center;
  padding: 0.5rem 0rem !important;
}

/*** About **********************************************************/
.sec-about {
  background-color: #efede9;
}
.sec-about .whats_container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.sec-about .whats_container .txt h3 {
  margin-top: 2rem;
  color: #68808b;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.sec-about .whats_container .txt p {
  margin-top: 0;
}
@media (max-width: 639.98px) {
  .sec-about .whats_container {
    grid-template-columns: 1fr !important;
    margin-top: 1rem;
    gap: 1rem;
  }
}
.sec-about .whats_container.whats_sec {
  grid-template-columns: 300px 1fr;
}
@media (max-width: 639.98px) {
  .sec-about {
    padding-bottom: 4rem !important;
  }
}

/*** 悩み **********************************************************/
.sec-check {
  background-image: url("../img/bg-nayami.webp");
  background-size: cover;
  background-position: 50% 25%;
  padding: 3rem 0 2rem;
}
.sec-check h2 {
  position: relative;
  text-align: center;
  border: none;
  color: white;
  font-size: 24px;
}
.sec-check h2 span {
  position: relative;
  padding: 0.5em 1em;
  display: inline-block;
  letter-spacing: -1px;
}
@media (max-width: 639.98px) {
  .sec-check h2 span {
    padding: 0.5em 0;
    display: block;
  }
}
.sec-check h2 span::before {
  content: "";
  background-image: url("../img/check.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 110px;
  height: 110px;
  left: -110px;
  top: -20px;
}
@media (max-width: 767.98px) {
  .sec-check h2 span::before {
    left: 50%;
    top: -90px;
    transform: rotate(20deg) translateX(-50%);
  }
}
.sec-check h2 span::after {
  content: "";
  background-image: url("../img/nayami_under.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  display: block;
  height: 18px;
  width: 100%;
  left: 0;
  bottom: -18px;
}
.sec-check .circle-box ul.circle-container {
  list-style: none;
  margin: 3em auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  justify-content: center;
}
@media (max-width: 959.98px) {
  .sec-check .circle-box ul.circle-container {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
    padding: 1rem;
    margin: 2.5em auto 0;
  }
}
.sec-check .circle-box ul.circle-container li.circle {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  text-align: center;
  color: #68808b;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 959.98px) {
  .sec-check .circle-box ul.circle-container li.circle {
    width: auto;
    height: auto;
    border-radius: inherit;
    text-align: left;
    padding: 0.5rem;
    padding-left: 2rem;
    display: block;
    background-color: initial;
  }
  .sec-check .circle-box ul.circle-container li.circle::before {
    content: "";
    background-image: url("../img/icon-check.svg");
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.25rem;
    margin-left: -1.25em;
    position: relative;
    top: 2px;
  }
}
@media (max-width: 959.98px) {
  .sec-check {
    background-position: 50%;
  }
}

/*** メリット **********************************************************/
.merit-container {
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 639.98px) {
  .merit-container {
    grid-template-columns: 1fr;
  }
}
.merit-container .img {
  text-align: center;
}
.merit-container .list {
  display: flex;
  border: 2px solid #f0eee9;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  font-size: 20px;
}
.merit-container .list ul.checklist {
  list-style: none;
  display: inline-block;
  color: #3f4536;
}
.merit-container .list ul.checklist li {
  margin: 0.5em;
  padding-left: 1.25em;
}
.merit-container .list ul.checklist li::before {
  content: "";
  background-image: url("../img/icon-check.svg");
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25rem;
  margin-left: -1.25em;
  position: relative;
  top: 2px;
}
@media (max-width: 767.98px) {
  .merit-container .list {
    padding: 1rem 0;
  }
}

/*** 選ばれる理由 **********************************************************/
.sec-reasons {
  counter-reset: counter;
  background-color: #efede9;
}

/*** 流れ **********************************************************/
.sec-flow {
  counter-reset: counter;
}

/*** 金額 ************************************************************/
.sec-price {
  background-color: #efede9;
}
.sec-price .price-container {
  margin-bottom: 2rem;
}
.sec-price .price-container h3 {
  font-weight: 600;
  color: #68808b;
  font-size: 20px;
  margin-bottom: 0.25em;
}
.sec-price .price-container h3 span {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
}
@media (max-width: 639.98px) {
  .sec-price .price-container h3 span {
    display: block;
  }
}
.sec-price .price-container p.link {
  text-align: right;
}
.sec-price .price-container p.link a {
  display: block;
}

.group-course {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.group-course .group-box {
  display: grid;
  grid-template-columns: 170px 1fr;
  background-color: white;
}
.group-course .group-box .txt {
  padding: 0.75rem 2rem;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
}
.group-course .group-box .txt p {
  margin: 0;
}
.group-course .group-box .txt p.title {
  background-color: #bdb295;
  border-radius: 2rem;
  color: white;
  margin-bottom: 0.25rem;
}
.group-course .group-box .txt p.title + p {
  font-size: 14px;
}
@media (max-width: 959.98px) {
  .group-course {
    grid-template-columns: 1fr;
  }
}

/*** お支払方法 ************************************************************/
.sec-payment {
  background-color: #efede9;
}
.sec-payment h3 {
  margin-bottom: 0;
}
.sec-payment .payment-content {
  display: flex;
  flex-flow: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 5rem;
  border: 1px solid #68808b;
  background-color: white;
  margin-bottom: 1rem;
}
.sec-payment .payment-content img {
  min-width: 0;
}
@media (max-width: 639.98px) {
  .sec-payment .payment-content {
    flex-flow: column nowrap;
    padding: 1rem;
  }
}

.sec-price + .sec-payment {
  padding-top: 0.25rem;
}

.sec-price:has(+ .sec-payment) {
  padding-bottom: 0.25rem;
}

/*** アクセス **************************************************************/
.sec-access .map-area {
  text-align: center;
  margin: 2rem auto;
}
.sec-access .map-area .map-img {
  margin: 1.5rem auto;
}
.sec-access .map-area .map-img img {
  max-width: 420px;
  width: 100%;
}
.sec-access .map-area .map-link {
  margin: 1em auto;
}
.sec-access .map-area .map-link a.rtri-btn {
  display: inline-block;
}

/*** 簡易メニュー **********************************************************/
.sec-quickmenu .quickmenu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 0.5rem;
  padding: 0;
  margin: 2rem 0;
}
@media (max-width: 767.98px) {
  .sec-quickmenu .quickmenu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639.98px) {
  .sec-quickmenu .quickmenu {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.sec-quickmenu .quickmenu a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  text-decoration: none;
  background-color: #68808b;
  color: white;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.sec-quickmenu .quickmenu a:hover, .sec-quickmenu .quickmenu a:focus-visible {
  background-color: #1c2a53;
  color: #ffffff;
}
@media (max-width: 639.98px) {
  .sec-quickmenu .quickmenu a {
    padding: 0.5rem 0;
    font-size: 16px;
    letter-spacing: -1.5px;
  }
}

/*** お客様の声 ************************************************************/
.sec-testimonials {
  background-color: #efede9;
}
.sec-testimonials .test {
  display: block;
}

/*** スタッフ紹介 ********************************************/
.staff_container {
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 1rem;
}
.staff_container h2.srf.hl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.25;
  font-size: 1rem;
}
.staff_container h2.srf.hl > span:first-child {
  display: flex;
  flex-flow: column wrap;
  color: #68808b;
}
.staff_container h2.srf.hl > span span.position {
  font-size: 14px;
}
.staff_container h2.srf.hl > span span.name {
  display: block;
  width: 80px;
}
.staff_container h2.srf.hl > span.instagram {
  width: 130px;
}
.staff_container h2.srf.hl > span.instagram a:hover {
  opacity: 0.7;
}
@media (max-width: 639.98px) {
  .staff_container {
    grid-template-columns: 1fr;
  }
}

.sec-staff02 {
  background-color: #efede9;
}
.sec-staff02 h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #68808b;
  font-weight: 500;
}
.sec-staff02 h3 span {
  height: 1px;
  background-color: #68808b;
  flex-grow: 1;
}
.sec-staff02 .staff02_container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1em;
}
.sec-staff02 .staff02_container ul.circle-list {
  list-style: none;
}
.sec-staff02 .staff02_container ul.circle-list li {
  padding-left: 1.5rem;
}
.sec-staff02 .staff02_container ul.circle-list li:before {
  content: "●";
  margin-right: 0.5rem;
  margin-left: -1.25rem;
}
.sec-staff02 .staff02_container ul.qualification-list {
  padding-left: 1.5em;
}
@media (max-width: 639.98px) {
  .sec-staff02 .staff02_container {
    grid-template-columns: 1fr;
  }
  .sec-staff02 .staff02_container .order1 {
    order: 1;
  }
  .sec-staff02 .staff02_container .order2 {
    order: 2;
  }
}

/*** サロン案内・アクセス ********************************************/
.sec-salon p.link {
  text-align: right;
}

.access_slider {
  position: relative;
  padding: 0 46px;
}
.access_slider .swiper-button-prev,
.access_slider .swiper-button-next {
  width: 40px;
  height: 40px;
}
.access_slider .swiper-button-prev:after,
.access_slider .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}
.access_slider .swiper-button-prev {
  left: 0;
}
.access_slider .swiper-button-prev::after {
  background-image: url("../img/icon-sliderbtn.svg");
  transform: rotate(180deg);
}
.access_slider .swiper-button-next {
  right: 0;
}
.access_slider .swiper-button-next::after {
  background-image: url("../img/icon-sliderbtn.svg");
}

/*** FAQ ********************************************/
.faq-intro {
  padding: 2em 0;
}
.faq-intro p {
  margin: 2em auto;
}

.sec-faq {
  padding: 1rem 0;
}
.sec-faq:first-child {
  padding-top: 3rem;
}

section#faq01 {
  margin-top: 3rem;
}

/*** 流れ ********************************************/
.intro-flow-container {
  margin-top: 3em;
}
@media (max-width: 767.98px) {
  .intro-flow-container {
    text-align: left;
  }
}

/*** プライバシーポリシー ********************************************/
section.privacy-container h3 {
  font-size: 22px;
  color: #68808b;
  font-weight: 500;
  border-bottom: 1px solid;
}

/*** サイトマップ ********************************************/
.sitemap-container {
  max-width: 640px;
  width: 85%;
  margin: auto;
  font-size: 20px;
}
.sitemap-container > ul {
  list-style: none;
  padding: 0.5em 0;
}
.sitemap-container > ul > li > a {
  display: block;
  padding: 0.5em 0.5em 0.5em 2.25em;
  color: #333333;
  border-bottom: 1px solid #68808b;
}
.sitemap-container > ul > li > a:before {
  content: "■";
  margin-left: -1.5em;
  margin-right: 0.5em;
  color: #68808b;
}
.sitemap-container > ul > li > a:hover {
  text-decoration: none;
}
.sitemap-container > ul > li > ul.sub-menu {
  list-style: none;
}
.sitemap-container > ul > li > ul.sub-menu > li a {
  position: relative;
  padding: 0.5em 0.5em 0.5em 3.25em;
  display: block;
}
.sitemap-container > ul > li > ul.sub-menu > li a::before {
  content: "";
  width: 1px;
  height: 1em;
  background: #535353;
  left: 1.5em;
  top: 0.75em;
  position: absolute;
  display: block;
}
.sitemap-container > ul > li > ul.sub-menu > li a::after {
  content: "";
  position: absolute;
  top: 1.25em;
  left: 1.5em;
  display: inline-block;
  width: 0.75em;
  height: 1px;
  background: #535353;
}
.sitemap-container > ul > li > ul.sub-menu > li:last-child a::before {
  content: "";
  width: 1px;
  height: 0.5em;
  background: #535353;
  left: 1.5em;
  top: 0.75em;
  position: absolute;
  display: block;
}
.sitemap-container > ul > li:last-child {
  border: none;
}

/*** トップページ ********************************************/
.main-contents {
  margin-top: 1rem;
}
.main-contents ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.main-contents ul li a {
  display: block;
  background-color: #bdb295;
  color: white;
  text-align: center;
  border-radius: 3em;
  font-size: 20px;
  padding: 0.5rem;
  transition: 0.3s ease 0s;
  position: relative;
}
.main-contents ul li a:hover {
  text-decoration: none;
  background-color: #68808b;
}
.main-contents ul li a:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767.98px) {
  .main-contents ul li a {
    font-size: 16px;
  }
}
@media (max-width: 639.98px) {
  .main-contents ul {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 3rem;
  }
}
.main-contents + p {
  text-align: left;
}

.sub-contents-container {
  background-color: #efede9;
}
.sub-contents-container .sub-contents ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.sub-contents-container .sub-contents ul li a {
  transition: 0.3s ease 0s;
  padding: 6.25% 0;
  display: block;
  font-size: 20px;
  text-align: center;
  position: relative;
  background-image: url("../img/top/top_ban01.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Hiragino Mincho", "MS PMincho", "MS Mincho", "Times New Roman", Georgia, serif;
  color: white;
  z-index: 1;
}
.sub-contents-container .sub-contents ul li a span {
  position: relative;
  z-index: 3;
}
.sub-contents-container .sub-contents ul li a:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: rgba(142, 160, 170, 0.95);
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .sub-contents-container .sub-contents ul {
    grid-template-columns: 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.sub-contents-container .sub-contents ul li a.top_ban02 {
  background-image: url("../img/top/top_ban02.webp");
}

.sub-contents-container .sub-contents ul li a.top_ban03 {
  background-image: url("../img/top/top_ban03.webp");
}

.sub-contents-container .sub-contents ul li a.top_ban04 {
  background-image: url("../img/top/top_ban04.webp");
}

.sec-menu .main-menu ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.sec-menu .main-menu ul li a {
  text-align: center;
}
.sec-menu .main-menu ul li a img {
  transition: 0.3s ease 0s;
}
.sec-menu .main-menu ul li a span {
  display: block;
  font-size: 0.8em;
}
.sec-menu .main-menu ul li a:hover img {
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .sec-menu .main-menu ul {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.sec-news {
  background-color: #efede9;
}

.news {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  margin: 1.5rem auto;
}
.news .img {
  text-align: center;
}
.news .txt p {
  margin: 0;
  font-size: 14px;
}
.news .txt p.date {
  color: #68808b;
}
.news .txt h3 {
  margin: 0;
  color: #68808b;
  font-size: 18px;
  border-bottom: 1px solid #68808b;
  padding: 0.25rem 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .news {
    grid-template-columns: 1fr;
  }
}

/*** 診断メニュー ********************************************/
.menu-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3em;
       column-gap: 3em;
  row-gap: 1.5rem;
}
.menu-container .menu-box {
  display: grid;
  grid-template-columns: 230px 1fr;
  font-size: 16px;
  gap: 1rem;
}
.menu-container .menu-box h3 {
  font-size: 20px;
  margin: 0;
  border-bottom: 1px solid #68808b;
  padding: 0.25em 0;
}
.menu-container .menu-box p {
  margin: 0.25em auto;
  letter-spacing: -2px;
}
.menu-container .menu-box .menu-btn {
  text-align: center;
}
.menu-container .menu-box .menu-btn a {
  padding: 0.25rem 1rem;
  font-size: 14px;
  width: 90%;
  justify-content: center;
}
@media (max-width: 639.98px) {
  .menu-container .menu-box .menu-btn a {
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 230px;
    justify-content: center;
    margin: 0.5em auto;
  }
}
@media (max-width: 959.98px) {
  .menu-container .menu-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 639.98px) {
  .menu-container {
    grid-template-columns: 1fr;
  }
}

/*** 共通セクションの枠線/間隔 ********************************************/
.sec {
  padding: 1.5rem 0;
}/*# sourceMappingURL=style.css.map */