@charset "UTF-8";
/* ==========================================================================
   Fluid Responsive Utilities (PC-first / 1440px baseline)
   - 基準：PC = 1440px を“正”として、375〜1440の間で滑らかに縮む
   - 寸法・余白・フォントなどは clamp 系で記述
   - メディアクエリは「レイアウト切替」の最小限に限定
   ========================================================================== */
/* === Baselines & Ranges =================================================== */
/* fluid 区間（この区間内で線形にスケール） */
/* === Fluid Functions ====================================================== */
/**
 * fluid-clamp(min-size, max-size, minVW = 375px, maxVW = 1440px)
 * 375px→min-size, 1440px→max-size になるように線形スケール
 * 例) font-size: fluid-clamp(14px, 20px);
 */
/**
 * fluid-from-pc(pc-size, sp-size = auto)
 * PCのpxだけ分かる時に便利。PC値を最大、SP値は 375/1440 比で自動推定。
 * 例) padding-inline: fluid-from-pc(40px);           // SP側は自動
 *     font-size:     fluid-from-pc(24px, 14px);     // SP側を明示
 */
/**
 * clamp-down(pc-size, sp-size = auto)
 * PCでは完全固定、下方向にだけ縮む（>1440px では $pc-size で頭打ち）
 * 例) height: clamp-down(780px);
 */
