@charset "UTF-8";
/* ==========================================================================
   西田エンジニアリング - 共通スタイルシート
   ========================================================================== */

/* ==========================================================================
   基本設定
   ========================================================================== */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 768px以上: min-width 1100pxでスクロール可能 */
@media (min-width: 769px) {
  body {
    min-width: 1100px;
    overflow-x: scroll;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   ユーティリティクラス
   ========================================================================== */
.-u-sp-none-pc-block {
  display: block;
}

.-u-pc-none-sp-block {
  display: none;
}

@media (max-width: 768px) {
  .-u-sp-none-pc-block {
    display: none;
  }

  .-u-pc-none-sp-block {
    display: block;
  }
}

/* ==========================================================================
   共通コンポーネント
   ========================================================================== */

/* コンテナ */
.l-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-container--wide {
  max-width: 1320px;
}

@media (max-width: 768px) {
  .l-container {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}

/* セクションタイトル */
.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-section-title__label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-section-title__diamond {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-section-title__diamond::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #d52300;
  border-radius: 1px;
  transform: rotate(45deg);
}

.c-section-title__en {
  font-family: "Figtree", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d52300;
  text-transform: uppercase;
  line-height: 1;
}

.c-section-title__ja {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .c-section-title__en {
    font-size: 1.4rem;
  }

  .c-section-title__ja {
    font-size: 2.8rem;
  }
}

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 15px 14px 15px 24px;
  background-color: #000000;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-btn:hover {
  opacity: 0.8;
}

.c-btn__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.c-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #414141;
  border-radius: 2px;
}

.c-btn__arrow img {
  width: 11px;
  height: 7px;
}

/* 赤ボタン */
.c-btn--primary {
  background-color: #d52300;
}

.c-btn--primary .c-btn__arrow {
  background-color: rgba(90, 0, 0, 0.42);
}

@media (max-width: 768px) {
  .c-btn {
    gap: 24px;
    padding: 12px 12px 12px 20px;
    width: 100%;
    justify-content: space-between;
  }

  .c-btn__text {
    font-size: 1.4rem;
  }

  .c-btn__arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .c-btn__arrow img {
    width: 9px;
    height: 6px;
  }
}

/* ==========================================================================
   ヘッダー（PC版）
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #ebebeb;
  height: 78px;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 24px 0 24px;
}

.l-header__logo {
  display: block;
}

.l-header__logo img {
  width: 268px;
  height: 34px;
}

.l-header__logo-sp {
  display: none;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.l-header__nav-item {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
}

.l-header__nav-item.is-active {
  border-bottom: 2px solid #d52300;
}

.l-header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.l-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 196px;
}

.l-header__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: 100%;
  padding: 12px;
  background-color: #d52300;
  border-radius: 4px;
}

.l-header__contact-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-header__contact-icon {
  width: 21px;
  height: 16px;
}

.l-header__contact-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
}

.l-header__contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  background-color: rgba(90, 0, 0, 0.42);
  border-radius: 2px;
}

.l-header__contact-arrow img {
  width: 11px;
  height: 7px;
}

/* ハンバーガーボタン（PC非表示） */
.l-header__hamburger {
  display: none;
}

/* ==========================================================================
   ヘッダー（タブレット対応 980px以下）
   ========================================================================== */
@media (max-width: 980px) and (min-width: 769px) {

  .l-header {
    height: 65px;
  }

  .l-header__inner {
    padding: 0px 16px 0;
  }

  .l-header__logo img {
    width: 200px;
    height: auto;
  }

  .l-header__nav {
    gap: 16px;
  }

  .l-header__nav-item {
    padding: 20px 0;
  }

  .l-header__nav-link {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  .l-header__contact {
    width: 155px;
  }

  .l-header__contact-btn {
    gap: 16px;
    padding: 10px;
  }

  .l-header__contact-icon {
    width: 18px;
    height: 14px;
  }

  .l-header__contact-text {
    font-size: 1.2rem;
  }

  .l-header__contact-arrow {
    padding: 6px 5px;
  }

  .l-header__contact-arrow img {
    width: 9px;
    height: 6px;
  }
}

/* ==========================================================================
   ヘッダー（SP版）
   ========================================================================== */
@media (max-width: 768px) {
  .l-header {
    height: 56px;
    border-bottom: none;
    box-shadow: 0px 0.5px 1px 0px rgba(0, 0, 0, 0.1);
  }

  .l-header__inner {
    padding: 16px;
    align-items: center;
  }

  .l-header__logo {
    display: none;
  }

  .l-header__logo-sp {
    display: block;
  }

  .l-header__logo-sp img {
    width: 141px;
    height: 18px;
  }

  .l-header__nav {
    display: none;
  }

  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .l-header__hamburger img {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   ドロワーメニュー（SP版）
   ========================================================================== */
.l-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
}

.l-drawer.is-open {
  display: block;
}

.l-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 9px 0 48px;
  overflow-y: auto;
  /* スライドアニメーション */
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.l-drawer__content.is-visible {
  transform: translateX(0);
}

.l-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 16px;
}

.l-drawer__logo {
  width: 148px;
  height: 19px;
}

.l-drawer__logo img {
  width: 100%;
  height: 100%;
}

.l-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.l-drawer__close img {
  width: 24px;
  height: 24px;
}

.l-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-drawer__nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.l-drawer__nav-text {
  display: flex;
  flex-direction: column;
}

.l-drawer__nav-en {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #d52300;
  text-transform: uppercase;
  line-height: 1.4;
}

.l-drawer__nav-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.33;
}

.l-drawer__nav-arrow {
  width: 14px;
  height: 9px;
}

.l-drawer__contact {
  padding: 0 16px;
  margin-top: 9px;
}

.l-drawer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  background-color: #d52300;
  border-radius: 4px;
}

