@charset "UTF-8";
/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
.section__subtitle, .gradient-metal-gray {
  background: linear-gradient(90deg, #686868 0%, #B6B6B6 26.44%, #6E6E6E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--interview .staff-card, .section--journal .journal-card {
  background-color: #fff;
  transition: 0.3s ease;
  box-shadow: 5px 5px 0px 0px rgba(69, 78, 84, 0.59);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 7px;
}
.section--interview .staff-card:active, .section--journal .journal-card:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.63);
}
@media (hover: hover) and (pointer: fine) {
  .section--interview .staff-card:hover, .section--journal .journal-card:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.63);
  }
  .section--interview .staff-card:hover:active, .section--journal .journal-card:hover:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.63);
  }
}

/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color: #333;
  background-color: #FFF;
  line-height: 1.7;
  overflow: auto;
  overflow-x: hidden;
}
body.is-scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}

h1 {
  font-size: 32px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 28px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}
h3 {
  background-color: #B0E0E6;
  padding: 0.5em 0.5em 0.6em;
}

h4 {
  color: #003D66;
  font-weight: bold;
  border-bottom: solid 1px #c9c9c9;
  padding: 0.5em;
}

h5 {
  font-size: 16px;
}
@media (max-width: 1024px) {
  h5 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: 13px;
  }
}
h5 {
  color: #003D66;
  font-weight: bold;
}

p {
  font-size: 16px;
}
@media (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 13px;
  }
}
p {
  line-height: 2rem;
}

.page-id-95 h3, .page-id-106 h3 {
  background-color: transparent;
}

/* セクション共通 */
.section {
  padding: 130px 16px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 16px;
  }
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section__deco {
  position: absolute;
  z-index: -1;
}

/* =========================
   Headings (Gutenberg)
   ========================= */
:root {
  /* ここはテーマの設計に合わせて調整 */
  --heading-font: var(--font-base, "Zen Maru Gothic", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif);
  --heading-color: var(--color-text, #111);
  --heading-line: 1.25;
  --heading-letter: 0.02em;
  --h1: clamp(1.9rem, 1.35rem + 1.8vw, 2.8rem);
  --h2: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  --h3: clamp(1.35rem, 1.05rem + 0.9vw, 1.8rem);
  --h4: clamp(1.15rem, 1.0rem + 0.5vw, 1.4rem);
  --h5: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  --heading-mt: 2.2em;
  --heading-mb: 0.8em;
  /* 装飾用（ブランド色に寄せてOK） */
  --accent: var(--color-accent, #8a7b72);
  --muted: rgba(0,0,0,.08);
}

/* WPブロックの見出しにも確実に当たるように */
:where(h1, h2, h3, h4, h5, .wp-block-heading) {
  font-family: var(--heading-font);
  color: var(--heading-color);
  line-height: var(--heading-line);
  letter-spacing: var(--heading-letter);
  font-weight: 700;
  margin: var(--heading-mt) 0 var(--heading-mb);
  scroll-margin-top: 110px; /* 固定ヘッダーがあるサイト向け */
  text-wrap: balance;
}

/* 見出し直後の余白を少し詰める（読みやすさ） */
:where(h1, h2, h3, h4, h5) + :where(p, ul, ol, .wp-block-image, .wp-block-columns) {
  margin-top: 0.6em;
}

/* -------------------------
    デザイン差分（見出しごとの“らしさ”）
    ------------------------- */
/* H1：ページの主役。下に細いライン */
/* H2：セクション見出し。左にアクセントバー */
/* H3：小見出し。下に点線 */
/* H4：ラベル感。背景で薄く面を作る */
/* H5：控えめ。大文字化などは避け、字間だけ少し */
/* モバイルで余白を少し圧縮 */
@media (max-width: 600px) {
  :root {
    --heading-mt: 1.8em;
    --heading-mb: 0.7em;
  }
}
/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
/*=============================
共通スタイル
=============================*/
/* 画面リーダー用テキスト非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* スマホのみ改行 */
br.sp {
  display: none;
}
@media (max-width: 600px) {
  br.sp {
    display: inline;
  }
}

/* ボタン共通スタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em 3.5em 0.35em 1em;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.631372549);
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.1s ease-out;
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  .btn {
    font-size: 0.85rem;
  }
}
.btn::before {
  content: "";
  position: absolute;
  transition: 0.2s ease-out;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.btn::after {
  content: "";
  position: absolute;
  transition: 0.2s ease-out;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
  mask: url("/wp-content/themes/hair-salt/assets/images/icon/right-arrow.svg") no-repeat center/contain;
}
.btn--primary, .btn--primary-large {
  background-color: #A2C2D0;
  border-color: #A2C2D0;
  color: #fff;
}
.btn--primary::before, .btn--primary-large::before {
  background-color: #fff;
}
.btn--primary::after, .btn--primary-large::after {
  background-color: #A2C2D0;
}
.btn--primary-large {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.3rem;
}
.btn--outline {
  background-color: #fff;
  border-color: #A2C2D0;
  color: #A2C2D0;
}
.btn--outline::before {
  background-color: #A2C2D0;
}
.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.63);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.63);
  }
  .btn:hover:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.63);
  }
}

/* icon(svg) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #fff;
}

/* リンクアイコン */
.link-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/images/icon/link-icon.jpg");
}

/* テキストグラデーション（メタルグレー） */
/*=============================
装飾
=============================*/
/* 円形回転テキスト */
.deco__circle {
  position: absolute;
  inset: auto 0 0 auto; /* 置きたい場所に調整 */
  width: 540px;
  height: 540px;
  opacity: 0.7; /* 背景装飾なら薄めが綺麗 */
  pointer-events: none;
  animation: spin 18s linear infinite;
}
.deco__circle use,
.deco__circle text {
  font-size: 11px;
  fill: #B0E0E6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*=============================
スクロールバーアニメーション
=============================*/
.scrollbar {
  height: 300px;
  width: 30px;
  position: absolute;
  bottom: 0px;
  left: 1em;
}
.scrollbar__text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .scrollbar__text {
    font-size: 0.7em;
  }
}
.scrollbar__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}
.scrollbar__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
}
.scrollbar__line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: circlemove 3s ease-in-out infinite, circlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*=============================
画像スライダー タイプ1（左流れ・エンドレス）
=============================*/
.slider1 {
  overflow: hidden;
  width: 100%; /* 必要に応じて調整 */
  background: #fff; /* 好みで */
  pointer-events: none;
}

