/* ==========================================================================
 * Page Name : 共通css
 * File Name : /assets/css/style.css
 * Created   : 2026-07-09
 * Updated   : 2026-07-13
 * ========================================================================== */

/* ========================================
  　root
======================================== */
:root {
  --text-main-color: #584849;
  --text-sub-color: #9d9393;
  --text-transparent-color: rgba(88, 72, 73, 0.6);
  --text-main-hovercolor: #126ced;

  --color-main: #e50012;
  --color-white: #fff;
  --color-back-dark: #fcf5ec;
  --color-back-light: #fefdfb;
  --color-back-pink: #ffebe6;
  --color-button-sub: #99797c;

  --color-green: #6faf8f;
  --color-green-back: #edf0e9;
  --color-blue: #8394ad;
  --color-blue-back: #edeff2;
  --color-gray-light: #ccc;

  --color-border: rgb(26, 26, 26, 0.1);
  --color-border-blue: #d0d4db;
  --color-border-beige: #e7dada;

  --color-rank-1: #d1bf76;
  --color-rank-2: #bababa;
  --color-rank-3: #d0a59a;
  --color-rank-4: #7faf9b;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* ========================================
  　フォント
======================================== */
/* Zen Kaku Gothic */
@font-face {
  font-family: "Zen Kaku Gothic";
  src: url("../font/ZenKakuGothic/ZenKakuGothicAntique-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic";
  src: url("../font/ZenKakuGothic/ZenKakuGothicAntique-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic";
  src: url("../font/ZenKakuGothic/ZenKakuGothicAntique-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ./Zen Kaku Gothic */
/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ./Poppins */
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ./Noto Sans JP */

/* ===============================
　画像保存対策
=============================== */
img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* ========================================
  　base
======================================== */
body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main-color);
  -webkit-text-size-adjust: 100%;
  font-weight: var(--font-weight-medium);
  background-color: var(--color-back-light);
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  flex-shrink: 0;
}
.m-auto {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* ========================================
  　component
======================================== */
.hidden {
  display: none;
}
.d-none {
  display: none;
}

/* Zen Kaku Gothicを使用する場合 */
.zenkaku {
  font-family: "Poppins", "Zen Kaku Gothic", "Noto Sans JP", sans-serif;
}
/* ./Zen Kaku Gothicを使用する場合 */

/* 文字色 */
.fc-r {
  color: var(--color-main);
}
.fc-sub {
  color: var(--text-sub-color);
}
.fc-trans {
  color: var(--text-transparent-color);
}
.fc-w {
  color: var(--color-white);
}
.fc-b {
  color: var(--color-button-sub);
}

/* 文字揃え */
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}
.ta-l {
  text-align: left;
}
/* ./文字揃え */

/* 文字の太さ */
.fw-b,
.fw-700 {
  font-weight: 700;
}
.fw-500 {
  font-weight: 500;
}
.fw-500 {
  font-weight: 400;
}
/* ./文字の太さ */

/* 角丸 */
.br-m {
  border-radius: 9999px;
}
/* ./角丸 */

/* ボックスシャドウ */
.bs-h {
  box-shadow: 0px 0px 6px 0px rgba(88, 72, 73, 0.2);
}
/* ./ボックスシャドウ */

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

/* ========================================
  　layout
======================================== */
.wrapper {
  width: min(100% - 100px, 1080px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .wrapper {
    width: min(100% - 40px, 1080px);
    margin-inline: auto;
  }
}

/* 共通ボタン */
.common-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 196px;
  height: 50px;
  padding: 0 25px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.common-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--text-main-color);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}
.common-button:hover::before,
.common-button:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.common-button__label,
.common-button__icon {
  position: relative;
  z-index: 1;
}
.common-button__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.common-button__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}
.common-button__icon::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translate(-75%, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}
.common-button:hover,
.common-button:focus-visible {
  transform: scale(1.15);
}
.common-button:hover .common-button__icon::before,
.common-button:focus-visible .common-button__icon::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.common-button:hover .common-button__icon::after,
.common-button:focus-visible .common-button__icon::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: reduce) {
  .common-button::before,
  .common-button__icon::before,
  .common-button__icon::after {
    transition: none;
  }
}
.common-button__blue {
  background-color: var(--color-blue);
}
.common-button__green {
  background-color: var(--color-green);
}
.common-button__brown {
  background-color: var(--color-button-sub);
}
/* ./共通ボタン */