.l-drawer__contact-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.l-drawer__contact-icon {
  width: 21px;
  height: 16px;
}

.l-drawer__contact-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
}

.l-drawer__contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  background-color: rgba(90, 0, 0, 0.42);
  border-radius: 2px;
}

.l-drawer__contact-arrow img {
  width: 11px;
  height: 7px;
}

/* ==========================================================================
   ページヘッダー（共通）
   ========================================================================== */
.p-page-header {
  position: relative;
  padding-top: 78px;
  /* ヘッダーの高さ分 */
  background-color: #f5f5f5;
}

.p-page-header .c-breadcrumb {
  padding-top: 30px;
}

.p-page-header__inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.p-page-header__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-page-header__title-label {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 14px;
}

.p-page-header__title-diamond {
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-page-header__title-diamond::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #d52300;
  border-radius: 1px;
  transform: rotate(45deg);
}

.p-page-header__title-en {
  font-family: "Figtree", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d52300;
  text-transform: uppercase;
  line-height: 1;
}

.p-page-header__title-ja {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 5.3rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}

/* ページヘッダー - 背景画像バリエーション */
.p-page-header--with-bg {
  background-color: transparent;
}

.p-page-header--with-bg .p-page-header__bg {
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100% - 97px);
  z-index: -1;
}

.p-page-header--with-bg .p-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-page-header--with-bg .p-page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 11, 0.6);
}

/* 背景画像版：パンくずリスト白文字対応 */
.p-page-header--with-bg .c-breadcrumb__link,
.p-page-header--with-bg .c-breadcrumb__current {
  color: #ffffff;
}

.p-page-header--with-bg .c-breadcrumb__arrow {
  filter: brightness(0) invert(1);
}

/* 背景画像版：タイトル白文字 */
.p-page-header--with-bg .p-page-header__title-ja {
  color: #ffffff;
}

@media (max-width: 980px) and (min-width: 769px) {
  .p-page-header {
    padding-top: 65px;
  }

  .p-page-header--with-bg .p-page-header__bg {
    top: 65px;
  }
}