/* 任意のプロパティへ fluid を適用（ショートカット） */
/* === Media Queries (layout-only use) ===================================== */
/* レイアウトの切替（列数・方向・グリッド）など“構造”変更にのみ使用すること */
/* min-width 指定での鍵付きアクセス（必要なら使用） */
/* === Common Patterns ====================================================== */
/* 全面オーバーレイ（よくある黒幕） */
/* スライドの左下キャプション配置（SPとPCで座標を自動切替） */
/* === Usage Hints ==========================================================
 * 1) 寸法・余白・フォントは clamp 系で書く（例）
 *    .title { font-size: fluid-from-pc(24px, 14px); }
 *    .card  { gap: clamp-down(24px); }
 *
 * 2) レイアウト変更のみメディアクエリ（例）
 *    .list { display: flex; flex-direction: column; }
 *    @include pc { .list { flex-direction: row; } }
 *
 * 3) 固定高さは極力避ける。必要時は clamp-down か aspect-ratio を併用。
 *    .hero { aspect-ratio: 16 / 9; min-height: 220px; height: clamp-down(780px); }
 * ======================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "YakuHanJP", sans-serif;
  line-height: 1.6;
  color: #1B1E20;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px 0;
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 32px;
}
@media screen and (max-width: 700px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 24px;
  line-height: 0.8;
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 18px;
}
@media screen and (max-width: 700px) {
  h3 {
    font-size: 16px;
  }
}

p {
  margin: 0 0 24px 0;
}

a {
  color: #99AEBA;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: #33363B;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

* {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-title {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: clamp(55px, 10.0469483568vw + 17.323943662px, 162px);
  margin: 0 auto;
  padding-inline: clamp(50px, 6.5727699531vw + 25.3521126761px, 120px);
}
.c-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: clamp(18px, 4.3192488263vw + 1.8028169014px, 64px);
  width: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
  height: 3px;
  background-color: #907D4E;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .c-title::before {
    left: 32px;
    width: 36px;
  }
}
@media screen and (max-width: 700px) {
  .c-title::before {
    left: 20px;
    width: 24px;
  }
}
.c-title.c-title--works::before {
  background-color: #ADB88B;
}
.c-title.c-title--about::before {
  background-color: #99AEBA;
}

.c-title-arrow {
  position: absolute;
  bottom: 1px;
  right: clamp(17.5px, 4.3661971831vw + 1.1267605634px, 64px);
}
.c-title-arrow::before, .c-title-arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  background: #907D4E;
  content: "";
}
.c-title-arrow::before {
  width: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-title-arrow::after {
  width: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.c-title-arrow--green::before, .c-title-arrow--green::after {
  background: #ADB88B;
}
.c-title-arrow--blue::before, .c-title-arrow--blue::after {
  background: #99AEBA;
}

.c-title-inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0px;
}
.c-title-inner h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3.3802816901vw + 11.323943662px, 60px);
  font-weight: 300;
  line-height: 0.8;
  color: #1B1E20;
  margin-bottom: 0px;
}
.c-title-inner .view-more {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  font-weight: 300;
  line-height: 1;
  color: #1B1E20;
}

.section-works .content-label, .section-works-list .content-label,
.section-work-single .content-label {
  color: #ADB88B !important;
}
.section-works .c-title::before, .section-works-list .c-title::before,
.section-work-single .c-title::before {
  background-color: #ADB88B !important;
}

.section-about .content-label {
  color: #99AEBA !important;
}
.section-about .c-title::before {
  background-color: #99AEBA !important;
}

.c-content {
  max-width: 1440px;
  height: clamp(55px, 6.103286385vw + 32.1126760563px, 120px);
  margin: 0 auto;
  padding-inline: clamp(50px, 6.5727699531vw + 25.3521126761px, 120px);
}
.c-content .content-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
  line-height: 1.8;
  color: #907D4E;
  margin-top: clamp(6px, 0.4694835681vw + 4.2394366197px, 11px);
  margin-bottom: 0px;
}

.c-content-follow {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(50px, 6.5727699531vw + 25.3521126761px, 120px);
}

.c-calligraphy {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: clamp(120px, 5.9154929577vw + 97.8169014085px, 183px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-calligraphy_inner {
  text-align: center;
  padding-bottom: 0px;
}
.c-calligraphy_inner h2 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(32px, 2.6291079812vw + 22.1408450704px, 60px);
  line-height: 1;
  color: #1B1E20;
  margin: 0;
}
.c-calligraphy_inner .calligraphy-after {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
  line-height: 1;
  color: #B4B4B4;
}

.site-main {
  min-height: 60vh;
  padding: 0;
  position: relative;
}

.l-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.btn {
  display: inline-block;
  padding: clamp(16px, 0vw + 16px, 16px) clamp(24px, 0.7511737089vw + 21.1830985915px, 32px);
  border-radius: clamp(6px, 0vw + 6px, 6px);
  font-size: clamp(16px, 0vw + 16px, 16px);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: clamp(41.6666666667px, 11.1111111111vw + 0px, 160px);
}
@media screen and (max-width: 700px) {
  .btn {
    min-width: 100%;
  }
}
.btn.btn-primary {
  background-color: #99AEBA;
  color: #FFFFFF;
  border-color: #99AEBA;
}
.btn.btn-primary:hover {
  background-color: transparent;
  color: #99AEBA;
  border-color: #99AEBA;
}
.btn.btn-secondary {
  background-color: transparent;
  color: #1B1E20;
  border-color: #1B1E20;
}
.btn.btn-secondary:hover {
  background-color: #1B1E20;
  color: #FFFFFF;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mb-xl {
  margin-bottom: 48px;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 48px;
}

@media screen and (max-width: 700px) {
  .sp-none {
    display: none !important;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .only-sp {
    display: inline;
  }
}

@media screen and (min-width: 701px) and (max-width: 835px) {
  .tab-none {
    display: none !important;
  }
}

@media screen and (min-width: 836px) and (max-width: 1440px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  .pc-none {
    display: none !important;
  }
}

[data-animation] {
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1200ms ease-out, -webkit-transform 1200ms ease-out;
  transition: opacity 1200ms ease-out, -webkit-transform 1200ms ease-out;
  transition: opacity 1200ms ease-out, transform 1200ms ease-out;
  transition: opacity 1200ms ease-out, transform 1200ms ease-out, -webkit-transform 1200ms ease-out;
}
[data-animation].js-animation-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.site-header {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.4);
}
.site-header .container {
  max-width: 100%;
  padding-block: clamp(13px, 1.0328638498vw + 9.1267605634px, 24px);
  padding-inline: clamp(14px, 0.9389671362vw + 10.4788732394px, 24px);
}
.site-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 22px;
}
.site-header .header-content .mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 700px) {
  .site-header .header-content .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 95;
  }
}
.site-header .header-content .mobile-menu-toggle .mobile-menu-icon {
  display: block;
}
@media screen and (max-width: 700px) {
  .site-header .header-content .mobile-menu-toggle .mobile-menu-icon {
    width: 30px;
    height: 22px;
  }
}
@media screen and (max-width: 700px) {
  .site-header .header-content .mobile-menu-toggle.is-active .mobile-menu-icon {
    width: 20px;
    height: 20px;
  }
}
.site-header .site-branding .site-logo {
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .site-header .site-branding .site-logo {
    position: relative;
    z-index: 96;
  }
}
.site-header .site-branding .site-logo .logo-image {
  height: auto;
  max-height: clamp(15px, 0.9370892019vw + 11.485915493px, 24.98px);
  width: auto;
}
.site-header .site-branding .site-logo .logo-image--white {
  display: inline;
}
.site-header .site-branding .site-logo .logo-image--black {
  display: none;
}
.site-header .main-navigation .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media screen and (max-width: 700px) {
  .site-header .main-navigation .nav-menu {
    display: none;
  }
}
.site-header .main-navigation .nav-menu li a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.site-header .main-navigation .nav-menu li a:hover {
  color: #e2e2e2;
}
.site-header .main-navigation .nav-menu li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.site-header .main-navigation .nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -8px;
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.site-header .main-navigation .nav-menu li.current-menu-item > a::after, .site-header .main-navigation .nav-menu li.current_page_item > a::after, .site-header .main-navigation .nav-menu li.current-menu-ancestor > a::after, .site-header .main-navigation .nav-menu li.current_page_parent > a::after, .site-header .main-navigation .nav-menu li.current-page-ancestor > a::after, .site-header .main-navigation .nav-menu li.current-menu-parent > a::after,
.site-header .main-navigation .nav-menu li > a[aria-current=page]::after,
.site-header .main-navigation .nav-menu li > a[aria-current=true]::after,
.site-header .main-navigation .nav-menu li > a[aria-current=location]::after {
  opacity: 1;
}
.site-header .main-navigation .nav-menu li a.is-active::after {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 78, 78, 0.8);
  z-index: 80;
  display: none;
}
@media screen and (max-width: 700px) {
  .mobile-menu.is-open {
    display: block;
  }
}
.mobile-menu .mobile-menu-container {
  position: absolute;
  top: 80px;
  left: 0;
  width: 108px;
  height: 270px;
  padding-left: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mobile-menu .mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
.mobile-menu .mobile-menu-item a {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
}
.mobile-menu .mobile-menu-sns {
  position: absolute;
  right: 16px;
  bottom: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.mobile-menu .mobile-menu-sns .sns-icon {
  display: inline-block;
}
.mobile-menu .mobile-menu-sns .sns-icon img {
  display: block;
  width: auto;
  height: 18px;
}

.site-header.is-solid {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.site-header.is-solid .site-branding .site-logo .logo-image--white {
  display: none;
}
.site-header.is-solid .site-branding .site-logo .logo-image--black {
  display: inline;
}
.site-header.is-solid.is-menu-open .site-branding .site-logo .logo-image--white {
  display: inline;
}
.site-header.is-solid.is-menu-open .site-branding .site-logo .logo-image--black {
  display: none;
}
.site-header.is-solid .main-navigation .nav-menu li a {
  color: #1B1E20;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.site-header.is-solid .main-navigation .nav-menu li a:hover {
  color: #33363B;
}
.site-header.is-solid .main-navigation .nav-menu li a::after {
  background: #1B1E20;
}

.section-contact-final {
  position: relative;
  margin: 0 auto;
  max-width: auto;
  width: 100%;
  height: auto;
}
.section-contact-final__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: 41px;
}
.section-contact-final__bg--09 {
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 700px) {
  .section-contact-final__bg--09 {
    display: none;
  }
}
.section-contact-final__bg--09-sp-footer {
  display: none;
  top: 61px;
}
@media screen and (max-width: 700px) {
  .section-contact-final__bg--09-sp-footer {
    display: block;
  }
}
.section-contact-final .c-title,
.section-contact-final .c-content,
.section-contact-final .c-content-follow {
  position: relative;
  z-index: 1;
}
.section-contact-final .c-title.c-title--contact::before {
  background-color: #E4E3DB;
}
.section-contact-final .c-title.c-title--contact::after {
  background-color: #E4E3DB;
}
.section-contact-final .c-title.c-title--contact .c-title-inner h2 {
  color: #FFFFFF;
}
.section-contact-final .c-title.c-title--contact .c-title-inner .view-more {
  color: #FFFFFF;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.section-contact-final .c-title.c-title--contact .c-title-inner .view-more:hover {
  color: #B4B4B4;
}
.section-contact-final .c-title-arrow.c-title-arrow--white::before, .section-contact-final .c-title-arrow.c-title-arrow--white::after {
  background: #FFFFFF;
}
.section-contact-final .c-content {
  height: clamp(59px, 5.7276995305vw + 37.5211267606px, 120px);
}
.section-contact-final .c-content a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.section-contact-final .c-content .content-label {
  color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-contact-final .c-content-follow {
  width: 100%;
  max-width: 1200px;
  margin: 0;
}
.section-contact-final .contact-description {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
  line-height: 1.8;
  color: #FFFFFF;
  height: clamp(75px, 4.2253521127vw + 59.1549295775px, 120px);
}
.section-contact-final .contact-description .contact-description-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .section-contact-final .contact-description .contact-description-br-sp {
    display: inline;
  }
}
.section-contact-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #1B1E20;
}
.section-contact-final::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #33363B;
  z-index: -1;
  pointer-events: none;
}

.l-footer {
  position: relative;
  width: 100%;
  color: #FFFFFF;
  background: url("../images/l-footer.webp") center/cover no-repeat;
}
.l-footer .c-footer-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(20px, 9.3896713615vw + -15.2112676056px, 120px);
  padding-top: clamp(26px, 2.0657276995vw + 18.2535211268px, 48px);
  padding-bottom: clamp(32px, 8.2629107981vw + 1.014084507px, 120px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(24px, 1.5023474178vw + 18.3661971831px, 40px);
}
@media screen and (min-width: 836px) and (max-width: 1440px) {
  .l-footer .c-footer-inner {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: clamp(24px, 1.5023474178vw + 18.3661971831px, 40px);
       -moz-column-gap: clamp(24px, 1.5023474178vw + 18.3661971831px, 40px);
            column-gap: clamp(24px, 1.5023474178vw + 18.3661971831px, 40px);
  }
}
.l-footer .c-footer-info {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 700px) {
  .l-footer .c-footer-info {
    row-gap: 23px;
  }
}
.l-footer .c-footer-company .company-name-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 1.1267605634vw + 19.7746478873px, 36px);
  line-height: 1.8;
  margin: 0;
}
.l-footer .c-footer-company .company-name-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 0.5633802817vw + 15.8873239437px, 24px);
  line-height: 1.8;
  margin: 0;
}
.l-footer .c-footer-address {
  justify-self: start;
  text-align: left;
}
.l-footer .c-footer-address .address-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.l-footer .c-footer-address .address-item .tel {
  font-family: "Montserrat", sans-serif;
  color: inherit;
  text-decoration: none;
}
.l-footer .c-footer-address .address-item .address-item-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .l-footer .c-footer-address .address-item .address-item-br-sp {
    display: inline;
  }
}
.l-footer .c-sns {
  margin-top: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
}
.l-footer .c-sns .sns-icon {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer .c-sns .sns-icon:hover {
  opacity: 0.85;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.l-footer .c-sns .sns-icon img {
  height: clamp(18px, 0.3568075117vw + 16.661971831px, 21.8px);
  width: auto;
  display: block;
}
.l-footer .c-footer-nav {
  margin-top: clamp(24px, 1.5023474178vw + 18.3661971831px, 40px);
  margin-top: 0;
}
@media screen and (min-width: 836px) and (max-width: 1440px) {
  .l-footer .c-footer-nav {
    -ms-flex-item-align: start;
        align-self: start;
    justify-self: end;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.l-footer .c-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: 8px;
}
.l-footer .c-footer-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 700px) {
  .l-footer .c-footer-nav li {
    gap: 16px;
  }
}
.l-footer .c-footer-nav li .line {
  display: inline-block;
  width: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
  height: 1px;
  background-color: #FFFFFF;
}
.l-footer .c-footer-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  font-weight: 400;
  line-height: 1.8;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.l-footer .c-footer-nav li a:hover {
  color: #99AEBA;
}
.l-footer .c-footer-copy {
  text-align: center;
  padding-bottom: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
  font-weight: 400;
  line-height: 1.8;
}
.l-footer .c-footer-copy .license {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  margin: 0 0 4px 0;
}
@media screen and (max-width: 700px) {
  .l-footer .c-footer-copy .license {
    margin-bottom: 16px;
  }
}
.l-footer .c-footer-copy .license .license-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .l-footer .c-footer-copy .license .license-br-sp {
    display: block;
  }
}
.l-footer .c-footer-copy .copyright {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  margin: 0;
}

.hero-section-image {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section-image .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.hero-section-image .hero-background .swiper-wrapper,
.hero-section-image .hero-background .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-section-image .hero-background .swiper-slide {
  position: relative;
}
.hero-section-image .hero-background .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.hero-section-image .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero-section-image .hero-background .swiper-button-prev,
.hero-section-image .hero-background .swiper-button-next {
  z-index: 8;
  color: #eaeaea;
}
.hero-section-image .hero-background .swiper-button-prev:after,
.hero-section-image .hero-background .swiper-button-next:after {
  color: #eaeaea;
}
.hero-section-image .hero-content-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section-image .hero-content-overlay .hero-title .hero-title-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.2em;
  font-size: 30px;
  -webkit-filter: drop-shadow(0 4px 10px rgb(0, 0, 0)) drop-shadow(0 0 30px rgb(0, 0, 0));
          filter: drop-shadow(0 4px 10px rgb(0, 0, 0)) drop-shadow(0 0 30px rgb(0, 0, 0));
}
.hero-section-image .hero-sns-icons {
  position: absolute;
  bottom: clamp(11px, 1.220657277vw + 6.4225352113px, 24px);
  right: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: auto;
  height: 21.8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-section-image .hero-sns-icons .sns-icon {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero-section-image .hero-sns-icons .sns-icon:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hero-section-image .hero-sns-icons .sns-icon img {
  width: auto;
  height: clamp(18px, 0.3568075117vw + 16.661971831px, 21.8px);
  display: block;
}

.section-news {
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
  height: auto;
}
.section-news__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .c-title {
  height: clamp(74px, 8.2629107981vw + 43.014084507px, 162px);
}
.section-news .c-title-inner {
  height: clamp(74px, 8.2629107981vw + 43.014084507px, 162px);
}
.section-news .c-content {
  height: clamp(48px, 3.5680751174vw + 34.6197183099px, 86px);
}
.section-news .c-content .content-label {
  margin-top: clamp(6px, 0.4694835681vw + 4.2394366197px, 11px);
}

.p-home-news {
  height: auto;
  margin-left: clamp(50px, 6.5727699531vw + 25.3521126761px, 120px);
  margin-right: clamp(64px, 5.2582159624vw + 44.2816901408px, 120px);
}
.p-home-news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  margin: 0 0 clamp(9px, 0.6572769953vw + 6.5352112676px, 16px) 0;
}
.p-home-news dl:last-child {
  margin-bottom: 0;
}
.p-home-news dl dt {
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .p-home-news dl dt {
    margin-right: 24px;
  }
}
.p-home-news dl dt a {
  font-size: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  font-weight: 500;
  color: #1B1E20;
  text-decoration: none;
}
.p-home-news dl dt a:hover {
  color: #1B1E20;
}
.p-home-news dl dt .p-home-news__date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  color: #1B1E20;
}
.p-home-news dl dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: #686A6C;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-home-news dl dd a {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-home-news dl dd a:hover {
  color: #907D4E;
}
.p-home-news dl dd a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.c-message-content {
  max-width: 1440px;
  padding: clamp(47px, 6.8544600939vw + 21.2957746479px, 120px) clamp(18px, 9.5774647887vw + -17.9154929577px, 120px) 0 clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  margin: 0 auto;
}

.section-message {
  position: relative;
}
.section-message__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-message__bg--01 {
  top: 296px;
}
@media screen and (max-width: 700px) {
  .section-message__bg--01 {
    display: none;
  }
}
.section-message__bg--02 {
  top: 1380px;
}
@media screen and (max-width: 700px) {
  .section-message__bg--02 {
    display: none;
  }
}
.section-message__bg--03 {
  bottom: 116px;
}
@media screen and (max-width: 700px) {
  .section-message__bg--03 {
    display: none;
  }
}
.section-message__bg--01-sp {
  top: 375px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-message__bg--01-sp {
    display: block;
  }
}
.section-message__bg--02-sp {
  top: 828px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-message__bg--02-sp {
    display: block;
  }
}
.section-message__bg--03-sp {
  bottom: 77.93px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-message__bg--03-sp {
    display: block;
  }
}
.section-message .c-calligraphy {
  position: relative;
  z-index: 1;
  height: clamp(81px, 7.8873239437vw + 51.4225352113px, 165px);
}
.section-message .c-calligraphy .c-calligraphy_inner h2 {
  color: #686A6C;
  font-size: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}
.section-message .c-calligraphy .c-calligraphy_inner .calligraphy-after {
  color: #B4B4B4;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .section-message .c-calligraphy .c-calligraphy_inner .calligraphy-after {
    top: calc(100% - 1px);
  }
}
.section-message .c-message-content {
  position: relative;
  z-index: 1;
}

.p-home-message-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 2.3;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #686A6C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto clamp(108px, 1.1267605634vw + 103.7746478873px, 120px) auto;
  max-width: 808px;
  text-align: center;
  width: 100%;
}

.pc_only {
  display: inline;
}
@media screen and (max-width: 700px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 700px) {
  .sp_only {
    display: inline;
  }
}

.p-home-message-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.message-item {
  position: relative;
  margin-bottom: clamp(0px, 11.2676056338vw + -42.2535211268px, 120px);
  width: 100%;
}
.message-item img {
  display: block;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .message-item img {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .message-item img {
    width: 100%;
    max-width: 100%;
  }
}

/* 1つ目の配置 */
.message-item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.message-item-1 .message-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(190px, 49.765258216vw + 3.3802816901px, 720px);
  margin-left: clamp(9px, 10.4225352113vw + -30.0845070423px, 120px);
}
.message-item-1 .message-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(70px, 9.4948356808vw + 34.3943661972px, 171.12px);
  margin-left: auto;
}
@media screen and (max-width: 700px) {
  .message-item-1 .message-text {
    margin-top: 29px;
    margin-right: 13px;
    margin-bottom: 24.93px;
  }
}

