@charset "utf-8";
/*
 * ======================================
 * 株式会社尾方組（tos-serv015_3601001515）サイト固有CSS
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * -- 共通パーツ ------------------------------------------------------------
 * .ogt-header / __inner / __logo / __hours(-label/-value) - sticky・高さ88px・1200px幅のヘッダー
 * .ogt-nav / __item / __ja / __en            - 日本語（上）＋英語（下）2段ナビ
 * .ogt-cta / __overlay / __inner / __en / __lead - ティールグラデーションのCTA帯
 * .ogt-footer / __info / __logo / __address / __nav / __bottom - 濃緑地のフッター（ナビは横1列）
 * .ogt-btn / --cta / --bnr / --sm / --outline - デザインのボタン（自動幅・角丸6px）
 * .ogt-reveal / --d1〜d3                     - スクロールでふわっと浮かび上がる演出
 *
 * -- 見出し・共通パーツ ----------------------------------------------------
 * .ogt-eyebrow                               - 英字ラベル（16px / 600 / ls .24em）
 * .ogt-h2 / --wide / --sm / --flat / --sdgs  - セクション見出し（30px / 700）
 * .ogt-bar-title                             - 縦バー付き小見出し（6×20pxのバー）
 * .ogt-gradbnr / __bg / __body / __en / __title / __text - ティールグラデーションの誘導バナー
 * .ogt-phero / __bg / __overlay / __content / __en / __ja - 下層ページの写真ヒーロー（英日タイトルのみ）
 *
 * -- TOP -------------------------------------------------------------------
 * .ogt-mv / __slideshow / __overlay / __inner / __catch / __lead
 * .ogt-about / __visual / __ribbon(--lg/--line/--sm/--line2) / __photo / __body / __text
 * .ogt-strength / __head / __list / __item / __num / __title / __text
 * .ogt-business / __bgtext / __grid
 * .ogt-bizcard / __img / __overlay / __body / __label / __title / __text / __arrow
 *
 * -- 事業内容 --------------------------------------------------------------
 * .ogt-service / __head / __headtext / __en / __cols / __media / __body / __text / __licenses / __tags
 * .ogt-tag                                   - 建設業許可の淡色タグ
 * .ogt-flow / __head / .ogt-flow-list / __item / __num / __title / __text
 *
 * -- 施工実績 --------------------------------------------------------------
 * .ogt-anchors / .ogt-anchor                 - カテゴリーへのアンカーボタン
 * .ogt-works / __cathead / __catja / __caten / __grid / __item / __main / __thumbs / __thumb / __title
 *
 * -- 会社概要 --------------------------------------------------------------
 * .ogt-msg / __head / __body / __sign
 * .ogt-outline / __grid / .ogt-deflist / __row / __key / __val
 * .ogt-history / __row / __year / __line / __text
 * .ogt-sdgs / __icons / __actions / __action
 * .ogt-access / __map                       - 会社概要セクション下部の全幅地図ブロック
 * .ogt-license / __list / __item / __thumb / __title / __no / __pdf - 沿革の下に置く許可証（画像→PDF）
 *
 * -- お問い合わせ ----------------------------------------------------------
 * .ogt-form__note / .ogt-formhead            - 注意書きボックス／フォーム見出し
 * #cms-contact-1-1-area .form-contents                               - CMSフォーム(cms_ajax)出力の見た目調整
 * .ogt-faq / __head / __list / __item / __q / __text
 *
 * -- セクション余白（デザインの個別値） -------------------------------------
 * .ogt-service-sec--first / --second / .ogt-service-bnr / .ogt-flow__inner
 * .ogt-sec96 / --last / --gray / .ogt-contact / .ogt-faq__inner / .ogt-works
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 *
 * ▼ 値の粒度不足
 *   - デザインは 11.5 / 13.5 / 14.5 / 15.5 / 16.5px といった 0.5px 刻みの
 *     フォントサイズを多用する。utility の .fz-* は整数のみのため再現できず、
 *     site.css 側で直接指定した。
 *   - section の余白が 82 / 96 / 104 / 124 / 132px など 120px 系以外の値。
 *     .section（120px固定）＋ .pt-*/.pb-*（5px刻み・40以上はtabletで半減）
 *     の組み合わせでは一致しないため個別指定。
 *
 * ▼ 指定方向不足
 *   - ヘッダーが position:sticky（共通は header-bar=fixed / header-sticky=JS連動）。
 *     .pos-sticky utility で代用し、高さ・幅・境界線を site 側で指定した。
 *   - グリッドの列幅が 560px 1fr / 340px 1fr / 300px 1fr / .72fr 1fr など非等分。
 *     grid-2〜6 はすべて等幅のため再現できない。
 *
 * ▼ 状態不足
 *   - 施工実績のサムネイル選択状態（outline 2px）に相当する state utility がない。
 *
 * ▼ 構造不足
 *   - ABOUT の「大小2枚の写真を対角に重ね、片隅だけ大きく角丸にする」構成に
 *     相当する component がない（column2--overlap は左右重なりのみ）。
 *   - 沿革の「年 / 縦線＋ドット / 本文」3列タイムラインは、timeline--vertical
 *     （縦線が border-left）でも dl-timeline（線なし）でも形が合わない。
 *
 * ▼ 装飾パターン不足
 *   - 背景に敷く巨大英字（BUSINESS 150px）。heading-big--bgtext は見出し内蔵型で、
 *     セクション背景として独立配置する用途には使えない。
 *   - 斜め45度に流れる淡いグラデーションのリボン装飾。
 *
 * ======================================
 * 共通CSSの挙動でハマった点（メモ）
 * ======================================
 *
 *   - .container は wide(1320px以下)で max-width:95% + 左右10px padding に落ちる。
 *     本案件は viewport=1280 固定のため常にこの分岐に入り、デザインの1200px幅と
 *     ずれる。site.css で 1200px 固定に戻している。
 *   - .page-hero__content は flex column。その中の .container は margin:0 auto の
 *     ため stretch されず fit-content に縮む。.ogt-phero .container に width:100%。
 *   - body の line-height / letter-spacing は normal（デザインが未指定のため）。
 *     行高が必要な箇所だけ個別に指定している。安易に line-height を足すと
 *     デザインと行間がずれるので注意。
 *
 */