@media (max-width: 768px) {
  .p-page-header {
    padding-top: 56px;
    /* SPヘッダーの高さ分 */
  }

  .p-page-header .c-breadcrumb {
    padding-top: 20px;
  }

  .p-page-header__inner {
    padding: 30px 5% 40px;
  }

  .p-page-header__title-en {
    font-size: 1.4rem;
  }

  .p-page-header__title-ja {
    font-size: 3.2rem;
  }

  .p-page-header--with-bg .p-page-header__bg {
    top: 56px;
    height: calc(100% - 56px);
  }
}

/* ==========================================================================
   お問い合わせセクション
   ========================================================================== */
.p-contact {
  background-color: #1a1a1a;
  padding: 65px 24px 100px;
  overflow: hidden;
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.p-contact__heading {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}

.p-contact__form {
  display: flex;
  align-items: center;
  gap: 64px;
}

.p-contact__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.p-contact__mail-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.p-contact__mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
  width: 325px;
  height: 70px;
  padding: 12px;
  background-color: #d52300;
  border-radius: 4px;
}

.p-contact__mail-inner {
  display: flex;
  align-items: center;
  gap: 9px;
}

.p-contact__mail-icon {
  width: 25px;
  height: 18px;
}

.p-contact__mail-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.p-contact__mail-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 8px 6px;
  background-color: rgba(90, 0, 0, 0.42);
  border-radius: 2px;
}

.p-contact__mail-arrow img {
  width: 11px;
  height: 7px;
}

.p-contact__separator {
  width: 1px;
  height: 99px;
}

.p-contact__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-contact__tel-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.p-contact__tel-number {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.p-contact__tel-prefix {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
}

.p-contact__tel-value {
  font-family: "Figtree", sans-serif;
  font-size: 4.2rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}

.p-contact__tel-time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
  .p-contact {
    padding: 50px 5%;
  }

  .p-contact__heading {
    font-size: 2.8rem;
  }

  .p-contact__form {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .p-contact__mail {
    width: 100%;
  }

  .p-contact__mail-label {
    font-size: 1.4rem;
  }

  .p-contact__mail-btn {
    width: 100%;
    height: 60px;
    gap: 20px;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .p-contact__mail-text {
    font-size: 1.4rem;
  }

  .p-contact__separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .p-contact__separator img {
    display: none;
  }

  .p-contact__tel-label {
    font-size: 1.4rem;
  }

  .p-contact__tel-value {
    font-size: 3.2rem;
  }

  .p-contact__tel-prefix {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */
.l-footer {
  background-color: #ffffff;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  max-width: 1440px;
  margin: 0 auto;
}

.l-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 38px 64px 0;
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-footer__logo {
  display: block;
}

.l-footer__logo img {
  width: 268px;
  height: 34px;
}

.l-footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.6);
  letter-spacing: 0.03em;
  line-height: 1.67;
}

.l-footer__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-footer__nav-item {
  padding: 0 12px;
}

.l-footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}

.l-footer__separator {
  width: 100%;
  height: 1px;
  background-color: #a3a3a3;
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
  text-align: right;
  letter-spacing: 0.03em;
  width: 100%;
  max-width: 1320px;
  padding: 0 0 38px;
}

@media (max-width: 768px) {
  .l-footer__main {
    flex-direction: column;
    gap: 30px;
    padding: 30px 5% 0;
  }

  .l-footer__brand {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .l-footer__logo img {
    width: 200px;
    height: auto;
  }

  .l-footer__address {
    font-size: 1.2rem;
    text-align: center;
  }

  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
  }

  .l-footer__nav-item {
    padding: 4px 8px;
  }

  .l-footer__nav-link {
    font-size: 1.2rem;
  }

  .l-footer__copyright {
    text-align: center;
    font-size: 1rem;
    padding: 0 5% 30px;
  }
}

/* ==========================================================================
   パンくずリスト
   ========================================================================== */
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-breadcrumb__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-decoration: underline;
}

.c-breadcrumb__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.c-breadcrumb__arrow {
  width: 5px;
  height: 10px;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    padding: 0 5%;
  }

  .c-breadcrumb__link,
  .c-breadcrumb__current {
    font-size: 1rem;
  }

  .c-breadcrumb__arrow {
    width: 4px;
    height: 8px;
  }
}