/* ベースフォントの読み込み */
@font-face {
    font-family: 'Noto Serif JP';
    src: url('../fonts/NotoSerifJP-Medium.woff2') format('woff2'),
         url('../fonts/NotoSerifJP-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Serif JP';
    src: url('../fonts/NotoSerifJP-Bold.woff2') format('woff2'),
         url('../fonts/NotoSerifJP-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../fonts/NotoSansJP-Regular.woff2') format('woff2'),
         url('../fonts/NotoSansJP-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../fonts/NotoSansJP-Medium.woff2') format('woff2'),
         url('../fonts/NotoSansJP-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


/* 共通ベース設定 */
html {
    font-size: 18px; /* 必要に応じて調整可能 */
	scroll-behavior: smooth;
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  /*.container { padding: 0 8px; }*/
  .fv-contact { right: 16px; top: 12px; padding: 8px 12px; }
  .footer-contact-flex { flex-direction: column; gap: 16px; }
}

body {
    font-family: 'Noto Serif JP', serif;
    color: #000000;
    background-color: transparent;
    line-height: 1.6; /* おすすめの行間 */
    font-weight: 500; /* Mediumをデフォルトに */
}

section {
  scroll-margin-top: 100px; /* ← ヘッダーの高さに合わせて調整 */
}

.fc_blue {
	color: #1570b9;
}

.ta_center {
	text-align: center;
}

.responsive {
	width: 100%;
	aspect-ratio: 16/9;
}

.sp-only {
    display: none;
}
.pc-only {
    display: inline;
}
@media (max-width: 900px) {
    .sp-only {
        display: inline;
    }
    .pc-only {
        display: none;
    }
}

.mb10_pc {
    margin-bottom: 10px;
}
.mb20_pc {
    margin-bottom: 20px;
}
.mb30_pc {
    margin-bottom: 30px;
}
.mb40_pc {
    margin-bottom: 40px;
}
.mb50_pc {
    margin-bottom: 50px;
}
.mb60_pc {
    margin-bottom: 60px;
}
.mb70_pc {
    margin-bottom: 70px;
}
.mb80_pc {
    margin-bottom: 80px;
}
.mb90_pc {
    margin-bottom: 90px;
}
.mb100_pc {
    margin-bottom: 100px;
}
.mb200_pc {
    margin-bottom: 200px;
}

.ml10_pc {
	margin-left: 20px;
}

@media (max-width: 900px) {
/*     .mb10_pc, .mb20_pc, .mb30_pc, .mb40_pc, .mb50_pc, .mb60_pc, .mb70_pc, .mb80_pc, .mb90_pc, .mb100_pc {
        margin-bottom: 0;
    } */

    .mb10_sp {
        margin-bottom: 10px;
    }
    .mb20_sp {
        margin-bottom: 20px;
    }
    .mb30_sp {
        margin-bottom: 30px;
    }
    .mb40_sp {
        margin-bottom: 40px;
    }
    .mb50_sp {
        margin-bottom: 50px;
    }
    .mb60_sp {
        margin-bottom: 60px;
    }
    .mb70_sp {
        margin-bottom: 70px;
    }
    .mb80_sp {
        margin-bottom: 80px;
    }
    .mb90_sp {
        margin-bottom: 90px;
    }
    .mb100_sp {
        margin-bottom: 100px;
    }
    .mb120_sp {
        margin-bottom: 120px;
    }
    .mb160_sp {
        margin-bottom: 160px;
    }
    .mb200_sp {
        margin-bottom: 200px;
    }
}

/* 見出し */
h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1em 0;
}

h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 0.8em 0;
}

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

/* リスト 仁美削除*/
/*ul, ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
}*/

/* 強調 */
strong {
    font-weight: 700; /* Bold */
}


/* レイアウト共通 */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container_top_movie {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ヘッダー全体 */
.site-header {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	background: #fff;
  padding: 0;
  height: 100px;
  min-height: 100px;
  box-sizing: border-box;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 30px;
  height: 100px;
  min-height: 100px;
  position: relative;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .header-inner {
        margin: 0;
    }
}

/* ロゴ */
.logo {
    margin: 0;
}

.logo img {
  width: 240px;
  height: auto;
  display: block;
}

/* グローバルナビ */
.global-nav {
  flex: 1;
  margin-left: 20px;
}
.gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav-list > li {
  position: relative;
  margin: 0 0 0 0;
}
.gnav-list > li + li {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid #ccc;
}
.gnav-list > li > a {
  color: #000000;
/*   font-weight: 500; */
  padding: 0 0 4px 0;
  transition: color 0.2s;
  display: inline-block;
  position: relative;
}
.gnav-list > li.current-menu-item > a,
.gnav-list > li > a:hover {
  color: #2986c7;
}
.gnav-list > li.current-menu-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #2986c7;
  position: absolute;
  left: 0;
  bottom: -4px;
}

/* 電話・受付時間 */
.header-contact {
  display: flex;
  align-items: center;
  margin-left: 40px;
  gap: 12px;
}
.header-tel-icon img {
  width: 30px;
  height: 48px;
}
.header-tel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-tel-time {
  font-size: 0.88888888888889rem; /* 16px */
}
.header-tel-number {
  font-size: 1.7777777777778rem; /* 32px */
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: -10px;
}
.header-tel-number::before {
  content: '';
}

/* 電話（SPナビ用） */
.nav-tel-sp {
  display: none;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ccc;
  text-align: center;
}
.nav-tel-sp .header-tel-icon {
  display: inline-block;
  vertical-align: middle;
}
.nav-tel-sp .header-tel-icon img {
  width: 36px;
  height: 36px;
}
.nav-tel-sp .header-tel-info {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  text-align: left;
}
.nav-tel-sp .header-tel-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2986c7;
  display: block;
  margin-top: 2px;
}
.nav-tel-sp .header-tel-time {
  font-size: 0.95rem;
  color: #222;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .header-contact {
    display: none;
  }
  .nav-tel-sp {
    display: block;
  }
}