/* ==========================================================================
   0. ベース
   ========================================================================== */
body {
  color: #1a1a1a;
}
/* レスポンシブ非対応（viewport=1280固定）のため、共通 .container の
   wide(1320px以下)フォールバック（95%＋左右10px）を無効化して1200px固定にする */
.container {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}
main {
  display: block;
}
a:hover {
  opacity: 1;
}

/* スクロールで「ふわっと浮かび上がる」演出（rough のデザインメモ） */
.ogt-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .3, 1);
}
.ogt-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.ogt-reveal--d1 { transition-delay: .1s; }
.ogt-reveal--d2 { transition-delay: .2s; }
.ogt-reveal--d3 { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .ogt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   1. 共通見出し・ボタン
   ========================================================================== */
.ogt-eyebrow {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .24em;
  color: #0AB4AF;
}
.ogt-h2 {
  margin: 0 0 32px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
  color: #1a1a1a;
}
.ogt-h2--wide {
  margin-bottom: 22px;
  letter-spacing: .06em;
  line-height: 1.6;
}
.ogt-h2--sm {
  margin-bottom: 0;
  letter-spacing: .06em;
  line-height: normal;
}
.ogt-h2--flat {
  margin-bottom: 0;
}

/* 縦バー付き小見出し */
.ogt-bar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #1a1a1a;
}
.ogt-bar-title::before {
  content: "";
  flex: none;
  width: 6px;
  height: 20px;
  border-radius: 2px;
  background: #0AB4AF;
}

/* ボタン（.btn の自動幅・角丸6px 版） */
.ogt-btn {
  width: auto;
  max-width: none;
  border: none;
  border-radius: 6px;
  padding: 20px 52px;
  font-size: 16px;
  font-weight: 700;
  flex: none;
}
/* CTA帯（写真の上）の白ボタン */
.ogt-btn--cta {
  background: #fff;
  color: #0A8B87;
  letter-spacing: .04em;
  box-shadow: 0 10px 26px rgba(8, 40, 38, .2);
}
.ogt-btn--cta:hover {
  background: #fff;
  color: #068C88;
}
/* ティールグラデーションバナー内の白ボタン */
.ogt-btn--bnr {
  background: #fff;
  color: #0AB4AF;
  padding: 20px 44px;
}
.ogt-btn--bnr:hover {
  background: #fff;
  color: #068C88;
}
.ogt-btn--sm {
  padding: 18px 40px;
  font-size: 15.5px;
}
.ogt-btn--outline {
  background: transparent;
  border: 1px solid #0AB4AF;
  color: #0AB4AF;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 500;
}
.ogt-btn--outline:hover {
  background: #F1FBFA;
  color: #0AB4AF;
}