/* 2つ目の配置 */
.message-item-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  width: 80%;
  position: relative;
}
.message-item-2 .message-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(160px, 30.0469483568vw + 47.323943662px, 480px);
  margin-left: clamp(51px, 17.7464788732vw + -15.5492957746px, 240px);
}
@media screen and (max-width: 700px) {
  .message-item-2 .message-img {
    margin-top: 59px;
  }
}
.message-item-2 .message-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(100px, 9.3896713615vw + 64.7887323944px, 200px);
  margin-right: auto;
  margin-left: clamp(9px, 17.0676056338vw + -55.0035211268px, 190.77px);
}

/* 3つ目の配置 */
.message-item-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.message-item-3 .message-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 0px;
  width: clamp(240px, 45.0704225352vw + 70.985915493px, 720px);
}
@media screen and (max-width: 700px) {
  .message-item-3 .message-img {
    margin-top: 110.77px;
    margin-left: 11px;
  }
}

/* 4つ目の配置 */
.message-item-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0px;
}
.message-item-4 .message-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: clamp(40px, 30.0469483568vw + -72.676056338px, 360px);
  width: clamp(300px, 50.7042253521vw + 109.8591549296px, 840px);
}
@media screen and (max-width: 700px) {
  .message-item-4 .message-img {
    margin-top: 37px;
  }
}

.section-intermediate-image {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin: 0 auto;
}
@supports (width: 100dvw) {
  .section-intermediate-image {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}
.section-intermediate-image {
  z-index: 1;
}

.c-intermediate-image {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.c-intermediate-image .intermediate-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

.section-works {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.section-works__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-works__bg--01 {
  top: 357px;
}
@media screen and (max-width: 700px) {
  .section-works__bg--01 {
    display: none;
  }
}
.section-works__bg--02 {
  bottom: 0px;
}
@media screen and (max-width: 700px) {
  .section-works__bg--02 {
    display: none;
  }
}
.section-works__bg--01-sp {
  top: 230.9px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-works__bg--01-sp {
    display: block;
  }
}
.section-works__bg--02-sp {
  bottom: 14.12px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-works__bg--02-sp {
    display: block;
  }
}
.section-works .c-title {
  position: relative;
  z-index: 1;
  height: clamp(81px, 7.8873239437vw + 51.4225352113px, 165px);
}
.section-works .c-title .c-calligraphy_inner h2 {
  color: #686A6C;
  font-size: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}
.section-works .c-title .c-calligraphy_inner .calligraphy-after {
  color: #B4B4B4;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .section-works .c-title .c-calligraphy_inner .calligraphy-after {
    top: calc(100% - 1px);
  }
}
.section-works .c-title,
.section-works .c-content,
.section-works .p-home-works {
  position: relative;
  z-index: 1;
}

.p-home-works {
  width: 100%;
  max-width: 1440px;
  padding-left: clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  padding-right: clamp(18px, 9.5774647887vw + -17.9154929577px, 120px);
  margin: 0 auto;
}
.p-home-works .works-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: #686A6C;
  margin-bottom: clamp(38px, 7.6995305164vw + 9.1267605634px, 120px);
}
@media screen and (max-width: 700px) {
  .p-home-works .works-description {
    padding: 0 31px 0 32px;
  }
}
.p-home-works .works-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(378px, 65.9154929577vw + 130.8169014085px, 1080px);
  overflow: visible;
}

.works-item {
  position: absolute;
}
.works-item a {
  display: block;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-item a:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.works-item .works-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.works-item-1 {
  width: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  height: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  top: clamp(54px, 6.1971830986vw + 30.7605633803px, 120px);
  left: 0;
}

.works-item-2 {
  width: clamp(80px, 15.0234741784vw + 23.661971831px, 240px);
  height: clamp(80px, 15.0234741784vw + 23.661971831px, 240px);
  top: clamp(143px, 20.3755868545vw + 66.5915492958px, 360px);
  left: clamp(143px, 31.6431924883vw + 24.338028169px, 480px);
}

.works-item-3 {
  width: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  height: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  top: 0;
  right: 0;
}

.works-item-4 {
  width: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  height: clamp(120px, 22.5352112676vw + 35.4929577465px, 360px);
  top: clamp(258px, 43.3802816901vw + 95.323943662px, 720px);
  left: clamp(62.5px, 16.6666666667vw + 0px, 240px);
}

.works-item-5 {
  width: clamp(80px, 15.0234741784vw + 23.661971831px, 240px);
  height: clamp(80px, 15.0234741784vw + 23.661971831px, 240px);
  top: clamp(246px, 33.2394366197vw + 121.3521126761px, 600px);
  left: clamp(240px, 56.338028169vw + 28.7323943662px, 840px);
}

.section-qualities {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .section-qualities {
    margin: 0 auto;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .section-qualities {
    margin: 0 auto;
    height: auto;
  }
}
.section-qualities__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-qualities__bg--06 {
  top: 165px;
}
@media screen and (max-width: 700px) {
  .section-qualities__bg--06 {
    display: none;
  }
}
.section-qualities__bg--07 {
  bottom: 0px;
}
@media screen and (max-width: 700px) {
  .section-qualities__bg--07 {
    display: none;
  }
}
.section-qualities__bg--06-sp {
  top: 153px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-qualities__bg--06-sp {
    display: block;
  }
}
.section-qualities__bg--07-sp {
  bottom: 199px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-qualities__bg--07-sp {
    display: block;
  }
}
.section-qualities .c-content-qualities {
  position: relative;
  z-index: 1;
}
.section-qualities .c-calligraphy {
  position: relative;
  z-index: 1;
  height: clamp(78px, 8.1690140845vw + 47.3661971831px, 165px);
}
.section-qualities .c-calligraphy .c-calligraphy_inner h2 {
  color: #686A6C;
}
.section-qualities .c-calligraphy .c-calligraphy_inner .calligraphy-after {
  color: #B4B4B4;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .section-qualities .c-calligraphy .c-calligraphy_inner .calligraphy-after {
    top: calc(100% - 1px);
  }
}

.c-content-qualities {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  min-height: clamp(344.0104166667px, 91.7361111111vw + 0px, 1321px);
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .c-content-qualities {
    min-height: auto;
  }
}
@media screen and (max-width: 700px) {
  .c-content-qualities {
    min-height: auto;
  }
}

.p-home-quality {
  margin: clamp(60px, 5.6338028169vw + 38.8732394366px, 120px) auto 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-left: clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  padding-right: clamp(18px, 9.5774647887vw + -17.9154929577px, 120px);
  margin: 0 auto;
}

.p-home-quality-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: #686A6C;
  text-align: center;
  margin: 0 auto;
  margin-top: clamp(62px, 5.4460093897vw + 41.5774647887px, 120px);
  margin-bottom: clamp(57px, 5.9154929577vw + 34.8169014085px, 120px);
  max-width: clamp(340px, 22.1596244131vw + 256.9014084507px, 576px);
  width: 100%;
}
.p-home-quality-lead .quality-lead-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .p-home-quality-lead .quality-lead-br-sp {
    display: inline;
  }
}

.p-home-quality-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quality-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: clamp(52.0833333333px, 13.8888888889vw + 0px, 200px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(34.67px, 8.0122065728vw + 4.6242253521px, 120px);
  width: 100%;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .quality-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5384615385vw;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .quality-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.9333333333vw;
    height: auto;
  }
}
.quality-item:last-child {
  margin-bottom: 0;
}

.p-home-message-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: clamp(48.1770833333px, 12.8472222222vw + 0px, 185px);
  width: clamp(125px, 33.3333333333vw + 0px, 480px);
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .p-home-message-text {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .p-home-message-text {
    width: 100%;
    height: auto;
  }
}
.p-home-message-text h3 {
  color: #1B1E20;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 1.1267605634vw + 11.7746478873px, 28px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 clamp(6px, 3.9436619718vw + -8.7887323944px, 48px) 0;
}
.p-home-message-text p {
  color: #686A6C;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.p-home-message-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: clamp(52.0833333333px, 13.8888888889vw + 0px, 200px);
  width: clamp(156.25px, 41.6666666667vw + 0px, 600px);
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .p-home-message-img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .p-home-message-img {
    width: 100%;
    height: auto;
  }
}
.p-home-message-img img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .p-home-message-img img {
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .p-home-message-img img {
    height: auto;
  }
}

.section-about {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.section-about__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  bottom: -120px;
}
@media screen and (max-width: 700px) {
  .section-about__bg {
    display: none;
  }
}
.section-about__bg--sp {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  bottom: 112px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-about__bg--sp {
    display: block;
  }
}
.section-about .c-title,
.section-about .c-content,
.section-about .c-content-follow,
.section-about .p-home-about {
  position: relative;
  z-index: 1;
}
.section-about .c-title {
  height: clamp(74px, 8.2629107981vw + 43.014084507px, 162px);
}
.section-about .c-content {
  height: clamp(41px, 4.2253521127vw + 25.1549295775px, 86px);
}
.section-about .c-content .content-label {
  color: #99AEBA;
}
.section-about .c-content-follow {
  padding-inline: clamp(49px, 6.6666666667vw + 24px, 120px);
}
.section-about .about-lead {
  width: 100%;
  max-width: 1200px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #686A6C;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  display: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  margin-bottom: clamp(31px, 8.3568075117vw + -0.338028169px, 120px);
}

.p-home-about {
  width: 100%;
  max-width: 1440px;
  padding-left: clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  padding-right: clamp(18px, 9.5774647887vw + -17.9154929577px, 120px);
  height: auto;
  margin: 0 auto clamp(60px, 5.6338028169vw + 38.8732394366px, 120px) auto;
}

