@charset "UTF-8";
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
  color: #1a1a1a;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.pc {
  display: block;
}

.pc_small {
  display: none;
}

.sp {
  display: none;
}

@media screen and (min-width: 751px) and (max-width: 1279px) {
  .pc_small {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .pc_small {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*==================================
header
==================================*/
header {
  background-color: rgba(255, 255, 255, 0.8470588235);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header_top {
  width: 66.6666666667%;
  margin: 0.7em auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_top .c-btn_mini {
  min-width: 316px;
}
.l-header_logo {
  width: 48%;
}
.l-header_tel {
  font-size: clamp(22px, 1.56vw, 30px);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  line-height: 0.7em;
  letter-spacing: 0.1em;
  min-width: 290px;
}
.l-header_tel i {
  margin-right: 0.2em;
}
.l-header_tel span {
  font-size: clamp(12px, 0.84vw, 14px);
  letter-spacing: normal;
}
.l-header_nav {
  width: 66.6666666667%;
  margin: 1.5em auto 0.8em;
}
.l-header_nav nav > ul {
  display: flex;
  justify-content: space-between;
  font-size: clamp(16px, 1.04vw, 20px);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  color: #1a1a1a;
}
.l-header_nav nav > ul > li > a {
  text-decoration: none;
  color: #1a1a1a;
  padding: 0.8em 0em;
  transition-duration: 0.6s;
  text-align: center;
}
.l-header_nav nav > ul > li > a:hover {
  color: #d5ad58;
}

/* スクロール時の固定表示 */
.l-header_nav {
  position: relative;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.l-header_nav.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8470588235);
  margin: 0;
}
.l-header_nav.fixed nav {
  width: 66.6666666667%;
  margin: 0 auto;
  padding: 0.7em 0;
}

@media (min-width: 768px) {
  .l-header_tel a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (max-width: 1600px) {
  .l-header_top, .l-header_nav {
    width: 80%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-header_top, .l-header_nav {
    width: 92.1875%;
  }
  .l-header_top .c-btn_mini {
    min-width: 290px;
  }
}
/* プルダウンメニューのスタイル */
.l-dropdown {
  position: relative;
  display: inline-block;
}
.l-dropdown a {
  position: relative;
}
.l-dropdown a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #1a1a1a;
  border-right: solid 1px #1a1a1a;
  position: absolute;
  right: -35px;
  top: 42%;
  transform: translateX(-50%) rotate(135deg);
  transition-duration: 0.6s;
}

.l-dropdown_content {
  display: none;
  position: absolute;
  top: 1.7em;
  background-color: #1a1a1a;
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.l-dropdown_content a {
  position: relative;
  font-size: clamp(14px, 0.89vw, 16px);
  color: #fff;
  padding: 1.3em 0.5em 1.3em 0.3em;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #fff;
}
.l-dropdown_content a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 27px;
  transform: rotate(45deg);
  transition-duration: 0.6s;
}

.l-dropdown_content a:hover {
  background-color: #d5ad58;
  color: #1a1a1a;
}
.l-dropdown_content a:hover:after {
  border-top: solid 1px #1a1a1a;
  border-right: solid 1px #1a1a1a;
  right: 5px;
}

.l-dropdown:hover .l-dropdown_content {
  display: block;
}

.l-overlay {
  display: none;
}

@media screen and (max-width: 750px) {
  .l-header_top,
  .l-header_nav {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  header {
    display: none;
  }
  .l-header_gmenu {
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    padding-top: 20px;
    background-color: rgba(255, 255, 255, 0.7137254902);
    text-align: center;
    box-sizing: border-box;
    counter-increment: item;
    z-index: 30;
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 35px;
    height: 20px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d5ad58;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header_menubtn span:nth-of-type(1) {
    animation: menu11-bar01 0.5s forwards;
  }
  @keyframes menu11-bar01 {
    0% {
      transform: translateY(10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .l-header_menubtn span:nth-of-type(2) {
    animation: menu11-bar02 0.5s forwards;
  }
  @keyframes menu11-bar02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .l-header_menubtn span:nth-of-type(3) {
    animation: menu11-bar03 0.5s forwards;
  }
  @keyframes menu11-bar03 {
    0% {
      transform: translateY(-10px) rotate(45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .l-header_menubtn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(224, 104, 86, 0.3);
    transition: all 0.1s;
    opacity: 0;
  }
  .l-header_menubtn.active::after {
    animation: circle 0.5s;
  }
  @keyframes circle {
    0% {
      transform: scale(0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(3.5);
      opacity: 0;
    }
  }
  .l-header_menubtn.active span:nth-of-type(1) {
    animation: active-menu11-bar01 0.5s 0.5s forwards;
  }
  @keyframes active-menu11-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(-45deg);
    }
  }
  .l-header_menubtn.active span:nth-of-type(2) {
    animation: active-menu11-bar02 0.5s 0.5s forwards;
  }
  @keyframes active-menu11-bar02 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .l-header_menubtn.active span:nth-of-type(3) {
    animation: active-menu11-bar03 0.5s 0.5s forwards;
  }
  @keyframes active-menu11-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(-10px) rotate(45deg);
    }
  }
  .l-overlay {
    display: block;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    padding: 1.2em 0 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 20;
  }
  .l-overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    overflow-y: auto; /* Enable vertical scrolling */
  }
  .l-overlay_logo {
    width: 60%;
    margin-left: 1em;
  }
  .l-overlay nav {
    padding: 20px;
  }
  .l-overlay nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-overlay nav ul li {
    position: relative;
    padding: 1em 1em;
    border-bottom: 1px solid #ccc;
    font-size: clamp(15px, 0.95vw, 18px);
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
  }
  .l-overlay nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    display: block;
    transition: color 0.3s ease;
  }
  .l-overlay nav ul li a:hover {
    color: #d5ad58;
  }
  .l-overlay nav ul li:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 1px #1a1a1a;
    border-right: solid 1px #1a1a1a;
    position: absolute;
    right: 15px;
    top: 25px;
    transform: rotate(45deg);
    transition-duration: 0.6s;
  }
  .l-overlay .l-overlay_nav_second p {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(17px, 1.15vw, 22px);
    margin-bottom: 0;
  }
  .l-overlay .l-overlay_nav_second ul li {
    padding-left: 1.5em;
  }
  .l-overlay .l-overlay_nav_second ul li:before {
    content: "";
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("../images/common/icon_star.svg");
    background-size: cover;
  }
  .l-overlay .l-overlay_ctabtn_wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .l-overlay .l-overlay_ctabtn_wrap a {
    margin: 1em 0;
  }
  .l-overlay .l-overlay_3col {
    margin: 1em;
  }
  .l-overlay .l-overlay_3col_wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* パンくずリスト */
.l-path_wrap {
  width: 100%;
  background-color: #e6e6e6;
}
.l-path_wrap .l-path {
  display: flex;
  align-items: center;
  width: 66.6666666667%;
  margin: 0 auto;
  height: 32px;
  font-size: clamp(12px, 0.84vw, 14px);
}
.l-path_wrap .l-path li a {
  transition: color 0.3s ease;
}
.l-path_wrap .l-path li a:link {
  color: #1a1a1a;
}
.l-path_wrap .l-path li a:visited {
  color: #1a1a1a;
}
.l-path_wrap .l-path li a:hover {
  color: #d5ad58;
}
.l-path_wrap .l-path li:after {
  content: "　>　";
}
.l-path_wrap .l-path li:last-child:after {
  content: "";
}

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .l-path_wrap .l-path {
    width: 80%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-path_wrap .l-path {
    width: 92.1875%;
  }
}
/*==================================
全体　＞　1カラム中央配置
==================================*/
main {
  overflow: hidden;
}

.l-max1col {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.l-max1col_white {
  background-color: rgba(255, 255, 255, 0.8705882353);
  border-radius: 150px;
}
.l-max_right {
  position: absolute;
  right: 0;
  top: 17%;
}
.l-max_left {
  position: absolute;
  left: 0;
  top: 17%;
}

@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-max1col_white {
    border-radius: 90px;
  }
}
@media screen and (max-width: 750px) {
  .l-max1col_white {
    border-radius: 50px;
    padding-bottom: 1px;
  }
}
/*==================================
インナーコンテンツ
==================================*/
.l-inner {
  width: 66.6666666667%;
  padding-top: 150px;
  padding-bottom: 150px;
  margin: auto;
  position: relative;
}

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .l-inner {
    width: 80%;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 92.1875%;
  }
}
@media screen and (max-width: 750px) {
  .l-inner {
    width: 96%;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*==================================
インナー2カラム
==================================*/
.l-2col_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-2col {
  position: relative;
  width: 45%;
}
.l-2col_wide {
  position: relative;
  width: 49%;
}
.l-v_center {
  align-content: center;
}
.l-v_bottom {
  align-items: flex-end;
}
.l-h_center {
  justify-content: center;
}
.l-rightcol {
  display: flex;
  justify-content: flex-end;
}

.l-2col_wrap + .l-2col_wrap {
  margin-top: 80px;
}

.l-2col_wrap + .l-2col_ttlspace {
  margin-top: 150px;
}

/* ボタン横並び用2カラム */
.l-2col_btn_wrap {
  display: flex;
  justify-content: center;
}
.l-2col_btn_wrap a:first-child {
  margin-right: 5%;
}

@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-2col {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .l-2col_wrap {
    flex-direction: column;
  }
  .l-2col {
    width: 97%;
    margin: auto auto 8% auto;
  }
  .l-2col_wide {
    width: 97%;
    margin: auto auto 8% auto;
  }
  .l-c_reverse {
    flex-direction: column-reverse;
  }
  .l-2col_sp_2col {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .l-2col_sp_2col .l-2col {
    width: 41%;
    margin: 0 auto;
  }
  .l-2col_btn_wrap {
    flex-direction: column;
    align-items: center;
  }
  .l-2col_btn_wrap a {
    margin: 15px 0;
  }
  .l-2col_btn_wrap a:first-child {
    margin-right: 0;
  }
  .l-2col_btn_wrap a:last-child {
    margin-bottom: 0;
  }
  .l-2col_wrap + .l-2col_wrap {
    margin-top: 8%;
  }
  .l-2col_wrap + .l-2col_ttlspace {
    margin-top: 70px;
  }
}
/*==================================
インナー3カラム
==================================*/
.l-3col_wrap {
  display: flex;
  justify-content: space-between;
}
.l-3col {
  position: relative;
  width: 30%;
}

@media screen and (max-width: 750px) {
  .l-3col_wrap {
    flex-direction: column;
  }
  .l-3col {
    width: 96%;
    margin: auto auto 4% auto;
  }
  .l-3col_sp_2col {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .l-3col_sp_2col .l-3col {
    width: 41%;
    margin: 0 auto;
  }
}
/*==================================
インナー4カラム
==================================*/
.l-4col_wrap {
  display: flex;
  justify-content: space-between;
}
.l-4col {
  position: relative;
  width: 22%;
}

@media screen and (max-width: 750px) {
  .l-4col_wrap {
    display: grid; /* グリッドレイアウトに変更 */
    grid-template-columns: 1fr 1fr; /* 2行2列に設定 */
    gap: 20px; /* カラム間の余白 */
  }
  .l-4col {
    width: 100%;
  }
}
/*==================================
footer
==================================*/
footer {
  background-color: #f2f2f2;
}
footer .l-footer_wrap {
  display: flex;
}
footer .l-footer_2col_left {
  width: 50%;
}
footer .l-footer_2col_right {
  width: 50%;
}
footer .l-footer_logo {
  margin-bottom: 30px;
}
footer .l-footer_nav_wrap {
  display: flex;
  justify-content: space-between;
}
footer .l-footer_nav_wrap li {
  margin-bottom: 1.5em;
}
footer .l-footer_nav_wrap a {
  font-size: clamp(15px, 0.95vw, 18px);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
footer .l-footer_nav_wrap a:visited {
  color: #1a1a1a;
}
footer .l-footer_nav_wrap a:hover {
  color: #d5ad58;
}
footer .l-footer_nav_second p {
  font-size: clamp(15px, 0.95vw, 18px);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  color: #1a1a1a;
  margin-bottom: 0.8em;
  line-height: 1;
}
footer .l-footer_nav_second a {
  position: relative;
  font-size: clamp(15px, 0.95vw, 18px);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  color: #1a1a1a;
  text-decoration: none;
  margin-left: 1.5em;
  display: inline-block;
}
footer .l-footer_nav_second a::before {
  content: "";
  position: absolute;
  background-image: url("../images/common/icon_star.svg");
  background-position: 0 0;
  left: -1em;
  top: 5%;
  width: 17px;
  height: 18px;
  transition: filter 0.3s ease;
}
footer .l-footer_nav_second a:hover::before {
  filter: brightness(0) saturate(100%) invert(95%) sepia(30%) saturate(4130%) hue-rotate(314deg) brightness(90%) contrast(84%);
}
footer .l-footer_sns_wrap {
  display: flex;
  align-items: center;
  margin: 0 auto 100px;
}
footer .l-footer_sns_wrap a {
  margin: 0 0.5em;
}
footer .l-footer_sns_wrap a img {
  height: 32px;
}
footer .l-footer_low_wrap {
  display: flex;
  margin-bottom: 50px;
}
footer .l-footer_low_wrap a {
  margin-right: 1em;
  transition: color 0.3s ease;
}
footer .l-footer_low_wrap a:link {
  color: #1a1a1a;
}
footer .l-footer_low_wrap a:visited {
  color: #1a1a1a;
}
footer .l-footer_low_wrap a:hover {
  color: #d5ad58;
}

@media screen and (max-width: 960px) {
  footer .l-footer_wrap {
    justify-content: space-between;
  }
  footer .l-footer_2col_left {
    width: 32%;
  }
  footer .l-footer_2col_right {
    width: 65%;
  }
}
@media screen and (max-width: 750px) {
  footer {
    padding: 20px 10px; /* SP用のフッターの余白 */
  }
  footer .l-footer_wrap {
    flex-direction: column; /* フッター内の要素を縦並びに */
    gap: 20px; /* 要素間の余白 */
  }
  footer .l-footer_2col_left {
    width: 100%; /* フッター内のカラムを100%幅に */
  }
  footer .l-footer_2col_right {
    display: none;
  }
  footer .l-footer_sns_wrap {
    justify-content: center; /* SNSアイコンを中央揃え */
  }
  footer .l-footer_sns_wrap a {
    margin: 0 10px; /* アイコン間の余白 */
  }
}
/*==================================
追従ボタン
==================================*/
#floating-buttons {
  position: fixed;
  bottom: 0px; /* 画面下からの距離 */
  right: 20px; /* 画面右からの距離 */
  width: 15.625%;
  background-color: #dedede;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影 */
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px; /* 各ボタン間の間隔 */
  transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーションの設定 */
  transform: translateY(100%);
}
#floating-buttons .social-btns {
  display: flex;
  justify-content: space-between; /* 3カラムで均等配置 */
  gap: 10px;
}
#floating-buttons .social-btns .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; /* 各アイコンボタンの高さ */
  width: 27%;
  background-color: #fff; /* アイコンボタンの背景色 */
  border-radius: 5px; /* 角丸 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 影 */
  transition: all 0.3s ease;
}
#floating-buttons .social-btns .social-btn img {
  width: 24px; /* アイコン画像の幅 */
  height: 24px; /* アイコン画像の高さ */
}
#floating-buttons .social-btns .social-btn:hover {
  transform: scale(1.1); /* ホバー時の拡大 */
}

#floating-buttons.show {
  transform: translateY(0);
}

#sp-floating-buttons {
  display: none;
}

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  #floating-buttons {
    width: 20.3125%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  #floating-buttons {
    width: 21.875%;
  }
}
@media screen and (max-width: 750px) {
  #floating-buttons {
    display: none;
  }
  #sp-floating-buttons {
    display: flex;
    transition: transform 0.3s ease, opacity 0.3s ease; /* アニメーションの設定 */
    transform: translateY(115%);
  }
  .sp-floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
  .sp-floating-button {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #fff; /* 文字色を白に設定 */
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 0.5em;
    line-height: 1.7;
  }
  .sp-floating-button.counseling-btn {
    background-color: #c23739; /* カウンセリングボタンの背景を赤に設定 */
  }
  .sp-floating-button.line-btn {
    background-color: #37a748; /* LINE予約ボタンの背景を黄色に設定 */
  }
  .sp-floating-button.tel-btn {
    color: #1a1a1a;
    background-color: #d5ad58; /* 電話ボタンの背景を黄色に設定 */
  }
  .sp-floating-button i {
    margin-right: 5px;
  }
  .sp-floating-button img {
    height: 18px;
    width: auto;
  }
  .sp-floating-button span {
    display: inline-block;
  }
  #sp-floating-buttons.show {
    transform: translateY(0);
  }
}