/* ==========================================================================
   2. ヘッダー
   ========================================================================== */
.ogt-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EAF3F2;
}
.ogt-header__inner {
  max-width: 1200px;
  width: 100%;
  height: 88px;
  padding: 0;
  gap: 40px;
}
.ogt-header__logo img {
  height: 58px;
  width: auto;
  display: block;
}
.ogt-header__logo:hover {
  opacity: .78;
}

.ogt-nav {
  gap: 34px;
  margin-left: auto;
  margin-right: 0;
}
.ogt-nav__item a {
  padding: 0;
  gap: 3px;
  line-height: 1.2;
}
.ogt-nav__item a::after {
  display: none;
}
.ogt-nav__ja {
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  transition: color .3s ease;
}
.ogt-nav__en {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.2;
  color: #8fa3a1;
}
.ogt-nav__item.is-current .ogt-nav__ja {
  color: #0AB4AF;
}
.ogt-nav__item a:hover .ogt-nav__ja {
  color: #068C88;
}

/* 営業時間・定休日は1行に横並び */
.ogt-header__hours {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  height: auto;
}
.ogt-header__hours-label {
  flex: none;
  padding: 5px 9px;
  border-radius: 3px;
  background: #3C4A49;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.ogt-header__hours-value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #06716E;
  white-space: nowrap;
}
.ogt-header__hours-value + .ogt-header__hours-label {
  margin-left: 6px;
}

.ogt-sp-nav__bottom p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
}

/* ==========================================================================
   3. メインビュー（TOP）
   ========================================================================== */
.ogt-mv {
  position: relative;
  height: 98vh;
  overflow: hidden;
  background: #EAF7F6;
}
/* viewport=1280固定のため幅のメディアクエリはスマホでも発火しない
   （常に1280px幅として扱われる）。縦長＝スマホ・タブレット縦持ちとみなして
   メインビューの高さを抑える。 */
@media (max-aspect-ratio: 1 / 1) {
  .ogt-mv {
    height: 60vh;
  }
}
/* CMSスライダーは内部で z-index:1〜3 を使うため、#slideshow 側に
   スタッキングコンテキスト(z-index:0)を作って封じ込める。
   これをしないと暗幕とキャッチコピーがスライダーの下に潜る。 */
.ogt-mv__slideshow,
.ogt-mv #slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 98vh;
}
.ogt-mv__slideshow .swiper-slide,
.ogt-mv__slideshow .main_slider__inner {
  width: 100%;
  height: 100%;
}
.ogt-mv__slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}
.ogt-mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 38, 37, .3) 0%, rgba(12, 38, 37, .5) 100%);
}
.ogt-mv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  text-align: center;
}
.ogt-mv__catch {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .03em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(8, 26, 25, .45);
}
.ogt-mv__lead {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 2;
  color: #fff;
  text-shadow: 0 2px 16px rgba(8, 26, 25, .5);
}

/* ==========================================================================
   4. ABOUT US（TOP）
   ========================================================================== */
.ogt-about {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 70px;
  align-items: center;
}
.ogt-about__visual {
  position: relative;
  height: 560px;
}
.ogt-about__ribbon {
  position: absolute;
  display: block;
  transform: rotate(-24deg);
  pointer-events: none;
}
.ogt-about__ribbon--lg {
  top: 96px;
  left: -90px;
  width: 760px;
  height: 56px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #D6F2F0 28%, #EAF9F8 72%, rgba(255, 255, 255, 0));
}
.ogt-about__ribbon--sm {
  bottom: 34px;
  left: -70px;
  width: 250px;
  height: 26px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #DCF4F2 60%, rgba(255, 255, 255, 0));
}
/* 太いリボンに寄り添う細い斜め線（あしらいの追加分） */
.ogt-about__ribbon--line {
  top: 32px;
  left: -60px;
  width: 620px;
  height: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #E4F7F5 34%, #F2FCFB 74%, rgba(255, 255, 255, 0));
}
.ogt-about__ribbon--line2 {
  bottom: 128px;
  left: -50px;
  width: 380px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #E4F7F5 55%, rgba(255, 255, 255, 0));
}
.ogt-about__photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(14, 44, 43, .16);
}
.ogt-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ogt-about__photo--main {
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 56px 8px 8px 8px;
}
.ogt-about__photo--sub {
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 8px 8px 56px 8px;
  border: 4px solid #fff;
}
.ogt-about__text {
  margin: 0;
  font-size: 16.5px;
  line-height: 2.2;
  color: #2c3938;
  text-wrap: pretty;
}