.about-gallery {
  position: relative;
  width: 100%;
  height: clamp(70.3125px, 18.75vw + 0px, 270px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(125px, 33.3333333333vw + 0px, 480px) clamp(156.25px, 41.6666666667vw + 0px, 600px);
  -webkit-column-gap: clamp(16px, 9.765258216vw + -20.6197183099px, 120px);
     -moz-column-gap: clamp(16px, 9.765258216vw + -20.6197183099px, 120px);
          column-gap: clamp(16px, 9.765258216vw + -20.6197183099px, 120px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .about-gallery {
    grid-template-columns: 1fr;
    row-gap: clamp(20px, 0vw + 20px, 20px);
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .about-gallery {
    grid-template-columns: 1fr;
    row-gap: clamp(16px, 0vw + 16px, 16px);
    margin: 0 auto;
    height: auto;
    justify-items: center;
  }
}

.about-image {
  width: clamp(280px, 18.779342723vw + 209.5774647887px, 480px);
  height: clamp(157.5px, 10.5633802817vw + 117.8873239437px, 270px);
  overflow: hidden;
}
.about-image img {
  width: clamp(280px, 18.779342723vw + 209.5774647887px, 480px);
  height: clamp(157.5px, 10.5633802817vw + 117.8873239437px, 270px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-description {
  width: clamp(156.25px, 41.6666666667vw + 0px, 600px);
  height: clamp(30.2083333333px, 8.0555555556vw + 0px, 116px);
  margin-left: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: #686A6C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .about-description {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .about-description {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

.section-contact {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin: 0 auto;
}
@supports (width: 100dvw) {
  .section-contact {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}

.c-contact-section {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: clamp(120px, 21.220657277vw + 40.4225352113px, 346px);
  padding: clamp(38px, 7.6995305164vw + 9.1267605634px, 120px) clamp(87px, 36.9014084507vw + -51.3802816901px, 480px);
  background-color: #FFFFFF;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn .contact-btn-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(200px, 26.2910798122vw + 101.4084507042px, 480px);
  height: clamp(44px, 5.8215962441vw + 22.1690140845px, 106px);
  padding: 0 auto;
  border: 1px solid #929394;
  border-radius: 54px;
  background-color: transparent;
  color: #1B1E20;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.3145539906vw + 9.0704225352px, 28px);
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn .contact-btn-link:hover {
  background-color: #E4E3DB;
  color: #33363B;
}

.section-news,
.section-message,
.section-works,
.section-about,
.section-contact,
.section-qualities,
.section-intermediate-image {
  position: relative;
}
.section-news + .section-news,
.section-news + .section-message,
.section-news + .section-works,
.section-news + .section-about,
.section-news + .section-contact,
.section-news + .section-qualities,
.section-news + .section-intermediate-image,
.section-message + .section-news,
.section-message + .section-message,
.section-message + .section-works,
.section-message + .section-about,
.section-message + .section-contact,
.section-message + .section-qualities,
.section-message + .section-intermediate-image,
.section-works + .section-news,
.section-works + .section-message,
.section-works + .section-works,
.section-works + .section-about,
.section-works + .section-contact,
.section-works + .section-qualities,
.section-works + .section-intermediate-image,
.section-about + .section-news,
.section-about + .section-message,
.section-about + .section-works,
.section-about + .section-about,
.section-about + .section-contact,
.section-about + .section-qualities,
.section-about + .section-intermediate-image,
.section-contact + .section-news,
.section-contact + .section-message,
.section-contact + .section-works,
.section-contact + .section-about,
.section-contact + .section-contact,
.section-contact + .section-qualities,
.section-contact + .section-intermediate-image,
.section-qualities + .section-news,
.section-qualities + .section-message,
.section-qualities + .section-works,
.section-qualities + .section-about,
.section-qualities + .section-contact,
.section-qualities + .section-qualities,
.section-qualities + .section-intermediate-image,
.section-intermediate-image + .section-news,
.section-intermediate-image + .section-message,
.section-intermediate-image + .section-works,
.section-intermediate-image + .section-about,
.section-intermediate-image + .section-contact,
.section-intermediate-image + .section-qualities,
.section-intermediate-image + .section-intermediate-image {
  margin-top: 0;
}

.p-about .p-about-lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.3145539906vw + 7.0704225352px, 26px);
  line-height: 1.6;
  color: #505050;
  text-align: center;
}

.p-about .section-about {
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
.p-about .section-about .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}
.p-about .section-about .c-content .content-label {
  color: #907D4E;
}
.p-about .p-about-lead {
  height: auto;
  margin-bottom: clamp(32px, 1.5962441315vw + 26.014084507px, 49px);
}
@media screen and (max-width: 700px) {
  .p-about .p-about-lead {
    margin-bottom: 57px;
  }
}

.p-about .section-about {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.p-about .section-about__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
@media screen and (max-width: 700px) {
  .p-about .section-about__bg {
    width: 100%;
    max-width: 100%;
  }
}
.p-about .section-about__bg--02 {
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
@media screen and (max-width: 700px) {
  .p-about .section-about__bg--02 {
    display: none;
  }
}
.p-about .section-about__bg--02-sp {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
  display: none;
}
@media screen and (max-width: 700px) {
  .p-about .section-about__bg--02-sp {
    display: block;
  }
}
.p-about .section-about .c-title,
.p-about .section-about .c-content,
.p-about .section-about .c-content-follow {
  position: relative;
  z-index: 1;
}

.section-about-assets .about-assets-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.220657277vw + 13.4225352113px, 31px);
  color: #907D4E;
  margin: 0 clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .section-about-assets .about-assets-title {
    margin: 0 17px 13px 17px;
  }
}
.section-about-assets .about-assets-image {
  width: min(100%, clamp(345px, 31.7370892019vw + 225.985915493px, 683px));
  margin: 0 auto;
  position: relative;
}
.section-about-assets .about-assets-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 683/510;
  display: block;
}
.section-about-assets .about-assets-image .about-assets-link {
  position: absolute;
  border-radius: 50%;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.section-about-assets .about-assets-image .about-assets-link::before {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  top: -5px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: opacity 200ms ease, transform 200ms ease;
  transition: opacity 200ms ease, transform 200ms ease, -webkit-transform 200ms ease;
  pointer-events: none;
}
.section-about-assets .about-assets-image .about-assets-link:hover::before, .section-about-assets .about-assets-image .about-assets-link:focus-visible::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -115%);
          transform: translate(-50%, -115%);
}
.section-about-assets .about-assets-image .about-assets-link.about-assets-link-yoshidaHSD {
  top: clamp(148px, 13.7089201878vw + 96.5915492958px, 294px);
  left: clamp(155px, 14.8356807512vw + 99.3661971831px, 313px);
  width: clamp(110px, 9.8591549296vw + 73.0281690141px, 215px);
  height: clamp(110px, 9.8591549296vw + 73.0281690141px, 215px);
}
.section-about-assets .about-assets-image .about-assets-link.about-assets-link-yoshida {
  top: clamp(29px, 2.5352112676vw + 19.4929577465px, 56px);
  left: clamp(33px, 2.9107981221vw + 22.0845070423px, 64px);
  width: clamp(80px, 7.5117370892vw + 51.8309859155px, 160px);
  height: clamp(80px, 7.5117370892vw + 51.8309859155px, 160px);
}
.section-about-assets .about-assets-image .about-assets-link.about-assets-link-crossfield {
  top: clamp(72px, 6.5727699531vw + 47.3521126761px, 142px);
  right: clamp(0px, 0.0938967136vw + -0.3521126761px, 1px);
  width: clamp(83px, 7.2300469484vw + 55.8873239437px, 160px);
  height: clamp(83px, 7.2300469484vw + 55.8873239437px, 160px);
}

.section-about-support {
  position: relative;
  margin: 0 auto;
}
.section-about-support__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-about-support__bg--10 {
  top: 0px;
}
@media screen and (max-width: 700px) {
  .section-about-support__bg--10 {
    display: none;
  }
}
.section-about-support__bg--10-sp {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: 121.13px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-about-support__bg--10-sp {
    display: block;
  }
}
.section-about-support .c-calligraphy,
.section-about-support .about-support-lead,
.section-about-support .about-support-image {
  position: relative;
  z-index: 1;
}
.section-about-support .c-calligraphy {
  height: clamp(41px, 7.79342723vw + 11.7746478873px, 124px);
  margin-bottom: clamp(43px, 4.9765258216vw + 24.338028169px, 96px);
}
.section-about-support .c-calligraphy .c-calligraphy_inner h2 {
  color: #686A6C;
}
.section-about-support .c-calligraphy .c-calligraphy_inner .calligraphy-after {
  color: #B4B4B4;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .section-about-support .c-calligraphy .c-calligraphy_inner .calligraphy-after {
    top: calc(100% - 1px);
  }
}
.section-about-support .about-support-lead {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: clamp(43px, 5.3521126761vw + 22.9295774648px, 100px);
  padding: 0 clamp(37px, 18.9671361502vw + -34.1267605634px, 239px) 0 clamp(40px, 18.9671361502vw + -31.1267605634px, 242px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  font-weight: 400;
  line-height: 1.8;
  color: #686A6C;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-lead {
    margin-bottom: 43px;
  }
}
.section-about-support .about-support-image {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(17px, 9.6713615023vw + -19.2676056338px, 120px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-about-support .about-support-image .flow-open-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(66px, 3.1924882629vw + 54.0281690141px, 100px);
}
.section-about-support .about-support-image .top-process-flow {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.section-about-support .about-support-image .top-process-flow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(10px, 1.4084507042vw + 4.7183098592px, 25px);
  height: clamp(74px, 15.5868544601vw + 15.5492957746px, 240px);
  max-width: clamp(700px, 41.3145539906vw + 545.0704225352px, 1140px);
  margin: 0 auto;
}
.section-about-support .about-support-image .top-process-flow__card {
  border-radius: 16px;
  border: 2px solid #77787A;
  background-color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(4px, 0.3755868545vw + 2.5915492958px, 8px) clamp(10px, 1.8779342723vw + 2.9577464789px, 30px) clamp(4px, 0.3755868545vw + 2.5915492958px, 8px) clamp(10px, 1.8779342723vw + 2.9577464789px, 30px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #686A6C;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 0.9389671362vw + 10.4788732394px, 24px);
  font-weight: 700;
  line-height: 1.6;
}
.section-about-support .about-support-image .top-process-flow__card--vertical {
  min-width: clamp(80px, 1.5023474178vw + 74.3661971831px, 96px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
}
.section-about-support .about-support-image .top-process-flow__card--vertical .top-process-flow__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  margin-bottom: 0;
}
.section-about-support .about-support-image .top-process-flow__card--horizontal {
  max-width: clamp(223px, 16.6197183099vw + 160.676056338px, 400px);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.section-about-support .about-support-image .top-process-flow__segments {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}
.section-about-support .about-support-image .top-process-flow__segment {
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  text-align: center;
  white-space: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}
.section-about-support .about-support-image .top-process-flow__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-about-support .about-support-image .top-process-flow__arrow-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: clamp(2px, 1.5023474178vw + -3.6338028169px, 18px) solid transparent;
  border-bottom: clamp(2px, 1.5023474178vw + -3.6338028169px, 18px) solid transparent;
  border-left: clamp(4px, 3.0046948357vw + -7.2676056338px, 36px) solid #77787A;
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .top-process-flow__arrow-icon {
    border-left: 36px solid #77787A;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
  }
}
.section-about-support .about-support-image .top-process-flow__arrow-icon--small {
  border-top-width: clamp(2px, 0.9389671362vw + -1.5211267606px, 12px);
  border-bottom-width: clamp(2px, 0.9389671362vw + -1.5211267606px, 12px);
  border-left-width: clamp(4px, 1.8779342723vw + -3.0422535211px, 24px);
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .top-process-flow__arrow-icon--small {
    border-left-width: 24px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .top-process-flow__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 0 76px;
  }
  .section-about-support .about-support-image .top-process-flow__card {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .section-about-support .about-support-image .top-process-flow__card--vertical {
    min-width: 100%;
  }
  .section-about-support .about-support-image .top-process-flow__card--horizontal {
    min-width: 100%;
  }
  .section-about-support .about-support-image .top-process-flow__segments {
    grid-auto-flow: row;
    grid-auto-rows: auto;
    justify-items: center;
  }
  .section-about-support .about-support-image .top-process-flow__segment {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: clamp(14px, 0.9389671362vw + 10.4788732394px, 24px);
    font-weight: 700;
    color: #686A6C;
    width: 100%;
    max-width: 280px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
  }
  .section-about-support .about-support-image .top-process-flow__arrow .top-process-flow__arrow-icon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .section-about-support .about-support-image .top-process-flow .top-process-flow__arrow-icon--small {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.section-about-support .about-support-image .open-support-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(36px, 0.3755868545vw + 34.5915492958px, 40px);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.section-about-support .about-support-image .open-support-section__top {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(0, 470px);
  grid-auto-rows: auto;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-column-gap: clamp(3px, 2.5352112676vw + -6.5070422535px, 30px);
     -moz-column-gap: clamp(3px, 2.5352112676vw + -6.5070422535px, 30px);
          column-gap: clamp(3px, 2.5352112676vw + -6.5070422535px, 30px);
  row-gap: 0;
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .open-support-section__top {
    grid-template-columns: minmax(0, clamp(207px, 46.2910798122vw + 33.4084507042px, 700px)) minmax(0, clamp(130px, 31.9248826291vw + 10.2816901408px, 470px));
    max-width: 100%;
  }
}
.section-about-support .about-support-image .open-support-section__panel-header {
  background-color: #686868;
  padding: clamp(10px, 0.1877934272vw + 9.2957746479px, 12px) clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: clamp(44px, 1.8779342723vw + 36.9577464789px, 64px);
}
.section-about-support .about-support-image .open-support-section__panel-header--flow {
  grid-column: 1;
  grid-row: 1;
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.section-about-support .about-support-image .open-support-section__panel-header--support {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.section-about-support .about-support-image .open-support-section__panel-title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  font-weight: 700;
  text-align: center;
}
.section-about-support .about-support-image .open-support-section__panel-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: clamp(15px, 1.220657277vw + 10.4225352113px, 28px);
  color: #D9D9D9;
  background-color: #D9D9D9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-about-support .about-support-image .open-support-section__panel-body--flow {
  grid-column: 1;
  grid-row: 2;
}
.section-about-support .about-support-image .open-support-section__panel-body--support {
  grid-column: 2;
  grid-row: 2;
}
.section-about-support .about-support-image .open-support-section__panel-body--support {
  padding: clamp(12px, 2.2535211268vw + 3.5492957746px, 36px) clamp(9px, 4.4131455399vw + -7.5492957746px, 56px);
}
.section-about-support .about-support-image .open-support-section__flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}
.section-about-support .about-support-image .open-support-section__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 3.5680751174vw + -3.3802816901px, 48px);
}
.section-about-support .about-support-image .open-support-section__flow-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.section-about-support .about-support-image .open-support-section__flow-item--with-sub {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section-about-support .about-support-image .open-support-section__flow-main {
  font-weight: 700;
  font-size: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  line-height: 0.8;
  color: #686A6C;
}
.section-about-support .about-support-image .open-support-section__flow-sub {
  font-size: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  font-weight: 500;
  color: #686A6C;
}
.section-about-support .about-support-image .open-support-section__badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(25px, 2.1596244131vw + 16.9014084507px, 48px);
  height: clamp(25px, 2.1596244131vw + 16.9014084507px, 48px);
  border-radius: 50%;
  background-color: #ffffff;
  color: #77787A;
  font-weight: 700;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}
.section-about-support .about-support-image .open-support-section__badge--large {
  width: clamp(25px, 1.0328638498vw + 21.1267605634px, 36px);
  height: clamp(25px, 1.0328638498vw + 21.1267605634px, 36px);
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
}
.section-about-support .about-support-image .open-support-section__support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-about-support .about-support-image .open-support-section__support-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(10px, 1.1267605634vw + 5.7746478873px, 22px);
  font-weight: 700;
  color: #686A6C;
}
.section-about-support .about-support-image .open-support-section__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(6px, 0.1877934272vw + 5.2957746479px, 8px);
}
.section-about-support .about-support-image .open-support-section__triangles {
  display: none;
}
.section-about-support .about-support-image .open-support-section__triangle {
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 12px solid #77787A;
}
.section-about-support .about-support-image .open-support-section__open-band {
  width: 100%;
  max-width: clamp(340px, 77.9342723005vw + 47.7464788732px, 1170px);
  margin: 0 auto;
  background-color: #A18956;
  border-radius: 0;
  padding: clamp(8px, 0.1877934272vw + 7.2957746479px, 10px) 0;
  text-align: center;
}
.section-about-support .about-support-image .open-support-section__open-text {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
}
.section-about-support .about-support-image .open-support-section__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  margin: 0 auto;
}
.section-about-support .about-support-image .open-support-section__bottom-panels {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(0, 470px);
  gap: clamp(3px, 2.5352112676vw + -6.5070422535px, 30px);
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .open-support-section__bottom-panels {
    grid-template-columns: minmax(0, clamp(207px, 46.2910798122vw + 33.4084507042px, 700px)) minmax(0, clamp(130px, 31.9248826291vw + 10.2816901408px, 470px));
    max-width: 100%;
  }
}
.section-about-support .about-support-image .open-support-section__bottom-panel {
  background-color: #D9D9D9;
  border-radius: 0;
  padding: clamp(11.5px, 0.4225352113vw + 9.9154929577px, 16px) clamp(9px, 4.4131455399vw + -7.5492957746px, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 0.1877934272vw + 7.2957746479px, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.section-about-support .about-support-image .open-support-section__bottom-panel--after {
  padding-left: clamp(15px, 1.220657277vw + 10.4225352113px, 28px);
  padding-right: clamp(15px, 1.220657277vw + 10.4225352113px, 28px);
}
.section-about-support .about-support-image .open-support-section__bottom-text {
  font-size: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  color: #686A6C;
  font-weight: 700;
}
.section-about-support .about-support-image .open-support-section__panel-body--flow::after, .section-about-support .about-support-image .open-support-section__panel-body--support::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(-32px, -0.3755868545vw + -30.5915492958px, -36px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 24px solid #77787A;
}
.section-about-support .about-support-image .open-support-section__bottom-panel--after::before, .section-about-support .about-support-image .open-support-section__bottom-panel--seminar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(-32px, -0.3755868545vw + -30.5915492958px, -36px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 24px solid #77787A;
}
@media screen and (max-width: 700px) {
  .section-about-support .about-support-image .open-support-section__triangles {
    display: none;
  }
}

.section-about-group {
  width: 100%;
  max-width: 1410px;
  padding: 60px clamp(17px, 9.6713615023vw + -19.2676056338px, 120px) 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
.section-about-group .company-list-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 0.9389671362vw + 14.4788732394px, 28px);
  color: #970000;
  text-align: left;
  margin-bottom: 0;
}
.section-about-group .company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  row-gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
}
.section-about-group .company-list li {
  font-size: 14px;
  color: #505050;
  list-style: none;
  line-height: 2em;
}
.section-about-group .company-list li:first-of-type a {
  color: #970000;
  border-bottom: 1px solid #970000;
  font-weight: 600;
}
.section-about-group .company-list li:last-of-type a {
  border-bottom: 1px solid #505050;
}
.section-about-group .company-list li a {
  text-decoration: none;
  color: #505050;
}

.section-about-access {
  position: relative;
}
.section-about-access__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-about-access__bg--04 {
  top: 181px;
}
@media screen and (max-width: 700px) {
  .section-about-access__bg--04 {
    display: none;
  }
}
.section-about-access__bg--04-sp {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: 133px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-about-access__bg--04-sp {
    display: block;
  }
}
.section-about-access .c-calligraphy,
.section-about-access .about-map,
.section-about-access .about-address-list {
  position: relative;
  z-index: 1;
}
.section-about-access .c-calligraphy {
  height: clamp(106px, 7.0422535211vw + 79.5915492958px, 181px);
  margin-bottom: clamp(55px, 6.8544600939vw + 29.2957746479px, 128px);
}
.section-about-access .c-calligraphy .c-calligraphy_inner h2 {
  color: #686A6C;
  font-size: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}
.section-about-access .c-calligraphy .c-calligraphy_inner .calligraphy-after {
  color: #B4B4B4;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .section-about-access .c-calligraphy .c-calligraphy_inner .calligraphy-after {
    top: calc(100% - 1px);
  }
}
.section-about-access .about-map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  width: clamp(300px, 39.4366197183vw + 152.1126760563px, 720px);
  height: clamp(257px, 32.20657277vw + 136.2253521127px, 600px);
}
.section-about-access .about-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.section-about-access .about-address-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: clamp(23px, 4.8018779343vw + 4.9929577465px, 74.14px) clamp(37px, 32.20657277vw + -83.7746478873px, 380px) clamp(63px, 2.3474178404vw + 54.1971830986px, 88px) clamp(36px, 32.3004694836vw + -85.1267605634px, 380px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.section-about-access .about-address-list .address-item {
  display: grid;
  grid-template-columns: clamp(84px, 1.1267605634vw + 79.7746478873px, 96px) 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
     -moz-column-gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
          column-gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  width: 100%;
}
.section-about-access .about-address-list .address-item .label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  line-height: 1.8;
  color: #686A6C;
  font-weight: 700;
  text-align: right;
}
.section-about-access .about-address-list .address-item .value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  line-height: 1.8;
  color: #686A6C;
  font-weight: 400;
}
.section-about-access .about-address-list .address-item .value .address-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .section-about-access .about-address-list .address-item .value .address-br-sp {
    display: inline;
  }
}
.section-about-access .about-address-list .address-item a.value {
  color: #686A6C;
  text-decoration: none;
}

