@charset "UTF-8";
/*
	Theme Name: SALOON
	Version: 1.0.0
	Author: ㈱ROVER
*/
/* 『style.scss』：全ページ共通クラス用Scssファイル
===================================================
**「ファイル概要」
	・全体のCSS設計や、全ページに共通して登場するクラスへの割り当てを行います。
		※ヘッダー、フッター、下層ページの冒頭など
**
====================================================== */
/* クラス名について
===================================================
**
	・クラス名命名規則は基本的にBEM（Block Element Modifier）を採用しています。
	・クラス名は接頭語をわかりやすいそのセクションの意味を表現する単語とし、以降はそのセクションの構造的意味合いの単語とします。
		※TOPページに登場するクラス名のみ、すべてのクラス名の冒頭に"front"を付与しています。例えばトップページと下層ページで同じ系統の記事一覧を表示する場合でも、レイアウトが異なる場合があるからです。
	・シングルクラス方式を採用しています。1つのタグに対して付与するクラス名は原則1つとしていますが、状況に応じて複数付与する場合もあります。
		※例：同様の並びの兄弟要素の末尾要素のみ、間隔を広げるために末尾の要素に2つ目のクラスを付与するなど。
**
====================================================== */
/* 『ブレイクポイント』
===================================================
	**
	ブレイクポイントは以下の通り３段階とする。
	・パソコン：1040px～
	・タブレット：769px～1039px
	・スマホ：0～768px
	※ブレイクポイント記述方法は、
		@media screen and (max-width: 1039px) {}
		@media screen and (max-width: 768px) {}
	とする。
	**
==================================================== */
.bp-sp_i, .bp-sp_ib, .bp-sp_b {
  display: none;
}

@media screen and (max-width: 767px) {
  .bp-pc {
    display: none;
  }
  .bp-sp_i {
    display: inline;
  }
  .bp-sp_ib {
    display: inline-block;
  }
  .bp-sp_b {
    display: block;
  }
}
/* 『基本要素のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	”ブラウザ毎のデフォルト設定をリセット"。
	余白関係：0にする
	リストスタイルの余白無し、接頭マーク無し
	画像ファイル：親要素の幅を超えない幅
	画像の下の空白を埋めるようにする
	**
==================================================== */
/* マージン初期化&ボックスサイジング */
body, h1, h2, h3, h4, h5, h6,
p, div, figure, ul, ol, li,
dl, dt, dd,
article, a, span, nav, section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストスタイルのリセット */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* 画像ファイル：幅を大きく */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンクテキスト */
a {
  text-decoration: none;
  color: inherit;
}

a[href*="tel:"] {
  pointer-events: auto;
}
/* 『フォーム部品のCSSリセット』
===================================================
	**
	『リセット設計趣旨』
	ブラウザ毎のデフォルト設定をリセット。
	・文字色とフォント：body要素を引き継ぐようにする
	・余白関係：0にする
	・枠線：無しにする
	・背景色：無しにする
	**
==================================================== */
/* 初期形状のリセット */
input:not([type=radio], [type=submit]), select, button, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none;
}

/* マウスオンでカーソル表示 */
input[type=submit],
input[type=button],
button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 0;
  background-color: transparent;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

/* 連絡先タグの文字スタイル */
address {
  font-style: normal;
}

/* テーブルタグのスタイル */
table {
  border-collapse: collapse;
  width: 100%;
}

/* フィールドセットタグのスタイル */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

/* ===================================================
	※※本サイトの採用フォントについて※※
	デフォルトはWEBフォントGoogleFontsのゴシック体の「NotoSansJ」

	《GoogleFonts》
	NotoSansJP(light:300,regular:400,medium:500,bold:700)
==================================================== */
/* ===================================================
	基本要素のCSS設定
==================================================== */
:root {
  --body-default-text-color: #333;
}

html {
  font-size: 62.5%;
}

body {
  font: 300 1.5rem/1.6 "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", "Roboto", sans-serif;
  color: #333;
  opacity: 0;
}
body.loaded {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  body.fixed {
    position: fixed;
    top: 0;
    width: 100%;
  }
}
/* 『フォーム部品CSS』
==================================================== */
/* テキスト */
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password],
textarea {
  padding: 0.35em 0.5em;
  width: 100%;
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: 1.5;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #999;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  background-color: #fff;
}

input[type=text].has-text,
input[type=tel].has-text,
input[type=email].has-text,
input[type=number].has-text,
textarea.has-text {
  background-color: #fff;
}

textarea {
  resize: vertical;
}

/* 送信ボタン */
input[type=submit],
button {
  display: inline-block;
  padding: 0 2em 1.4em;
  position: relative;
  border-bottom: 1px solid #000;
  transition: opacity 300ms;
}

input[type=submit]:hover,
button:hover {
  opacity: 0.5;
}

input[type=checkbox] {
  margin: 0;
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  inline-size: 2.5833333333vw;
  block-size: 2.5833333333vw;
  position: relative;
}

input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5em;
  height: 1.2em;
  border-right: 0.2em solid #000;
  border-bottom: 0.2em solid #000;
  transform: translate(-50%, calc(-50% - 3px)) rotate(45deg);
  opacity: 0;
}

input[type=checkbox]:checked {
  background-color: #fff;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=number],
  input[type=password],
  textarea {
    font-size: max(1.6rem, 3.8647342995vw);
  }
  input[type=checkbox] {
    inline-size: 7.4879227053vw;
    block-size: 7.4879227053vw;
  }
  input[type=submit]:hover,
  button:hover {
    opacity: 1;
  }
}
/* 選択不可状態の付与クラス
	※非公開ページがある場合、メニューに当クラスを付与する
------------------------------------------------------ */
.noevents {
  opacity: 0.5;
  pointer-events: none;
}

/* ===================================================
	ページ背景
====================================================== */
/* ===================================================
	コンテナー
====================================================== */
.container {
  margin: 0 auto;
  max-width: 1120px;
}