/* ==========================================================================
   5. OUR STRENGTH（TOP）
   ========================================================================== */
.ogt-strength {
  position: relative;
  overflow: hidden;
}
.ogt-strength__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
}
.ogt-strength__lead {
  margin: 0;
  font-size: 15px;
  line-height: 2.05;
  color: #3c4a49;
}
.ogt-strength__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
}
.ogt-strength__item:first-child {
  padding-bottom: 44px;
  border-bottom: 1px solid #E2ECEB;
}
.ogt-strength__item + .ogt-strength__item {
  padding-top: 44px;
}
.ogt-strength__num {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: .85;
  color: #B7E8E5;
}
.ogt-strength__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
}
.ogt-strength__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 2.05;
  color: #3c4a49;
}

/* ==========================================================================
   6. BUSINESS（TOP）
   ========================================================================== */
.ogt-business {
  position: relative;
  overflow: hidden;
}
.ogt-business__bgtext {
  position: absolute;
  top: 8px;
  left: -30px;
  margin: 0;
  font-size: 150px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  color: #F0F2F2;
  user-select: none;
  pointer-events: none;
}
.ogt-business__grid {
  position: relative;
  gap: 28px;
}

.ogt-bizcard {
  position: relative;
  display: block;
  height: 430px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 18px 44px rgba(14, 44, 43, .16);
}
.ogt-bizcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.ogt-bizcard:hover .ogt-bizcard__img {
  transform: scale(1.08);
}
.ogt-bizcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 18, .15) 0%, rgba(10, 20, 20, .45) 44%, rgba(8, 16, 16, .86) 100%);
}
.ogt-bizcard__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 48px 64px;
  text-align: center;
}
.ogt-bizcard__label {
  display: block;
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .9);
}
.ogt-bizcard__title {
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .1em;
}
.ogt-bizcard__text {
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, .95);
}
.ogt-bizcard__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  background: #0AB4AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background .3s ease;
}
.ogt-bizcard:hover .ogt-bizcard__arrow {
  background: #068C88;
}

/* ==========================================================================
   7. グラデーション誘導バナー（TOP・事業内容）
   ========================================================================== */
.ogt-worksbnr-wrap {
  padding-bottom: 120px;
}
.ogt-gradbnr {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 74px 70px;
  border-radius: 6px;
  background: linear-gradient(120deg, #0AB4AF, #37C9BE);
  box-shadow: 0 14px 36px rgba(10, 180, 175, .24);
}
.ogt-gradbnr--sm {
  padding: 56px 64px;
}
/* 背景にうっすら敷く写真（グラデーションの上に低不透明度で重ねる） */
.ogt-gradbnr__bg {
  position: absolute;
  inset: 0;
  background-position: center 34%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .14;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.ogt-gradbnr__body,
.ogt-gradbnr .ogt-btn {
  position: relative;
  z-index: 1;
}
.ogt-gradbnr__en {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .24em;
  color: rgba(255, 255, 255, .82);
}
.ogt-gradbnr__title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}
.ogt-gradbnr__title--lg {
  margin-bottom: 14px;
  font-size: 32px;
}
.ogt-gradbnr__text {
  margin: 0;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .92);
}

/* ==========================================================================
   8. 下層ページヒーロー
   ========================================================================== */
.ogt-phero {
  --hero-bg: transparent;
  --hero-color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0;
  background: #0E2C2B;
}
.ogt-phero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 中央寄せタイトル用に左右均等の暗幕（上→下でわずかに濃く） */
.ogt-phero__overlay {
  background: linear-gradient(180deg, rgba(12, 38, 37, .5) 0%, rgba(12, 38, 37, .64) 100%);
}
.ogt-phero__content {
  position: relative;
  z-index: 2;
  justify-content: center;
  min-height: 360px;
  padding: 60px 0;
}
.ogt-phero__en {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  line-height: 1.4;
  color: #6FD8D3;
  text-shadow: 0 2px 14px rgba(8, 26, 25, .4);
}
.ogt-phero__ja {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 20px rgba(8, 26, 25, .45);
}
/* page-hero__content が flex column のため、auto マージンの .container が
   stretch されない。幅を明示してデザインの 1200px 幅に揃える */
