@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

/* ********************************************
// --- リセット ---
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

a img {
  border: none;
}

strong {
  font-weight: normal;
}

i {
  font-style: normal;
}

table,
td,
th {
  border-collapse: collapse;
}

table {
  width: 100%;
}

td,
th {
  padding: 3px;
  height: 25px;
}

th {
  text-align: left;
}

.even {
  /* background: #fbf8f0; */
}

.odd {
  /* background: #fefcf9; */
}

/*リセットCSSここまで ***************************************** */


/* スクロールイン */
.fade-in-element {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ヘッダー全体のスタイル */
.header {
  position: fixed;
  /* ヘッダーを固定 */
  top: 0;
  left: 0;
  width: 100%;
  /* ヘッダーの幅を画面全体に */
  /* background-color: #ffffff63; */
  /* 背景色 */
  z-index: 1000;
  /* 他の要素より前に表示 */
  display: flex;
  /* フレックスボックスを使用 */
  justify-content: space-between;
  /* 左右に配置 */
  align-items: center;
  /* 縦方向の中央揃え */
  padding: 10px 20px;
  /* 上下左右の余白 */
  height: 100px;
}

/* ロゴのスタイル */
.header_logo {
  width: 100px;
  /* ロゴの高さ */
}

/* ナビゲーションメニューのスタイル */
.header_navi ul {
  display: flex;
  /* 横並びにする */
  margin: 0;
  /* 外側の余白をリセット */
  padding: 0;
  /* 内側の余白をリセット */
  list-style: none;
  /* リストマーカーを削除 */
}

.header_navi ul li {
  margin-right: 20px;
  /* メニュー間の余白 */
}

.header_navi ul li:last-child {
  margin-right: 0;
  /* 最後のメニューに余白を追加しない */
}

.header_navi ul li a {
  text-decoration: none;
  /* アンダーラインを削除 */
  color: #333;
  /* 文字色 */
  font-weight: bold;
  /* 太字 */
  font-size: 16px;
  /* フォントサイズ */
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right;
  /* 下線の初期位置 */
  background-size: 0 2px;
  /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
  padding: 0 0 5px;
}

.header_navi ul li a:hover {
  background-position: bottom left;
  /* 下線のホバー時位置 */
  background-size: 100% 2px;
  /* 下線の横幅を100%にする */
}

/* ハンバーガーメニュー（非表示） */
.hamburger {
  display: none;
}

.header__inner {
  display: none;
}

.none {
  display: none;
}


/* ヘッダーの下にコンテンツが隠れないようにする */
body {
  padding-top: 100px;
  /* ヘッダーの高さ分の余白を追加 */
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 上に戻るボタンのスタイル */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #c4c4c400;
  color: #2F4858;
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 1000;
  writing-mode: vertical-lr;
  letter-spacing: 0.3rem;
}

span.arrow {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 40px;
  margin-left: 29px;
  border-radius: 9999px;
  background-color: #2F4858;
  right: 10px;
  bottom: 20px;
}

span.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 1px;
  height: 14px;
  border-radius: 9999px;
  background-color: #2F4858;
  transform: rotate(45deg);
  transform-origin: 50% 2px;
}

.back-to-top span {
  /* text-orientation: upright; */
}

.back-to-top:hover {
  opacity: .8;
}

/* TOPカルーセル */
.content.gray {
  height: 500px;
  background-color: #eee;
}