.section-news-list {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
.section-news-list__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news-list__bg--11 {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
@media screen and (max-width: 700px) {
  .section-news-list__bg--11 {
    display: none;
  }
}
.section-news-list__bg--02-sp {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
  display: none;
}
@media screen and (max-width: 700px) {
  .section-news-list__bg--02-sp {
    display: block;
  }
}
.section-news-list .c-title,
.section-news-list .c-content,
.section-news-list .p-news-list {
  position: relative;
  z-index: 1;
}
.section-news-list .c-content {
  height: clamp(55px, 4.1314553991vw + 39.5070422535px, 99px);
}
.section-news-list .p-news-list {
  max-width: clamp(340px, 80.7511737089vw + 37.1830985915px, 1200px);
  margin: 0 auto;
}
.section-news-list .news-items {
  list-style: none;
  padding: 0;
  margin-top: 0px;
  margin-bottom: clamp(103px, 5.0704225352vw + 83.985915493px, 157px);
}
.section-news-list .news-item:nth-child(odd) {
  background-color: #F3F3F3;
}
.section-news-list .news-item:nth-child(even) {
  background-color: #FFFFFF;
}
.section-news-list .news-row {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 64px;
  padding: clamp(7px, 0.9389671362vw + 3.4788732394px, 17px) clamp(14px, 1.6901408451vw + 7.661971831px, 32px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  grid-template-areas: "meta title more";
}
.section-news-list .news-meta {
  grid-area: meta;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.section-news-list .news-meta .news-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  line-height: 1.8;
  color: #1B1E20;
  white-space: nowrap;
}
.section-news-list .news-meta .news-tag {
  --tag-color: #1B1E20;
  display: inline-block;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  line-height: 1.8;
  color: #1B1E20;
  padding: 0 clamp(13.5px, 1.1154929577vw + 9.3169014085px, 25.38px) 0 clamp(13.5px, 1.1737089202vw + 9.0985915493px, 26px);
  background-color: var(--tag-color, #1B1E20);
  border: none;
  border-radius: 9999px;
  white-space: nowrap;
}
.section-news-list .news-title {
  grid-area: title;
  min-width: 0;
}
.section-news-list .news-title a.news-link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  line-height: 1.8;
  color: #686A6C;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news-list .news-title a.news-link:hover {
  color: #907D4E;
}
.section-news-list .news-more {
  grid-area: more;
  text-align: right;
  width: auto;
}
.section-news-list .news-more .more-link {
  position: relative;
  display: block;
  width: clamp(98px, 8.4507042254vw + 66.3098591549px, 188px);
  margin-left: auto;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  line-height: 1;
  color: #1B1E20;
  text-decoration: none;
  text-align: left;
  padding-bottom: clamp(3px, 1.0328638498vw + -0.8732394366px, 14px);
  --arrow-head: 16px;
}
.section-news-list .news-more .more-link::after, .section-news-list .news-more .more-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #907D4E;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.section-news-list .news-more .more-link::after {
  left: 0;
  width: clamp(98px, 8.4507042254vw + 66.3098591549px, 188px);
}
.section-news-list .news-more .more-link::before {
  left: calc(clamp(98px, 8.4507042254vw + 66.3098591549px, 188px) - var(--arrow-head));
  width: var(--arrow-head);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section-news-list .news-more .more-link:hover::after, .section-news-list .news-more .more-link:hover::before {
  background-color: #686A6C;
}
.section-news-list .news-more .more-link:hover::before {
  -webkit-transform: translateX(4px) rotate(45deg);
          transform: translateX(4px) rotate(45deg);
}
@media screen and (max-width: 700px) {
  .section-news-list .news-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas: "meta meta" "title more";
    row-gap: 2px;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .section-news-list .news-more {
    width: auto;
    justify-self: end;
  }
}

.post-type-archive-news .section-news-list .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}

.section-news-single {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
.section-news-single__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news-single__bg--01 {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
@media screen and (max-width: 700px) {
  .section-news-single__bg--01 {
    display: none;
  }
}
.section-news-single__bg--01-sp {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
  display: none;
}
@media screen and (max-width: 700px) {
  .section-news-single__bg--01-sp {
    display: block;
  }
}
.section-news-single .c-title,
.section-news-single .c-content,
.section-news-single .news-meta-bar,
.section-news-single .news-single-article,
.section-news-single .news-back {
  position: relative;
  z-index: 1;
}
.section-news-single .c-content {
  height: clamp(55px, 5.5399061033vw + 34.2253521127px, 114px);
}
.section-news-single .news-meta-bar {
  position: relative;
  margin-bottom: clamp(29px, 2.9107981221vw + 18.0845070423px, 60px);
}
.section-news-single .news-meta-bar .news-meta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 29px;
}
.section-news-single .news-meta-bar .news-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #1B1E20;
  white-space: nowrap;
}
.section-news-single .news-meta-bar .news-tag {
  --tag-color: #1B1E20;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  line-height: 1.8;
  color: #1B1E20;
  padding: 0 clamp(18.5px, 0.6460093897vw + 16.0774647887px, 25.38px) 0 clamp(18.5px, 0.7042253521vw + 15.8591549296px, 26px);
  background-color: var(--tag-color, #1B1E20);
  border: none;
  border-radius: 9999px;
  white-space: nowrap;
}
.section-news-single .news-single-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}
.section-news-single .news-single-article .news-single-header {
  text-align: center;
  margin-bottom: 37px;
}
.section-news-single .news-single-article .news-single-title-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.3145539906vw + 11.0704225352px, 30px);
  line-height: 1.4;
  color: #686A6C;
  margin: 0;
}
.section-news-single .news-single-article .news-single-figure {
  margin: 24px auto;
  text-align: center;
}
.section-news-single .news-single-article .news-single-figure .news-single-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-news-single .news-single-article .news-single-content {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  line-height: 1.8;
  color: #505050;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
     -moz-column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
          column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
  row-gap: clamp(31px, 3.9436619718vw + 16.2112676056px, 73px);
}
.section-news-single .news-single-article .news-single-content p {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  font-size: clamp(11px, 0.8450704225vw + 7.8309859155px, 20px);
  margin-bottom: 0;
}
.section-news-single .news-single-article .news-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.section-news-single .news-single-article .news-single-content .wp-block-image {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - clamp(25px, 7.0422535211vw + -1.4084507042px, 100px) / 2);
          flex: 0 0 calc(50% - clamp(25px, 7.0422535211vw + -1.4084507042px, 100px) / 2);
}
.section-news-single .news-single-article .news-single-content .wp-block-image img {
  width: clamp(150px, 23.4741784038vw + 61.9718309859px, 400px);
  height: auto;
  display: block;
}
.section-news-single .news-single-article .news-single-content .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
     -moz-column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
          column-gap: clamp(25px, 7.0422535211vw + -1.4084507042px, 100px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-news-single .news-back {
  max-width: 1200px;
  margin: clamp(41px, 7.79342723vw + 11.7746478873px, 124px) auto clamp(40px, 8.4507042254vw + 8.3098591549px, 130px) auto;
  text-align: center;
}
.section-news-single .news-back .news-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.3145539906vw + 11.0704225352px, 30px);
  line-height: 1.2;
  color: #A18956;
  text-decoration: none;
}
.section-news-single .news-back .news-back-link .icon-circle-arrow {
  width: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
  height: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
  border: none;
  background-color: #A18956;
  border-radius: 50%;
  position: relative;
}
.section-news-single .news-back .news-back-link .icon-circle-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  width: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  height: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  border-left: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px) solid #FFFFFF;
  border-bottom: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px) solid #FFFFFF;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
}
.section-news-single .news-back .news-back-link .icon-circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  width: clamp(14px, 1.4084507042vw + 8.7183098592px, 29px);
  height: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px);
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-news-single .news-back .news-back-link:hover {
  opacity: 0.8;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .section-news-single .news-meta-bar .news-meta-inner {
    padding: 0 80px;
  }
  .section-news-single .news-single-article {
    padding: 0 80px;
  }
  .section-news-single .news-back {
    padding: 0 80px;
  }
}
@media screen and (max-width: 700px) {
  .section-news-single .news-meta-bar .news-meta-inner {
    padding: 0 25px;
  }
  .section-news-single .news-single-article {
    padding: 0 25px;
  }
  .section-news-single .news-back {
    padding: 0 25px;
  }
  .section-news-single .news-single-title-text {
    font-size: 22px;
  }
}