.ogt-phero .container {
  width: 100%;
}

/* ==========================================================================
   9. 事業内容
   ========================================================================== */
.ogt-service__head {
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2ECEB;
}
.ogt-service__en {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .24em;
  color: #0AB4AF;
}
.ogt-service__cols {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 56px;
  align-items: start;
}
.ogt-service__media {
  height: 330px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #EAF7F6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ogt-service__title {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #1a1a1a;
}
.ogt-service__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.15;
  color: #2c3938;
  text-wrap: pretty;
}
.ogt-service__licenses {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #E2ECEB;
}
.ogt-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ogt-tag {
  background: #F1FBFA;
  color: #22403F;
  border-radius: 6px;
  padding: 9px 17px;
  font-size: 14px;
}

/* フロー（共通 card-flow--vertical をベースにした縦1列タイムライン型） */
.ogt-flow__head {
  margin-bottom: 56px;
  text-align: center;
}
.ogt-flow-list {
  gap: 22px;
}
.ogt-flow-list__item {
  position: relative;
  align-items: center;
  gap: 32px;
  padding: 30px 44px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(14, 44, 43, .08);
}
/* ステップ間をつなぐ縦の点線 */
.ogt-flow-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 76px;
  bottom: -22px;
  width: 0;
  height: 22px;
  border-left: 2px dotted #9BD9D6;
}
.ogt-flow-list__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, #0AB4AF, #37C9BE);
  box-shadow: 0 8px 18px rgba(10, 180, 175, .24);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
}
.ogt-flow-list__body {
  font-size: inherit;
  line-height: inherit;
}
.ogt-flow-list__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6;
  color: #1a1a1a;
}
.ogt-flow-list__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #5c6b6a;
}

/* ==========================================================================
   10. 施工実績
   ========================================================================== */
/* カテゴリーへのアンカーボタン（ページヒーロー直下。上余白は96pxで統一） */
.ogt-anchors {
  display: flex;
  gap: 12px;
  padding-top: 96px;
}
.ogt-anchor {
  width: auto;
  max-width: none;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid #DCEFEE;
  border-radius: 6px;
  background: #fff;
  color: #3c4a49;
  font-size: 15.5px;
  font-weight: 500;
}
.ogt-anchor i {
  font-size: 13px;
  color: #0AB4AF;
  transition: transform .3s ease;
}
.ogt-anchor:hover {
  border-color: #0AB4AF;
  background: #F1FBFA;
  color: #0AB4AF;
}
.ogt-anchor:hover i {
  transform: translateY(3px);
}

.ogt-works__cathead {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
}
.ogt-works__catja {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #1a1a1a;
}
.ogt-works__caten {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  color: #0AB4AF;
}
.ogt-works__cathead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #DCEFEE;
}
.ogt-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.ogt-works__item {
  display: flex;
  flex-direction: column;
}
.ogt-works__main {
  display: block;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #EAF7F6;
  cursor: zoom-in;
}
.ogt-works__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.ogt-works__main:hover img {
  transform: scale(1.05);
}
.ogt-works__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.ogt-works__thumb {
  width: 74px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color .3s ease;
}
.ogt-works__thumb.is-active {
  outline-color: #0AB4AF;
}
.ogt-works__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ogt-works__title {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 6px;
  background: #F5F7F7;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #1a1a1a;
}

/* Lightbox の見た目をデザインに合わせる */
.lb-outerContainer,
.lb-dataContainer {
  border-radius: 6px;
}
.lightboxOverlay {
  background-color: #06201F;
  opacity: .86;
}

/* ==========================================================================
   11. 会社概要
   ========================================================================== */
.ogt-msg {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}
.ogt-msg__text {
  margin: 0;
  font-size: 16.5px;
  line-height: 2.2;
  color: #2c3938;
  text-wrap: pretty;
}
.ogt-msg__sign {
  margin: 32px 0 0;
  font-size: 15.5px;
  color: #3c4a49;
}
/* 代表者名は楷書体（筆書き）で表示する。webフォントが落ちた場合は端末の楷書体→明朝へフォールバック */
.ogt-msg__name {
  font-family: "Yuji Syuku", "HG正楷書体-PRO", "AR P楷書体M", "BIZ UDPMincho", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .1em;
}

