@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;
}

/*
フロント用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 {
  padding-top: 30px;
}
.section__header {
  margin-bottom: 3em;
}
.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;
  text-align: center;
}
@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: 50%;
  transform: translateX(-50%);
  letter-spacing: normal;
  padding-right: 20px;
}
.section {
  /*=============================
  Contents
  =============================*/
}
.section--contact .section__inner {
  max-width: 1024px;
}
.section--contact .section__body {
  background-color: #F5F5F5;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  .section--contact .section__body {
    padding: 2rem 1rem;
  }
}
.section--contact .section__text {
  text-align: center;
  margin: 1rem 0 2.5rem 0;
}

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

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run sass:watch
*/
/* コンタクトフォーム７ */
.wpcf7-form {
  display: flex;
  flex-direction: column;
}

.cf7-row,
.cf7-acceptance {
  display: grid;
  margin-bottom: 20px;
  min-width: 0;
}
@media (max-width: 768px) {
  .cf7-row,
  .cf7-acceptance {
    padding: 0px;
  }
}

.cf7-row {
  grid-template-columns: 290px 1fr;
}
@media (max-width: 768px) {
  .cf7-row {
    grid-template-columns: 1fr;
  }
}

.cf7-acceptance {
  display: inline-flex;
  margin: 0 auto 20px;
}

.cf7-label {
  width: 100%;
  font-weight: bold;
  position: relative;
  padding-top: 6px;
  padding-right: 64px;
}
@media (max-width: 768px) {
  .cf7-label {
    padding: 0 0 5px 56px;
    flex-flow: row;
  }
}
.cf7-label .required, .cf7-label .option {
  font-size: 0.7em;
  position: absolute;
  right: 20px;
  top: 8px;
  padding: 0px 9px 2px;
  font-weight: bold;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .cf7-label .required, .cf7-label .option {
    right: unset;
    left: 5px;
    top: 4px;
  }
}
.cf7-label .required {
  background-color: #ff0700;
  color: #fff;
}
.cf7-label .option {
  background-color: #848484;
  color: #fff;
}

.cf7-input,
.cf7-textarea,
.cf7-checkbox {
  padding: 10px;
  width: 100%;
  border-radius: 7px;
  border: solid 1px #7e7e7e;
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.cf7-input:focus, .cf7-input:focus-visible,
.cf7-textarea:focus,
.cf7-textarea:focus-visible,
.cf7-checkbox:focus,
.cf7-checkbox:focus-visible {
  outline: #003D66 auto 1px;
}
.cf7-input[type=date],
.cf7-textarea[type=date],
.cf7-checkbox[type=date] {
  height: 42px;
}
@media (max-width: 768px) {
  .cf7-input,
  .cf7-textarea,
  .cf7-checkbox {
    max-width: unset;
  }
}

.cf7-input {
  -webkit-appearance: none;
  appearance: none;
}

.cf7-textarea {
  min-height: 150px;
  -webkit-appearance: none;
  appearance: none;
}

.cf7-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cf7-acceptance {
    padding: 0px 20px;
    flex-flow: row;
  }
}
.cf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.cf7-acceptance a {
  text-decoration: underline;
}
.cf7-acceptance a .icon.icon--link {
  fill: transparent;
  color: #333;
  width: 12px;
  height: 12px;
  margin: 3px 0px 0px 3px;
}

.cf7-submit {
  text-align: center;
  padding: 30px 0px;
}
.cf7-submit .btn--primary {
  padding: 0px;
  position: relative;
}
.cf7-submit .input-submit {
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.cf7-submit input[type=submit] {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  padding: 8px 70px;
}
.cf7-submit input[type=submit]:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}
.cf7-submit .wpcf7-spinner {
  position: absolute;
  right: -150px;
}

/*
フロント用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=page-recruit-contact.css.map */