.slider1__track {
  display: flex;
  width: max-content;
  animation: slide-left 80s linear infinite; /* 速度はここで調整 */
  transform: translate3d(0, 0, 0);
}

.slider1__item {
  flex: 0 0 auto;
}

.slider1__item img {
  display: block;
  height: 250px; /* 高さ固定したい場合 */
  width: auto; /* 比率維持 */
  object-fit: cover; /* 必要に応じて */
}

/* 左に流れるアニメーション */
@keyframes slide-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
/*=============================
画像スライダー タイプ2（フェード切り替え・エンドレス）
=============================*/
.slider2 {
  overflow: hidden;
  position: relative;
}
.slider2__picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 700ms ease;
}
.slider2__picture.is-active {
  opacity: 1;
}
.slider2__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*=============================
template-parts/components/
=============================*/
/* page-header.php */
.page-header .breadcrumb {
  position: absolute;
  bottom: 100%;
  left: 2em;
  width: 100%;
}
.page-header .breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .page-header .breadcrumb__list {
    font-size: 0.85rem;
  }
}
.page-header .breadcrumb__link::after, .page-header .breadcrumb__current:not(:last-child)::after {
  content: " / ";
  margin-left: 0.2rem;
}
.page-header__inner {
  max-width: 1280px;
  margin: 8em auto;
  position: relative;
  padding: 0 2em;
}
@media (max-width: 768px) {
  .page-header__inner {
    margin-bottom: 4em;
  }
}
.page-header__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #B0E0E6;
  z-index: -1;
  bottom: -50px;
  right: 88%;
}
@media (max-width: 768px) {
  .page-header__inner::before {
    bottom: 50px;
    right: 68%;
  }
}
.page-header__inner::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #d0f9ff;
  z-index: -1;
  bottom: -11px;
  left: -50px;
}
@media (max-width: 768px) {
  .page-header__inner::after {
    width: 70px;
    height: 70px;
    bottom: 9px;
    left: -11px;
  }
}