.ogt-outline__head {
  margin-bottom: 40px;
}
.ogt-outline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ogt-deflist {
  border-top: 1px solid #E2ECEB;
}
.ogt-deflist__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #E2ECEB;
}
.ogt-deflist__key {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
.ogt-deflist__val {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.95;
  color: #3c4a49;
}
.ogt-deflist__note {
  font-size: 13px;
  color: #C0392B;
}

.ogt-history {
  padding-top: 6px;
}
.ogt-history__row {
  display: grid;
  grid-template-columns: 110px 24px 1fr;
  align-items: start;
}
.ogt-history__year {
  margin: 0;
  padding-top: 1px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
  color: #1a1a1a;
}
.ogt-history__line {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}
.ogt-history__line::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #CFE6E4;
}
.ogt-history__row:last-child .ogt-history__line::before {
  display: none;
}
.ogt-history__line::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #0AB4AF;
}
.ogt-history__text {
  margin: 0;
  padding: 0 0 34px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #3c4a49;
}
.ogt-history__row:last-child .ogt-history__text {
  padding-bottom: 0;
}

.ogt-sdgs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}
.ogt-sdgs__meta {
  margin: 0 0 26px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #5c6b6a;
}
.ogt-sdgs__lead {
  margin: 0 0 30px;
  font-size: 16.5px;
  line-height: 2.15;
  color: #2c3938;
}
.ogt-sdgs__icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 34px;
}
.ogt-sdgs__icons img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.ogt-sdgs__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ogt-sdgs__action {
  margin: 0;
  background: #F5F7F7;
  border-radius: 8px;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.ogt-access {
  margin-top: 80px;
}
.ogt-access__map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 180, 175, .09);
}
.ogt-access__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ==========================================================================
   12. お問い合わせ
   ========================================================================== */
.ogt-form__note {
  max-width: 960px;
  margin: 0 auto 44px;
  padding: 26px 32px;
  border-radius: 8px;
  background: #F5F7F7;
}
.ogt-form__note li {
  margin-bottom: 6px;
  font-size: 14.5px;
  line-height: 1.95;
  color: #22403F;
}
.ogt-form__note li:last-child {
  margin-bottom: 0;
}
.ogt-form__note li::marker {
  color: #0AB4AF;
}
/* --------------------------------------------------------------------------
   CMSフォーム（cms_id=7 / cms=28538-1 / design_pattern=2）の見た目調整
   CMSが出力する mail-form.css を、claude-design-output のフォームデザインに寄せる。
   出力構造：.form-contents > form > dl > dt(span.required|.optional) + dd
   -------------------------------------------------------------------------- */
#cms-contact-1-1-area .form-contents {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
/* dt(項目)とdd(入力欄)の横並びレイアウトはCMSデフォルトのまま。
   文字サイズと必須バッジの位置だけサイトに合わせる */
#cms-contact-1-1-area .form-contents dl {
  margin: 0;
}
#cms-contact-1-1-area .form-contents dl dt {
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1a1a;
}
/* 必須／任意バッジ（CMSは .required::before に「必須」を出すので順序を反転して右に置く） */
#cms-contact-1-1-area .form-contents .required,
#cms-contact-1-1-area .form-contents .optional {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}
#cms-contact-1-1-area .form-contents .required::before,
#cms-contact-1-1-area .form-contents .optional::before {
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}
/* CMS既定はオレンジ(#f07240)。濃いめのメインカラーに差し替える */
#cms-contact-1-1-area .form-pattern-2 dl dt span.required::before {
  background: #068C88;
  color: #fff;
}
#cms-contact-1-1-area .form-pattern-2 dl dt span.optional::before {
  content: "任意";
  background: #EDF1F1;
  color: #5c6b6a;
}
/* 入力欄 */
#cms-contact-1-1-area .form-contents input.textarea,
#cms-contact-1-1-area .form-contents textarea.textarea {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #DCEFEE;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 15.5px;
  color: #1a1a1a;
  outline: none;
  transition: border-color .3s ease;
}
#cms-contact-1-1-area .form-contents textarea.textarea {
  padding: 18px 20px;
  line-height: 1.9;
  resize: vertical;
}
#cms-contact-1-1-area .form-contents input.textarea:focus,
#cms-contact-1-1-area .form-contents textarea.textarea:focus {
  border-color: #0AB4AF;
}
#cms-contact-1-1-area .form-contents input.textarea::placeholder,
#cms-contact-1-1-area .form-contents textarea.textarea::placeholder {
  color: #b3c0bf;
}
/* ラジオ（お問い合わせ種別）はCMSデフォルトの見た目のまま。
   色だけメインカラーにし、選択肢どうしの間隔を広げる */
