@charset "utf-8";
/* 画像・アイコン未配置時のプレースホルダーおよびパス対応 */

/* 矢印アイコン（画像の代わりにCSSで表示） */
.ar-right-orange:after,
.ar-left-orange:before {
  content: "" !important;
  background-image: none !important;
  border: solid 2px #14b8a6;
  border-width: 0 2px 2px 0;
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: .5em;
  vertical-align: middle;
  position: relative;
  top: -.1em;
}
.ar-left-orange:before {
  margin-left: 0;
  margin-right: .5em;
  transform: rotate(135deg);
}

/* セクションタイトル（大きく表示） */
.in-ttl.lower-border.sec-ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.in-ttl.lower-border.sec-ttl:after {
  width: 90px;
  height: 6px;
  margin-top: 20px;
}
.sec-ttl + p.clr-orange.font-Montserrat {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media (min-width: 768px) {
  .in-ttl.lower-border.sec-ttl {
    font-size: 2.25rem;
  }
  .sec-ttl + p.clr-orange.font-Montserrat {
    font-size: 1.25rem;
  }
}

/* ヒーロー背景（bxSlider用） */
#hero-area .bg-slide li {
  background-size: cover;
  background-position: center;
}

/* ヒーロー overlay：cube の代わりに浮遊フレームアニメーション */
.hero-frames {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  z-index: 5;
  opacity: 0;
  animation: heroFramesFadeIn 1.2s ease forwards;
  animation-delay: 2s;
}
@keyframes heroFramesFadeIn {
  to { opacity: 0.5; }
}
.hero-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
.hero-frame--1 {
  width: 320px;
  height: 200px;
  top: -100px;
  left: -160px;
  animation: heroFrameFloat1 18s ease-in-out infinite;
}
.hero-frame--2 {
  width: 240px;
  height: 360px;
  top: -180px;
  left: -120px;
  animation: heroFrameFloat2 22s ease-in-out infinite;
  animation-delay: -4s;
}
.hero-frame--3 {
  width: 400px;
  height: 160px;
  top: -80px;
  left: -200px;
  animation: heroFrameFloat3 20s ease-in-out infinite;
  animation-delay: -8s;
}
.hero-frame--4 {
  width: 180px;
  height: 280px;
  top: -140px;
  left: -90px;
  animation: heroFrameFloat4 24s ease-in-out infinite;
  animation-delay: -12s;
}
@keyframes heroFrameFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
  25% { transform: translate(15px, -20px) rotate(2deg) scale(1.02); opacity: 0.8; }
  50% { transform: translate(-10px, 10px) rotate(-1deg) scale(0.98); opacity: 0.5; }
  75% { transform: translate(-20px, -10px) rotate(1.5deg) scale(1.01); opacity: 0.7; }
}
@keyframes heroFrameFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
  33% { transform: translate(-25px, 15px) rotate(-2deg) scale(1.03); opacity: 0.7; }
  66% { transform: translate(20px, -15px) rotate(1deg) scale(0.97); opacity: 0.5; }
}
@keyframes heroFrameFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(20px, 25px) rotate(1.5deg); opacity: 0.4; }
}
@keyframes heroFrameFloat4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
  25% { transform: translate(-15px, -25px) rotate(-1.5deg) scale(1.02); opacity: 0.7; }
  50% { transform: translate(10px, 10px) rotate(1deg) scale(0.98); opacity: 0.5; }
  75% { transform: translate(20px, -15px) rotate(-0.5deg) scale(1.01); opacity: 0.6; }
}
@media (max-width: 767px) {
  .hero-frame--1 { width: 200px; height: 120px; top: -60px; left: -100px; }
  .hero-frame--2 { width: 140px; height: 220px; top: -110px; left: -70px; }
  .hero-frame--3 { width: 260px; height: 100px; top: -50px; left: -130px; }
  .hero-frame--4 { width: 100px; height: 160px; top: -80px; left: -50px; }
}

/* ヒーロー文言を表示・画像どおり左寄せに */
#hero-area .view.hero-content {
  opacity: 1;
  animation: heroFadeIn 1s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
#hero-area .inner .inner-inner.hero-content {
  vertical-align: middle;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