.single-news .section-news-single .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}

.section-works-list {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
.section-works-list__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-works-list__bg--12 {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
@media screen and (max-width: 700px) {
  .section-works-list__bg--12 {
    display: none;
  }
}
.section-works-list__bg--01-sp {
  top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
  display: none;
}
@media screen and (max-width: 700px) {
  .section-works-list__bg--01-sp {
    display: block;
  }
}
.section-works-list .c-title,
.section-works-list .c-content,
.section-works-list .p-works-list {
  position: relative;
  z-index: 1;
}
.section-works-list .c-content {
  height: clamp(55px, 4.1314553991vw + 39.5070422535px, 99px);
}
.section-works-list .p-works-list {
  max-width: clamp(340px, 80.7511737089vw + 37.1830985915px, 1200px);
  margin: 0 auto;
  margin-bottom: clamp(70px, 4.6948356808vw + 52.3943661972px, 120px);
}

.post-type-archive-work .section-works-list .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}
.post-type-archive-work .works-grid .works-card:nth-child(10) {
  display: none;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .post-type-archive-work .works-grid .works-card:nth-child(10) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 700px) {
  .post-type-archive-work .works-grid .works-card:nth-child(10) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-works-list {
  max-width: 1200px;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, clamp(100px, 24.4131455399vw + 8.4507042254px, 360px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-column-gap: clamp(20px, 3.7558685446vw + 5.9154929577px, 60px);
     -moz-column-gap: clamp(20px, 3.7558685446vw + 5.9154929577px, 60px);
          column-gap: clamp(20px, 3.7558685446vw + 5.9154929577px, 60px);
  row-gap: clamp(17px, 5.4460093897vw + -3.4225352113px, 75px);
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.works-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: clamp(100px, 24.4131455399vw + 8.4507042254px, 360px);
  height: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .works-card {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .works-card {
    width: 100%;
  }
}
.works-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.works-card-image {
  width: 100%;
  height: clamp(100px, 13.1455399061vw + 50.7042253521px, 240px);
  overflow: hidden;
  background-color: #B4B4B4;
}
.works-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.works-card-image .works-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-card-image:hover .works-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.works-card-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #B4B4B4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.works-card-image-placeholder:hover {
  opacity: 0.8;
}

.works-placeholder-icon {
  position: relative;
  width: clamp(40px, 1.8779342723vw + 32.9577464789px, 60px);
  height: clamp(40px, 1.8779342723vw + 32.9577464789px, 60px);
  z-index: 1;
}
.works-placeholder-icon::before, .works-placeholder-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: clamp(2px, 0.0938967136vw + 1.6478873239px, 3px);
  background-color: #929394;
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: 2;
}
.works-placeholder-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.works-placeholder-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.works-card-caption {
  background-color: #4E4E4E;
  padding: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .works-card-caption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 700px) {
  .works-card-caption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.works-card-caption-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(6px, 0.1877934272vw + 5.2957746479px, 8px);
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .works-card-caption-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 700px) {
  .works-card-caption-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.works-card-caption-right {
  font-size: clamp(10px, 0.3755868545vw + 8.5915492958px, 14px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .works-card-caption-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 700px) {
  .works-card-caption-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.works-card-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.works-card-title:hover {
  opacity: 0.8;
}

.works-card-location {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(10px, 0.2816901408vw + 8.9436619718px, 13px);
  font-weight: 500;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.works-card-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(5px, 0.1408450704vw + 4.4718309859px, 6.5px) clamp(8px, 0.3755868545vw + 6.5915492958px, 12px);
  border-radius: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(10px, 0.3755868545vw + 8.5915492958px, 14px);
  font-weight: 500;
  line-height: 1.4;
  color: #1B1E20;
  --works-tag-color: #FFFFFF;
  background-color: var(--works-tag-color, #FFFFFF);
  min-width: 8ch;
  text-align: center;
  white-space: nowrap;
}

.p-works-empty {
  text-align: center;
  padding: clamp(60px, 5.6338028169vw + 38.8732394366px, 120px) 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 0.1877934272vw + 15.2957746479px, 18px);
  color: #686A6C;
}

.p-works-pagination {
  margin-top: clamp(40px, 3.7558685446vw + 25.9154929577px, 80px);
  text-align: center;
}
.p-works-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: clamp(8px, 0.3755868545vw + 6.5915492958px, 12px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-works-pagination .page-numbers li {
  display: inline-block;
}
.p-works-pagination .page-numbers a,
.p-works-pagination .page-numbers span {
  display: inline-block;
  padding: clamp(6px, 0.1877934272vw + 5.2957746479px, 8px) clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #1B1E20;
  text-decoration: none;
  border: 1px solid #E4E3DB;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-works-pagination .page-numbers a:hover,
.p-works-pagination .page-numbers span:hover {
  background-color: #E4E3DB;
  color: #33363B;
}
.p-works-pagination .page-numbers .current {
  background-color: #907D4E;
  color: #FFFFFF;
  border-color: #907D4E;
}
.p-works-pagination .page-numbers .current:hover {
  background-color: #907D4E;
  color: #FFFFFF;
}

.section-work-single {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}
.section-work-single__bg {
  position: absolute;
  width: 100%;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  display: block;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-work-single__bg--13 {
  bottom: -110px;
}
@media screen and (max-width: 700px) {
  .section-work-single__bg--13 {
    display: none;
  }
}
.section-work-single__bg--08-sp {
  bottom: 61px;
  display: none;
}
@media screen and (max-width: 700px) {
  .section-work-single__bg--08-sp {
    display: block;
  }
}
.section-work-single .c-title,
.section-work-single .c-content,
.section-work-single .work-single-images,
.section-work-single .work-single-article,
.section-work-single .work-back {
  position: relative;
  z-index: 1;
}
.section-work-single .c-content {
  height: clamp(48px, 2.1596244131vw + 39.9014084507px, 71px);
}
.section-work-single .work-single-images {
  width: 100%;
  max-width: clamp(375px, 100vw + 0px, 1440px);
  margin: 0 auto;
  background-color: transparent;
}
.section-work-single .work-main-image {
  width: 100%;
  max-width: clamp(375px, 100vw + 0px, 1440px);
  height: clamp(250px, 28.1690140845vw + 144.3661971831px, 550px);
  margin: 0 auto 5px;
  background-color: transparent;
  aspect-ratio: 1440/550;
  overflow: hidden;
  position: relative;
}
.section-work-single .work-main-image .work-main-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.section-work-single .work-gallery {
  width: 100%;
  max-width: clamp(375px, 100vw + 0px, 1440px);
  margin: 0 auto;
  position: relative;
  background-color: transparent;
}
.section-work-single .work-gallery .work-main-nav {
  position: absolute;
  top: clamp(60px, 5.1643192488vw + 40.6338028169px, 115px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(40px, 1.8779342723vw + 32.9577464789px, 60px);
  height: clamp(40px, 1.8779342723vw + 32.9577464789px, 60px);
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.section-work-single .work-gallery .work-main-nav::after {
  display: none;
  content: none;
}
@media screen and (max-width: 700px) {
  .section-work-single .work-gallery .work-main-nav {
    width: 40px;
    height: 40px;
  }
}
.section-work-single .work-gallery .work-main-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.section-work-single .work-gallery .work-main-nav--prev {
  left: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}
.section-work-single .work-gallery .work-main-nav--next {
  right: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}
.section-work-single .work-gallery .work-main-nav .work-main-nav-arrow {
  position: relative;
  width: clamp(14px, 0.5633802817vw + 11.8873239437px, 20px);
  height: clamp(14px, 0.5633802817vw + 11.8873239437px, 20px);
}
.section-work-single .work-gallery .work-main-nav .work-main-nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border-left: clamp(2px, 0.0938967136vw + 1.6478873239px, 3px) solid #eaeaea;
  border-bottom: clamp(2px, 0.0938967136vw + 1.6478873239px, 3px) solid #eaeaea;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.section-work-single .work-gallery .work-main-nav--prev .work-main-nav-arrow::before {
  -webkit-transform: translate(-30%, -50%) rotate(45deg);
          transform: translate(-30%, -50%) rotate(45deg);
}
.section-work-single .work-gallery .work-main-nav--next .work-main-nav-arrow::before {
  -webkit-transform: translate(-70%, -50%) rotate(-135deg);
          transform: translate(-70%, -50%) rotate(-135deg);
}
.section-work-single .work-gallery-scroll {
  width: 100%;
  background-color: transparent;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.section-work-single .work-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}
.section-work-single .work-gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.section-work-single .work-gallery-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.section-work-single .work-gallery-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.section-work-single .work-gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}
.section-work-single .work-gallery-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(125px, 33.3333333333vw + 0px, 480px);
  height: clamp(80px, 9.6713615023vw + 43.7323943662px, 183px);
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  margin-right: 5px;
}
.section-work-single .work-gallery-item:last-child {
  margin-right: 0;
}
.section-work-single .work-gallery-item:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.section-work-single .work-gallery-item.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.section-work-single .work-gallery-item .work-gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.section-work-single .work-gallery-item:hover .work-gallery-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.section-work-single .work-single-article {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(20px, 2.7230046948vw + 9.7887323944px, 49px) clamp(20px, 9.3896713615vw + -15.2112676056px, 120px) 0 clamp(20px, 9.3896713615vw + -15.2112676056px, 120px);
}
.section-work-single .work-single-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 3.7558685446vw + 25.9154929577px, 80px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 701px) and (max-width: 835px) {
  .section-work-single .work-single-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 700px) {
  .section-work-single .work-single-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.section-work-single .work-single-content-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(280px, 11.2676056338vw + 237.7464788732px, 400px);
}
.section-work-single .work-single-tag {
  margin-bottom: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}
.section-work-single .work-single-tag-label {
  display: inline-block;
  padding: clamp(4px, 0.1877934272vw + 3.2957746479px, 6px) clamp(8px, 0.3755868545vw + 6.5915492958px, 12px);
  border-radius: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  font-weight: 500;
  line-height: 1.4;
  color: #1B1E20;
  --works-tag-color: #FFFFFF;
  background-color: var(--works-tag-color, #FFFFFF);
  white-space: nowrap;
}
.section-work-single .work-single-title {
  margin: 0 0 clamp(14px, 0.9389671362vw + 10.4788732394px, 24px) 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  font-weight: 500;
  line-height: 1.4;
  color: #1B1E20;
}
.section-work-single .work-single-location {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #686A6C;
}
.section-work-single .work-single-content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.section-work-single .work-single-heading {
  margin: 0 0 clamp(18px, 1.7840375587vw + 11.3098591549px, 37px) 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 1.3145539906vw + 11.0704225352px, 30px);
  font-weight: 700;
  line-height: 1.4;
  color: #1B1E20;
}
.section-work-single .work-single-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  font-weight: 400;
  line-height: 1.8;
  color: #1B1E20;
}
.section-work-single .work-single-body p {
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  margin: 0;
}
.section-work-single .work-single-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px) 0;
}
.section-work-single .work-back {
  max-width: 100%;
  margin: clamp(84px, 2.441314554vw + 74.8450704225px, 110px) 0 clamp(55px, 5.1643192488vw + 35.6338028169px, 110px) 0;
  text-align: center;
  padding: 0 clamp(20px, 9.3896713615vw + -15.2112676056px, 120px);
}
.section-work-single .work-back .work-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.3145539906vw + 11.0704225352px, 30px);
  line-height: 1.2;
  color: #A18956;
  text-decoration: none;
}
.section-work-single .work-back .work-back-link .icon-circle-arrow {
  width: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
  height: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
  border: none;
  background-color: #A18956;
  border-radius: 50%;
  position: relative;
}
.section-work-single .work-back .work-back-link .icon-circle-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  width: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  height: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  border-left: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px) solid #FFFFFF;
  border-bottom: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px) solid #FFFFFF;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
}
.section-work-single .work-back .work-back-link .icon-circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  width: clamp(14px, 1.4084507042vw + 8.7183098592px, 29px);
  height: clamp(2px, 0.1877934272vw + 1.2957746479px, 4px);
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-work-single .work-back .work-back-link:hover {
  opacity: 0.8;
}