@media screen and (max-width: 1140px) {
  .container {
    max-width: 760px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 28px;
    max-width: none;
  }
}
/* ===================================================
	ヘッダー header
====================================================== */
.g-header {
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.g-header.icon-only {
  width: auto;
}
.g-header-inner {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-header-logo-wrapper {
  transition: opacity 300ms;
}
.g-header-logo-wrapper img {
  width: 100%;
}
.g-header-logo-wrapper:hover {
  opacity: 0.7;
}
.g-header-hamburger-wrapper {
  position: relative;
  z-index: 102;
}
.g-header-hamburger {
  border-radius: 50%;
  border: 1px solid #47c0c3;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 500ms, border-color 300ms;
}
.g-header-hamburger.close {
  border-color: #fff;
  transition: transform 500ms, border-color 300ms 200ms;
}
.g-header-hamburger:hover {
  transform: scale(1.2);
}
.g-header-hamburger .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 50%;
  height: 1px;
  background-color: #47c0c3;
  transition: opacity 500ms, transform 500ms, background-color 300ms, top 500ms, bottom 500ms;
  transform-origin: center center;
}
.g-header-hamburger.close .bar {
  background-color: #fff;
}
.g-header-hamburger .bar:first-child {
  top: 30%;
}
.g-header-hamburger .bar:nth-child(2) {
  transition: opacity 500ms;
}
.g-header-hamburger .bar:last-child {
  top: auto;
  bottom: 30%;
}
.g-header-hamburger.close .bar:first-child {
  top: 50%;
  transform: translate(-50%) rotate(135deg);
}
.g-header-hamburger.close .bar:nth-child(2) {
  opacity: 0;
}
.g-header-hamburger.close .bar:last-child {
  bottom: 50%;
  transform: translate(-50%) rotate(-135deg);
}
.g-header-menu-navigation-bg {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: -1;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.g-header-menu-navigation-wrap {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1;
  background-color: #47c0c3;
  height: 100%;
  color: #fff;
  transition: right 500ms;
}
.g-header-menu-navigation-wrap.opened {
  right: 0;
}
.g-header-inner nav {
  padding: 100px 40px 40px;
  width: 400px;
}
.g-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.g-header-menu-list .menu-item a {
  display: inline-block;
  padding-left: 1em;
  position: relative;
  transition: padding-left 100ms;
}
.g-header-menu-list .menu-item a:hover {
  padding-left: 2.4em;
  transition: padding-left 300ms;
}
.g-header-menu-list .menu-item a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  transform: translateY(-50%);
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  transition: width 100ms, height 100ms;
}
.g-header-menu-list .menu-item a:hover::before {
  width: 2em;
  height: 1px;
  transition: width 300ms, height 200ms;
}
.g-header-menu-list .menu-item a:hover {
  opacity: 0.7;
}
.g-header-menu-list .sub-menu {
  margin-top: 0.5em;
}
.g-header-menu-list .sub-menu .menu-item {
  padding-left: 2em;
}
.g-header-recruit-menu-button-list {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.g-header-recruit-menu-button {
  border-radius: 9999px;
  transition: opacity 300ms;
  height: 60px !important;
  max-height: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  justify-content: center;
  min-width: 200px;
  box-sizing: border-box;
}
.g-header-recruit-menu-button.tel {
  padding: 0 15px;
  gap: 8px;
  white-space: nowrap;
  overflow: visible;
}
.g-header-recruit-menu-button.tel .icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}
.g-header-recruit-menu-button.tel .text {
  font-weight: 900;
  font-size: 1.6rem;
}
.g-header-recruit-menu-button.line {
  padding: 0 15px;
  gap: 8px;
  white-space: nowrap;
  overflow: visible;
  background-color: #ffffff;
  border: 3px solid #00c300;
}
.g-header-recruit-menu-button.line .icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}
.g-header-recruit-menu-button.line .text {
  font-weight: 900;
  font-size: 1.6rem;
  color: #00c300;
}
.g-header-recruit-menu-button img {
  height: 60px !important;
  object-fit: contain;
  max-height: 60px;
  max-width: 100%;
}
.g-header-recruit-menu-button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1140px) {
  .g-header-recruit-menu-button-list {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .g-header-inner {
    padding: 15px;
  }
  .g-header-logo-wrapper {
    width: 35px;
  }
  .g-header-menu-navigation-bg.opened {
    right: 0;
  }
  .g-header-hamburger {
    width: 35px;
    height: 35px;
    cursor: initial;
  }
  .g-header-hamburger:hover {
    transform: none;
  }
  .g-header-inner nav {
    padding: 60px 20px 20px;
    width: calc(100vw - 56px);
  }
  .g-header-menu-list {
    gap: 1.5em;
  }
  .g-header-recruit-menu-wrapper {
    display: block;
  }
  .g-header-recruit-menu-button-list {
    gap: 5px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .g-header-recruit-menu-button {
    height: 45px !important;
    max-height: 45px;
    min-height: 45px;
    justify-content: center;
    width: 100%;
    min-width: 200px;
    box-sizing: border-box;
  }
  .g-header-recruit-menu-button.tel {
    padding: 0 8px;
    white-space: nowrap;
    overflow: visible;
  }
  .g-header-recruit-menu-button.tel .text {
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .g-header-recruit-menu-button.tel .icon {
    width: 16px;
  }
  .g-header-recruit-menu-button img {
    height: 45px !important;
    object-fit: contain;
    max-height: 45px;
    max-width: 100%;
  }
}
/* ===================================================
	フッター footer
====================================================== */
.g-footer {
  color: #fff;
}
.g-footer-main-block {
  padding: 2em 40px;
  background-color: #5ad6d7;
}
.g-footer-sitename {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
.g-footer-sitename a {
  transition: opacity 300ms;
}
.g-footer-sitename a:hover {
  opacity: 0.7;
}
.g-footer-main-block nav {
  margin-top: 2em;
}
.g-footer-menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2em 40px 0;
  border-top: 1px solid #fff;
  font-weight: 400;
  font-size: 1.3rem;
  gap: 1em 3em;
}
.g-footer-menu-list .menu-item a {
  transition: opacity 300ms;
}
.g-footer-menu-list .menu-item a::before {
  content: "・";
}
.g-footer-menu-list .menu-item a:hover {
  opacity: 0.7;
}
.g-footer-menu-list .sub-menu {
  margin-top: 0.5em;
}
.g-footer-menu-list .sub-menu .menu-item {
  padding-left: 1em;
}
.g-footer-menu-list .sub-menu .menu-item a::before {
  content: "ー";
  font-weight: 300;
}
.g-footer-copyrights-block {
  padding: 2em 0;
  background-color: #47c0c3;
}
.g-footer-copyrights {
  text-align: center;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .g-footer-copyrights-block {
    padding: 2em 40px min(120px, 450vw + 40px);
  }
}
/* ===================================================
	下層ページトップ
====================================================== */
.subpage-top-section {
  display:none;
  height: 500px;
  position: relative;
}
.subpage-top-image {
  height: 100%;
}
.subpage-top-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.subpage-top-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.subpage-top-text-wrap {
  width: 100%;
  text-align: center;
  color: #fff;
}
.subpage-top-title {
  font-weight: inherit;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .subpage-top-section {
    height: 280px;
  }
  .subpage-top-title {
    font-size: 2rem;
  }
}
/* ===================================================
	記事詳細（共通）
====================================================== */
.post-content > *:not(hr),
.post-content p {
 //   margin-bottom: 2em;
}
.post-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post-content iframe {
  width: 100%;
}

/* ===================================================
	各セクション共通タイトル
====================================================== */
.section-title {
  font: 400 6.4rem/1.2 "Libre Bodoni", serif;
  color: #74bfba;
  text-align: center;
}
.section-title.line-right, .section-title:has(.section-title-line) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
.section-title.line-right::after {
  content: "";
  position: relative;
  top: -0.1em;
  height: 1px;
  width: 510px;
  display: block;
  background-image: linear-gradient(90deg, #333 0%, #333 25.2%, rgba(51, 51, 51, 0.3) 25.2%, rgba(51, 51, 51, 0.3) 100%);
}
.section-title-line {
  position: relative;
  top: -0.1em;
  height: 1px;
  flex-grow: 1;
  background-color: var(--wp-custom-title-line-bg-color);
}
.section-title-line .lane {
  width: 25.2%;
  height: 1px;
  background-color: var(--wp-custom-title-line-main-color);
  display: block;
}
.section-subtitle {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 3.2rem;
  }
  .section-subtitle {
    font-size: 1.4rem;
  }
  .section-title.line-right {
    gap: 14px;
  }
  .section-title.line-right::after {
    width: auto;
    flex-shrink: 1;
    flex-grow: 1;
    background-image: linear-gradient(90deg, #333 0%, #333 30.86%, rgba(51, 51, 51, 0.3) 30.86%, rgba(51, 51, 51, 0.3) 100%);
  }
}
/* ===================================================
	フローティングバナー（LINE）
====================================================== */
.floating-banner {
  border-radius: min(40px, 2.7775vw) 0 0 min(40px, 2.7775vw);
  overflow: hidden;
  display: inline-block;
  transition: opacity 300ms;
  width: min(80px, 5.555vw);
}
.floating-banner-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translateY(-50%);
  line-height: 1;
}
.floating-banner img {
  width: 100%;
  display: inline-block;
}
.floating-banner:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .floating-banner {
    border-radius: 0;
    width: min(500px, 100%);
    transition: none;
  }
  .floating-banner-wrapper {
    top: auto;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    text-align: center;
  }
  .floating-banner:hover {
    opacity: 1;
  }
}
/* ===================================================
	ページネーション ※各アーカイブページにて、paginate_links()へのCSS当て
====================================================== */
.pagination-fields {
  margin: 80px 0 0;
  text-align: center;
}
.pagination-numbers {
  display: flex;
  gap: 5px;
  justify-content: center;
  font-size: 1.4rem;
}
.pagination-numbers .page-numbers {
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 300ms;
}
.pagination-numbers .page-numbers.current, .pagination-numbers .page-numbers[href]:hover {
  background-color: #ff7f00;
}

@media screen and (max-width: 767px) {
  .pagination-fields {
    margin: 40px 0 0;
  }
  .pagination-numbers .page-numbers {
    transition: none;
  }
  .pagination-numbers .page-numbers[href]:hover {
    background-color: #000;
  }
}
/* ===================================================
	リンクボタン
====================================================== */
.link-button {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 200px;
  width: 100%;
  height: 50px;
  transition: background-color 200ms;
}
.link-button::before, .link-button::after {
  display: block;
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
.link-button.next::after {
  content: "";
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.link-button.prev::before {
  content: "";
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
}
.link-button:hover {
  background-color: #ff7f00;
}

@media screen and (max-width: 767px) {
  .link-button {
    max-width: 160px;
    height: 40px;
    transition: none;
  }
  .link-button:hover {
    background-color: #000;
  }
}
/* ===================================================
    メインビジュアル
====================================================== */
.mv {
  padding-bottom: 100px;
}
.mv-inner {
  padding: 0 100px;
}
.mv-image-wrapper {
  height: 100%;
  min-height: 500px;
  margin-left: auto;
  width: 69.8245614035%;
  margin-right: -100px;
  aspect-ratio: 896/500;
  position: relative;
}
.mv-image-wrapper img, .mv-image-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv-text-wrapper {
  margin-top: 2em;
}
.mv-image-sp {
  display: none;
}
.mv-title-block {
  margin-top: -3em;
}
.mv-message {
  font-family: "Libre Bodoni", serif;
  font-size: 1.8rem;
  line-height: 1.8;
}
.mv-title {
  margin-top: 0.5em;
  font: 600 4rem/1.8 "Noto Serif JP", serif;
  color: transparent;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mv-title .text {
  position: relative;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: recruitFvMessageAnimation 800ms calc(var(--show-delay) * 200ms) forwards;
}

@media screen and (max-width: 1140px) {
  .mv-inner {
    padding: 0 40px;
  }
  .mv-image-wrapper {
    margin-left: 244px;
    width: calc(100% - 204px);
    min-height: 380px;
  }
  .mv-title-block {
    margin-top: -1.6em;
  }
  .mv-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding-bottom: 40px;
  }
  .mv-inner {
    padding: 0 28px;
  }
  .mv-image-wrapper {
    margin: 0;
    width: 100%;
    min-height: auto;
    aspect-ratio: initial;
  }
  .mv-image-pc {
    display: none;
  }
  .mv-image-sp {
    display: block;
  }
  .mv-main-block {
    margin: 0 -28px;
  }
  .mv-title-block {
    margin-top: 25px;
  }
  .mv-message {
    font-size: 1rem;
  }
  .mv-title {
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .mv _::-webkit-full-page-media, .mv _:future, :root .mv-title {
    line-height: 1;
  }
}
/* ===================================================
    トップページ：ご予約はこちら RESERVATION
====================================================== */
.front-reservation-section {
  padding: 100px 0;
  overflow: hidden;
}
.front-reservation-content {
  margin: -5em -78px 0;
}
.front-reservation-block {
  padding: 130px 80px 80px;
  background-color: var(--wp-block-color);
}
.front-reservation-block-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.front-reservation-block-card-list:has(.front-reservation-block-card:nth-child(2))::before {
  content: "";
  width: 0.1px;
  margin-right: -30px;
}
.front-reservation-block-card {
  padding: 5px;
  width: 352px;
  aspect-ratio: 352/118;
  background: #fff center left/236px 100% no-repeat;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.1);
}
.front-reservation-block-card[href] {
  transition: opacity 300ms;
}
.front-reservation-block-card[href]:hover {
  opacity: 0.7;
}
.front-reservation-block-card-inner {
  border: 2px solid var(--wp-custom-card-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.front-reservation-block-card-title {
  width: 32%;
  text-align: center;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--wp-custom-card-color);
}

@media screen and (max-width: 1140px) {
  .front-reservation-content {
    margin: -5em 0 0;
  }
  .front-reservation-block {
    padding: 100px 0 40px;
  }
  .front-reservation-block-card-list {
    gap: 24px;
  }
  .front-reservation-block-card {
    padding: 4px;
    width: 320px;
    background: #fff center left/236px 100% no-repeat;
  }
  .front-reservation-block-card-title {
    width: 25%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .front-reservation-section {
    padding: 40px 0 50px;
  }
  .front-reservation-content {
    margin: -3.2em 0 0;
  }
  .front-reservation-block {
    padding: 80px 40px 50px;
  }
  .front-reservation-block-card-list {
    flex-direction: column;
    flex-wrap: initial;
    gap: 20px;
  }
  .front-reservation-block-card-list:has(.front-reservation-block-card:nth-child(2))::before {
    content: none;
  }
  .front-reservation-block-card {
    width: auto;
    background-size: 66.96% 100%;
  }
  .front-reservation-block-card:hover {
    opacity: 1;
  }
  .front-reservation-block-card-title {
    width: 32.5%;
    font-size: 3.62vw;
  }
}
/* ===================================================
    トップページ：NEW CATALOG
====================================================== */
.front-catalog-section {
  padding: 100px 0;
  overflow: hidden;
}
.front-catalog-content {
  margin-top: 80px;
}
.front-catalog-image-slide-item {
  width: 300px;
}
.front-catalog-image-slide-item-inner {
  aspect-ratio: 3/4;
}
.front-catalog-image-slide-item-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-catalog-image-slide-caption {
  margin-top: 0.5em;
  font-size: 1.5rem;
  color: rgba(148, 105, 105, 0.3);
  text-align: right;
}

@media screen and (max-width: 767px) {
  .front-catalog-section {
    padding: 50px 0;
  }
  .front-catalog-content {
    margin-top: 40px;
  }
  .front-catalog-image-slide-item {
    width: 54.1062801932vw;
  }
}
/* ===================================================
    CARESが選ばれる理由 REASON
====================================================== */
.front-reason-section {
  padding: 100px 0 160px;
  overflow: hidden;
}
.front-reason-content {
  margin-top: 80px;
}
.front-reason-block-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.front-reason-block-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}
.front-reason-block-text {
  width: 544px;
}
.front-reason-block-title {
  font: 700 2.6rem/1.6 "Noto Serif JP", serif;
  color: #74bfba;
}
.front-reason-block-description {
  margin-top: 1em;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.front-reason-block-image {
  position: relative;
}
.front-reason-block-image-number {
  position: absolute;
  left: -44px;
  top: -20px;
  font: 400 6rem/1 "Dancing Script", serif;
  color: rgba(51, 51, 51, 0.3);
  transform: rotate(-15deg);
}
.front-reason-block-item:nth-child(odd):last-child .front-reason-block-image-number {
  left: auto;
  top: auto;
  right: -54px;
  bottom: -20px;
}
.front-reason-block-item:nth-child(even) {
  flex-direction: row-reverse;
}
.front-reason-block-item:nth-child(odd) .front-reason-block-image {
  text-align: right;
}
.front-reason-block-item.item01 .front-reason-block-image {
  padding-right: 40px;
}
.front-reason-block-item.item01 .front-reason-block-image-number, .front-reason-block-item.item02 .front-reason-block-image-number {
  left: -44px;
  top: -20px;
}
.front-reason-block-item.item03 .front-reason-block-image-number {
  right: -54px;
  bottom: -20px;
}

@media screen and (max-width: 1140px) {
  .front-reason-block-list {
    gap: 120px;
    padding: 0 40px;
  }
  .front-reason-block-item {
    gap: 30px;
  }
  .front-reason-block-item:nth-child(odd), .front-reason-block-item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .front-reason-block-text {
    width: auto;
  }
  .front-reason-block-item.item03 .front-reason-block-image-number {
    right: auto;
    bottom: auto;
  }
  .front-reason-block-item.item01 .front-reason-block-image-number, .front-reason-block-item.item02 .front-reason-block-image-number, .front-reason-block-item.item03 .front-reason-block-image-number {
    left: -44px;
    top: -20px;
  }
}
@media screen and (max-width: 767px) {
  .front-reason-section {
    padding: 50px 0;
  }
  .front-reason-block-list {
    gap: 60px;
    padding: 0;
  }
  .front-reason-block-item {
    align-items: center;
  }
  .front-reason-block-title {
    font-size: 2rem;
  }
  .front-reason-block-description {
    font-size: 1.4rem;
  }
  .front-reason-block-item {
    align-items: center;
  }
  .front-reason-block-image-number {
    font-size: 3rem;
  }
  .front-reason-block-image img {
    width: 100%;
  }
  .front-reason-block-item.item01 .front-reason-block-image-number, .front-reason-block-item.item02 .front-reason-block-image-number, .front-reason-block-item.item03 .front-reason-block-image-number {
    left: -34px;
  }
  .front-reason-block-item.item01 .front-reason-block-image {
    padding-right: 0;
  }
  .front-reason-block-item.item02 {
    align-items: flex-start;
  }
  .front-reason-block-item.item02 .front-reason-block-image-number {
    left: auto;
    right: -44px;
    transform: rotate(15deg);
  }
  .front-reason-block-item.item01 .front-reason-block-image {
    width: 67.0391061453%;
  }
  .front-reason-block-item.item02 .front-reason-block-image {
    margin-left: -28px;
    width: 100%;
  }
  .front-reason-block-item.item03 .front-reason-block-image {
    margin-right: -56px;
    width: 100%;
  }
}
/* ===================================================
    施術事例 CASES
====================================================== */
.front-cases-section {
  background-color: rgba(116, 191, 186, 0.3);
  position: relative;
}
.front-cases-section::before, .front-cases-section::after {
  content: "";
  position: absolute;
  border: 1px solid #74bfba;
}
.front-cases-section::before {
  width: 130px;
  height: 130px;
  top: -65px;
  left: calc(50% - 620px);
}
.front-cases-section::after {
  bottom: -42px;
  right: 0;
  width: 68px;
  height: 219px;
}
.front-cases-inner {
  padding: 150px 65px 80px;
}
.front-cases-content {
  position: relative;
}
.front-cases-inner .section-title-block {
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
}
.front-cases-slider-wrapper {
  overflow: hidden;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.front-cases-slider-container {
  align-items: stretch !important;
}
.front-cases-slider-item {
  display: flex;
  flex-direction: column;
}
.front-cases-slider-item-thumbnail {
  aspect-ratio: 480/360;
}
.front-cases-slider-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-cases-slider-item-text {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 1em;
  text-align: center;
  flex-grow: 1;
}
.front-cases-slider-item-title {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.front-cases-slider-item-subtitle {
  margin-top: 0.1em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.front-cases-slider-item-price {
  margin-top: 0.3em;
  font-size: 2rem;
  line-height: 1.6;
}
.front-cases-slider-item-caption {
  margin-top: 0.5em;
  text-align: center;
  color: var(--wp-cases-caption-color, rgba(51, 51, 51, 0.3));
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.front-cases-slider-navigation-button {
  position: absolute;
  top: calc(50% - 30px);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  transition: opacity 300ms;
}
.front-cases-slider-navigation-button:hover {
  opacity: 0.7;
}
.front-cases-slider-navigation-button.prev {
  right: calc(100% + 40px);
}
.front-cases-slider-navigation-button.next {
  left: calc(100% + 40px);
}
.front-cases-slider-navigation-button img {
  width: 100%;
}

@media screen and (max-width: 1140px) {
  .front-cases-inner {
    padding: 150px 90px 80px;
  }
  .front-cases-slider-navigation-button.prev {
    right: calc(100% + 20px);
  }
  .front-cases-slider-navigation-button.next {
    left: calc(100% + 20px);
  }
}
@media screen and (max-width: 767px) {
  .front-cases-section::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 0;
    transform: translateX(-30%);
  }
  .front-cases-section::after {
    content: none;
  }
  .front-cases-inner {
    padding: 90px 0 50px;
  }
  .front-cases-inner .section-title-block {
    top: -1em;
  }
  .front-cases-slider-wrapper {
    padding: 0 0 30px;
  }
  .front-cases-slider-item-text {
    padding: 0.5em;
  }
  .front-cases-slider-item-title {
    font-size: 1.4rem;
  }
  .front-cases-slider-item-subtitle {
    font-size: 1.2rem;
  }
  .front-cases-slider-item-price {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .front-cases-slider-item-caption {
    margin-top: 1.2em;
    font-size: 1.2rem;
  }
  .front-cases-slider-navigation-button {
    top: auto;
    bottom: 20px;
    transition: none;
  }
  .front-cases-slider-navigation-button:hover {
    opacity: 1;
  }
  .front-cases-slider-navigation-button.prev {
    right: auto;
    left: 0;
  }
  .front-cases-slider-navigation-button.next {
    left: auto;
    right: 0;
  }
}
/* ===================================================
    お客様の声 CUSTOMER REVIEWS
====================================================== */
.front-reviews-section {
  padding: 120px 0 140px;
  position: relative;
  z-index: 1;
}
.front-reviews-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  z-index: -1;
  width: 77.7777777778%;
  height: 100%;
  background-color: var(--wp-custom-reviews-bg-block-color);
}
.front-reviews-inner {
  padding: 0 0 80px;
}
.front-reviews-content {
  margin-top: 80px;
  padding: 0 76px;
  position: relative;
}
.front-reviews-slider-wrapper {
  overflow: hidden;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.front-reviews-slider-container {
  align-items: stretch !important;
}
.front-reviews-slider-item {
  padding: 70px 0 0;
  display: flex;
  flex-direction: column;
}
.front-reviews-slider-item-header {
  position: absolute;
  left: 50%;
  top: -70px;
  transform: translateX(-50%);
  text-align: center;
}
.front-reviews-slider-item-thumbnail {
  margin: 0 auto;
  width: 140px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--wp-reviews-card-frame-color);
  background-color: #fff;
}
.front-reviews-slider-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-reviews-slider-item-stars {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.front-reviews-slider-item-stars .star {
  color: var(--wp-reviews-card-stars-color);
}
.front-reviews-slider-item-body {
  position: relative;
  background-color: var(--wp-reviews-card-bg-color);
  border: 1px solid var(--wp-reviews-card-frame-color);
  padding: 10px;
  flex-grow: 1;
}
.front-reviews-slider-item-content {
  padding: 140px 30px 40px;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: var(--wp-reviews-card-inner-frame-color);
}
.front-reviews-slider-item-description {
  letter-spacing: 0.1em;
  color: var(--wp-reviews-card-text-color);
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
.front-reviews-slider-navigation-button {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  transition: opacity 300ms;
}
.front-reviews-slider-navigation-button:hover {
  opacity: 0.7;
}
.front-reviews-slider-navigation-button.prev {
  left: 0;
}
.front-reviews-slider-navigation-button.next {
  right: 0;
}
.front-reviews-slider-navigation-button img {
  width: 100%;
}
.front-reviews-slider-item-caption {
  margin-top: 0.5em;
  text-align: center;
  color: var(--wp-reviews-caption-color, rgba(51, 51, 51, 0.3));
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

@media screen and (max-width: 1140px) {
  .front-reviews-content {
    margin-top: 80px;
    padding: 0 160px;
  }
  .front-reviews-slider-navigation-button.prev {
    left: 100px;
  }
  .front-reviews-slider-navigation-button.next {
    right: 100px;
  }
  .front-reviews-content {
    margin-top: 80px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .front-reviews-section {
    padding: 50px 0;
  }
  .front-reviews-section::after {
    top: 18px;
    width: 100%;
  }
  .front-reviews-inner {
    padding: 0 0 50px;
  }
  .front-reviews-content {
    margin-top: 50px;
    padding: 0;
  }
  .front-reviews-slider-wrapper {
    padding-bottom: 8px;
  }
  .front-reviews-slider-item-header {
    top: -57px;
  }
  .front-reviews-slider-item-thumbnail {
    width: 104px;
  }
  .front-reviews-slider-item-stars {
    margin-top: 10px;
    gap: 8px;
  }
  .front-reviews-slider-item-stars .star {
    width: 16px;
  }
  .front-reviews-slider-item-content {
    padding: 110px 15px 40px;
  }
  .front-reviews-slider-item-description {
    font-size: 1.2rem;
  }
  .front-reviews-slider-navigation-button {
    top: auto;
    bottom: 0;
    transition: none;
  }
  .front-reviews-slider-item-caption {
    margin-top: 1em;
  }
  .front-reviews-slider-navigation-button:hover {
    opacity: 1;
  }
  .front-reviews-slider-navigation-button.prev {
    right: auto;
    left: 0;
  }
  .front-reviews-slider-navigation-button.next {
    left: auto;
    right: 0;
  }
}
/* ===================================================
    メニュー MENU
====================================================== */
.front-menu-section {
  padding: 135px 0 100px;
}
.front-menu-content {
  margin-top: 80px;
}
.front-menu-block {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.front-menu-categories-title {
  font: 400 4rem/1.2 "Libre Bodoni", serif;
  color: #74bfba;
}
.front-menu-categories-description {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.front-menu-list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 160px;
}
.front-menu-list-item {
  width: 42.8571428571%;
}
.front-menu-list-item-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.front-menu-list-item-option {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1140px) {
  .front-menu-list {
    gap: 50px 40px;
  }
  .front-menu-list-item {
    width: 47.3684210526%;
  }
}
@media screen and (max-width: 767px) {
  .front-menu-section {
    padding: 50px 0;
  }
  .front-menu-content {
    margin-top: 50px;
  }
  .front-menu-block {
    gap: 60px;
  }
  .front-menu-categories-title {
    font-size: 2.2rem;
  }
  .front-menu-categories-description {
    font-size: 1.2rem;
  }
  .front-menu-list {
    margin-top: 20px;
    gap: 40px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .front-menu-list-item {
    width: auto;
  }
  .front-menu-list-item-details {
    padding-bottom: 6px;
    font-size: 1.4rem;
  }
  .front-menu-list-item-option {
    margin-top: 6px;
    font-size: 1.2rem;
  }
}
/* ===================================================
    店舗 LOCATION
====================================================== */
.front-location-section {
  padding: 100px 0;
}
.front-location-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1012px;
}
.front-location-inner .section-title-block {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  padding: 0 50px;
  background-color: #fff;
}
.front-location-cards-wrapper {
  border: 1px solid #74bfba;
  padding: 157px 80px 80px;
}
.front-location-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 64px;
}
.front-location-card {
  width: 393px;
}
.front-location-card-thumbnail {
  aspect-ratio: 395/296;
}
.front-location-card-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.front-location-card-text {
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.front-location-card-title {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}
.front-location-card-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.front-location-card-detail-list {
  display: flex;
  gap: 32px;
  letter-spacing: 0.1em;
}
.front-location-card-detail-title {
  width: 4.4em;
}

@media screen and (max-width: 1140px) {
  .front-location-cards-wrapper {
    padding: 120px 40px 40px;
  }
  .front-location-cards {
    gap: 40px;
  }
  .front-location-card {
    width: 319px;
  }
}
@media screen and (max-width: 767px) {
  .front-location-section {
    padding: 50px 0;
  }
  .front-location-inner .section-title-block {
    top: -16px;
    padding: 0 10px;
  }
  .front-location-cards-wrapper {
    padding: 90px 40px 40px;
  }
  .front-location-cards {
    gap: 50px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .front-location-card {
    width: auto;
  }
  .front-location-card-text {
    padding: 20px 0 0;
    align-items: stretch;
  }
  .front-location-card-title {
    font-size: 1.4rem;
  }
  .front-location-card-details {
    margin-top: 10px;
    gap: 10px;
  }
  .front-location-card-detail-list {
    gap: 1.2em;
    font-size: 1.2rem;
  }
}
/* ===================================================
    ご予約はこちら RESERVATION
====================================================== */
.front-faq-section {
  padding: 100px 0;
}
.front-faq-content {
  margin-top: 100px;
  padding: 0 96px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}
.faq-item-title {
  padding: 30px 42px;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #74bfba;
  position: relative;
  cursor: pointer;
  text-indent: calc(-1em - 6px);
}
.faq-item-description {
  padding: 0 42px 30px 42px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
  display: none;
  text-indent: calc(-1.1em - 3px);
}
.faq-item-title .q, .faq-item-description .a {
  margin-right: 4px;
}
.faq-item-title::before, .faq-item-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 32px;
  width: 24px;
  height: 24px;
  background: center center/contain no-repeat;
  opacity: 0;
}
.faq-item-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='%23333333' stroke-width='2'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='%23333333' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 1;
}
.faq-item-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='%23333333' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0;
}
.faq-item-title.open::before {
  opacity: 0;
}
.faq-item-title.open::after {
  opacity: 1;
}

@media screen and (max-width: 1140px) {
  .front-faq-content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .front-faq-section {
    padding: 50px 0;
  }
  .front-faq-content {
    margin-top: 40px;
    padding: 0;
  }
  .faq-item {
    padding: 5px 0;
  }
  .faq-item-title {
    padding: 15px 20px;
    font-size: 1.4rem;
    text-indent: calc(-1em - 5px);
  }
  .faq-item-description {
    padding: 0 20px 15px 20px;
    font-size: 1.4rem;
    text-indent: calc(-1.1em - 4px);
  }
  .faq-item-title::before, .faq-item-title::after {
    top: 22px;
    width: 10px;
    height: 10px;
  }
  .faq-item-title::before {
    background-image: url(./img/icon-plus-sp.png);
  }
  .faq-item-title::after {
    background-image: url(./img/icon-minus-sp.png);
  }
  .front-faq-section .faq-item-title::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='12' y1='5' x2='12' y2='19' stroke='var(--faq-icon-color, %23333333)' stroke-width='2'/%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='var(--faq-icon-color, %23333333)' stroke-width='2'/%3E%3C/svg%3E");
  }
  .front-faq-section .faq-item-title::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='var(--faq-icon-color, %23333333)' stroke-width='2'/%3E%3C/svg%3E");
  }
}
/* ===================================================
    ご予約はこちら RESERVATION
====================================================== */
/* ===================================================
    採用ページ内 共通パーツ
====================================================== */
.page-recruit .section-title {
  font: 600 6.4rem/1.35 "Noto Serif JP", serif;
  position: relative;
  color: transparent;
}
.page-recruit .section-subtitle {
  font: 900 2.4rem/1.6 "Noto Serif JP", serif;
  position: relative;
  color: transparent;
}
.page-recruit .section-title::after, .page-recruit .section-subtitle::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-clip: text;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #59d2d9 0%, #52a7d4 100%);
}

@media screen and (max-width: 767px) {
  .page-recruit .section-title {
    font-size: 3rem;
  }
  .page-recruit .section-subtitle {
    font-size: 1.4rem;
  }
}
/* ===================================================
    採用ページ内 CVエリア
====================================================== */
.recruit-cta-section {
  padding: 40px 0;
}
.recruit-message-section + .recruit-cta-section {
  padding-top: 100px;
}
.recruit-cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 80px;
  background: 0% center/contain url(./img/illust-recruit-flower-left.png) no-repeat, 100% center/contain url(./img/illust-recruit-flower-right.png) no-repeat;
}

.cvarea-recruit-section {
  padding: 100px 0;
}
.recruit-cta-section + .cvarea-recruit-section {
  padding-top: 40px;
}
.cvarea-recruit-inner {
  padding: 0 49px;
}
.cvarea-recruit-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  padding: 5px 80px;
  background: 0% center/contain url(./img/illust-recruit-flower-left.png) no-repeat, 100% center/contain url(./img/illust-recruit-flower-right.png) no-repeat;
}
.cvarea-recruit-header-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 1.2em;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: #47c0c3;
}
.cvarea-recruit-header-item:not(:first-child) {
  position: relative;
}
.cvarea-recruit-header-item:not(:first-child)::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.2em;
  height: 100%;
  background: center center/15px 15px url(./img/icon-bitween-star.svg) no-repeat;
}
/* recruit-cta専用のクラス */
.recruit-cta-header-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 1.2em;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: #47c0c3;
}
.recruit-cta-header-item:not(:first-child) {
  position: relative;
}
.recruit-cta-header-item:not(:first-child)::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.2em;
  height: 100%;
  background: center center/15px 15px url(./img/icon-bitween-star.svg) no-repeat;
}
.cvarea-recruit-buttons-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
}
.cvarea-recruit-button-line-message {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1;
  color: #06c755;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cvarea-recruit-button-line-message::before, .cvarea-recruit-button-line-message::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.8em;
  background-color: #06c755;
}
.cvarea-recruit-button-line-message::before {
  margin-right: 1em;
  transform: rotate(-15deg);
}
.cvarea-recruit-button-line-message::after {
  margin-left: 1em;
  transform: rotate(15deg);
}
.cvarea-recruit-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  height: 150px;
  font-weight: 900;
  font-size: 4.8rem;
  border-radius: 9999px;
  transition: opacity 300ms;
}
.cvarea-recruit-link-button:hover {
  opacity: 0.7;
}
.cvarea-recruit-link-button.line {
  border: 3px solid #06c755;
  color: #06c755;
}
.cvarea-recruit-link-button.tel {
  background-color: #47c0c3;
  color: #fff;
}
.cvarea-recruit-attention {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  margin-top: 0.5em;
}

@media screen and (max-width: 1140px) {
  .recruit-cta-body {
    padding: 5px 56px;
  }
  .cvarea-recruit-inner {
    padding: 0 78px;
  }
  .cvarea-recruit-header {
    padding: 5px 56px;
  }
  .cvarea-recruit-header-list {
    gap: 10px 1.2em;
    font-size: 2.4rem;
  }
  .recruit-cta-header-list {
    gap: 10px 1.2em;
    font-size: 2.4rem;
  }
  .cvarea-recruit-link-button {
    gap: 24px;
    height: 120px;
    font-size: 3.2rem;
  }
  .cvarea-recruit-header-item:nth-child(4)::before, .cvarea-recruit-header-item:nth-child(7)::before {
    content: "";
  }
  .cvarea-recruit-header-item:nth-child(3)::before, .cvarea-recruit-header-item:nth-child(5)::before, .cvarea-recruit-header-item:nth-child(7)::before, .cvarea-recruit-header-item:nth-child(9)::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .recruit-cta-section {
    padding: 20px 0;
  }
  .recruit-cta-body {
    padding: 5px 13.04vw;
  }
  .cvarea-recruit-section {
    padding: 40px 0;
  }
  .recruit-fv-section + .cvarea-recruit-section {
    margin-top: 50px;
  }
  .cvarea-recruit-inner {
    padding: 0;
  }
  .cvarea-recruit-header {
    margin-bottom: 50px;
    padding: 5px 13.04vw;
  }
  .cvarea-recruit-header-list {
    gap: 5px 1.2em;
    font-size: 3.382vw;
  }
  .recruit-cta-header-list {
    gap: 5px 1.2em;
    font-size: 3.382vw;
  }
  .cvarea-recruit-header-item:not(:first-child)::before {
    background-size: 2.222vw 2.222vw;
  }
  .cvarea-recruit-header-item:nth-child(3)::before, .cvarea-recruit-header-item:nth-child(5)::before, .cvarea-recruit-header-item:nth-child(7)::before, .cvarea-recruit-header-item:nth-child(9)::before {
    content: "";
  }
  .cvarea-recruit-header-item:nth-child(3)::before, .cvarea-recruit-header-item:nth-child(5)::before, .cvarea-recruit-header-item:nth-child(7)::before, .cvarea-recruit-header-item:nth-child(8)::before {
    content: none;
  }
  .cvarea-recruit-button-line-message {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .cvarea-recruit-button-line-message::before, .cvarea-recruit-button-line-message::after {
    width: 1.4px;
  }
  .cvarea-recruit-buttons-wrapper {
    gap: 24px;
  }
  .cvarea-recruit-link-button {
    padding: 0 min(30px, 7.246vw) 0 min(24px, 5.797vw);
    justify-content: space-between;
    height: 80px;
    font-size: min(1.7rem, 4.1vw);
    max-width: 350px;
    gap: initial;
  }
  .cvarea-recruit-link-button.tel {
    font-size: min(2rem, 4.831vw);
  }
  .cvarea-recruit-link-button.line .icon {
    width: 11.423%;
  }
  .cvarea-recruit-link-button.tel .icon {
    margin-left: min(12px, 2.898vw);
    width: 7%;
  }
  .cvarea-recruit-link-button:hover {
    opacity: 1;
  }
  .cvarea-recruit-attention {
    font-size: 1.2rem;
    margin-top: 0.5em;
  }
}
/* ===================================================
    採用ページ FV
====================================================== */
.recruit-fv-main {
  position: relative;
}
.recruit-fv-bg-wrapper {
  margin-left: auto;
  aspect-ratio: 960/650;
  max-height: calc(100vh - 11vw);
  width: 66.6666666667%;
}
.recruit-fv-bg-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-fv-text {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.recruit-fv-text-inner {
  padding: 2.431vw 3.3334vw;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 30px;
}
.recruit-fv-title {
  font: 400 2.777vw/1.4 "EB Garamond", serif;
}
.recruit-fv-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.69444vw;
  font: 600 3.75vw/1 "Noto Serif JP", serif;
}
@keyframes recruitFvMessageAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.recruit-fv-message .text {
  position: relative;
  padding: 0.2em 0.2em 0.2em 0;
  background-color: #fff;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: recruitFvMessageAnimation 800ms calc(var(--show-delay) * 200ms) forwards;
}
.recruit-fv-message .text::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  left: 49.3%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-clip: text;
  white-space: nowrap;
  background-image: var(--wp-custom-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.recruit-fv-compensation-wrap {
  padding: 2.431vw 2.9861vw 0;
}
.recruit-fv-compensation-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 3.47222vw;
  background: 0% center/contain url(./img/illust-recruit-flower-left.png) no-repeat, 100% center/contain url(./img/illust-recruit-flower-right.png) no-repeat;
}
.recruit-fv-compensation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.38889vw 1.2em;
  font-weight: 700;
  font-size: 2vw;
  line-height: 1.2;
  color: #47c0c3;
}
.recruit-fv-compensation-item:not(:first-child) {
  position: relative;
}
.recruit-fv-compensation-item:not(:first-child)::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.2em;
  height: 100%;
  background: center center/1.04167vw 1.04167vw url(./img/icon-bitween-star.svg) no-repeat;
}
/* .recruit-fv-compensation-item:nth-child(6)::before {
  content: none;
} */

@media screen and (max-width: 767px) {
  .recruit-fv-bg-wrapper {
    max-height: none;
    width: 100%;
  }
  .recruit-fv-text-inner {
    gap: 1.333vw;
  }
  .recruit-fv-title {
    font-size: 3.3334vw;
  }
  .recruit-fv-message {
    margin-left: -3.3334vw;
    font-size: 5.07778vw;
  }
  .recruit-fv-message .text {
    padding: 0.2em;
  }
  .recruit-fv-compensation-wrap {
    padding: 10px 28px 0;
  }
  .recruit-fv-compensation-inner {
    padding: 5px 13.04vw;
  }
  .recruit-fv-compensation-list {
    gap: 5px 1.2em;
    font-size: 3.382vw;
  }
  .recruit-fv-compensation-item:not(:first-child)::before {
    background-size: 2.222vw 2.222vw;
  }
  .recruit-fv-compensation-item:nth-child(3)::before, .recruit-fv-compensation-item:nth-child(5)::before, .recruit-fv-compensation-item:nth-child(6)::before, .recruit-fv-compensation-item:nth-child(7)::before, .recruit-fv-compensation-item:nth-child(8)::before, .recruit-fv-compensation-item:nth-child(9)::before {
    content: "";
  }
  .recruit-fv-message .text::after {
    left: 50%;
  }
}
/* ===================================================
    採用ページ 採用強化店舗はこちら！
====================================================== */
.recruit-store-section {
  padding: 50px 0 100px;
  overflow: hidden;
}
.cvarea-recruit-section + .recruit-store-section {
  margin-top: -50px;
}
.recruit-store-title {
  text-align: center;
  font: 700 3.6rem/1.2 "Noto Serif JP", serif;
  color: #47c0c3;
}
.recruit-store-block {
  background-color: #ebf9f9;
  padding: 80px;
  margin: -20px -71px 0;
}
.recruit-store-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.recruit-store-card {
  width: 347px;
  height: 100px;
  display: flex;
  position: relative;
  transition: opacity 300ms;
}
.recruit-store-card[href] {
  transition: opacity 300ms;
}
.recruit-store-card[href]:hover {
  opacity: 0.7;
}
.recruit-store-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 5px;
  border: 1px solid var(--recruit-store-card-frame-color);
}
.recruit-store-card-thumbnail {
  height: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.recruit-store-card-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-store-card-name {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--recruit-store-card-main-color);
}

