@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #444;
  font-size: 18px;
}
@media screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }
}

h2 {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.2rem;
  font-family: "Montserrat", sans-serif;
  color: #222222;
}
@media screen and (max-width: 650px) {
  h2 {
    font-size: 26px;
    letter-spacing: 0.1rem;
  }
}

img {
  width: 100%;
}

.inner {
  width: 70%;
  margin: 0 auto;
  min-width: 600px;
}
@media screen and (max-width: 650px) {
  .inner {
    width: 100%;
    min-width: 250px;
    padding: 0 20px;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 650px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 650px) {
  .sp-none {
    display: none;
  }
}

.l-header {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px 30px;
  position: fixed;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 650px) {
  .l-header {
    padding: 10px 20px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 650px) {
  .l-header__nav ul {
    display: none;
  }
}
.l-header__nav ul a {
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.l-header__logo {
  padding-top: 10px;
  padding-bottom: 10px;
}
.l-header__logo a {
  color: #ffffff;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 650px) {
  .l-header__logo a {
    font-size: 22px;
  }
}
/* サブメニューを非表示 */
.l-header__nav .sub-menu {
  display: none;
  position: absolute; /* 親の下に配置 */
  background: #000;
  padding: 30px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 300px;
	left:50%;
	transform:translateX(-50%);
  line-height: 2;
}
.l-header__nav .sub-menu a:hover {
  opacity: 0.6;
}

/* 親メニューにホバーで表示 */
.l-header__nav li:hover > .sub-menu {
  display: block;
}

/* 親メニューを相対配置にして基準にする */
.l-header__nav li {
  position: relative;
}

/* ハンバーガー */
.c-hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.8s;
}
.c-hamburger:hover span {
  width: 17px;
}
.c-hamburger:hover .is-short {
  width: 25px;
}
.c-hamburger .is-short {
  width: 17px;
  transition: all 0.8s;
}
.c-hamburger span {
  transition: all 0.8s;
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
}

/* メイン */
.l-main .hero {
  margin: 70px auto 0 auto;
  height: 600px;
}
@media screen and (max-width: 650px) {
  .l-main .hero {
    height: auto;
    width: 100%;
    margin-top: 60px;
  }
}
.l-main .hero img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.content {
  text-align: center;
  padding-top: 60px;
}
.content p {
  line-height: 2;
  padding-top: 40px;
}
@media screen and (max-width: 650px) {
  .content p {
    text-align: left;
  }
}

.section-information {
  padding-top: 120px;
}
@media screen and (max-width: 650px) {
  .section-information {
    padding-top: 80px;
  }
}

.info-item-wrap {
  padding-top: 40px;
}

.info-item {
  margin-bottom: 50px;
}
.info-item p{
	line-height:1.3;
}
.info-title {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-staff {
  padding-top: 120px;
}
@media screen and (max-width: 650px) {
  .section-staff {
    padding-top: 80px;
  }
}

.all-staff {
  width: 60%;
  margin: 30px auto;
}

.staff-wrap {
  padding-top: 40px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 650px) {
  .staff-wrap {
    display: block;
  }
}
.staff-wrap .staff-img {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .staff-wrap .staff-img {
    width: 200px;
    margin: 0 auto;
  }
}
.staff-wrap .staff-name {
  font-size: 28px;
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .staff-wrap .staff-name {
    font-size: 22px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.staff-wrap p {
  line-height: 2;
  padding-bottom: 30px;
}

.access {
  padding-top: 140px;
}
@media screen and (max-width: 650px) {
  .access {
    padding-top: 80px;
  }
}

.access-map {
  margin: 40px 0;
  position: relative;
  width: 100%;
  aspect-ratio: 10/3;
}
@media screen and (max-width: 650px) {
  .access-map {
    aspect-ratio: 10/6;
  }
}
.access-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.access-content p {
  padding-bottom: 20px;
  line-height: 1.4;
}
.access-content ul li {
  padding-bottom: 10px;
  line-height: 1.4;
}

.instagram {
  padding-top: 140px;
}
@media screen and (max-width: 650px) {
  .instagram {
    padding-top: 80px;
  }
}

footer {
  padding-top: 200px;
  margin-bottom: 50px;
}
@media screen and (max-width: 650px) {
  footer {
    padding-top: 100px;
  }
}

.footer__logo {
  width: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .footer__logo {
    width: 120px;
    margin-bottom: 20px;
  }
}

.footer__nav {
  display: flex;
  background-color: #000000;
  width: 100%;
  justify-content: space-between;
  padding: 15px 40px;
}
@media screen and (max-width: 650px) {
  .footer__nav {
    flex-direction: column-reverse;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__nav p {
  color: #ffffff;
}
@media screen and (max-width: 650px) {
  .footer__nav p {
    text-align: center;
    font-size: 8px;
    padding-top: 10px;
  }
}
.footer__nav ul {
  display: flex;
}
@media screen and (max-width: 650px) {
  .footer__nav ul {
    justify-content: space-between;
  }
}
.footer__nav ul li {
  padding-left: 30px;
}
@media screen and (max-width: 650px) {
  .footer__nav ul li {
    padding-left: 0;
  }
}
.footer__nav ul li a {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.banner {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 20;
  bottom: 0;
  height: 50px;
}

.banner-item {
  width: 50%;
  text-align: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #9C7A00;
  padding-top: 15px;
}

/* サイドバー */
/* サイドバーのバツボタン */
.p-sidebar__close {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}

.p-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  color: #ffffff;
  background: #000000;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  line-height: 1.6;
  font-size: 16px;
  padding-top: 40px;
}
@media screen and (max-width: 650px) {
  .p-sidebar {
    padding-top: 0;
  }
}
.p-sidebar.is-active {
  right: 0;
}
.p-sidebar__inner {
  padding: 20px;
}
.p-sidebar h2 {
  margin-top: 30px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #ffffff;
}
.p-sidebar ul li {
  padding-bottom: 10px;
  padding-top: 10px;
}
@media screen and (max-width: 650px) {
  .p-sidebar ul li {
    border-bottom: 1px solid #ffffff;
  }
}
.p-sidebar a {
  text-decoration: none;
  color: #ffffff;
}
.p-sidebar p {
  padding-bottom: 10px;
}

.sidebar-map {
  width: 100%;
  position: relative;
  aspect-ratio: 10/6;
}
.sidebar-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-sidebar__menu {
  padding-top: 60px;
}
.p-sidebar__menu li {
  padding-bottom: 30px;
}
.p-sidebar__menu li a {
  font-family: "Montserrat", sans-serif;
}

/* オーバーレイ */
.c-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}
.c-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.l-staff {
  margin-top: 20px;
}
.l-staff .section-staff h2 {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .l-staff .section-staff h2 {
    padding-bottom: 0;
  }
}

.l-salon {
  padding-top: 140px;
}
@media screen and (max-width: 650px) {
  .l-salon {
    padding-top: 100px;
  }
}
.l-salon .salon h2 {
  text-align: center;
}

.salon-subtext {
  text-align: center;
  line-height: 1.7;
  padding-top: 40px;
  padding-bottom: 40px;
}

.salon-img-wrap {
  width: 70%;
  margin: 0 auto;
  padding: 60px 80px;
}
@media screen and (max-width: 650px) {
  .salon-img-wrap {
    padding: 30px 0;
    width: 80%;
  }
}

.salon-info-imgs {
  display: flex;
  gap: 40px;
  padding: 0 100px;
}
@media screen and (max-width: 650px) {
  .salon-info-imgs {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    justify-content: center;
  }
}

@media screen and (max-width: 650px) {
  .salon-info-img {
    width: calc(50% - 10px);
  }
}

.salon-info-subtitle {
  font-size: 20px;
  font-weight: 700;
  padding-top: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 650px) {
  .salon-info-subtitle {
    font-size: 17px;
  }
}
.salon-link a {
  display: inline-block;
  background-color: rgb(156, 122, 0);
  color: #fff;
  text-decoration: none;
  padding: 	12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
	margin-top:20px;
}

.salon-link a:hover {
  background-color: rgb(130, 100, 0); /* 少し濃い色に */
}
.salon-info-list {
  padding: 30px 0;
}
.salon-info-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.salon-info-list li::before {
  content: "✔"; /* おしゃれなチェックマーク */
  position: absolute;
  left: 0;
  top: 0;
  color: #C5A948; /* ゴールド系の色に */
  font-size: 1.2em;
  line-height: 1;
}

.salon-row {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 650px) {
  .salon-row {
    display: block;
  }
}
.salon-row ul {
  width: calc(100% - 170px);
}
@media screen and (max-width: 650px) {
  .salon-row ul {
    width: 100%;
  }
}
.salon-row ul li {
  padding-bottom: 10px;
  line-height: 1.5;
}

.salon-label {
  width: 170px;
}
@media screen and (max-width: 650px) {
  .salon-label {
    padding-bottom: 5px;
  }
}

.salon-text {
  width: calc(100% - 170px);
  line-height: 1.4;
}
@media screen and (max-width: 650px) {
  .salon-text {
    width: 100%;
  }
}

.l-blog {
  padding-top: 140px;
}
@media screen and (max-width: 650px) {
  .l-blog {
    padding-top: 100px;
  }
}
.l-blog .blog h2 {
  text-align: center;
}

.news {
  padding: 100px 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .news {
    padding: 60px 0;
    width: 100%;
  }
}

.news-img {
  width: 80%;
  margin: 0 auto;
}
.news-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.news-title {
  font-size: 30px;
  padding: 20px 0;
  font-weight: 700;
}
@media screen and (max-width: 650px) {
  .news-title {
    font-size: 24px;
    padding: 15px 0;
  }
}

.news-text {
  padding-top: 20px;
}

.more-btn {
  margin-top: 30px;
}
@media screen and (max-width: 650px) {
  .more-btn {
    margin-top: 20px;
  }
}
.more-btn a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #222;
  color: #fff;
  transition: all 0.8s;
}
.more-btn a:hover {
  border: 1px solid #222;
  background-color: #fff;
  color: #222;
}

.blog-archives .news-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 表示したい行数 */
  -webkit-box-orient: vertical;
}

.blog-single .entry-content {
  all: revert; /* 投稿内の要素をブラウザ標準のスタイルに戻す */
}
.blog-single .entry-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.single-news h2 {
  text-align: left !important;
  margin-top: 20px;
  margin-bottom: 30px;
}
.single-news p {
  line-height: 1.7;
}

.l-pagination {
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
}
.l-pagination a {
  color: #000000;
  padding-left: 10px;
  padding-right: 10px;
}
.l-pagination a:hover {
  opacity: 0.6;
}

.l-menu {
  padding-top: 140px;
}
@media screen and (max-width: 650px) {
  .l-menu {
    padding-top: 100px;
  }
}
.l-menu .menu h1 {
  text-align: center;
  padding-bottom: 100px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.2rem;
  font-family: "Montserrat", sans-serif;
  color: #222222;
}
@media screen and (max-width: 650px) {
  .l-menu .menu h1 {
    font-size: 26px;
    letter-spacing: 0.1rem;
    padding-bottom: 50px;
  }
}

.menu__course-wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .menu__course-wrap {
    flex-direction: column-reverse;
  }
}

.menu__course-left {
  width: 70%;
}
@media screen and (max-width: 650px) {
  .menu__course-left {
    width: 100%;
  }
}

.menu__course-right {
  width: 30%;
}
@media screen and (max-width: 650px) {
  .menu__course-right {
    width: 100%;
  }
}
.menu__course-right img {
  border-radius: 1em;
}

.menu__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.menu__course {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}
.menu__image {
  flex: 1 1 300px;
}
.menu__image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.menu__content {
  flex: 2 1 500px;
  text-align: left;
}
.menu__course-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  margin-top: 60px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 650px) {
  .menu__course-title {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}
.menu__course-catchcopy {
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .menu__course-catchcopy {
    font-size: 18px;
  }
}
.menu__course-text {
  line-height: 1.7;
}
.menu__plan {
  margin-bottom: 2rem;
}
.menu__plan-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.menu__plan-title span {
  font-size: 1rem;
}
.menu__detail {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.4;
}
.menu__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.menu__table th, .menu__table td {
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.menu__table th {
  font-weight: 600;
}
.menu__table th:first-child {
  width: 35%;
}
.menu__table th:nth-child(2) {
  width: 35%;
}
.menu__table th:nth-child(3) {
  width: 30%;
  text-align: right;
}
.menu__table td:nth-child(3) {
  text-align: right;
}
.menu__recommend {
  background: #fff9e6;
  font-weight: bold;
}
.menu__recommend .badge {
  display: inline-block;
  background: #9C7A00;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 650px) {
  .menu__recommend .badge {
    margin-left: 0;
  }
}
.menu__info {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border-left: 5px solid #e67e22;
  background: #fff9f2;
  border-radius: 0.5rem;
  text-align: left;
}
.menu__info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #e67e22;
}
.menu__info p {
  color: #444;
  line-height: 1.6;
}

.menu__extras {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
}

.menu__extra {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.menu__extra.horizontal {
  flex-direction: row;
}
.menu__extra-image {
  flex: 1 1 200px;
}
.menu__extra-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
}
.menu__extra-text {
  flex: 2 1 400px;
  padding: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 650px) {
  .menu__extra-text {
    flex: 2 1 auto;
  }
}
.menu__extra-text .menu__extra-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c94f4f;
  margin-bottom: 1rem;
}
@media screen and (max-width: 650px) {
  .menu__extra-text .menu__extra-title {
    font-size: 1.4rem;
  }
}
.menu__extra-text .menu__extra-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.menu__extra-text .menu__extra-price span {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}
.menu__extra-text .menu__extra-price strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.6rem;
  color: #e63946; /* 強調カラー */
}
.menu__extra-text .menu__extra-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 650px) {
  .menu__extra.horizontal {
    flex-direction: column;
  }
  .menu__extra.horizontal-image {
    width: 100%;
    height: auto;
  }
  .menu__extra.horizontal-text {
    padding: 1rem 0;
  }
}
.menu__course-list {
  padding: 30px 0;
  text-align: left;
}
.menu__course-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.menu__course-list li::before {
  content: "✔"; /* おしゃれなチェックマーク */
  position: absolute;
  left: 0;
  top: 0;
  color: #C5A948; /* ゴールド系の色に */
  font-size: 1.2em;
  line-height: 1;
}/*# sourceMappingURL=main.css.map */