.single-work .section-work-single .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}

/* ==========================================================================
   Fluid Responsive Utilities (PC-first / 1440px baseline)
   - 基準：PC = 1440px を“正”として、375〜1440の間で滑らかに縮む
   - 寸法・余白・フォントなどは clamp 系で記述
   - メディアクエリは「レイアウト切替」の最小限に限定
   ========================================================================== */
/* === Baselines & Ranges =================================================== */
/* fluid 区間（この区間内で線形にスケール） */
/* === Fluid Functions ====================================================== */
/**
 * fluid-clamp(min-size, max-size, minVW = 375px, maxVW = 1440px)
 * 375px→min-size, 1440px→max-size になるように線形スケール
 * 例) font-size: fluid-clamp(14px, 20px);
 */
/**
 * fluid-from-pc(pc-size, sp-size = auto)
 * PCのpxだけ分かる時に便利。PC値を最大、SP値は 375/1440 比で自動推定。
 * 例) padding-inline: fluid-from-pc(40px);           // SP側は自動
 *     font-size:     fluid-from-pc(24px, 14px);     // SP側を明示
 */
/**
 * clamp-down(pc-size, sp-size = auto)
 * PCでは完全固定、下方向にだけ縮む（>1440px では $pc-size で頭打ち）
 * 例) height: clamp-down(780px);
 */