@media screen and (max-width: 767px) {
  .recruit-store-section {
    margin: 50px 0 80px;
  }
  .cvarea-recruit-section + .recruit-store-section {
    margin-top: unset;
  }
  .recruit-store-title {
    font-size: 2rem;
  }
  .recruit-store-block {
    padding: 40px;
    margin: -12px 0 0;
  }
  .recruit-store-card-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .recruit-store-card {
    width: auto;
    height: 64px;
    transition: none;
  }
  .recruit-store-card:after {
    margin: 4px;
  }
  .recruit-store-card[href]:hover {
    opacity: 1;
  }
  .recruit-store-card-name {
    font-size: 1.9rem;
  }
}
/* ===================================================
    採用ページ 子育て・趣味と仕事を両立したいママさんへ
====================================================== */
.recruit-trouble-section {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .recruit-trouble-section {
    padding: 40px 0;
  }
  .recruit-trouble-image-wrapper {
    margin: 0 -28px;
  }
}
/* ===================================================
    採用ページ 「そのママさんのお悩み髪質改善専門美容室CARESが解決します！」
====================================================== */
.recruit-appeal-section {
  margin: 100px 0 0;
  padding: 50px 0;
}
.recruit-appeal-inner {
  text-align: center;
}
.recruit-appeal-shoulder-text {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 4.3rem/1.2 "Noto Serif JP", serif;
  gap: 0.5em;
}
.recruit-appeal-shoulder-text::before, .recruit-appeal-shoulder-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background-color: #47c0c3;
}
.recruit-appeal-shoulder-text::before {
  transform: rotate(-15deg);
}
.recruit-appeal-shoulder-text::after {
  transform: rotate(15deg);
}
.recruit-appeal-message {
  font: 700 4.3rem/1.5 "Noto Serif JP", serif;
}
.recruit-appeal-message mark {
  margin-right: 0.2em;
  display: inline-block;
  padding: 0.2em;
  line-height: 1;
  font-size: 139.5348837209%;
}