/* ハンバーガーボタン */
.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  margin-left: 24px;
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2986c7;
  margin: 6px auto;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 1290px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 12px;
  }
  .global-nav {
    margin-left: 0;
  }
  .header-contact {
    margin-left: 16px;
  }
/* } */
/* @media (max-width: 900px) { */
  .global-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .global-nav.open {
    transform: translateX(0);
  }
  .gnav-list {
    flex-direction: column;
    gap: 30px;
  }
  .gnav-list > li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .header-contact {
    display: none;
  }
  .menu-btn {
    display: block;
    margin-left: 0;
  }
  .site-header,
  .header-inner {
    height: auto;
    min-height: 0;
  }
}

.front-page::before {
  content: "";
  position: absolute;
  top: 1200px;
  left: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.front-page::after {
  content: "";
  position: absolute;
  top: 2000px;
  right: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
  transform: scale(-1, -1);
}

/* ファーストビュー */
.fv {
  display: flex;
  align-items: stretch;
  background: linear-gradient(120deg, #2986c7 0%, #3ca0e7 100%);
  color: #fff;
  position: relative;
  min-height: 380px;
  max-height: 800px;
  padding: 0;
	margin-top: 100px;
}
.fv-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 48px 48px;
}
.fv-logo {
    width: 440px;
    margin-bottom: 32px;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}
.fv-title {
  font-size: min(4.2vw, 72px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}
.fv-desc {
  font-size: 1rem;
  margin-bottom: 0;
}
.fv-right {
  flex: 1;
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fv-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fv-contact {
  position: absolute;
  top: 24px;
  right: 48px;
  background: #fff;
  color: #222;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1rem;
}
.fv-tel {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2986c7;
  margin-top: 4px;
}

.fv-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv-slideshow img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.fv-slideshow img.active {
  opacity: 1;
  z-index: 2;
}

/* --- FV高さ指定 --- */
@media (max-width: 1290px) {
	 .fv {
		 margin-top: 68px;
	}
}

/* --- FV高さ指定 --- */
@media (min-width: 901px) {
  .fv {
    max-height: 800px;
    height: 80vh;
    box-sizing: border-box;
  }
}

/* --- レスポンシブ調整 --- */
@media (max-width: 900px) {
  .fv {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    height: auto;
    padding: 0;
    background: linear-gradient(120deg, #2986c7 0%, #3ca0e7 100%);
    position: relative;
  }
  .fv-left {
    padding: 32px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
  }
  .fv-logo {
    width: 270px;
    margin-bottom: 24px;
  }
  .fv-title {
    font-size: min(10vw, 60px);
    font-weight: 700;
    margin-top: 85px;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .fv-desc {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .fv-desc br {
    display: none;
  }
  .fv-right {
    width: 100%;
    padding: 0 0 24px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
  }
  .fv-slideshow {
    position: relative;
    width: 90vw;
    max-width: 340px;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }
  .fv-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    border-radius: 8px 0 0 8px;
    box-shadow: none;
    z-index: 1;
  }
  .fv-slideshow img.active {
    opacity: 1;
    z-index: 2;
  }
}

/* オーダー家具セクション */
.order-section {
/*   background: #fff; */
  text-align: center;
  /* padding: 56px 0 40px 0; */
}
.order-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.order-desc {
  color: #222;
  margin-bottom: 32px;
}
.order-contact {
  background: #c9a875;      /* ベージュ背景 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
  min-height: 80px;
  width: 500px;             /* PC幅。スマホは後でレスポンシブ対応 */
  margin: 0 auto;
  text-decoration: none;    /* 下線消す */
  color: #fff;              /* 文字色を白 */
  overflow: hidden;
}

.order-contact:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.order-contact::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 120px;
  height: 84px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}


/* アイコン＋文字の配置 */
.order-contact-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  z-index: 1;   /* 透かしロゴの上に */
}
/* 電話アイコン */
.order-contact-tel-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-contact-tel-icon img {
  width: 30px;
  height: 50px;
}
/* 電話番号と受付時間 */
.order-tel-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.order-contact-time {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}
.order-contact-tel {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: -10px;
}
.order-contact-btn-wrap a {
  display: inline-block;
  margin-top: 8px;
  color: #2986c7;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 900px) {
  .order-contact {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .order-contact::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }
  .order-contact-center {
    flex-direction: row;
    gap: 6px;
  }
  .order-contact-tel {
    margin-top: 0;
  }
  .order-desc {
    text-align: left;
    letter-spacing: 0.05em;
  }
}

/* 精魂込めて向き合っています */
.commit-section {
  color: #fff;
  padding: 0;
  border-radius: 8px;
}
.commit-flex {
  background: linear-gradient(120deg, #2986c7 0%, #4fa0db 100%);
  display: flex;
  width: 1000px;
  max-width: 100%;
  height: 280px;
  margin: 0 auto;
  align-items: stretch;
  overflow: hidden;
}
.commit-text {
  flex: 0 0 500px;
  padding: 40px 50px 30px 50px;
  background: none;
}
.commit-text h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.commit-btn {
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 60px;
  width: 330px;             /* PC幅。スマホは後でレスポンシブ対応 */
  margin: 0 auto;
  text-decoration: none;    /* 下線消す */
  color: #fff;              /* 文字色を白 */
  overflow: hidden;
  border: 2px solid #fff;
}

.commit-btn:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.commit-btn::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}

.commit-btn-text::after {
  content: "〉";
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 900px) {
  .commit-btn {
    display: inline-flex;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .commit-btn::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }
}

.commit-img {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.commit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  border-radius: 0 8px 8px 0;
}

/* --- SP・タブレット対応 --- */
@media (max-width: 900px) {
  .commit-section {
    border-radius: 0;
    padding: 0;
  }
  .commit-flex {
    flex-direction: column;
    max-width: 100%;
    min-height: 0;
    border-radius: 0;
    height: 100%;
  }
  .commit-img {
    order: 1;
    width: 100%;
    height: 180px;
    min-height: 165px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
  .commit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    min-height: 140px;
  }
  .commit-text {
    order: 2;
    flex: none;
    width: 100%;
    padding: 32px 0;
    text-align: center;
    background: linear-gradient(120deg, #2986c7 0%, #4fa0db 100%);
  }
  .commit-text h3 {
    font-size: min(6.4vw, 24px);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .commit-text .btn {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    font-size: 1rem;
    height: 48px;
    padding: 0 24px 0 0;
  }
  .commit-text .btn::before {
    width: 48px;
    height: 48px;
    margin-right: 10px;
  }
}


/* About */
.about-section {
  /* padding: 56px 0; */
  text-align: left;
}
.about-section .container {
  max-width: 1080px;
  margin: 0 auto;
}
.about-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
.about-section h3 {
  color: #000000;
  font-size: 2.1111rem;
  margin: 0 0 30px 0;
}
.about-content {
  max-width: 500px;
  width: 100%;
}
.about-content p {
  flex: 1 1 0;
  margin-bottom: 46px;
  width: 100%;
}

.about-imgs {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}
.about-imgs img {
  width: 100%;
  max-width: 500px;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  object-fit: cover;
  margin-top: 0;
}
.headline {
  font-size: 1.3333rem;
  color: #2986c7;
  font-weight: 700;
}

.about-btn {
  background: linear-gradient(120deg, #2986c7 0%, #4fa0db 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 60px;
  width: 330px;             /* PC幅。スマホは後でレスポンシブ対応 */
  margin: 0 auto;
  text-decoration: none;    /* 下線消す */
  color: #fff;              /* 文字色を白 */
  overflow: hidden;
}

.about-btn:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.about-btn::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}

.about-btn-text::after {
  content: "〉";
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 900px) {
  .about-btn {
    display: inline-flex;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .about-btn::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }

  .about-flex {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    flex-direction: column;
  }
  .about-imgs {
    order: 1;
    width: 100%;
    height: 180px;
    min-height: 165px;
    overflow: hidden;
    justify-content: center;
    flex: 2;
  }
  .about-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    min-height: 140px;
  }
  .about-content {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 32px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
}




/* 会社概要・アクセス */
.company-access-section {
  /* padding: 48px 0; */
}
.company-access-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.company-link {
  background-image: url('../img/img_top_about02.jpg');
}
.access-link {
  background-image: url('../img/img_top_about03.jpg');
}

.company-link, .access-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 265px;
  max-width: 500px;
  max-height: 265px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  background-size: auto 100%;       /* 高さを100%にして、幅は自動 */
  background-position: center center; /* 中央寄せ */
  background-repeat: no-repeat;       /* 繰り返し防止 */
}
/* オーバーレイ（青い透過レイヤー） */
.company-link::before,
.access-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(41, 134, 199, 0.4) 0%,
    rgba(79, 160, 219, 0.4) 100%
  );
  z-index: 1;
  transition: background 0.3s;
}
.company-link::after,
.access-link::after {
  content: "";
  background: url('../img/logo_item.svg') no-repeat top/contain;
  width: 156px;
  height: 156px;
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.2;
  z-index: 2;
}
.company-link span, .access-link span {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
}
.company-link:hover, .access-link:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

@media (max-width: 900px) {
  .company-access-flex {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .company-link, .access-link {
    width: 90%;
    max-width: 90%;
    height: auto;
    aspect-ratio: 16 / 9; /* 高さを自動調整 */
    background-size: cover; /* 幅と高さの両方をカバー */
  }
}

/* 採用情報 */
.recruit-section {
  color: #fff;
  padding: 0;
  border-radius: 8px;
}
.recruit-flex {
  background: linear-gradient(120deg, #CFA15B 0%, #F1CE9A 100%);
  display: flex;
  width: 1000px;
  max-width: 100%;
  height: 280px;
  margin: 0 auto;
  align-items: stretch;
  overflow: hidden;
}
.recruit-text {
  flex: 0 0 540px;
  padding: 40px 30px;
  background: none;
}
.recruit-text h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.recruit-btn {
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 60px;
  width: 330px;             /* PC幅。スマホは後でレスポンシブ対応 */
  margin: 0 auto;
  text-decoration: none;    /* 下線消す */
  color: #fff;              /* 文字色を白 */
  overflow: hidden;
  border: 2px solid #fff;
}

.recruit-btn:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.recruit-btn::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}

.recruit-btn-text::after {
  content: "〉";
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 900px) {
  .recruit-btn {
    display: inline-flex;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .recruit-btn::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }
}

.recruit-img {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  border-radius: 8px 0 0 8px;
}

/* --- SP・タブレット対応 --- */
@media (max-width: 900px) {
  .recruit-section {
    border-radius: 0;
    padding: 0;
  }
  .recruit-flex {
    flex-direction: column;
    max-width: 100%;
    min-height: 0;
    border-radius: 0;
    height: 100%;
  }
  .recruit-img {
    order: 1;
    width: 100%;
    height: 180px;
    min-height: 165px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
  .recruit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    min-height: 140px;
  }
  .recruit-text {
    order: 2;
    flex: none;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-sizing: border-box;
  }
  .recruit-text h3 {
    font-size: min(6.4vw, 24px);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .recruit-text .btn {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    font-size: 1rem;
    height: 48px;
    padding: 0 24px 0 0;
  }
  .recruit-text .btn::before {
    width: 48px;
    height: 48px;
    margin-right: 10px;
  }
}

/* フッター前お問い合わせ */
.footer-contact-section {
  background: #2986c7;
  color: #fff;
  padding: 56px 0 32px 0;
  text-align: center;
}

.footer-contact-section h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.footer-contact-flex {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-top: 32px;
}
.footer-contact-item {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px 0;
  width: 100%;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.footer-contact-item .btn {
  background: #fff;
  color: #2986c7;
  border: none;
  margin-top: 12px;
}
.footer-tel {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin: 8px 0;
}
.footer-fax {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(120deg, #2986c7 0%, #4fa0db 100%);
  border-radius: 100%;
  border-color: #fff;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-contact-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-btn {
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 60px;
  width: 250px;             /* PC幅。スマホは後でレスポンシブ対応 */
  margin: 0 auto;
  text-decoration: none;    /* 下線消す */
  color: #fff;              /* 文字色を白 */
  overflow: hidden;
  border: 2px solid #fff;
}

.footer-contact-btn:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-contact-btn::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}

.footer-contact-btn-text::after {
  content: "〉";
  margin-left: 10px;
  color: #fff;
  font-weight: bold;
}

.footer-tel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 900px) {
  .footer-contact-btn {
    display: inline-flex;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .footer-contact-btn::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }
}

.footer-contact {
  display: flex;
  justify-content: center;
}

.footer-contact:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* 電話アイコン */
.footer-contact-tel-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-tel-icon img {
  width: 30px;
  height: 50px;
}
/* 電話番号と受付時間 */
.order-tel-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact-time {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}
.footer-contact-tel {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  /* margin-bottom: -10px; */
}
.footer-contact-btn-wrap a {
  display: inline-block;
  margin-top: 8px;
  color: #2986c7;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}
.footer-contact-fax {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .footer-contact {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .footer-contact::before {
    width: 40%;
    height: 90%;
    max-height: 90px;
    left: 10px;
  }
  .footer-contact-tel {
    margin-top: 0;
  }
  .footer-contact-flex {
    flex-direction: column;
    align-items: center;
  }
  .footer-contact-item {
    min-width: 220px;
    max-width: 90%;
  }
}




/* ===== Footer ===== */
.site-footer {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
  border-top: 1px solid #ccc;
  background: #fff;
  color: #000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-company {
  min-width: 300px;
}

.footer-logo img {
  width: 280px;
  margin-bottom: 15px;
}

.footer-address {
  line-height: 1.8;
}

.footer-nav {
  flex: 1;
  text-align: right;
  min-width: 250px;
  margin-top: 20px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;           /* ← 横並びにする */
  justify-content: flex-end; /* ← 右寄せ（中央や左にしたいなら調整可） */
  flex-wrap: wrap;         /* ← 画面幅が狭い時に折り返し */
  gap: 24px;               /* ← 各項目の間隔（調整OK） */
}

.footer-nav li {
  margin: 0; /* 個別のmarginは不要 */
}

.footer-nav a {
  color: #000;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}


.footer-bottom {
  background-color: #1570B9; /* 青帯 */
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 24px;
  }
  .footer-company {
    text-align: center;
    min-width: 100%;
    margin-bottom: 20px;
  }
  .footer-address {
    font-size: 16px;
  }
}

/* =========================================================================
「私たちの仕事」ページ
========================================================================= */
.gallery-page::before {
  content: "";
  position: absolute;
  top: 1200px;
  left: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.gallery-page::after {
  content: "";
  position: absolute;
  top: 2000px;
  right: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
  transform: scale(-1, -1);
}

.works-page {
  background: #fff;
}

/* ページヘッダー */
.page-header {
  padding: 220px 0 80px;
  text-align: center;
}
.page-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 90px;
  position: relative;
	text-align: left;
	display: flex;
	align-items: flex-end;
}
.page-title::before {
	content: "";
	display: inline-block;
	background: #1570B9;
	mask: url("../img/logo_item.svg") no-repeat left center / contain;
	width: 90px;
	height: 60px;
	vertical-align: middle;
}
.page-desc {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin: 0 auto;
	text-align: center;
}

/* ギャラリー */
.works-gallery-list {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.works-gallery-list img {
	width: 100%;
    height: auto;
}
    
.works-gallery {
  padding: 80px 0 120px;
}
.works-gallery .headline {
  color: #2986c7;
  font-weight: 600;
  display: block;
}
.works-gallery-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 60px 0;
}
.works-gallery-block {
  max-width: 1100px;
  margin: 0 auto;
}

/* WordPressギャラリーブロック調整 */
.wp-block-gallery {
  gap: 24px;
}
.wp-block-gallery img {
/*   box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}
.wp-block-image figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  text-align: center;
}

/* 動画 */
.works-video-item {
	width: 700px;
	margin: 0 auto 60px;
}
.works-video-frame iframe {
	width: 700px;
	height: 394px;
	aspect-ratio: 16 / 9;
}

/* CTA */
.works-cta {
  padding: 120px 0;
  text-align: center;
  background: #fff;
}
.works-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.works-cta p {
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}
.works-cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.works-cta-time {
  font-size: 0.9rem;
  color: #666;
}
.works-cta-or {
  margin: 12px 0;
  color: #777;
}

/* レスポンシブ */
@media (max-width: 1290px) {
	.page-header {
		padding: 128px 0 60px;
	}
}

/* レスポンシブ */
@media (max-width: 900px) {

  .page-title {
	  font-size: 2.1111rem;
	  margin-bottom: 60px;
  }
	.works-gallery-list {
		grid-template-columns: 1fr;
		gap: 40px;
	  }
  .works-gallery {
    padding: 60px 0 80px;
  }
  .works-cta {
    padding: 80px 0;
  }
	.works-video-item {
		width: 100%;
		margin: 0 auto 60px;
	}
	.works-video-frame iframe {
		width: 100%;
		height: auto;
	}
	
	.page-title::before {
	  width: 70px;
	  height: 50px;
	}
	.page-desc {
		text-align: left;
	}
}

/* =========================================================================
「福田木工について」ページ
========================================================================= */
.about-page::before {
  content: "";
  position: absolute;
  top: 600px;
  left: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.about-page::after {
  content: "";
  position: absolute;
  top: 2000px;
  right: 0;
  width: 85vw;
  height: 100%;
  background: #1570B9;
  mask: url("../img/logo_item.svg") no-repeat left center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
  transform: scale(-1, -1);
}


.about_section {
	padding-top: 150px;
}

.greeting-content {
  display: flex;
  /*align-items: flex-start;
  align-items: center;*/
  gap: 60px;
}

.greeting-text {
  flex: 1 1 59%;
  line-height: 1.8;
}

.greeting-text p {
	margin-bottom: 1rem;
}

.greeting-image {
  flex: 1 1 35%;
  text-align: center;
}

.greeting-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.greeting-image figcaption {
  margin-top: 0.5em;
  font-size: 1.2rem;
}

@media screen and (max-width: 900px) {
  .greeting-content {
    flex-direction: column; /* 横並び→縦並びに変更 */
    gap: 30px; /* モバイルでは少し狭めに */
  }

  .greeting-text {
    order: 1; /* テキストを先に */
    flex: 1 1 auto; /* 縦並び用に伸縮をリセット */
  }

  .greeting-image {
    order: 2; /* 画像を後に */
    flex: 1 1 auto;
    text-align: center;
  }

  .greeting-image img {
    max-width: 300px;
    height: auto;
  }
}


.company-profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.8;
}

.company-table th,
.company-table td {
  border-top: 1px solid #e5e5e5;
  padding: 0.8rem 0.5rem;
  vertical-align: top;
}

.company-table th {
  width: 20%;
  font-weight: 600;
  color: #0066cc;
  text-align: left;
  white-space: nowrap;
}

.company-table td {
  width: 80%;
  color: #333;
}

.company-table tr:last-child td,
.company-table tr:last-child th {
  border-bottom: 1px solid #e5e5e5;
}

.wrap_about_submenu {
	display: flex;
	flex-wrap: wrap;
	width: 40rem;
	margin-left:auto;
	margin-right: auto;
	gap: 1rem;
	justify-content: center;
}

.item_about_submenu {
	display: block;
	width: 11rem;
	border: solid 1px #1570B9;
	padding: 0.6rem 0;
	text-align: center;
	background: url("../img/bg_item_submenu.png") no-repeat left 4px top 4px;
	background-size: 63px;
}

.item_about_submenu:hover {
	background-color: #E7F0F8;
}

.txt_top_submenu {
	position: relative;
	margin: 0;
}

.txt_top_submenu:after {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 10px;/*画像の幅*/
  height: 10px;/*画像の高さ*/
  background: url(../img/arrow_about_menu.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 1.5rem;
  top: 49%;
  letter-spacing: 2px;
}

/* 📱 スマホ対応（768px以下） */
@media screen and (max-width: 768px) {

	.about_section {
		padding-top: 100px;
	}
	
	.wrap_about_submenu {
		width: 100%;
		flex-direction: column;
	}
	
	.item_about_submenu {
		display: block;
		width: 15rem;
		margin-left: auto;
		margin-right: auto;		
		border: solid 1px #1570B9;
		padding: 0.6rem 0;
		text-align: center;
		background: url("../img/bg_item_submenu.png") no-repeat left 4px top 4px;
		background-size: 54px;
	}
}

/*改行（仁美追加)*/
.br_sp_block {
	display: none;
}

.br_tb_block {
	display: block;
}

@media screen and (max-width: 768px) {
	.br_sp_block {
		display: block;
	}
	
	.br_tb_block {
		display: none;
	}	
	}

.block_pc { display: block; }
.none_pc { display: none; }

	@media screen and (max-width: 900px) {
	.block_tb { display: block; }
	.none_tb { display: none; }	
	}

		@media screen and (max-width: 760px) {
		.block_sp { display: block; }
		.none_sp { display: none; }	
		}
/*仁美改行追加ここまで*/

/* ===============================
   「福田木工について」ページのアクセスセクション
   =============================== */

/*.access {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}*/

.access-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /*gap: 1rem;*/
}

.access-map {
  width: 49%;
}

.access-map iframe {
	width: 100%;
}

.access-info {
  width: 49%;
  /*font-size: 1rem;
  line-height: 1.8;
  color: #333;*/
}

.access-info h4 {
  font-size: 1.1rem;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.access-info ul {
  margin-bottom: 1.5rem;
  /*padding-left: 1.2em;*/
}

.access-info li {
  margin-bottom: 0.3rem;
}

/* 📱 スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
  .access-content {
    flex-direction: column; /* 縦並び */
    gap: 1.5rem;
  }

  .access-map {
	width: 100%;
  }
	
  .access-map iframe {
	width: 100%;  
    height: 300px;
  }

  .access-info {
	width: 100%;
    /*font-size: 0.95rem;
    line-height: 1.8;*/
  }

  .access-info h4 {
    margin-top: 0.5rem;
  }
}

/* ===============================
   「福田木工について」ページのSDGsセクション
   =============================== */

/*.sdgs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}*/

.sdgs-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

/* 横並びレイアウト（PC） */
.sdgs-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* 画像側 */
.sdgs-image {
  flex: 1 1 45%;
  text-align: center;
}

.sdgs-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* テキスト側 */
.sdgs-text {
  flex: 1 1 50%;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.sdgs-text h4 {
  font-size: 1.1rem;
  color: #0066cc;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.sdgs-text ul {
  margin-bottom: 1.5rem;
  /*padding-left: 1.2em;*/
}

.sdgs-text li {
  margin-bottom: 0.3rem;
}

/* 📱 スマホ対応（768px以下） */
@media screen and (max-width: 768px) {
  .sdgs-content {
    flex-direction: column; /* 縦並び */
    gap: 30px;
  }

  .sdgs-intro {
    font-size: 0.95rem;
  }

  .sdgs-image {
    order: 2; /* 画像を文章の後に */
  }

  .sdgs-text {
    order: 3; /* テキストを最後に */
    font-size: 0.95rem;
  }

  .sdgs-text h4 {
    margin-top: 1rem;
	font-size: 1.05rem;
  }
}

/* =========================================================================
「採用情報」ページ
========================================================================= */
/*採用ページリード部分*/
.wrap_recruit_lead {
	display: flex;
	justify-content: space-between;
}

.bg_recruit_lead {
	background-color: #F2F7FB;
}

.col_recruit_leadimg {
	width: 48%;
}

.col_recruit_leadimg img {
	width: 100%;
	max-width: 400px;
}

.col_recruit_leadtxt {
	width: 48%;
}

.col_recruit_leadtxt p {
	text-align: left;
	color: #1570B9;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.list_recruit_lead {
	text-align: left;
}

.list_recruit_lead li {
	margin-bottom: 0.3rem;
	padding-left: 1rem;
	background: url('../../assets/img/square_01.png') no-repeat left top 10px;
}

	/*採用ページリード部分スマホ*/	
	@media screen and (max-width: 900px) {
	.wrap_recruit_lead {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
		
	.col_recruit_leadimg {
		width: 100%;
	}

	.col_recruit_leadtxt {
		width: 100%;
	}
		
	.col_recruit_leadtxt p {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
		
	.list_recruit_lead li {
		margin-bottom: 0.3rem;
		padding-left: 1rem;
		background: url('../../assets/img/square_01.png') no-repeat left top 5px;
	}
	}


/*採用ページお問い合わせ部分*/
.box_recruit_contact {
	text-align: center;
	color: #fff;
	background: url('../../assets/img/bg_recruit_contact.jpg') no-repeat top center;
	background-size: cover;
	padding: 1.5rem 1rem;
}

.wrap_recruit_contact_btn {
	display: flex;
}

.order-contact_b {
  background: #c9a875;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
  min-height: 80px;
  width: 48%;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.order-contact_b:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.order-contact_b::before {
  content: "";
  background: url('../img/logo_item.svg') no-repeat left/contain;
  width: 120px;
  height: 84px;
  position: absolute;
  left: 10px;
  opacity: 0.2;
}

.recruit_contact_txt_01 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
}

.recruit_contact_txt_02 {
	margin-bottom: 1.8rem;
}

		/*採用ページお問い合わせ部分スマホ*/
		@media screen and (max-width: 760px) {
		.box_recruit_contact {
			text-align: left;
		}

		.wrap_recruit_contact_btn {
			display: flex;
			flex-direction: column;
			gap: 1rem;
		}

		.order-contact_b {
			display: inline-flex;
			width: 100%;
			max-width: 100%;
			margin: 0 auto;
			padding: 0;
		}
		.order-contact_b::before {
			width: 40%;
			height: 90%;
			max-height: 90px;
			left: 10px;
		}

		.recruit_contact_txt_01 {
			font-size: 1.3rem;
			margin-bottom: 1rem;
		}
		}


/*-----------------------------
お問い合わせフォーム
-----------------------------*/
.contact-title {
	font-size: 1.8rem;
    font-weight: 600;
}

.contact_tel {
	font-size: 1.6rem;
}

.table_contact {
	width: 100%;
/* 	margin-bottom: 20px; */
}
.table_contact tr {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 18px;
	justify-content: space-between;
}

.form_title {
	display: block;
	text-align: left;
	vertical-align: top;
	width: 100%;
}
.table_contact p {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 8px;
	text-align: left;
}
.table_contact .cautions {
	font-size: 0.9rem;
	padding: 20px;
    border: 1px solid #1570b9;
	border-radius: 12px;
	overflow: scroll;
	height: 11rem;
	margin-bottom: 14px;
	text-align: left;
}
.form_input {
	display: block;
	width: 100%;
}
.form_input input, .form_input select{
	padding: 16px 24px;
	border: 1px solid #CECECE;
	border-radius: 12px;
	transition: border-color .4s;
}
.form_input input:-webkit-autofill {
  box-shadow: 0 0 0px 100px #fff inset;
}
.form_input input[type="checkbox"]{
	padding: 8px;
	margin-bottom: 6px;
}
.form_input textarea {
	border: 1px solid #CECECE;
	border-radius: 12px;	
	transition: border-color .4s;
}

.wpcf7-form-control:active, .wpcf7-form-control:focus {
    border-color: #e4e4e4;
}

	@media print, screen and (min-width:900px){
		.table_contact p {
			margin-bottom: 0;
		}
		.form_title {
			width: 30%;
		}
		.table_contact .cautions {
			padding: 20px;
			height: 13rem;
		}
		.form_input {
			width: 63%;
		}
	}

.form_attachment {
	display: block;
	padding: 0.3rem 0.5rem;
	margin-bottom: 1.5rem;
}

input[type="text"], input[type="email"], input[type="tel"], textarea, select{
	font-family: 'Noto Sans JP', sans-serif;
	outline: none;
	font-size: 1rem;
	overflow: hidden;
	padding: 14px 24px;
	width: 100%;
	box-sizing: border-box;
}

.required {
    color: #1570b9;
    text-align: center;
    letter-spacing: 1.5px;
	border: 1px solid #1570b9;
    border-radius: 15px;
    padding: 1px 8px;
    font-size: 0.875rem;
    line-height: 20px;
    text-decoration: none;
    overflow: visible;
	margin-left: 1rem;
}

	@media print, screen and (min-width:760px){
		input[type="text"], input[type="email"], input[type="tel"], textarea, select{
			font-size: 14px;
			padding: 10px 24px;
		}
	}

	@media print, screen and (min-width:1020px){
		.table_contact {
			width: 100%;
		}
		.table_contact tr {
			display: flex;
			flex-wrap: wrap;
			border-bottom: 1px solid #CECECE;
			margin-bottom: 20px;
			padding-bottom: 20px;
		}
		
		.required {
			text-align: center;
			flex: 0 auto;
			padding: 1px 10px;
			align-self: auto;
			font-style: normal;
			overflow: visible;
		}
		
	}

/*チェックボックスのwidthが100％だと、次の文字列が改行改行されるのでwidthをautoにする*/
.form_privacy-policy input[type="checkbox"] {
	width: auto;
	transform: scale(1.5);
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

.form_submit {
	text-align: center;
}

.form_submit input {
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
    text-decoration: none;
    font-size: 1rem;
    width: 85%;
    max-width: 360px;
    padding: 10px;
    border-radius: 16px;
    color: #fff;
    font-weight: 500;
	border: none;
    background-color: #1570b9;
    position: relative;
    transition: 0.3s ease-in-out;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form_submit input:hover {		
	background-color: #2986c7;
}

.form_submit span{
	display:none;
}

.grecaptcha-badge { visibility: hidden; }


	@media print, screen and (min-width:900px){
		.form_title {
			padding: 0.3rem 0.5rem;
			font-size: 1rem;
			display: table-cell;
		}
		.form_input {
			display: table-cell;
		}
		.form_submit input {
			width: 40vw;
			padding: 14px;
		}
	}

	@media print, screen and (min-width:1020px){
		.form_privacy-policy {
			margin-bottom: 40px;
		}
		.form_submit input {
			width: 25vw;
		}
	}