#top #hero-area .inner {
  margin-left: 0;
  margin-right: auto;
  padding-left: 5%;
}
#hero-area .main-lead-txt .ja .ja-line {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.35em;
  line-height: 1.5;
  padding: 8px 0;
}
#hero-area .hero-desc {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 0;
}
#hero-area .hero-cta {
  margin-top: 28px;
  margin-bottom: 0;
}
#hero-area .hero-cta__btn {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#hero-area .hero-cta__btn:hover {
  background: #fff;
  color: #323232;
  text-decoration: none;
}
@media (max-width: 767px) {
  #hero-area .main-lead-txt .ja .ja-line {
    letter-spacing: 0.15em;
    font-size: 18px;
  }
  #hero-area .hero-desc {
    font-size: 14px;
  }
}

/* SERVICE セクション三角デコ（uf-servie-sec-ar.png の代わり） */
.uf #sec-service:before {
  background-image: none;
  background-color: #e5e5e5;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 19px solid #e5e5e5;
}

/* 元CSSの ../img/ 参照を上書き（ファイル未配置のため） */
#sec-service .framing-service:nth-child(1),
#sec-service .framing-service:nth-child(2),
#sec-service .framing-service2:nth-child(1),
#sec-service .framing-service2:nth-child(2) {
  background-image: none;
}
#sec-works {
  background-color: #e8e4df;
  background-image: none;
  position: relative;
}
#top #sec-lower {
  background-image: none;
}
#sec-woodiy,
#sec-recruit-staff,
#sec-staff {
  background-size: cover;
  background-position: center;
}
#sec-works .slick-prev,
#sec-works .slick-next {
  background-image: none;
}
#sec-works .slick-prev:before {
  content: "‹";
  font-size: 48px;
  color: #fff;
  line-height: 180px;
}
#sec-works .slick-next:before {
  content: "›";
  font-size: 48px;
  color: #fff;
  line-height: 180px;
}

/* WORKS 常時ゆっくり横スクロール・画面幅いっぱい・ドラッグ対応 */
#sec-works {
  overflow: hidden;
}
.works-scroll-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.works-scroll-viewport::-webkit-scrollbar {
  display: none;
}
.works-scroll-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.works-scroll-track {
  display: flex;
  width: max-content;
  gap: 32px;
}
.works-scroll-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  flex-shrink: 0;
}
.works-scroll-list li {
  flex-shrink: 0;
  width: 355px;
}
.works-scroll-list li a {
  display: block;
  pointer-events: auto;
}
.works-scroll-list .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* WORKS 横スクロール早送り用の左右アイコン */
.works-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 96px;
  background-color: #313131;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.85;
  z-index: 5;
  transition: opacity 0.2s ease;
}
.works-scroll-arrow--left {
  left: max(0px, calc(50% - 50vw));
}
.works-scroll-arrow--right {
  right: max(0px, calc(50% - 50vw));
}
.works-scroll-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin: auto;
  position: relative;
  top: 38px;
}
.works-scroll-arrow--left::before {
  border-right: 14px solid #fff;
}
.works-scroll-arrow--right::before {
  border-left: 14px solid #fff;
}
.works-scroll-arrow:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .works-scroll-list li {
    width: 280px;
  }
  .works-scroll-list,
  .works-scroll-track {
    gap: 24px;
  }
}

/* ========== お問い合わせセクション（スタイリッシュ） ========== */
#ft-sec-contact,
.ft-contact-sec {
  padding: 88px 20px 96px;
  background-color: #2d2d2d;
  background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('https://images.unsplash.com/photo-1503384305710-ef3c2b3e2c20?w=1200');
  background-size: cover;
  background-position: center;
  position: relative;
}
.ft-contact-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #14b8a6 50%, transparent 100%);
  opacity: 0.9;
}
.ft-contact-sec__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.ft-contact-sec__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #14b8a6;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}
.ft-contact-sec__ttl {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}
.ft-contact-sec__ttl::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #14b8a6;
  margin: 20px auto 0;
}
.ft-contact-sec__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 40px 0;
  letter-spacing: 0.02em;
}
.ft-contact-sec__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}
.ft-contact-sec__tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.ft-contact-sec__tel:hover {
  border-color: #14b8a6;
  background: rgba(20,184,166,0.15);
}
.ft-contact-sec__tel-icon {
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.13.96.36 1.9.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.13.96.36 1.9.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ft-contact-sec__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: #14b8a6;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.2s ease;
}
.ft-contact-sec__mail:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