.carousel {
  position: relative;
  width: 80%;
  /* max-width: 600px; */
  overflow: hidden;
  margin: 0 auto 100px;
  width: 100%;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(0 0 0 / 0%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 35px;
  background-color: #7272724d;
  /* border-radius: 50px; */
  /* height: 50px; */
  /* width: 50px; */
  padding: 10px;
}

.carousel-button.prev {
  left: 10px;
  z-index: 9;
}

.carousel-button.next {
  right: 10px;
}

/* TOP共通余白 */
.top_padding {
  padding: 50px 20px;
}

/* TOP共通タイトル */
.top_ttl {
  padding: 0 0 50px;
  font-size: 2em;
  text-align: left;
  margin: 0 auto 0 3.5em;
  font-weight: 100;
  color: #767676;
}

.flex {
  display: flex;
  justify-content: center;
  gap: 50px;
}

/* 共通タイトルのフォント */
.ttl-font {
  font-family: Libre Baskerville, serif;
}


/* TOP特徴 */
.top_feature {
  text-align: center;
  /* background-color: #fafafa; */
}

.topfeature_inner {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.top_feature h2 {}

.top_feature_item {
  width: 30%;
}

.top_feature img {
  height: 90px;
  margin: 30px auto 0;
}

.top_feature_ttl {
  font-weight: 100;
  font-size: 20px;
}

.top_feature_text {
  font-size: 13px;
  padding: 20px 0;
}

/* TOPメニュー */
.top_menu {}

.top_menu_inner {}

.top_menu_ttl {}

.top_menu img {
  width: 300px;
}

.top_menu_text {
  width: 300px;
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}

/* 共通CTA */
.groval_cta {
  display: block;
  margin: 20PX auto;
  text-align: center;
  width: 80%;
  font-size: 17px;
  text-decoration: none;
  padding: 15px 0;
  color: #2F4858;
  position: relative;
}

.groval_cta span {
  display: inline-block;
  border-bottom: solid 2px #2F4858;
  border-right: solid 2px #2F4858;
  width: 10px;
  height: 10px;
  background: #ffffff00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: rotate(45deg);
}

/* フッター */
footer {
  background: #ededed;
}

.footer_inner {
  padding: 100px 0;
  color: #333;
}

.footer_inner h4 {
  text-align: center;
  padding: 0 0 3em;
  font-size: 2rem;
  color: #767676;
  margin: 0;
}

.ft_salon_info ul {}

.ft_salon_info li {
  font-size: 0.8rem;
  padding: 3px 0;
  letter-spacing: 1px;
}


/* TOP以外共通外枠 */
.main-wrap {
  padding: 3rem 5%;
}



/* ===============================================
 menu ========================================== */

/* 共通KV */
.main-visual {
  height: 400px;
}

/* TOP以外共通インナー */
.main-visual-inner {
  background-image: url(https://r-works.site/wp-content/uploads/2023/09/25294974_s.jpg);
  height: 400px;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* 共通タイトル */
.groval-ttl {
  font-size: 2rem;
  padding: 0 0 30px 0px;
  text-align: center;
  margin: 0;
}

/* メニューアイテム */
.menu_item {
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

/* メニュータイトル */
.menu_ttl {
  padding: 0 0 20px 0px;
  font-size: 1.4rem;
  ;
}

/* 各種メニュー詳細 */
.menu-item_group {
  font-size: 14px;
  /* メニューのフォントサイズ */
}

.menu-item_group tr {}

.menu-item_group td {
  width: 100px;
  background: #fff;
  padding: 0 0 0 20px;
}

.menu-item_group th {
  position: relative;
}

.menu-item_group th::after {
  background: linear-gradient(to left, #868686 30%, #FFFFFF 30%, #FFFFFF 100%) left bottom;
  background-repeat: repeat-x;
  background-size: 5px 1px;
  width: 100%;
  height: 1px;
  z-index: -1;
  opacity: 0.5;
  top: 14px;
  content: "";
  position: absolute;
  margin: 0 0 0 10px;
}


/* ===============================================
 gallery ========================================== */

.common_btn {
  background: #2F4858;
  color: #fff;
  text-decoration: none;
  width: 140px;
  text-align: center;
  padding: 10px 0;
}

.galleryttl {
  padding: 20px 0 0 50px;
  position: relative;
  font-size: 1.3em;
}

.galleryttl::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: #ddd;
  left: 0;
  bottom: 13px;

}


.flex_wrap {
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
  justify-content: flex-start;
}

.flex_wrap img {
  width: 30%;
}


/* ===============================================
 about ========================================== */

.main {
  width: 900px;
}