#cms-contact-1-1-area .form-contents input.radio {
  accent-color: #0AB4AF;
  margin-right: 6px;
}
#cms-contact-1-1-area .form-contents dd label {
  display: inline-block;
  margin-right: 36px;
}
#cms-contact-1-1-area .form-contents dd label:last-child {
  margin-right: 0;
}
/* ファイル添付 */
#cms-contact-1-1-area .form-contents .input-files {
  width: 100%;
  margin-bottom: 10px;
  padding: 22px 24px;
  border: 1.5px dashed #B7E0DD;
  border-radius: 8px;
  background: #F8FDFD;
  font-size: 14px;
}
/* 送信ボタン：CMS既定はオレンジ(#f07240)。メインカラーに差し替え、影は付けない */
#cms-contact-1-1-area .form-pattern-2 .submit-btn {
  background: #0AB4AF;
  border-color: #0AB4AF;
  box-shadow: none;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease;
}
#cms-contact-1-1-area .form-pattern-2 .submit-btn:hover {
  background: #068C88;
  border-color: #068C88;
}
/* メールアイコンはCSSマスク。CMS既定はhoverでオレンジ(#f07240)になるので白のままにする */
#cms-contact-1-1-area .form-pattern-2 .submit-btn::before,
#cms-contact-1-1-area .form-pattern-2 .submit-btn:hover::before {
  background-color: #fff;
}
/* 送信完了・エラー表示 */
#cms-contact-1-1-area .form-contents .form-thanks-msg,
#cms-contact-1-1-area .form-contents .form-err-msg {
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 26px 32px;
  border-radius: 8px;
  background: #F1FBFA;
  font-size: 15.5px;
  line-height: 1.95;
  color: #22403F;
}
#cms-contact-1-1-area .form-contents .form-err-msg {
  background: #FDF0EE;
  color: #C0392B;
}
#cms-contact-1-1-area .form-contents .back-home-btn {
  margin-top: 20px;
}
#cms-contact-1-1-area .form-contents .back-home-btn a {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #0AB4AF;
  border-radius: 6px;
  color: #0AB4AF;
  font-size: 14.5px;
  font-weight: 500;
}
#cms-contact-1-1-area .form-contents .back-home-btn a:hover {
  background: #F1FBFA;
}

/* お問い合わせフォームの見出し */
.ogt-formhead {
  max-width: 960px;
  margin: 0 auto 40px;
  text-align: center;
}

/* FAQ */
.ogt-faq {
  background: #F1FBFA;
}
.ogt-faq__head {
  text-align: center;
  margin-bottom: 48px;
}
.ogt-faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ogt-faq__item {
  background: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 180, 175, .07);
}
.ogt-faq__item .accordion__head {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 30px;
  background: #fff;
  border: none;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
}
.ogt-faq__item .accordion__head:hover {
  background: #F8FDFD;
}
.ogt-faq__q {
  flex: none;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0AB4AF;
}
.ogt-faq__text {
  flex: 1;
  line-height: 1.7;
}
.ogt-faq__item .accordion__head::after {
  content: "＋";
  flex: none;
  margin-left: 0;
  font-size: 20px;
  line-height: 1;
  color: #0AB4AF;
  transition: transform .3s ease;
}
.ogt-faq__item.is-open .accordion__head::after {
  content: "＋";
  transform: rotate(45deg);
}
.ogt-faq__item .accordion__body {
  padding: 0 30px 30px 66px;
  border-top: none;
  background: #fff;
}
.ogt-faq__item .accordion__body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 2.05;
  color: #3c4a49;
  text-wrap: pretty;
}

/* ==========================================================================
   13. お問い合わせCTA帯
   ========================================================================== */