/* 任意のプロパティへ fluid を適用（ショートカット） */
/* === Media Queries (layout-only use) ===================================== */
/* レイアウトの切替（列数・方向・グリッド）など“構造”変更にのみ使用すること */
/* min-width 指定での鍵付きアクセス（必要なら使用） */
/* === Common Patterns ====================================================== */
/* 全面オーバーレイ（よくある黒幕） */
/* スライドの左下キャプション配置（SPとPCで座標を自動切替） */
/* === Usage Hints ==========================================================
 * 1) 寸法・余白・フォントは clamp 系で書く（例）
 *    .title { font-size: fluid-from-pc(24px, 14px); }
 *    .card  { gap: clamp-down(24px); }
 *
 * 2) レイアウト変更のみメディアクエリ（例）
 *    .list { display: flex; flex-direction: column; }
 *    @include pc { .list { flex-direction: row; } }
 *
 * 3) 固定高さは極力避ける。必要時は clamp-down か aspect-ratio を併用。
 *    .hero { aspect-ratio: 16 / 9; min-height: 220px; height: clamp-down(780px); }
 * ======================================================================== */
.p-contact {
  background-color: #FFFFFF;
  min-height: 100vh;
  padding-top: var(--header-height, clamp(60px, 1.5183098592vw + 54.3063380282px, 76.17px));
}

.p-contact .c-title {
  height: clamp(49px, 4.9765258216vw + 30.338028169px, 102px);
}

.p-contact-section {
  width: 100%;
  padding: 0 clamp(27px, 8.7323943662vw + -5.7464788732px, 120px) clamp(60px, 7.4178403756vw + 32.1830985915px, 139px) clamp(27px, 8.7323943662vw + -5.7464788732px, 120px);
}

.p-contact-container {
  background-color: #FFFBF7;
  margin-inline: clamp(20px, 9.3896713615vw + -15.2112676056px, 120px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(20px, 0.7511737089vw + 17.1830985915px, 28px) clamp(10px, 11.2676056338vw + -32.2535211268px, 130px) clamp(14px, 4.6009389671vw + -3.2535211268px, 63px) clamp(10px, 10.7981220657vw + -30.4929577465px, 125px);
  border: 1px solid #E4E3DB;
}

.p-contact-title {
  color: #505050;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 1.6901408451vw + 11.661971831px, 36px);
  font-weight: 700;
  margin-bottom: clamp(12px, 0.5633802817vw + 9.8873239437px, 18px);
  text-align: center;
}

.p-contact-lead {
  color: #505050;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  line-height: 1.8;
  margin-bottom: clamp(24px, 0.7511737089vw + 21.1830985915px, 32px);
  text-align: center;
}
.p-contact-lead .contact-lead-br-sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .p-contact-lead .contact-lead-br-sp {
    display: block;
  }
}

.p-contact-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #A18956;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: clamp(0px, 8.0751173709vw + -30.2816901408px, 86px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-bottom: clamp(25px, 4.3192488263vw + 8.8028169014px, 71px);
  max-width: 567px;
  padding-left: clamp(18px, 3.2863849765vw + 5.676056338px, 53px);
  position: relative;
}
.p-contact-info::before {
  background-image: url("../images/contact-call.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
}
@media screen and (max-width: 700px) {
  .p-contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: clamp(3px, 1.220657277vw + -1.5774647887px, 16px);
  }
  .p-contact-info::before {
    top: auto;
    left: clamp(18px, 0.5633802817vw + 15.8873239437px, 24px);
    bottom: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
    -webkit-transform: none;
            transform: none;
  }
}

.p-contact-info-text {
  color: #505050;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  .p-contact-info-text {
    margin-top: 11px;
  }
}

.p-contact-info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: clamp(22px, 0.8450704225vw + 18.8309859155px, 31px);
  padding-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: clamp(3px, 0.0938967136vw + 2.6478873239px, 4px);
}
@media screen and (max-width: 700px) {
  .p-contact-info-details {
    padding-left: 66px;
  }
}

.p-contact-info-phone {
  color: #505050;
  font-size: clamp(22px, 0.7511737089vw + 19.1830985915px, 30px);
  font-weight: 700;
  white-space: nowrap;
}

.p-contact-info-hours {
  color: #505050;
  font-size: clamp(10px, 0.1877934272vw + 9.2957746479px, 12px);
  white-space: nowrap;
}

.p-contact-form-input {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  color: #000;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.p-contact-form-input:focus {
  border-color: #A18956;
  outline: none;
}
.p-contact-form-input::-webkit-input-placeholder {
  color: #B4B4B4;
}
.p-contact-form-input::-moz-placeholder {
  color: #B4B4B4;
}
.p-contact-form-input:-ms-input-placeholder {
  color: #B4B4B4;
}
.p-contact-form-input::-ms-input-placeholder {
  color: #B4B4B4;
}
.p-contact-form-input::placeholder {
  color: #B4B4B4;
}

.p-contact-form-privacy-link {
  color: #0079CA;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
}
.p-contact-form-privacy-link:hover {
  opacity: 0.7;
}

.wpcf7-form-control-wrap.acceptance-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
}

.p-contact-form-privacy-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 3px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  margin: 0;
  position: relative;
  width: clamp(16px, 0.3755868545vw + 14.5915492958px, 20px);
  vertical-align: middle;
}
.p-contact-form-privacy-checkbox:checked::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  height: 60%;
  left: 50%;
  position: absolute;
  top: 30%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 30%;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.wpcf7-acceptance .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  white-space: nowrap;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  display: inline;
  white-space: nowrap;
}

.wpcf7-spinner {
  display: inline-block;
  height: 24px;
  margin-left: 8px;
  width: 24px;
}

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 31px;
}
.wpcf7-form > p {
  font-size: 12px;
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  font-weight: 500;
  margin-bottom: 0;
}
.wpcf7-form > p:nth-of-type(10) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
}
.wpcf7-form > p:nth-of-type(10) .wpcf7-form-control-wrap {
  font-size: clamp(14px, 0.5633802817vw + 11.8873239437px, 20px);
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 15px;
}
.wpcf7-form > p:nth-of-type(10) .wpcf7-acceptance {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.wpcf7-form > p:nth-of-type(10) .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.must,
.free {
  padding: clamp(1px, 0.0938967136vw + 0.6478873239px, 2px) clamp(8px, 0.9389671362vw + 4.4788732394px, 18px);
  border-radius: 4px;
  color: #fff;
  margin-left: 15px;
}

/* 必須マーク */
.must {
  background: #AB4141;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
}

/* 任意マーク */
.free {
  background: #6E6C6C;
  font-size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  font-weight: 500;
}

.en {
  font-size: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  font-weight: 500;
  color: #505050;
}

.notes {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  margin-left: 15px;
}

/* 入力項目を見やすくする */
input.wpcf7-form-control.wpcf7-text,
input.wpcf7-form-control.wpcf7-email,
input.wpcf7-form-control.wpcf7-tel,
textarea.wpcf7-form-control.wpcf7-textarea {
  margin-top: 5px;
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  color: #000;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
input.wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-email::-webkit-input-placeholder, input.wpcf7-form-control.wpcf7-tel::-webkit-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder {
  color: #B4B4B4;
}
input.wpcf7-form-control.wpcf7-text::-moz-placeholder, input.wpcf7-form-control.wpcf7-email::-moz-placeholder, input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #B4B4B4;
}
input.wpcf7-form-control.wpcf7-text:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-email:-ms-input-placeholder, input.wpcf7-form-control.wpcf7-tel:-ms-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder {
  color: #B4B4B4;
}
input.wpcf7-form-control.wpcf7-text::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-email::-ms-input-placeholder, input.wpcf7-form-control.wpcf7-tel::-ms-input-placeholder, textarea.wpcf7-form-control.wpcf7-textarea::-ms-input-placeholder {
  color: #B4B4B4;
}
input.wpcf7-form-control.wpcf7-text::placeholder,
input.wpcf7-form-control.wpcf7-email::placeholder,
input.wpcf7-form-control.wpcf7-tel::placeholder,
textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #B4B4B4;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 228px;
  resize: none;
}

textarea.wpcf7-form-control.wpcf7-textarea.Performers {
  height: 70px;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  font-weight: 500;
  font-size: 14px;
  margin: 12px 0 0 0;
}
.wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item label span {
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item label input {
  margin: 0;
}

.p-contact-form-multiple {
  font-size: clamp(14px, 0.5633802817vw + 11.8873239437px, 20px);
  font-weight: 500;
}

.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  font-weight: 500;
  font-size: 14px;
  margin: 15px 0 0 0;
}
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  width: 100%;
}
.wpcf7-checkbox .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7-checkbox .wpcf7-list-item label span {
  cursor: pointer;
}
.wpcf7-checkbox .wpcf7-list-item label input {
  margin: 0;
}

.wpcf7-date {
  text-align: left;
  margin-top: 15px;
  width: 140px;
  height: 30px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000 !important;
  font-size: 14px;
  margin-left: 0;
  border-radius: 2px;
}

.wpcf7-select {
  cursor: pointer;
  color: #000 !important;
  margin-top: 15px;
  width: 111px;
  height: 38px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  box-sizing: border-box;
  background-color: white;
  color: black;
}
.wpcf7-select option {
  background-color: white;
  color: black;
}
.wpcf7-select option:hover {
  background-color: lightgray;
  color: black;
}

input.wpcf7-submit {
  max-width: 500px;
  margin: 0 auto;
  padding: 11px clamp(88.5px, 2.0187793427vw + 80.9295774648px, 110px);
  display: block;
  height: 60px;
  background-color: #444444;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 2px;
}

span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: #AB4141;
  font-weight: 600;
  padding-top: 10px;
  font-size: 12px;
}

.wpcf7-response-output {
  border-radius: 4px;
  font-size: clamp(14px, 0.1877934272vw + 13.2957746479px, 16px);
  margin: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px) 0;
  padding: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
  text-align: center;
}
.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #FFE5E5;
  border: 1px solid #B34B4B;
  color: #B34B4B;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #E5FFE5;
  border: 1px solid #4B9B4B;
  color: #4B9B4B;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none !important;
  border-color: transparent !important;
}/*# sourceMappingURL=style.css.map */