/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
.site-header {
  width: 100%;
  position: relative;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: 0.5s ease;
}
.site-header.blur .site-header__inner::before {
  backdrop-filter: blur(8px);
  background-color: rgba(244, 239, 237, 0.25);
}
.site-header.blur .site-branding .logo {
  opacity: 1;
  color: #A2C2D0;
}
.site-header.blur .site-branding .logo use {
  fill: #A2C2D0;
}
.site-header.blur .global-nav .menu-item a {
  color: #333 !important;
}
.site-header.blur .global-nav .menu-item a::after {
  background-color: #333 !important;
}
.site-header.blur .btn-cart .icon--cart {
  color: #333;
}
.site-header.blur .btn-cart__label {
  color: #333;
}
.site-header.blur .btn-hamburger span {
  background-color: #333;
}
.site-header.blur .btn-hamburger__label {
  color: #333;
}
.site-header__inner {
  padding: 0 76px 0 16px;
  height: 65px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 66px 0 16px;
    height: 55px;
    column-gap: 12px;
    justify-content: end;
  }
}
.site-header__inner::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}
@media (max-width: 768px) {
  .site-header .site-branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-header .site-branding a {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header .site-branding .logo {
  height: 40px;
  width: 120px;
  color: #fff;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .site-header .site-branding .logo {
    max-height: 32px;
  }
}
.site-header .site-branding .logo use {
  fill: #fff;
}
.site-header .global-nav {
  margin-left: auto;
}
@media (max-width: 768px) {
  .site-header .global-nav {
    display: none;
  }
}
.site-header .global-nav .menu {
  display: flex;
  align-items: center;
  column-gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .global-nav .menu-item {
  position: relative;
}
.site-header .global-nav .menu-item a {
  display: inline-block;
  padding: 4px 0;
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.5s ease;
}
.site-header .global-nav .menu-item.current-menu-item a {
  color: #7A6545;
}
.site-header .global-nav .menu-item.current-menu-item a:after {
  width: 100%;
}
.site-header .btn-hamburger {
  width: 40px;
  height: 48px;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
  box-sizing: border-box;
  position: fixed;
  top: 9px;
  right: 16px;
  z-index: 100000000;
}
@media (max-width: 768px) {
  .site-header .btn-hamburger {
    top: 3px;
    right: 13px;
  }
}
.site-header .btn-hamburger:hover {
  opacity: 0.8;
}
.site-header .btn-hamburger:active {
  opacity: 0.6;
}
.site-header .btn-hamburger__inner {
  width: 40px;
  height: 26px;
  position: inherit;
}
.site-header .btn-hamburger__label {
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 0.65rem;
  color: #ffffff;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0px);
  white-space: nowrap;
  transition: color 0.5s ease;
}
.site-header .btn-hamburger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: background-color 0.5s ease;
}
.site-header .btn-hamburger span:nth-of-type(1) {
  top: 33.33%;
  animation: bar1-animation 0.5s forwards;
}
.site-header .btn-hamburger span:nth-of-type(2) {
  top: 66.66%;
  animation: bar2-animation 0.5s forwards;
}
.site-header .btn-hamburger.active .btn-hamburger__label {
  color: #333;
}
.site-header .btn-hamburger.active span {
  background-color: #333;
}
.site-header .btn-hamburger.active span:nth-of-type(1) {
  animation: active-bar1-animation 0.5s 0s forwards;
}
.site-header .btn-hamburger.active span:nth-of-type(2) {
  animation: active-bar2-animation 0.5s 0s forwards;
}
@keyframes bar1-animation {
  0% {
    top: 50%;
    transform: rotate(-20deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 33.33%;
  }
}
@keyframes bar2-animation {
  0% {
    top: 50%;
    transform: rotate(20deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 66.66%;
  }
}
@keyframes active-bar1-animation {
  0% {
    top: 33.33%;
    transform: rotate(0);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(-20deg);
  }
}
@keyframes active-bar2-animation {
  0% {
    top: 66.66%;
    transform: rotate(0);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(20deg);
  }
}
.site-header .global-modal {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: opacity 0.2s ease;
  overflow: hidden;
}
.site-header .global-modal.active {
  visibility: visible;
  opacity: 1;
}
.site-header .global-modal.active .global-modal__container {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.site-header .global-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(226, 226, 226, 0.5);
  backdrop-filter: blur(8px);
}
.site-header .global-modal__container {
  opacity: 0;
  position: relative;
  text-align: center;
  z-index: 2;
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .site-header .global-modal__container {
    height: 100dvh;
    width: 100vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
  }
}
.site-header .global-modal__logo {
  display: inline-block;
}
.site-header .global-modal__logo svg {
  width: 140px;
  fill: #A2C2D0;
}
.site-header .global-modal .global-modal__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 48px;
}
@media (max-width: 900px) {
  .site-header .global-modal .global-modal__menu {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.site-header .global-modal .global-modal__menu > .menu-item > a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
  color: #454545;
  text-decoration: none;
}
.site-header .global-modal .global-modal__menu .sub-menu {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.site-header .global-modal .global-modal__menu .sub-menu li {
  margin-top: 10px;
}
.site-header .global-modal .global-modal__menu .sub-menu a {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #333;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-header .global-modal .global-modal__menu .sub-menu a:hover {
  opacity: 0.65;
  transform: translateX(2px);
}

/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
.section__title {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  color: #003D66;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 0.5em;
  position: relative;
  z-index: 2;
  padding-left: 0;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__subtitle {
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  position: absolute;
  top: -30px;
  left: 3px;
  letter-spacing: normal;
  padding-right: 20px;
}
.section {
  /*=============================
  メインビジュアル
  =============================*/
}
.section--hero {
  padding: 0px;
}
.section--hero .hero {
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .section--hero .hero {
    min-height: 300px;
  }
}
.section--hero .hero__inner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.section--hero .hero__visual {
  width: 100%;
  height: 100%;
}
.section--hero .message {
  position: absolute;
  right: 2em;
  bottom: 2em;
  color: #fff;
  font-size: 0.8em;
  text-align: right;
}
@media (max-width: 768px) {
  .section--hero .message {
    font-size: 0.7em;
  }
}
.section {
  /*=============================
  About
  =============================*/
}
.section--about {
  position: relative;
}
@media (max-width: 768px) {
  .section--about {
    padding-top: 50px;
  }
}
.section--about .section__inner {
  display: flex;
  flex-flow: column wrap;
  max-width: 980px;
}
.section--about .section__header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section--about .about__message {
  width: 474px;
}
@media (max-width: 768px) {
  .section--about .about__message {
    width: 80%;
    height: 140px;
  }
}
.section--about .about__message .message__image {
  width: 100%;
}
.section--about .about__message .message__image use {
  color: #A2C2D0;
}
.section--about .section__body {
  text-align: center;
  line-height: 2em;
  position: relative;
}
.section--about .bg__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1220px;
  height: 230px;
}
@media (max-width: 1024px) {
  .section--about .bg__image {
    width: 120%;
  }
}
.section--about .bg__image use {
  color: #A2C2D0;
}
.section--about .section__btn {
  margin-top: 2em;
}
.section--about .deco__circle {
  bottom: -290px;
  right: -190px;
}
@media (max-width: 768px) {
  .section--about .deco__circle {
    bottom: -170px;
    right: -130px;
    width: 290px;
    height: 290px;
  }
}
.section {
  /*=============================
  Recruit
  =============================*/
}
.section--recruit {
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 768px) {
  .section--recruit {
    padding-top: 0px;
  }
}
.section--recruit .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "a b" ". c";
  gap: 16px; /* 任意 */
}
@media (max-width: 768px) {
  .section--recruit .section__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
  }
}
.section--recruit .section__image {
  grid-area: a;
  position: relative;
}
@media (max-width: 768px) {
  .section--recruit .section__image {
    height: 370px;
  }
}
.section--recruit .section__image::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 180px;
  width: 460px;
  height: 420px;
  background-color: #B0E0E6;
}
@media (max-width: 768px) {
  .section--recruit .section__image::before {
    top: 10px;
    right: unset;
    left: -10px;
    width: 330px;
    height: 290px;
  }
}
.section--recruit .section__picture {
  position: absolute;
  top: 88px;
  right: 60px;
  width: calc(90% - 60px);
}
@media (max-width: 768px) {
  .section--recruit .section__picture {
    right: unset;
    left: 30px;
    height: 370px;
    width: calc(90% - 25px);
    max-width: 350px;
  }
}
.section--recruit .section__header {
  grid-area: b;
}
.section--recruit .section__header h2::before {
  content: unset;
}
@media (max-width: 768px) {
  .section--recruit .section__header {
    padding-left: 2rem;
  }
}
.section--recruit .section__text {
  line-height: 2em;
  margin-top: 30px;
  margin-bottom: 20px;
}
.section--recruit .section__body {
  grid-area: c;
}
@media (max-width: 768px) {
  .section--recruit .section__body {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.section--recruit .section__btn {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  align-items: start;
}
.section--recruit .section__btn .btn {
  width: 100%;
  max-width: 410px;
}
.section {
  /*=============================
  Interview
  =============================*/
}
.section--interview {
  padding-top: 260px;
  padding-right: 0px;
}
@media (max-width: 768px) {
  .section--interview {
    padding-top: 110px;
  }
}
.section--interview .section__inner {
  max-width: unset;
  display: grid;
  grid-template-columns: 460px 1fr;
  grid-template-areas: "a b";
  gap: 16px; /* 任意 */
}
@media (max-width: 768px) {
  .section--interview .section__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b";
  }
}
.section--interview .section__header {
  grid-area: a;
  padding-top: 70px;
  padding-left: 60px;
  z-index: 1;
}
@media (max-width: 768px) {
  .section--interview .section__header {
    padding-left: 20px;
  }
}
.section--interview .section__header h2::before {
  content: unset;
}
.section--interview .section__body {
  grid-area: b;
  position: relative;
}
.section--interview .section__body::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 500px;
  background-color: #B0E0E6;
  top: -100px;
  left: 190px;
}
@media (max-width: 768px) {
  .section--interview .section__body::before {
    top: -250px;
    left: 60px;
  }
}
.section--interview .staff-slider {
  position: relative;
  display: grid;
  align-items: center;
  gap: 12px;
}
.section--interview .staff-slider__track {
  overflow: hidden;
  min-width: 0;
  padding: 20px 0 20px 10px;
}
.section--interview .staff-slider__rail {
  display: flex;
  align-items: stretch;
  gap: 16px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.section--interview .staff-slider__footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--interview .staff-slider__prev, .section--interview .staff-slider__next {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  line-height: 0;
}
.section--interview .staff-slider__prev:focus-visible, .section--interview .staff-slider__next:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
@media (hover: hover) {
  .section--interview .staff-slider__prev:hover, .section--interview .staff-slider__next:hover {
    transform: translateY(-1px);
  }
}
.section--interview .staff-slider__prev .icon--prev,
.section--interview .staff-slider__prev .icon--next, .section--interview .staff-slider__next .icon--prev,
.section--interview .staff-slider__next .icon--next {
  width: 1.5em;
  height: 1.5em;
  color: #333;
}
.section--interview .staff-slider__fraction {
  font-size: 14px;
  letter-spacing: 0.15em;
  margin: 0 2em;
}
.section--interview .staff-slider__current {
  font-weight: 600;
}
.section--interview .staff-slider__divider {
  opacity: 0.4;
  margin: 0 4px;
}
.section--interview .staff-slider__total {
  opacity: 0.6;
}
.section--interview .staff-card {
  flex: 0 0 auto;
  position: relative;
  width: clamp(240px, 28vw, 360px);
  overflow: hidden;
}
.section--interview .staff-card__post {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #3F3F3F;
  color: #fff;
  writing-mode: vertical-rl;
  padding: 1em 0 1em 0.2em;
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
}
.section--interview .staff-card__thumb {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  display: block;
  background-color: #ddd;
}
.section--interview .staff-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section--interview .staff-card__info {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  gap: 1em;
  margin-bottom: 4px;
  padding: 1em 0 0 1.5em;
}
@media (max-width: 768px) {
  .section--interview .staff-card__info {
    gap: 0.3em;
    padding: 0.6em 0 0 0.7em;
  }
}
.section--interview .staff-card__info:last-of-type {
  padding: 0 0 1em 1.5em;
}
@media (max-width: 768px) {
  .section--interview .staff-card__info:last-of-type {
    padding: 0 0 0.8em 0.7em;
  }
}
.section--interview .staff-card__department, .section--interview .staff-card__post-jp, .section--interview .staff-card__furigana {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .section--interview .staff-card__department, .section--interview .staff-card__post-jp, .section--interview .staff-card__furigana {
    font-size: 0.7rem;
  }
}
.section--interview .staff-card__name {
  font-size: 1.8rem;
  margin: 0;
  padding: 0;
  border: 0;
}
@media (max-width: 768px) {
  .section--interview .staff-card__name {
    font-size: 1.3rem;
  }
}
.section--interview .staff-card__movie {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #A2C2D0;
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .section--interview .staff-card__movie {
    bottom: 14px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.section {
  /*=============================
  Journal
  =============================*/
}
.section--journal {
  padding-top: 40px;
}
.section--journal .section__header {
  margin-bottom: 3em;
}
.section--journal .section__header h2::before {
  content: unset;
}
.section--journal .journal-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 768px) {
  .section--journal .journal-list {
    gap: 20px;
  }
}
.section--journal .journal-card {
  background: #fff;
  overflow: hidden;
}
.section--journal .journal-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.section--journal .journal-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.section--journal .journal-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.section--journal .journal-card__body {
  padding: 20px;
}
.section--journal .journal-card__meta {
  font-size: 13px;
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  color: #777;
}
.section--journal .journal-card__category {
  background: #eee;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 11px;
}
.section--journal .journal-card__title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.section--journal .section__footer {
  padding-top: 2em;
  text-align: end;
}
@media (max-width: 768px) {
  .section--journal .section__footer {
    text-align: center;
  }
}
.section {
  /*=============================
  Instagram
  =============================*/
}
.section--instagram {
  padding-bottom: 160px;
}
.section--instagram .section__inner {
  max-width: unset;
  position: relative;
}
.section--instagram .section__header {
  max-width: 1024px;
  margin: 2em auto;
  position: relative;
}
@media (max-width: 768px) {
  .section--instagram .section__header {
    margin: 1em auto;
  }
}
.section--instagram .section__header h2::before {
  content: unset;
}
.section--instagram .gallery-grid {
  max-width: 1024px;
  margin: 0 auto;
}
.section--instagram .sb_instagram_header,
.section--instagram #sbi_load {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.section--instagram .deco__circle {
  bottom: -340px;
  right: -180px;
}
@media (max-width: 768px) {
  .section--instagram .deco__circle {
    bottom: -280px;
    right: -100px;
    width: 290px;
    height: 290px;
  }
}

/*
フロント用scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
.site-footer {
  overflow: hidden;
  position: relative;
  background-color: #B0E0E6;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  color: #333;
  padding: 20px 25px;
  display: grid;
  grid-template-areas: "a a" "b c";
  grid-template-columns: 1fr 1fr;
}
.site-footer__inner .footer-nav {
  grid-area: a;
}
.site-footer__inner .footer-nav .menu {
  list-style: none;
  padding: 0px;
  font-size: 1rem;
  font-weight: normal;
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-footer__inner .footer-nav .menu {
    font-size: 0.85rem;
  }
}
.site-footer__inner .footer-nav .menu .menu-item {
  margin-right: 10px;
  margin-bottom: 5px;
  font-family: "Caveat", "Helvetica Neue", Arial, sans-serif;
  min-width: 120px;
}
@media (max-width: 768px) {
  .site-footer__inner .footer-nav .menu .menu-item {
    min-width: unset;
  }
}
.site-footer__inner .footer-nav .menu .menu-item .sub-menu {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  list-style: unset;
  padding-left: 0.5em;
  padding-top: 0.5em;
}
.site-footer__inner .policy {
  grid-area: b;
  display: flex;
  gap: 0.8em;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .site-footer__inner .policy {
    font-size: 0.8rem;
  }
}
.site-footer__inner .policy a {
  display: flex;
}
.site-footer__inner .copy {
  grid-area: c;
  display: block;
  text-align: right;
  font-size: 0.77rem;
}
@media (max-width: 768px) {
  .site-footer__inner .copy {
    font-size: 0.7rem;
  }
}

.recruit-float {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 16px;
  border-radius: 14px;
  background: #A2C2D0;
  backdrop-filter: blur(8px);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.recruit-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.recruit-float__link {
  flex: 1;
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.35;
}
.recruit-float__text {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.recruit-float__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
}
@media (min-width: 768px) {
  .recruit-float {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 360px;
  }
}

/*# sourceMappingURL=front-page.css.map */