@media screen and (max-width: 1140px) {
  .recruit-appeal-message {
    font-size: 3.6rem;
  }
  .recruit-appeal-shoulder-text {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-appeal-section {
    margin: 50px 0 0;
    padding: 30px 0;
  }
  .recruit-appeal-message {
    font-size: 1.8rem;
  }
  .recruit-appeal-shoulder-text {
    margin-bottom: 0.3em;
    font-size: 1.8rem;
  }
}
/* ===================================================
    採用ページ 働く環境 CULTURE
====================================================== */
.recruit-culture-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  --before-bg: #ebf9f9;
}
.recruit-culture-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 140px;
  bottom: 100px;
  z-index: -1;
  /* background-color: #ebf9f9; */
  width: 75.5555555556%;
  background-color: var(--before-bg, #ebf9f9);
}
.recruit-culture-content {
  margin-top: 120px;
}
.recruit-culture-inner {
  padding: 0 0 100px;
  position: relative;
}
.recruit-culture-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 140px;
  width: 1px;
  height: 50px;
  background-color: #47c0c3;
}
.recruit-culture-block-list {
  display: flex;
  flex-direction: column;
  margin-right: -44px;
  gap: 100px;
}
.recruit-culture-block {
  display: flex;
  justify-content: space-between;
}
.recruit-culture-block-text {
  width: 544px;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
}
.recruit-culture-block-number {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #47c0c3;
  font: 600 3rem/1 "Noto Serif JP", serif;
  color: #fff;
  padding: 0.1em;
}
.recruit-culture-block-text h1, .recruit-culture-block-text h2, .recruit-culture-block-text h3, .recruit-culture-block-text h4, .recruit-culture-block-text h5, .recruit-culture-block-text h6 {
  margin-bottom: 30px;
  font: 700 3.6rem/1.2 "Noto Serif JP", serif;
}
.recruit-culture-block-text > *:not(.recruit-culture-block-number, h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1.6em;
}
.recruit-culture-block-text ul {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.recruit-culture-block-text ul li {
  border: 1px solid #47c0c3;
  background-color: #fff;
  color: #47c0c3;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0.5em 1.2em;
  min-width: 160px;
  text-align: center;
}
.recruit-culture-block-image {
  width: 575px;
}
.recruit-culture-block-image img {
  width: 100%;
}

@media screen and (max-width: 1140px) {
  .recruit-culture-block {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
  }
  .recruit-culture-block-list {
    margin-right: 0;
    padding: 0 80px;
    gap: 100px;
  }
  .recruit-culture-block-text {
    width: auto;
  }
  .recruit-culture-block-image {
    margin-right: -80px;
    width: auto;
    order: -1;
  }
  .recruit-culture-block-text ul {
    margin: 30px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit-culture-section {
    padding: 20px 0 40px;
  }
  .recruit-culture-section::before {
    top: 40px;
    right: 28px;
    bottom: 20px;
    width: auto;
  }
  .recruit-culture-inner {
    padding: 0;
  }
  .recruit-culture-inner::before {
    top: 70px;
    height: 24px;
  }
  .recruit-culture-content {
    margin-top: 50px;
  }
  .recruit-culture-block-list {
    padding: 0;
    gap: 80px;
  }
  .recruit-culture-block-text {
    width: auto;
    padding-right: 10px;
  }
  .recruit-culture-block-image {
    margin-right: -28px;
  }
  .recruit-culture-block-number {
    font-size: 1.67rem;
  }
  .recruit-culture-block-text {
    font-size: 1.4rem;
  }
  .recruit-culture-block-text h1, .recruit-culture-block-text h2, .recruit-culture-block-text h3, .recruit-culture-block-text h4, .recruit-culture-block-text h5, .recruit-culture-block-text h6 {
    font-size: 2rem;
  }
  .recruit-culture-block-text ul {
    margin: 15px 0 0 0;
    gap: 6px;
  }
  .recruit-culture-block-text ul li {
    font-size: 1.1rem;
    min-width: 104px;
  }
}
/* ===================================================
    採用ページ 給与体系 SALARY
====================================================== */
.recruit-salary-section {
  padding: 75px 0 100px;
  position: relative;
}
.recruit-salary-section::before {
  content: "";
  position: absolute;
  top: 115px;
  bottom: 100px;
  right: 0;
  z-index: 0;
  background-color: var(--panel-bg-color);
  width: 75.5555555556%;
}
.recruit-salary-inner {
  position: relative;
  padding: 0 0 100px;
}
.recruit-salary-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 150px;
  width: 1px;
  height: 50px;
  background-color: #47c0c3;
}
.recruit-salary-content {
  margin-top: 120px;
}
.recruit-salary-block {
  display: flex;
  justify-content: space-between;
  margin-left: -62px;
}
.recruit-salary-block-image {
  width: 48.6463620981%;
}
.recruit-salary-block-image img {
  width: 100%;
}
.recruit-salary-block-text {
  width: 46.0236886633%;
}
.recruit-salary-block-text h1, .recruit-salary-block-text h2, .recruit-salary-block-text h3, .recruit-salary-block-text h4, .recruit-salary-block-text h5, .recruit-salary-block-text h6 {
  margin-bottom: 40px;
  font: 700 3.6rem/1.2 "Noto Serif JP", serif;
}
.recruit-salary-block-text p {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
}
.recruit-salary-block-text p + p {
  margin-top: 1.6em;
}

@media screen and (max-width: 1140px) {
  .recruit-salary-content {
    padding: 0 100px;
  }
  .recruit-salary-block {
    margin-left: 0;
    flex-direction: column;
  }
  .recruit-salary-block-image {
    width: auto;
  }
  .recruit-salary-block-image img {
    width: 100%;
  }
  .recruit-salary-block-text {
    margin-top: 40px;
    padding-left: 48px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .recruit-salary-section {
    padding: 40px 0;
  }
  .recruit-salary-section::before {
    top: 60px;
    bottom: 40px;
    left: 28px;
    width: auto;
  }
  .recruit-salary-inner {
    padding: 0 0 50px;
  }
  .recruit-salary-inner::before {
    top: 74px;
    height: 24px;
  }
  .recruit-salary-content {
    margin-top: 50px;
    padding: 0;
  }
  .recruit-salary-block-image {
    margin-left: -28px;
  }
  .recruit-salary-block-text {
    margin-top: 30px;
    padding-left: 24px;
  }
  .recruit-salary-block-text h1, .recruit-salary-block-text h2, .recruit-salary-block-text h3, .recruit-salary-block-text h4, .recruit-salary-block-text h5, .recruit-salary-block-text h6 {
    font-size: 2rem;
  }
  .recruit-salary-block-text p {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}
/* ===================================================
    採用ページ 子育てママにおすすめの3つのポイント
====================================================== */
.recruit-points-section {
  padding: 100px 0;
}
.recruit-points-shoulder-text {
  margin-bottom: 20px;
  font: 700 3.6rem/1.2 "Noto Serif JP", serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
}
.recruit-points-shoulder-text::before, .recruit-points-shoulder-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background-color: var(--text-color);
}
.recruit-points-shoulder-text::before {
  transform: rotate(-25deg);
}
.recruit-points-shoulder-text::after {
  transform: rotate(25deg);
}
.recruit-points-heading-label {
  padding: 50px 20px;
  position: relative;
  background-color: var(--label-bg-color);
}
.recruit-points-heading-label::after {
  content: "";
  position: absolute;
  left: calc(50% - 36px);
  top: calc(100% - 9px);
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 36px 0;
  border-color: var(--label-bg-color) transparent;
}
.recruit-points-title {
  font: 600 4rem/1.2 "Noto Serif JP", serif;
  text-align: center;
}
.recruit-points-title .large {
  font-size: 125%;
}
.recruit-points-title .small1 {
  font-size: 83.3333333333%;
}
.recruit-points-title .number {
  font-size: 166.6666666667%;
  position: relative;
}
.recruit-points-title .number::before, .recruit-points-title .number::after {
  content: "";
  position: absolute;
  background-image: url(./img/icon-star01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.recruit-points-title .number::before {
  bottom: 38px;
  left: -22px;
  width: 18px;
  height: 22px;
}
.recruit-points-title .number::after {
  top: 28px;
  right: -8px;
  width: 10px;
  height: 12.3px;
}
.recruit-points-content {
  margin-top: 125px;
}
.recruit-points-block-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 0 30px;
}
.recruit-points-block-header {
  display: flex;
  gap: 40px;
}
.recruit-points-block-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  writing-mode: vertical-rl;
  font: 600 4rem/1.2 "Noto Serif JP", serif;
}
.recruit-points-block-title .number {
  margin-left: 0.2em;
  writing-mode: initial;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: #59d2d9;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
  color: #59d2d9;
}
.recruit-points-block-title .text {
  position: relative;
  color: transparent;
  letter-spacing: 0.2em;
}
.recruit-points-block-title .text::before {
  content: attr(data-text);
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-clip: text;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, var(--title-grad-start, #59d2d9) 0%, var(--title-grad-end, #52a7d4) 100%);
}
.recruit-points-block-images {
  position: relative;
  width: 645px;
  aspect-ratio: 645/407;
}
.recruit-points-block-image-item:nth-child(1) {
  margin-left: 102px;
  width: 543px;
}
.recruit-points-block-image-item:nth-child(2) {
  position: absolute;
  z-index: 1;
  top: 300px;
  width: 205px;
}
.recruit-points-block-image-item:nth-child(2):not(:has(img, video)) {
  aspect-ratio: 205/274;
  background-color: #ebf9f9;
  z-index: -1;
}
.recruit-points-block-image-item:nth-child(3) {
  position: absolute;
  z-index: 1;
  top: calc(100% + 188px);
  margin-left: 233px;
  width: 150px;
}
.recruit-points-block-image-item img, .recruit-points-block-image-item video {
  width: 100%;
}
.recruit-points-block-text {
  margin-top: 50px;
  margin-left: auto;
  width: 544px;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
}
.recruit-points-block-text > *:last-child {
  margin-bottom: 0 !important;
}
.recruit-points-block-text p, .recruit-points-block-text .wp-block-list {
  margin-bottom: 1.6em;
}
.recruit-points-block-text .wp-block-list li {
  padding-left: 1em;
  position: relative;
}
.recruit-points-block-text .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.recruit-points-block-description .emphasis {
  color: #47c0c3;
}
.recruit-points-block-description-list {
  margin-top: 1em;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
}
.recruit-points-block-description-list li {
  position: relative;
  padding-left: 1em;
}
.recruit-points-block-description-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1140px) {
  .recruit-points-shoulder-text {
    font-size: 2.6rem;
  }
  .recruit-points-block-text {
    width: 490px;
  }
  .recruit-points-block-image-item:nth-child(1) {
    margin-left: 60px;
    width: 380px;
  }
  .recruit-points-block-image-item:nth-child(2) {
    width: 160px;
  }
  .recruit-points-block-image-item:nth-child(3) {
    margin-left: 40px;
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-points-section {
    padding: 40px 0;
  }
  .recruit-points-heading-label {
    margin: 0 -28px;
    padding: 18px 20px 22px;
  }
  .recruit-points-heading-label::after {
    left: calc(50% - 15px);
    top: calc(100% - 4px);
    border-width: 14px 15px 0;
  }
  .recruit-points-title {
    font-size: 1.8rem;
  }
  .recruit-points-title .large {
    font-size: 160%;
  }
  .recruit-points-title .small1 {
    font-size: 83.3333333333%;
  }
  .recruit-points-title .number {
    font-size: 166.6666666667%;
    position: relative;
  }
  .recruit-points-title .number::before {
    bottom: 24px;
    left: -10px;
    width: 8.6px;
    height: 10.6px;
  }
  .recruit-points-title .number::after {
    top: 13px;
    right: -8px;
    width: 7px;
    height: 6.3px;
  }
  .recruit-points-shoulder-text {
    margin: 0 -28px 15px;
    padding: 0 20px;
    font-size: 2rem;
    justify-content: space-between;
  }
  .recruit-points-shoulder-text::before, .recruit-points-shoulder-text::after {
    width: 1px;
    height: 2em;
  }
  .recruit-points-content {
    margin-top: 40px;
  }
  .recruit-points-block-list {
    gap: 80px;
    padding: 0;
  }
  .recruit-points-block-header {
    display: block;
  }
  .recruit-points-block-title {
    margin: 30px 36px 0 auto;
    font: 600 4rem/1.2 "Noto Serif JP", serif;
    font-size: 2rem;
  }
  .recruit-points-block-images {
    width: auto;
    aspect-ratio: initial;
  }
  .recruit-points-block-image-item:nth-child(1) {
    margin-left: auto;
    width: 87.8289473684%;
    margin-right: -28px;
  }
  .recruit-points-block-image-item:nth-child(2) {
    top: calc(100% - 50px);
    width: 32.8947368421%;
  }
  .recruit-points-block-image-item:nth-child(3) {
    margin-left: 51px;
    top: calc(100% + 70px);
    width: 24.6710526316%;
  }
  .recruit-points-block-image-item img, .recruit-points-block-image-item video {
    max-height: 280px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left;
       object-position: left;
  }
  .recruit-points-block-text {
    margin-left: 0;
    width: auto;
    font-size: 1.4rem;
  }
}
/* ===================================================
    採用ページ 「CARESにはあなたの協力が必要です！」
====================================================== */
.recruit-cooperation-section {
  padding: 100px 0;
  overflow: hidden;
}
.recruit-cooperation-block {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.recruit-cooperation-image-wrapper {
  text-align: center;
  transform: translateY(-50%);
}
.recruit-cooperation-section:has(.recruit-cooperation-image-wrapper) {
  padding-bottom: 0;
}
.recruit-cooperation-block::before {
  content: "";
  position: absolute;
  background-color: var(--block-bg-color);
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 1120px;
  transform: translateX(-50%);
}
.recruit-cooperation-block-heading {
  font: 900 5rem/1.4 "Noto Serif JP", serif;
  color: #47c0c3;
}
.recruit-cooperation-block-label {
  margin: 40px 0;
  padding: 0.5em 0;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
}
.recruit-cooperation-block-label::before, .recruit-cooperation-block-label::after {
  content: "";
  width: 5px;
  height: 0.8em;
  background-color: var(--text-color);
}
.recruit-cooperation-block-label::before {
  transform: rotate(-15deg);
}
.recruit-cooperation-block-label::after {
  transform: rotate(15deg);
}
.recruit-cooperation-block-description {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
}
.recruit-cooperation-block-description p:last-child {
  margin-bottom: 0 !important;
}
.recruit-cooperation-block-description p {
  margin-bottom: 1.6em;
}
.recruit-cooperation-image-wrapper {
  text-align: center;
  transform: translateY(-50%);
}
.recruit-cooperation-image-frame {
  position: relative;
  left: 460px;
  display: inline-block;
  width: 320px;
}
.recruit-cooperation-image-wrapper img {
  width: 100%;
}

@media screen and (max-width: 1140px) {
  .recruit-cooperation-block::before {
    width: 720px;
  }
  .recruit-cooperation-image-frame {
    width: 280px;
    left: 240px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-cooperation-section {
    padding: 40px 28px;
  }
  .recruit-cooperation-section:has(.recruit-cooperation-image-wrapper) {
    padding-bottom: 40px;
  }
  .recruit-cooperation-block {
    padding: 40px 10px;
  }
  .recruit-cooperation-block::before {
    width: 100%;
    left: 0;
    transform: none;
  }
  .recruit-cooperation-block-heading {
    font-size: 2rem;
  }
  .recruit-cooperation-block-label {
    margin: 15px -38px;
    padding: 0.5em 0;
    font-size: 1.6rem;
    gap: 0.2em;
  }
  .recruit-cooperation-block-description {
    font-size: 1.4rem;
  }
  .recruit-cooperation-image-wrapper {
    display: none;
  }
}
/* ===================================================
    採用ページ スタッフストーリー REAL VOICE
====================================================== */
.recruit-real-voice-section {
  padding: 100px 0;
}
.recruit-real-voice-inner {
  position: relative;
}
.recruit-real-voice-inner::after {
  content: "";
  position: absolute;
  left: 96px;
  right: 96px;
  top: 40px;
  bottom: -5px;
  z-index: -1;
  background-color: var(--bg-panel-color);
}
.recruit-real-voice-content {
  margin-top: 100px;
}
.recruit-real-voice-card-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.recruit-real-voice-card-group:nth-child(even) .recruit-real-voice-card {
  margin-left: auto;
}
.recruit-real-voice-card-qa-slider-container {
  align-items: stretch !important;
}
.recruit-real-voice-card {
  padding: 80px 67px;
  width: 736px;
  border: 1px solid #47c0c3;
  background-image: linear-gradient(180deg, #47c0c3 0%, #47c0c3 343px, #fff, 343px, #fff 100%);
}
.recruit-real-voice-card-name {
  font: 700 3.6rem/1.2 "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
.recruit-real-voice-card-thumbnail {
  margin-top: 50px;
}
.recruit-real-voice-card-thumbnail .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.recruit-real-voice-card-thumbnail .wp-block-embed__wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.recruit-real-voice-card-thumbnail img, .recruit-real-voice-card-thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-real-voice-card-text {
  margin-top: 50px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.recruit-real-voice-card-qa-slider-inner {
  height: 100%;
}
.recruit-real-voice-card-qa-question-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}
.recruit-real-voice-card-qa-question {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.2em;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #47c0c3;
}
.recruit-real-voice-card-qa-question::before {
  content: attr(data-qnumber);
}
.recruit-real-voice-card-qa-answer {
  margin-top: 40px;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #000;
}
.recruit-real-voice-card-navigation-button {
  flex-shrink: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 300ms;
}
.recruit-real-voice-card-navigation-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.recruit-real-voice-card-navigation-button.prev {
  left: 0;
}
.recruit-real-voice-card-navigation-button.next {
  right: 0;
}
.recruit-real-voice-card-navigation-button.prev::before, .recruit-real-voice-card-navigation-button.next::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #47c0c3;
}
.recruit-real-voice-card-navigation-button.prev::before {
  border-width: 8px 14px 8px 0;
}
.recruit-real-voice-card-navigation-button.next::before {
  border-width: 8px 0 8px 14px;
}

@media screen and (max-width: 1140px) {
  .recruit-real-voice-inner {
    padding: 0 100px;
  }
  .recruit-real-voice-inner::after {
    left: 150px;
    right: 150px;
  }
  .recruit-real-voice-content {
    margin-top: 80px;
  }
  .recruit-real-voice-card {
    padding: 60px 40px;
    width: auto;
    background-image: linear-gradient(180deg, #47c0c3 0%, #47c0c3 290px, #fff, 290px, #fff 100%);
  }
}
@media screen and (max-width: 767px) {
  .recruit-real-voice-section::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #ebf9f9;
  }
  .recruit-real-voice-section {
    padding: 40px 0;
    position: relative;
  }
  .recruit-real-voice-inner {
    padding: 0;
    position: static;
  }
  .recruit-real-voice-inner::after {
    content: none;
  }
  .recruit-real-voice-content {
    margin-top: 50px;
  }
  .recruit-real-voice-card-group-wrapper {
    gap: 50px;
  }
  .recruit-real-voice-card {
    padding: 30px;
    background-image: linear-gradient(180deg, #47c0c3 0%, #47c0c3 137px, #fff, 137px, #fff 100%);
  }
  .recruit-real-voice-card-name {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .recruit-real-voice-card-thumbnail {
    margin-top: 15px;
  }
  .recruit-real-voice-card-text {
    margin-top: 20px;
  }
  .recruit-real-voice-card-qa-question-wrapper {
    align-items: center;
    gap: 16px;
  }
  .recruit-real-voice-card-qa-question {
    gap: 0.2em;
    font-size: 1.2rem;
  }
  .recruit-real-voice-card-qa-answer {
    margin-top: 15px;
    font-size: 1.2rem;
  }
  .recruit-real-voice-card-navigation-button {
    width: 18px;
    height: 18px;
    cursor: initial;
    transition: none;
  }
  .recruit-real-voice-card-navigation-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .recruit-real-voice-card-navigation-button.prev::before, .recruit-real-voice-card-navigation-button.next::before {
    border-color: transparent #47c0c3;
  }
  .recruit-real-voice-card-navigation-button.prev::before {
    border-width: 4px 6px 4px 0;
  }
  .recruit-real-voice-card-navigation-button.next::before {
    border-width: 4px 0 4px 6px;
  }
}
/* ===================================================
    採用ページ メッセージ MESSAGE
====================================================== */
.recruit-message-section {
  background-color: #ebf9f9;
}
.recruit-message-inner {
  padding: 140px 0 100px;
}
.recruit-message-content {
  margin-top: -5.4em;
  background-color: #fff;
}
.recruit-message-block {
  padding: 160px 96px 80px;
  font-size: 2rem;
  font-weight: 300;
}
.recruit-message-block > * {
  margin-bottom: 1.5em;
}
.recruit-message-block > *:last-child {
  margin-bottom: 0 !important;
}
.recruit-message-block h1, .recruit-message-block h2, .recruit-message-block h3, .recruit-message-block h4, .recruit-message-block h5, .recruit-message-block h6 {
  margin-bottom: 2em;
  text-align: center;
  font: 700 4rem/1.2 "Noto Serif JP", serif;
}
.recruit-message-block .wp-block-image {
  margin: 3em 0;
}
.recruit-message-block {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.6;
}
.recruit-message-block > *:last-child {
  margin-bottom: 0;
}
.recruit-message-block-image {
  margin: 60px 0;
  text-align: center;
}
.recruit-message-switch-wrap {
  display: none;
  margin-top: 30px;
  text-align: center;
}
.recruit-message-switch {
  display: inline-block;
  max-width: 176px;
  width: 100%;
  height: 40px;
  border: 2px solid #47c0c3;
  font-size: 1.4rem;
  font-weight: 700;
  color: #47c0c3;
}
.recruit-message-switch-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 100%;
}
.recruit-message-switch-inner::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #47c0c3;
  border-bottom: 2px solid #47c0c3;
  transform: rotate(45deg) translateY(-40%);
}

@media screen and (max-width: 767px) {
  .recruit-message-section {
    margin: 20px 0 0;
    background-color: transparent;
    position: relative;
  }
  .recruit-message-inner {
    padding: 0 0 30px;
    position: relative;
    top: -20px;
  }
  .recruit-message-content {
    margin-top: 3em;
  }
  .recruit-message-block {
    padding: 32px 20px 30px;
  }
  .recruit-message-block h1, .recruit-message-block h2, .recruit-message-block h3, .recruit-message-block h4, .recruit-message-block h5, .recruit-message-block h6 {
    font-size: 2rem;
  }
  .recruit-message-block-body {
    font-size: 1.4rem;
    line-height: 1.6;
    height: 17.6em;
    overflow: hidden;
    position: relative;
  }
  .recruit-message-block-body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #fff 0%, transparent 20%, transparent 100%);
  }
  .recruit-message-block-body.show {
    overflow: initial;
    height: auto;
  }
  .recruit-message-block-body.show::after {
    content: none;
  }
  .recruit-message-block-image {
    margin: 30px 0;
  }
  .recruit-message-switch-wrap {
    display: block;
  }
  .recruit-message-block-body.show + .recruit-message-switch-wrap {
    display: none;
  }
}
/* ===================================================
    採用ページ 募集要項 JOB DESCRIPTION
====================================================== */
.recruit-jobdescription-section {
  padding: 100px 0;
}
.recruit-jobdescription-inner {
  padding: 100px 150px 60px;
  background-color: #ebf9f9;
}
.recruit-jobdescription-content {
  margin-top: 60px;
}
.recruit-jobdescription-item {
  display: flex;
  padding: 40px 0;
}
.recruit-jobdescription-item:not(:first-child) {
  border-top: 1px solid #ccc;
}
.recruit-jobdescription-title {
  width: 188px;
  font-weight: 500;
  font-size: 2.6rem;
  color: #47c0c3;
  flex-shrink: 0;
}
.recruit-jobdescription-description {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 1140px) {
  .recruit-jobdescription-inner {
    padding: 100px 80px 60px;
  }
  .recruit-jobdescription-title {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-jobdescription-section {
    padding: 40px 0 50px;
    background-color: #ebf9f9;
  }
  .recruit-jobdescription-inner {
    padding: 50px 0;
    background-color: transparent;
  }
  .recruit-jobdescription-content {
    margin-top: 0;
  }
  .recruit-jobdescription-item {
    display: block;
    padding: 30px 0;
  }
  .recruit-jobdescription-title {
    width: auto;
    font-size: 1.4rem;
  }
  .recruit-jobdescription-description {
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
}
/* ===================================================
    採用ページ よくあるご質問 FAQ
====================================================== */
.recruit-faq-section {
  margin: 200px 0;
}
.recruit-faq-inner {
  padding: 0 102px;
}
.recruit-faq-content {
  margin-top: 60px;
}

@media screen and (max-width: 1140px) {
  .recruit-faq-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-faq-section {
    margin: 80px 0;
  }
  .recruit-faq-inner {
    padding: 0;
  }
  .recruit-faq-content {
    margin-top: 40px;
  }
}
/* ===================================================
    採用ページ ご予約はこちら RESERVATION
====================================================== */
/* ===================================================
    アーカイブ一覧
====================================================== */
.review-archive-articles-section {
  margin: 80px 0;
}
.review-archive-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 100px;
}
.review-archive-articles-item {
  width: calc((100% - 100px) / 2);
  display: flex;
  align-items: flex-start;
  gap: 5.7692307692%;
}
.review-archive-articles-item-header {
  width: 28.8461538462%;
}
.review-archive-articles-item-thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.review-archive-articles-item-thumbnail img {
  width: 100%;
}
.review-archive-articles-item-body {
  width: 65.3846153846%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-archive-articles-item-title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4;
}
.review-archive-articles-item-excerpt {
  font-size: 1.4rem;
  line-height: 2.4;
  font-weight: 400;
  margin-bottom: 20px;
}
.review-archive-articles-item-link {
  margin-top: auto;
}

@media screen and (max-width: 1140px) {
  .review-archive-articles-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
  }
  .review-archive-articles-item {
    width: auto;
    gap: 5.7692307692%;
  }
}
@media screen and (max-width: 767px) {
  .review-archive-articles-list {
    gap: 0;
  }
  .review-archive-articles-item {
    padding: 20px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .review-archive-articles-item:not(:first-child) {
    border-top: 1px solid #ddd;
  }
  .review-archive-articles-item:last-child {
    border-bottom: 1px solid #ddd;
  }
  .review-archive-articles-item-header {
    width: auto;
    text-align: center;
  }
  .review-archive-articles-item-thumbnail {
    display: inline-block;
    width: 150px;
  }
  .review-archive-articles-item-body {
    width: auto;
    display: block;
  }
  .review-archive-articles-item-title, .review-archive-articles-item-excerpt {
    font-size: 1.2rem;
    line-height: 2;
  }
}
/* ===================================================
    記事詳細ページ
====================================================== */
.review-single-section {
  margin: 80px 0;
  font-weight: 400;
}
.review-single-header {
  border-top: 1px solid #ddd;
}
.review-single-body {
  margin: 54px auto 0;
  max-width: 900px;
}
.review-single-header-name {
  display: inline-block;
  padding: 0.8em 15px;
  background-color: #ccc;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  min-width: 200px;
}
.review-single-header-title {
  margin: 40px auto 0;
  max-width: 900px;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: inherit;
}
.review-single-footer {
  margin-top: 60px;
  border-bottom: 1px solid #ddd;
}
.review-single-footer-portrait {
  text-align: center;
}
.review-single-footer-portrait img {
  border-radius: 50%;
  width: 150px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.review-single-footer-name {
  margin-top: 0.5em;
  font-size: 1.6rem;
  text-align: center;
}
.review-single-footer-link {
  margin-top: 15px;
}
.review-single-footer-link .link-button {
  margin-left: auto;
}

@media screen and (max-width: 1140px) {
  .review-single-header-title, .review-single-body {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .review-single-header {
    border-top: 0;
  }
  .review-single-header-name {
    font-size: 1.2rem;
  }
  .review-single-header-title {
    font-size: 2rem;
  }
  .review-single-footer {
    border-bottom: 0;
  }
}
/* ===================================================
    アーカイブ一覧
====================================================== */
/* ===================================================
    アーカイブ一覧
====================================================== */
/* ===================================================
    アーカイブ一覧
====================================================== */
.page-post-section {
    margin: 80px 0;
}