/* 電話・メールアイコン（旧contact-links・下層用） */
.contact-links .tel-cv a:before,
.form-flame .tel-cv-block > a:before {
  content: "📞" !important;
  background-image: none !important;
  font-size: 1.2em;
}
.contact-links .mail-cv a:before {
  content: "✉" !important;
  background-image: none !important;
  font-size: 1em;
}

/* ヘッダー お問い合わせボタン（アイコン画像の代わり） */
#header #hd-main .inner #global-nav .mail-cv a {
  font-size: 0;
}
#header #hd-main .inner #global-nav .mail-cv a:before {
  content: "✉";
  font-size: 20px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 80px;
  text-align: center;
}
#header.scrolled #hd-main .inner #global-nav .mail-cv a:before {
  line-height: 54px;
}

/* ========== サービス紹介 2x2（2枚目画像スタイル：ぼかし背景＋白ボックス） ========== */
.intro-cards-sec {
  position: relative;
  padding: 80px 15px 100px;
  overflow: hidden;
}
.intro-cards-sec__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605649487212-47bdab064df7?w=1400');
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.08);
}
.intro-cards-sec__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.intro-cards-sec__box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 56px 48px 60px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}
.intro-card {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  opacity: 0;
  animation: introCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: transform 0.3s ease;
}
.intro-card:nth-child(1) { animation-delay: 0.08s; }
.intro-card:nth-child(2) { animation-delay: 0.18s; }
.intro-card:nth-child(3) { animation-delay: 0.28s; }
.intro-card:nth-child(4) { animation-delay: 0.38s; }
@keyframes introCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.intro-card:hover {
  transform: translateY(-3px);
}
.intro-card__ttl {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 14px 0;
  line-height: 1.4;
  display: inline;
}
.intro-card__ttl-accent {
  position: relative;
  display: inline;
}
.intro-card__ttl-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #14b8a6;
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-card:hover .intro-card__ttl-accent::after {
  transform: scaleX(1.06);
}
.intro-card__ttl-text {
  color: #333;
}
.intro-card__desc {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0 0 18px 0;
}
.intro-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.intro-card__link:hover {
  color: #14b8a6;
  text-decoration: none;
  gap: 8px;
}
.intro-card__chevron {
  color: #14b8a6;
  font-weight: bold;
  transition: transform 0.25s ease;
}
.intro-card__link:hover .intro-card__chevron {
  transform: translateX(3px);
  color: #14b8a6;
}
@media (max-width: 767px) {
  .intro-cards-sec {
    padding: 50px 15px 60px;
  }
  .intro-cards-sec__box {
    padding: 36px 24px 44px;
  }
  .intro-cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .intro-card__ttl {
    font-size: 18px;
  }
  .intro-card__desc {
    font-size: 14px;
  }
}

/* ユーティリティ */
.font-weight-bold { font-weight: bold; }

/* ========== 課題と答え（白ブロック・ぼかし背景） ========== */
.sec-message {
  position: relative;
  padding: 80px 15px 100px;
  overflow: hidden;
}
.sec-message__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.05);
}
.sec-message__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}
.sec-message__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 56px 56px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.sec-message__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.sec-message__logo-icon {
  width: 28px;
  height: 36px;
  background: #14b8a6;
  clip-path: polygon(0 0, 100% 0, 100% 22%, 22% 22%, 22% 100%, 0 100%);
  flex-shrink: 0;
}
.sec-message__logo-txt {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.02em;
}
.sec-message__ttl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin: 0 0 28px 0;
  letter-spacing: 0.02em;
}
.sec-message__body {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
.sec-message__body p {
  margin: 0 0 1em 0;
}
.sec-message__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sec-message {
    padding: 50px 15px 60px;
  }
  .sec-message__inner {
    padding: 32px 24px 40px;
  }
  .sec-message__ttl {
    font-size: 22px;
  }
  .sec-message__body {
    font-size: 15px;
  }
}