/* 共通ボタン(小) */
.common-button_min {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 30px;
  padding: 0 15px 0 20px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.common-button_min::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--text-main-color);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}
.common-button_min:hover::before,
.common-button_min:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.common-button_min .common-button__icon {
  height: 5px;
  width: 5px;
}
.common-button_min .common-button__icon::before {
  width: 3px;
  height: 3px;
  transition: transform 0.3s ease;
}
.common-button_min .common-button__icon::after {
  font-size: 12px;
}
.common-button_min:hover,
.common-button_min:focus-visible {
  transform: scale(1.15);
}
/* ./共通ボタン(小) */

/* フロントページ共通見出し */
.frontpage-heading,
.frontpage-heading__sub {
  letter-spacing: 0.15em;
  font-weight: 700;
}
.frontpage-heading {
  margin-bottom: 50px;
  font-size: 42px;
}
.frontpage-heading__sub {
  font-size: 19px;
  position: relative;
}
.frontpage-heading__sub::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/common/deco.png") center center / contain no-repeat;
  width: 19px;
  height: 21px;
  top: -10px;
  right: -20px;
}
@media (max-width: 767px) {
  .frontpage-heading {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .frontpage-heading__sub {
    font-size: 16px;
  }
  .frontpage-heading__sub::after {
    right: -15px;
  }
}
/* ./フロントページ共通見出し */

/* ナビゲーションリンク(メイン) */
.nav-link__main {
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s ease;
  font-size: 16px;
}
.nav-link__main::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-main);
  transition: transform 0.3s ease;
}
.nav-link__main:hover {
  color: var(--color-main);
}
.nav-link__main:hover::before {
  transform: scale(2);
}
div > .nav-link__main:not(:first-child) {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .nav-link__main {
    font-size: 14px;
  }
}
/* ./ナビゲーションリンク(メイン) */

/* ナビゲーションリンク(サブ) */
.nav-link__sub {
  font-size: 14px;
  padding-left: 15px;
  margin-top: 15px;
}
.nav-link__sub li:not(:first-child) {
  margin-top: 10px;
}
.nav-link__sub a {
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s ease;
}
.nav-link__sub a::before {
  display: block;
  content: "";
  width: 15px;
  height: 1px;
  background: var(--text-main-color);
}
.nav-link__sub a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .nav-link__sub a {
    font-size: 12px;
  }
  .nav-link__sub a::before {
    width: 10px;
  }
  .nav-link__sub li:not(:first-child) {
    margin-top: 15px;
  }
}
/* ./ナビゲーションリンク(サブ) */

/* アコーディオン */
#acMenu .ac-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
#acMenu .ac-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
}
#acMenu .ac-icon {
  flex: 1;
  display: flex;
  justify-content: right;
}
#acMenu .ac-icon span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
/* 開閉ボタンをプラスアイコンにする場合 */
#acMenu .ac-icon.ac-icon__plus span::before,
#acMenu .ac-icon.ac-icon__plus span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-main);
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
#acMenu .ac-icon.ac-icon__plus span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#acMenu .ac-icon__plus.ac-icon-active span {
  transform: rotate(180deg);
}
#acMenu .ac-icon__plus.ac-icon-active span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
/* 開閉ボタンを矢印にする場合 */
#acMenu .ac-icon.ac-icon__arrow span::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
#acMenu .ac-icon__arrow.ac-icon-active span::after {
  transform: rotate(225deg);
}
/* ./アコーディオン */

/* フェードインアニメーション */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.5s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 {
  transition-delay: 0.15s;
}

.fade-delay-2 {
  transition-delay: 0.3s;
}

.fade-delay-3 {
  transition-delay: 0.45s;
}

.fade-delay-4 {
  transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ./フェードインアニメーション */

/* ========================================
  　header
======================================== */
header a:not([href]) {
  cursor: default;
}
header a:not([href]):hover {
  opacity: inherit;
}
header.global-header {
  padding: 20px 20px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header.global-header > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ヘッダーナビゲーション部分 */
header.global-header .header-main {
  background: var(--color-white);
  padding: 0 40px;
  height: 80px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.global-header .header-logo {
  width: 70px;
  display: block;
}
header.global-header .header-main ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
header.global-header .header-main ul a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.1em;
}
header.global-header .header-main ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-main);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
header.global-header .header-main ul a:hover::after,
header.global-header .header-main ul a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 315px;
}
/* ./ヘッダーナビゲーション部分 */