.ogt-cta {
  position: relative;
  overflow: hidden;
}
/* 背景写真は使わず、ティール系のグラデーションのみ */
.ogt-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(105% 130% at 92% 82%, rgba(160, 205, 208, .35) 0%, rgba(160, 205, 208, 0) 42%),
    linear-gradient(107deg, #164B5D 0%, #1D6270 26%, #2A7A76 52%, #4A968F 74%, #71B0AB 100%);
}
.ogt-cta__inner {
  position: relative;
  padding: 124px 0 132px;
}
.ogt-cta__en {
  margin: 0 0 18px;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(8, 40, 38, .3);
}
.ogt-cta__lead {
  margin: 0 0 36px;
  font-size: 15.5px;
  line-height: 2;
  color: #fff;
  text-shadow: 0 1px 12px rgba(8, 40, 38, .35);
}

/* ==========================================================================
   14. フッター
   ========================================================================== */
.ogt-footer {
  background: #0E2C2B;
  color: #fff;
}
.ogt-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 72px 0 34px;
}
/* フッターのロゴはヘッダーと同じ画像を白抜きで使う */
.ogt-footer__logo {
  margin: 0 0 22px;
}
.ogt-footer__logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.ogt-footer__address {
  margin: 0;
  font-size: 14.5px;
  line-height: 2.05;
  color: rgba(255, 255, 255, .78);
}
/* ナビは横1列 */
.ogt-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 32px;
  font-size: 14.5px;
}
.ogt-footer__nav a {
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  transition: color .3s ease;
}
.ogt-footer__nav a:hover {
  color: #6FD8D3;
}
.ogt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
  padding: 0;
}
.ogt-footer__bottom .footer-bottom__copyright {
  padding: 22px 0;
  margin: 0 auto;
  font-size: 11.5px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   15. セクション余白（デザインの個別値）
   ========================================================================== */
.ogt-service-sec--first  { padding: 96px 0 0; }
.ogt-service-sec--second { padding: 80px 0 96px; }
.ogt-service-bnr         { padding: 0 0 100px; }
.ogt-flow                { background: #F7FBFB; }
.ogt-flow__inner         { padding: 100px 0 110px; }
.ogt-sec96               { padding: 96px 0; }
/* セクション区切りの淡いグレー（指定色 #fbfbfb） */
.ogt-sec96--gray         { background: #fbfbfb; }
.ogt-sec96--last         { padding: 96px 0 104px; }
.ogt-contact             { padding: 96px 0 96px; }
.ogt-faq__inner          { padding: 96px 0 104px; }
.ogt-works               { padding: 80px 0 0; }
.ogt-works:last-of-type  { padding-bottom: 120px; }

/* アンカーリンクの着地位置（sticky ヘッダー88pxぶん） */
#civil,
#building,
#arch {
  scroll-margin-top: 110px;
}

/* ==========================================================================
   16. 共通クラスの上書き（詳細度そろえ）
   ========================================================================== */
.ogt-phero .ogt-phero__en {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  line-height: 1.4;
  color: #6FD8D3;
  text-shadow: 0 2px 14px rgba(8, 26, 25, .4);
}
.ogt-phero__ja {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  color: #fff;
}
.ogt-h2--sdgs {
  margin-bottom: 16px;
}
.ogt-bar-title--lg {
  margin-bottom: 24px;
}
.ogt-footer__bottom {
  text-align: center;
}

/* ==========================================================================
   許可証（会社概要・沿革の下）— 画像を横並び中央に配置／クリックでPDFを別タブ表示
   ========================================================================== */
.ogt-license {
  margin-top: 48px;
}
.ogt-license__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
}
.ogt-license__item {
  display: block;
  width: 250px;
  text-align: center;
}
.ogt-license__thumb {
  display: block;
  padding: 14px;
  background: #fff;
  border: 1px solid #E2ECEB;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(14, 44, 43, .08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ogt-license__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.ogt-license__item:hover {
  opacity: 1;
}
.ogt-license__item:hover .ogt-license__thumb {
  transform: translateY(-4px);
  border-color: #0AB4AF;
  box-shadow: 0 16px 34px rgba(14, 44, 43, .16);
}
.ogt-license__title {
  display: block;
  margin-top: 18px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}
.ogt-license__no {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.6;
  color: #3c4a49;
}
.ogt-license__pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0AB4AF;
}
.ogt-license__pdf i {
  font-size: 15px;
}