/* ========== レイアウト修正 ========== */

/* SERVICE: 画像どおり横2カラム（FEATURE/EXAMPLE と STRENGTH） */
.service-two-col {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.service-two-col__item {
  display: block;
  position: relative;
  width: 50%;
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.service-two-col__item:hover {
  text-decoration: none;
  color: #fff;
}
.service-two-col__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.service-two-col__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-two-col__overlay--left {
  background: linear-gradient(to right, rgba(49, 49, 49, 0.85) 0%, rgba(49, 49, 49, 0.85) 65%, rgba(49, 49, 49, 0) 100%);
}
.service-two-col__overlay--right {
  background: linear-gradient(to left, rgba(49, 49, 49, 0.85) 0%, rgba(49, 49, 49, 0.85) 65%, rgba(49, 49, 49, 0) 100%);
}
.service-two-col__inner {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-two-col__item--left .service-two-col__inner {
  align-items: flex-start;
  text-align: left;
}
.service-two-col__item--right .service-two-col__inner {
  align-items: flex-end;
  text-align: right;
}
.service-two-col__en {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #fff;
}
.service-two-col__ja {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
.service-two-col__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-two-col__row {
  flex-direction: row;
}
.service-two-col__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: solid 2px #14b8a6;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.service-two-col__arrow::before {
  content: "";
  display: block;
}
@media (max-width: 767px) {
  .service-two-col {
    flex-direction: column;
  }
  .service-two-col__item {
    width: 100%;
    min-height: 260px;
  }
  .service-two-col__inner {
    min-height: 260px;
    padding: 30px 24px;
  }
  .service-two-col__item--right .service-two-col__inner {
    align-items: flex-start;
    text-align: left;
  }
  .service-two-col__item--right .service-two-col__row {
    flex-direction: row;
  }
}

/* RECRUIT / sec-lower: 右カラムを縦並び・はみ出し防止 */
#sec-lower {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
#sec-lower.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.sec-lower-col--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}
@media (min-width: 768px) {
  .sec-lower-col--right #sec-recruit-staff,
  .sec-lower-col--right #sec-staff {
    height: 240px;
  }
}
.sec-lower-col--right #sec-recruit-staff,
.sec-lower-col--right #sec-staff {
  min-height: 180px;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
#sec-woodiy {
  width: 100%;
  min-height: 300px;
}
.sec-lower-col,
.sec-lower-col--right {
  box-sizing: border-box;
}
.sec-lower-col--right #sec-recruit-staff .inner,
.sec-lower-col--right #sec-staff .inner {
  max-width: 100%;
}

/* WORKS: スライダーコンテナの幅確保 */
#sec-works .container {
  overflow: visible;
}
#sec-works #work-posts.slick-slider {
  margin: 0 -15px;
  padding: 0 45px;
}
#sec-works #work-posts .slick-list {
  overflow: visible;
}
#sec-works #work-posts li {
  padding: 0 15px;
  box-sizing: border-box;
}

/* NEWS 一覧スタイル */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.news-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.news-list li:last-child {
  border-bottom: none;
}
.news-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #323232;
  text-decoration: none;
}
.news-list-item:hover {
  background-color: #fbfbf8;
  text-decoration: none;
}
.news-date {
  flex-shrink: 0;
  font-size: 90%;
  color: #666;
}
.news-ttl {
  flex: 1;
  min-width: 0;
}

/* ========== フッター（スタイリッシュ） ========== */
.ft-links-sec,
#ft-other-links.ft-links-sec {
  padding: 56px 20px 64px;
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
}
.ft-links-sec__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ft-links-sec__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 64px;
  align-items: flex-start;
}
.ft-links-sec__col {
  flex: 1 1 280px;
  min-width: 0;
}
.ft-links-sec__col--search {
  flex: 0 1 320px;
}
.ft-links-sec__col--sitemap {
  flex: 1 1 320px;
}
.ft-sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}
@media (max-width: 767px) {
  .ft-sitemap-list {
    grid-template-columns: 1fr;
  }
}
.ft-links-sec__ttl {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #14b8a6;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #14b8a6;
  text-transform: uppercase;
}
.ft-links-sec__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-links-sec__list li {
  margin-bottom: 4px;
}
.ft-links-sec__list a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}
.ft-links-sec__list a:hover {
  color: #14b8a6;
  border-bottom-color: rgba(20,184,166,0.3);
  padding-left: 8px;
}
.ft-links-sec__search {
  display: flex;
  gap: 0;
  max-width: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ft-links-sec__search-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ft-links-sec__search-input::placeholder {
  color: #999;
}
.ft-links-sec__search-input:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}
.ft-links-sec__search-btn {
  padding: 14px 24px;
  background: #14b8a6;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ft-links-sec__search-btn:hover {
  background: #0d9488;
}