/* ヘッダーお問い合わせボタン */
.header-contact {
  position: relative;
  overflow: hidden;
  width: 195px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-main);
  color: var(--color-white);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--text-main-color);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}
.header-contact:hover::before,
.header-contact:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.header-contact img,
.header-contact span {
  position: relative;
  z-index: 1;
}
.header-contact img {
  transition: transform 0.3s ease;
}
.header-contact:hover,
.header-contact:focus-visible {
  transform: scale(1.15);
}
/* ./ヘッダーお問い合わせボタン */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* ========================================
  　ハンバーガーメニュー
======================================== */

.hamburger-menu__sp {
  display: none;
}
.hamburger-menu__pc {
  display: block;
}
/* ハンバーガーボタン */
.hamburger-button {
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--text-main-color);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease !important;
}
.hamburger-button > span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}
.hamburger-button > span:nth-child(2) {
  width: 15px;
  align-self: flex-start;
  margin-left: 25px;
}
.hamburger-button:hover {
  transform: scale(1.2);
}
.hamburger-button:hover > span {
  width: 30px;
}
/* ./ハンバーガーボタン */

/* 背景色 */
.hamburger-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 100px 50px 50px;
  background-color: rgb(88 72 73 / 70%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.hamburger-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
/* ./背景色 */

/* モーダル部分 */
.hamburger-menu__inner {
  position: relative;
  width: 100%;
  max-width: 1380px;
  height: fit-content;
  transform: translateY(60px);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.hamburger-menu.is-open .hamburger-menu__inner {
  transform: translateY(0);
  opacity: 1;
}
/* ./モーダル部分 */

/* メニュー本体 */
.hamburger-wrapper {
  width: 100%;
  min-height: 500px;
  padding: 50px;
  border-radius: 40px;
  background-color: var(--color-back-dark);
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  gap: 70px;
  background-image: url("../images/common/hamburger_pc_back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hamburger-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-nav__top {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.hamburger-nav__top > div {
  width: fit-content;
}
.hamburger-nav__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.hamburger-nav__bottom a {
  transition: transform 0.3s ease;
  display: block;
}
.hamburger-nav__bottom .hamburger-nav__banner {
  width: 250px;
}
.hamburger-nav__bottom .hamburger-nav__banner:hover {
  transform: scale(1.15);
}
.hamburger-nav__bottom .hamburger-nav__sns {
  display: flex;
  gap: 15px;
}
.hamburger-nav__bottom .hamburger-nav__sns a:hover {
  transform: scale(1.3);
}
.hamburger-contact {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px 20px;
  width: 280px;
}
.hamburger-contact p.ta-c {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
.hamburger-contact > .header-contact {
  margin: 15px auto 25px;
}
.hamburger-contact__tel {
  border-top: var(--color-border) solid 1px;
  padding-top: 25px;
}
.hamburger-contact__tel > ul {
  width: fit-content;
}
.hamburger-contact__tel > ul > li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.hamburger-contact__tel > ul > li:first-of-type {
  margin-top: 20px;
}
.hamburger-contact__tel > ul > li img {
  width: 35px;
  height: auto;
  flex-shrink: 0;
}
.hamburger-contact__tel > ul > li > div {
  flex: 1;
}
.hamburger-contact__tel > ul > li > div > p:nth-child(2) {
  font-size: 10px;
  color: var(--text-sub-color);
}
/* ./メニュー本体 */

/* 閉じるボタン */
.hamburger-close {
  position: absolute;
  top: -13px;
  right: -13px;
  z-index: 2;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 5px solid var(--color-back-dark);
  border-radius: 50%;
  background-color: #584849;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger-close:hover {
  transform: scale(1.3);
}
.hamburger-close::before,
.hamburger-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-white);
}
.hamburger-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* ./閉じるボタン */

/* スクロール停止 */
body.menu-open {
  overflow: hidden;
}
/* ./スクロール停止 */

/* ヘッダーモーダルメニューの調整 */
@media (max-width: 1330px) {
  .hamburger-menu__sp {
    display: block;
  }
  .hamburger-menu__pc {
    display: none;
  }
  .hamburger-close {
    top: 10px;
    right: 10px;
  }
  .hamburger-menu {
    padding: 0;
    background-color: transparent;
  }
  .hamburger-wrapper {
    height: 100dvh;
    border-radius: 0;
    padding: 80px 50px 50px;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hamburger-wrapper::-webkit-scrollbar {
    display: none;
  }
  .nav_content {
    width: 100%;
    flex: 1;
  }
  .nav_list > li {
    padding-bottom: 15px;
    margin-top: 15px;
    border-bottom: #e7dada solid 1px;
  }
  .hamburger-right__sp {
    width: 280px;
  }
  .hamburger-contact {
    width: 100%;
  }
  .hamburger-nav__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
  }
  .hamburger-nav__bottom .hamburger-nav__banner {
    width: 100%;
  }
}
/* ./ヘッダーモーダルメニューの調整 */

/* ヘッダーモーダルメニューの調整 */
@media (max-width: 1140px) {
  header.global-header > div {
    position: relative;
  }
  header.global-header .header-main {
    max-width: none;
  }
  header.global-header .header-main ul {
    display: none;
  }
  .header-right {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 0;
  }
  .header-right > .header-contact {
    display: none;
  }
}
/* ./ヘッダーメニューの調整 */

/* SP版ハンバーガーメニュー */
@media (max-width: 767px) {
  header.global-header {
    padding: 10px 10px 0;
  }
  header.global-header .header-main {
    height: 60px;
    padding: 0 20px;
  }
  .hamburger-button {
    width: 60px;
    height: 60px;
    gap: 5px;
  }
  .hamburger-button > span {
    width: 20px;
    height: 2px;
  }
  .hamburger-button > span:nth-child(2) {
    margin-left: 20px;
    width: 10px;
  }
  .hamburger-button:hover > span {
    width: 20px;
  }
  .hamburger-wrapper {
    padding: 80px 20px 20px;
    flex-direction: column;
    gap: 40px;
    background-color: #fefaf6;
    background-image: url("../images/common/hamburger_sp_back.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
  }
  .hamburger-right__sp {
    width: 100%;
  }
  .hamburger-nav__bottom {
    gap: 40px;
  }
  .hamburger-contact {
    padding: 20px;
  }
  .hamburger-contact p.ta-c {
    font-size: 14px;
  }
  .hamburger-contact > .header-contact {
    margin: 15px auto 20px;
  }
  .hamburger-contact__tel {
    padding-top: 20px;
  }
  .hamburger-nav__bottom .hamburger-nav__banner {
    width: 350px;
  }
  .hamburger-contact__tel > ul > li {
    font-size: 18px;
  }
  .hamburger-contact__tel > ul > li > img {
    width: 40px;
  }
}
/* ./SP版ハンバーガーメニュー */

/* ========================================
  　footer
======================================== */
footer a:not([href]) {
  cursor: default;
}
footer a:not([href]):hover {
  opacity: inherit;
}

.global-footer__main {
  background-color: var(--color-back-dark);
  padding: 60px 20px 100px;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.footer-nav__sp {
  display: none;
}
.footer-contact {
  background-color: var(--color-back-light);
  border-radius: 40px;
  padding: 60px 20px;
}
.footer-contact > p {
  font-size: 26px;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
.footer-contact > .header-contact {
  max-width: 300px;
  width: 100%;
  gap: 10px;
  font-size: 18px;
  height: 65px;
}
.global-footer__foot {
  padding: 60px 20px 30px;
  background-color: var(--color-white);
}
.footer-foot__inner {
  display: flex;
  justify-content: space-between;
}
.footer-foot__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-foot__left > div {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  font-size: 14px;
}
.footer-foot__left > div .footer-logo {
  width: 100px;
}
.footer-foot__address > p:first-of-type {
  margin-bottom: 7px;
}
.footer-foot__left nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer-foot__left nav a {
  transition: opacity 0.3s ease;
}
.footer-foot__left nav a:hover {
  opacity: 0.6;
}
.footer-foot__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
}
.footer-foot__right .privacy-mark {
  width: 75px;
  padding: 5px;
}
.footer-foot__sns {
  display: flex;
  gap: 15px;
  margin: 35px 0 20px;
}
.footer-foot__sns a {
  transition: transform 0.3s ease;
  display: block;
}
.footer-foot__sns a:hover {
  transform: scale(1.3);
}
.footer-foot__note {
  padding-top: 15px;
  margin-top: 15px;
  font-size: 12px;
  border-top: #e8d8da solid 1px;
  text-align: center;
}
@media (max-width: 1050px) {
  .footer-nav {
    gap: 30px;
  }
  .footer-nav__pc {
    display: none;
  }
  .footer-nav__sp {
    display: flex;
    justify-content: flex-start;
  }
  .footer-nav__sp > a {
    width: calc((100% - 60px) / 3);
  }
  .footer-nav .nav-link__sub {
    display: none;
  }
  .footer-contact > p {
    font-size: 20px;
  }
  .footer-foot__note {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .global-footer__main {
    padding: 30px 0 60px;
  }
  .footer-nav__sp {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 40px;
    gap: 15px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-nav__sp > a {
    width: fit-content;
  }
  .footer-contact {
    border-radius: 15px;
    padding: 40px 10px;
  }
  .footer-contact > p {
    margin-bottom: 20px;
  }
  .global-footer__foot {
    padding: 40px 0 15px;
  }
  .footer-foot__inner {
    flex-direction: column;
  }
  .footer-foot__left > div {
    flex-direction: column;
    margin-bottom: 25px;
    gap: 25px;
  }
  .footer-foot__left nav {
    display: none;
  }
  .footer-foot__right {
    align-items: flex-start;
  }
  .footer-foot__right .privacy-mark {
    display: flex;
    gap: 15px;
    align-items: center;
    width: fit-content;
  }
  .footer-foot__right .privacy-mark img {
    width: 65px;
  }
  .footer-foot__right .privacy-mark a {
    display: block;
  }
  .footer-foot__right .privacy-mark a:first-of-type {
    margin-bottom: 10px;
  }
  .footer-foot__sns {
    margin: 40px auto 20px;
  }
  .footer-foot__right > p {
    text-align: center;
    width: 100%;
  }
  .footer-foot__note {
    margin-top: 20px;
  }
}

/* ========================================
  　下層ページ共通
======================================== */
/* ページヒーロー部分 */
.pagehero {
  padding-bottom: 55px;
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background-color: var(--color-back-dark);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
.pagehero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(930px, 100%);
  aspect-ratio: 930 / 202;
  background: rgba(255, 255, 255, 0.54);
  -webkit-mask:url("../images/common/pagehero.svg")
  no-repeat center / 100% 100%;
  mask:url("../images/common/pagehero.svg")
  no-repeat center / 100% 100%;
}
.pagehero-box {
  margin-top: 162px;
  position: relative;
  z-index: 2;
}
.pagehero-entitle {
  width: fit-content;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-main);
  letter-spacing: 0.15em;
  position: relative;
}
.pagehero-entitle::after {
  content: "";
  background: url("../images/common/deco.png") center center / contain no-repeat;
  width: 15px;
  height: 17px;
  position: absolute;
  top: -5px;
  right: -15px;
  left: auto;
}
.pagehero-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
/* パンくす */
.breadcrumb {
  margin-top: 35px;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
  scrollbar-width: none;             /* Firefox */
}
.breadcrumb::-webkit-scrollbar {
  display: none;                     /* Chrome, Safari */
}
.aioseo-breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
}
.aioseo-breadcrumb {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
}

.aioseo-breadcrumb a {
  color: var(--color-main);
}
.aioseo-breadcrumb-separator {
  margin-top: 7px;
  margin-left: -3px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #99797C;
  border-right: 1px solid #99797C;
  font-size: 0;
  line-height: 1;
  transform: rotate(45deg);
  vertical-align: middle;
}
@media (max-width: 767px) {
  .pagehero {
    padding-bottom: 55px;
    min-height: 250px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .pagehero::before {
    width: 100%;
    aspect-ratio: 393 / 155;
    -webkit-mask-image: url("../images/common/pagehero-sp.svg");
    mask-image: url("../images/common/pagehero-sp.svg");
  }
  .pagehero-box {
    margin-top: 102px;
  }
  .pagehero-entitle {
    font-size: 12px;
  }
  .pagehero-entitle::after {
    width: 9px;
    height: 10px;
    top: -2px;
    right: -9px;
  }
  .pagehero-title {
    font-size: 24px;
  }
  /* パンくす */
  .breadcrumb {
    margin-top: 15px;
  }
  .aioseo-breadcrumbs {
    gap: 10px;
  }
  .aioseo-breadcrumb {
    font-size: 12px;
  }
  .aioseo-breadcrumb-separator {
    margin-top: 7px;
    margin-left: -3px;
    width: 6px;
    height: 6px;
  }
}

/* コンテンツ部分 */
.page.-two {
  padding-top: 60px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 20px;
}
.page.-two aside .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page.-two aside .menu a {
  padding: 5px 0 5px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--text-sub-color);
  transition: 0.3s ease;
  position: relative;
}
.page.-two aside .menu a::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-back-light);
  transition: transform 0.3s ease;
  position: absolute;
  top: 13px;
  left: 0;
}
.page.-two aside .menu a.-current {
  color: var(--color-main);
}
.page.-two aside .menu a.-current::before {
  background: var(--color-main);
}
.page.-two aside .menu a:hover {
  color: var(--color-main);
}
.page.-two aside .menu a:hover::before {
  transform: scale(2);
}

.page.-two .pageCnt {
  padding: 60px 50px 60px 80px;
  background-color: var(--color-white);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  box-shadow:
  0 0 3px rgba(247, 234, 218, 1),
  0 0 3px rgba(247, 234, 218, 1),
  0 0 3px rgba(247, 234, 218, 1);
}
.page.-two .pageCnt-inner {
  max-width: 1200px;
}

.pageCnt-title {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .page.-two aside {
    padding-left: 50px;
    padding-top: 60px;
    position: static;
  }
}
@media (max-width: 767px) {
  .page.-two {
    padding-top: 30px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .page.-two aside {
    width: min(100% - 40px, 1080px);
    margin-inline: auto;
    order: 2;
  }
  .page.-two aside .menu {
    gap: 10px;
  }
  .page.-two aside .menu li {
    position: relative;
  }
  .page.-two aside .menu li::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-border-beige);
    position: absolute;
    left: 0;
    bottom: -5px;
  }
  .page.-two aside .menu a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
  .page.-two aside .menu a::before {
    top: 17px;
  }
  .page.-two .pageCnt {
    margin-left: 20px;
    padding: 30px 20px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    order: 1;
  }

  .pageCnt-title {
    margin-bottom: 15px;
    font-size: 24px;
  }
}

/* ========================================
  　リキャプチャー
======================================== */
.grecaptcha-badge {
  visibility: hidden;
}

/* ========================================
  　採用情報〜社内の様子パーツ
======================================== */
.parts-pagefoot {
  margin-bottom: 120px;
}
/* 写真スライダー */
.pagefoot-photo {
  overflow: hidden;
  width: 100%;
}
.pagefoot-photo .loop {
  display: flex;
  align-items: top;
  gap: 20px;
  width: max-content;
  will-change: transform;
  position: relative;
}
.pagefoot-photo .item {
  flex: 0 0 auto;
}
.pagefoot-photo .item:nth-of-type(2n + 1) img {
  margin-top: 40px;
}
.pagefoot-photo .item img {
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .parts-pagefoot {
    margin-bottom: 60px;
  }
  .pagefoot-photo .item img {
    width: 150px;
    height: 150px;
  }
}
/* ./写真スライダー */

/* 採用情報 */
.pagefoot-recruit {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pagefoot-recruit::after {
  display: block;
  content: "";
  width: 565px;
  height: 400px;
  background-image: url("../images/common/pagefoot-recruit-back-pc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  position: absolute;
  bottom: 0px;
  /* bottom: -55px; */
  right: calc(50px + 8%);
}
.pagefoot-recruit .wrapper {
  z-index: 2;
  position: relative;
}
.pagefoot-recruit .wrapper > p {
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-bottom: 55px;
  font-weight: 700;
}
@media (max-width: 1140px) {
  .pagefoot-recruit::after {
    bottom: 20px;
    right: -100px;
  }
}
@media (max-width: 767px) {
  .pagefoot-recruit {
    padding: 60px 0;
  }
  .pagefoot-recruit::after {
    width: 238px;
    height: 230px;
    background-image: url("../images/common/pagefoot-recruit-back-sp.svg");
    bottom: 20px;
    right: 0;
  }
  .pagefoot-recruit .wrapper > p {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
/* ./採用情報 */

/* 社内の様子 */
.pagefoot-officelife {
  width: calc(100% - 100px);
  padding: 60px 40px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: var(--color-main);
  background-image: url("../images/common/pagefoot-officelife-back-pc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.officelife-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.officelife-box__bottom {
  align-items: flex-end;
}
.officelife-box__center h2 {
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: var(--color-back-dark);
  margin: 15px 0 35px;
}
.officelife-link {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--color-back-dark);
  border-radius: 20px;
  position: relative;
  max-width: 350px;
  width: 100%;
  height: 130px;
}
.officelife-link::before,
.officelife-link::after {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
}
.officelife-link::before {
  width: 19px;
  height: 22px;
  background-image: url("../images/common/pagefoot-officelife-accent.svg");
  right: -14px;
  top: -14px;
}
.officelife-link::after {
  width: 17px;
  height: 16px;
  background-image: url("../images/common/pagefoot-officelife-tail.svg");
  left: 50%;
}
.officelife-box__top .officelife-link::after {
  bottom: -15px;
}
.officelife-box__bottom .officelife-link::after {
  top: -15px;
  transform: rotate(180deg);
}
.officelife-box__top .officelife-link:nth-child(odd) {
  margin-top: 40px;
}
.officelife-box__bottom .officelife-link:nth-child(odd) {
  margin-bottom: 40px;
}
.officelife-icon {
  width: 50px;
}
.officelife-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.officelife-content__box {
  font-size: 12px;
  padding-right: 50px;
}
.officelife-content__box p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.officelife-content__title {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.officelife-content__arrow {
  position: absolute;
  width: 45px;
  height: 45px;
  bottom: -10px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.officelife-box__sp {
  display: none;
}
@media (max-width: 1140px) {
  .officelife-box {
    gap: 30px;
  }
  .officelife-link {
    padding: 15px;
    height: 120px;
  }
  .officelife-icon {
    width: 40px;
  }
  .officelife-content__arrow {
    width: 40px;
    height: 40px;
    bottom: -5px;
    right: -5px;
  }
}
@media (max-width: 767px) {
  .pagefoot-officelife {
    width: 100%;
    border-radius: 0;
    margin: 0 auto;
    padding: 40px 20px;
    background-image: url("../images/common/pagefoot-officelife-back-pc.svg");
  }
  .officelife-box__pc {
    display: none;
  }
  .officelife-box__sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .officelife-box__center h2 {
    margin: 35px 0;
    font-size: 26px;
  }
  .officelife-link {
    max-width: 310px;
    border-radius: 15px;
  }
  .officelife-box__bottom .officelife-link:nth-child(odd),
  .officelife-box__top .officelife-link:nth-child(odd) {
    margin: 0;
  }
  .officelife-link::after {
    left: auto;
    right: 35px;
  }
  .officelife-link:nth-child(odd)::after {
    left: 35px;
    right: auto;
  }
  .officelife-content__arrow {
    right: 0;
  }
}
/* ./社内の様子 */

/* 社内の様子出現アニメーション設定 */
.officelife-link {
  opacity: 0;
  transform: translateY(35px) scale(0.94);
  transform-origin: center bottom;
  will-change: opacity, transform;
}
.pagefoot-officelife.is-animated .officelife-link {
  animation: officelife-pop 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--animation-index, 0) * 0.13s);
}
@keyframes officelife-pop {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.94);
  }
  45% {
    opacity: 1;
    transform: translateY(-7px) scale(1.015);
  }
  65% {
    transform: translateY(3px) scale(0.995);
  }
  82% {
    transform: translateY(-1px) scale(1.002);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .officelife-link {
    opacity: 1;
    transform: none;
  }
  .pagefoot-officelife.is-animated .officelife-link {
    animation: none;
  }
}
/* ./社内の様子出現アニメーション設定 */

/* 社内の様子ホバーアニメーション設定 */
@media (hover: hover) {
  .officelife-link:hover {
    animation: officelife-hover-bounce 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@keyframes officelife-hover-bounce {
  0% {
    translate: 0 0;
  }
  35% {
    translate: 0 -10px;
  }
  55% {
    translate: 0 3px;
  }
  72% {
    translate: 0 -4px;
  }
  86% {
    translate: 0 1px;
  }
  100% {
    translate: 0 0;
  }
}
/* ./社内の様子ホバーアニメーション設定 */