/* フッター下部（コピーライト） */
.ft-copy-sec,
#ft-lower.ft-copy-sec {
  padding: 24px 20px;
  background: #323232;
  border-top: 4px solid #14b8a6;
}
.ft-copy-sec__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ft-copy-sec__sample {
  width: 100%;
  margin: 0 0 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}
.ft-copy-sec__sample a {
  color: #14b8a6;
  text-decoration: underline;
}
.ft-copy-sec__left,
.ft-copy-sec__right {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.ft-copy-sec__right {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 767px) {
  .ft-links-sec__grid {
    flex-direction: column;
    gap: 40px;
  }
  .ft-links-sec__col--search {
    flex: 1 1 100%;
  }
  .ft-links-sec__search {
    max-width: 100%;
  }
  .ft-copy-sec__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* 旧フッター用（下層ページなど） */
.ft-links-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.ft-col {
  flex: 1 1 200px;
  min-width: 0;
}
.ft-col-ttl {
  font-size: 14px;
  color: #323232;
}
.ft-search-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-col-search .ft-search-form input {
  flex: 1;
  min-width: 150px;
}
@media (max-width: 767px) {
  .ft-links-grid {
    flex-direction: column;
    gap: 30px;
  }
  .sec-lower-col--right {
    display: block;
  }
}

/* ========== 下層ページ共通レイアウト ========== */
body.subpage {
  padding-top: 54px;
}
.subpage #content {
  padding: 60px 15px 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.subpage .page-ttl-block {
  text-align: center;
  margin-bottom: 48px;
}
.subpage .page-ttl-block .sec-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #323232;
}
.subpage .page-ttl-block .sec-ttl:after {
  width: 90px;
  height: 6px;
  background-color: #14b8a6;
  margin-top: 16px;
}
.subpage .page-ttl-block .sec-ttl + p {
  font-size: 1.125rem;
  color: #14b8a6;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-top: 8px;
}
.subpage .page-main-bg {
  padding: 80px 15px 60px;
  background-color: #323232;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.subpage .page-main-bg .sec-ttl {
  color: #fff;
}
.subpage .page-main-bg .sec-ttl:after {
  background-color: #14b8a6;
}
.subpage .page-main-bg .sec-ttl + p {
  color: #14b8a6;
}
.subpage .content-block {
  margin-bottom: 48px;
}
.subpage .content-block h3 {
  font-size: 1.25rem;
  color: #323232;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #14b8a6;
}
.subpage .content-block p {
  margin: 0 0 1em 0;
  line-height: 1.8;
  color: #333;
}
.subpage .content-block ul {
  margin: 0 0 1em 0;
  padding-left: 1.5em;
  line-height: 1.8;
}
.subpage .link-list a {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.subpage .link-list a:hover {
  background: #f5f5f5;
  color: #14b8a6;
}
.subpage .breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 15px;
  font-size: 12px;
}
.subpage .breadcrumb a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.subpage .breadcrumb a:hover {
  text-decoration: underline;
}
.subpage .breadcrumb span {
  color: rgba(255,255,255,0.7);
}
.subpage .breadcrumb .sep {
  margin: 0 0.5em;
  color: rgba(255,255,255,0.5);
}

/* 下層・お問い合わせページの電話リンク（白背景用） */
.subpage .ft-contact-sec__tel {
  border-color: #14b8a6;
  color: #323232;
  background: rgba(20,184,166,0.08);
}
.subpage .ft-contact-sec__tel:hover {
  border-color: #0d9488;
  background: rgba(20,184,166,0.15);
}
.subpage .ft-contact-sec__tel-icon {
  color: #14b8a6;
}

/* ========== お問い合わせフォーム ========== */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-form__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-form__list dt {
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  color: #323232;
}
.contact-form__list dt:not(:first-child) {
  margin-top: 24px;
}
.contact-form__list dd {
  margin: 0;
  padding: 0;
}
.contact-form__required {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background: #14b8a6;
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 4px;
  font-weight: bold;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #999;
}
.contact-form__select {
  cursor: pointer;
  appearance: auto;
}
.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form__submit-wrap {
  margin: 32px 0 0 0;
  text-align: center;
}
.contact-form__submit {
  display: inline-block;
  padding: 16px 56px;
  background: #14b8a6;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-form__submit:hover {
  background: #0d9488;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* メンバー紹介カード */
.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.staff-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.staff-card__body {
  padding: 20px;
}
.staff-card__role {
  font-size: 12px;
  color: #14b8a6;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 0 0 4px 0;
}
.staff-card__name {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #323232;
}
.staff-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
@media (max-width: 767px) {
  .staff-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========== 完成事例個別ページ（work-detail） ========== */
.work-breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 15px 24px;
  font-size: 13px;
  color: #666;
}
.work-breadcrumb a {
  color: #14b8a6;
  text-decoration: none;
}
.work-breadcrumb a:hover {
  text-decoration: underline;
}
.work-breadcrumb .sep {
  margin: 0 0.4em;
  color: #999;
}
.work-detail__hero {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}
.work-detail__hero-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.work-detail__head {
  max-width: 1000px;
  margin: 0 auto 28px;
  padding: 0 15px;
}
.work-detail__label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #14b8a6;
  padding: 6px 14px;
  border-radius: 4px;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.work-detail__ttl {
  font-size: 1.75rem;
  font-weight: bold;
  color: #323232;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}
.work-detail__date {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.work-detail__spec {
  max-width: 1000px;
  margin: 0 auto 40px;
  width: 100%;
  border-collapse: collapse;
}
.work-detail__spec th,
.work-detail__spec td {
  padding: 14px 20px;
  border: 1px solid #e8e8e8;
  text-align: left;
  font-size: 14px;
}
.work-detail__spec th {
  width: 28%;
  background: #f8f8f8;
  color: #323232;
  font-weight: bold;
}
.work-detail__spec td {
  color: #333;
}
.work-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 15px;
}
.work-detail__img {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}
.work-detail__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .work-detail__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-detail__ttl {
    font-size: 1.5rem;
  }
  .work-detail__spec th {
    width: 36%;
  }
}

/* ========== 下層ページ：写真・本文充実 ========== */

/* ページ先頭のリード画像 */
.page-lead-img {
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}
.page-lead-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 360px;
}

/* 画像＋本文ブロック（左右交互） */
.content-block--with-img {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 40px;
  margin-bottom: 48px;
}
.content-block--with-img .content-block__img {
  flex: 0 0 320px;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}
.content-block--with-img .content-block__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.content-block--with-img .content-block__body {
  flex: 1 1 280px;
  min-width: 0;
}
.content-block--with-img .content-block__body h3 {
  margin-top: 0;
}
.content-block--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .content-block--with-img,
  .content-block--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .content-block--with-img .content-block__img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .page-lead-img img {
    max-height: 240px;
  }
}

/* スタッフカード：画像表示 */
.staff-card__img {
  height: 200px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #e8e8e8;
}
.staff-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* トピックス：ビジュアル付きニュースカード（上3件） */
.news-visual-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 15px;
}
.news-visual-item__link {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.news-visual-item__link:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #14b8a6;
  text-decoration: none;
  color: inherit;
}
.news-visual-item__img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}
.news-visual-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-visual-item__body {
  display: block;
  padding: 16px;
}
.news-visual-item__date {
  display: block;
  font-size: 12px;
  color: #14b8a6;
  margin-bottom: 6px;
  font-weight: bold;
}
.news-visual-item__ttl {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #323232;
  font-weight: bold;
}
@media (max-width: 767px) {
  .news-visual-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
