@charset "UTF-8";
@import "elements.css";

/* @group リセット */
/* ==========================================================================
   変数定義 & リセット設定
   ========================================================================== */
:root {
    --color-text: #333333;
    --color-text-light: #666666;
    --color-main: #1a2a54; /* 濃紺 */
    --color-sub: #439fcf;  /* シアン */
    --color-light-blue: #e3ebff; /* 薄いブルー */
    --color-otech: #314d9c;
    --color-accent: #0055aa;
    --color-bg: #ffffff;
    --color-bg-gray: #f8f9fa;
    --font-en: 'Inter', serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-12: 0.8rem;
    --transition: all 0.4s ease-out;
    --color-gradient-text: linear-gradient(80deg, rgba(35, 24, 21, 1) 0%, rgba(98, 121, 217, 1) 20%, rgba(49, 77, 156, 1) 55%, rgba(35, 24, 21, 1) 100%);
    --color-gradient-footer: linear-gradient(100deg, rgba(98, 121, 217, 1) 10%, rgba(137, 152, 217, 1) 45%, rgba(49, 77, 156, 1) 100%);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-bg);
    font-size: 16px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    opacity: 0.7;
}

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

ul {
    list-style: none;
}

/* ユーティリティクラス */
.container__max {
    margin: 0 auto;
    padding: 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container__mini {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-show { display: none; }
.md-hide { display: none; }

@media (max-width: 768px) {
    .sp-show { display: block; }
    .md-show { display: none; }
    .md-hide { display: block; }
}
/* @end リセット */


/* @group アニメーション ヘッダー & ナビゲーション */
/* ==========================================================================
   アニメーション用クラス（JSで制御）
   ========================================================================== */
.js-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ヘッダー & ナビゲーション（統合版）
   ========================================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__inner {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    display: flex;
    flex-direction: column;
    font: var(--font-12) var(--font-jp);
    line-height: 1;
    color: var(--color-main);
}

.header__logo img {
    max-width: 360px;
    padding-top: 10px;
}

/* ナビゲーション共通 */
.header__nav {
    transition: all 0.4s ease;
}

/* --- PC用レイアウト (769px以上) --- */
@media (min-width: 769px) {
    .header__nav {
        background-color: #f5f6fa;
        border-radius: 6px;
        padding: .8rem .8rem .8rem 2rem;
    }

    .header__list {
        display: flex;
        gap: 30px;
        align-items: center;
        font-weight: 800;
    }

    .header__item > a {
        font-weight: 500;
        position: relative;
    }

    /* 下線アニメーション */
    .header__item > a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-main);
        transition: var(--transition);
    }
    .header__item > a:hover::after {
        width: 100%;
    }

    /* ドロップダウン設定 (PC) */
    .header__item.has-sub {
        position: relative;
    }
    .js-sub-menu-toggle::after {
        content: '▼';
        font-size: 0.6em;
        margin-left: 5px;
        vertical-align: middle;
        transition: transform 0.3s;
    }
    .header__item.has-sub.is-open .js-sub-menu-toggle::after {
        transform: rotate(180deg);
    }

    .header__sub-list {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        width: 200px;
        padding: 10px 0;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 10;
        text-align: left;
    }
    /* クリックで .is-open がついた時に表示 */
    .header__item.has-sub.is-open .header__sub-list {
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }
    .header__sub-list li a {
        display: block;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 500;
        color: var(--color-text);
    }
    .header__sub-list li a:hover {
        background-color: var(--color-light-blue);
        color: var(--color-otech);
        opacity: 1;
    }
}

/* --- スマホ用レイアウト (768px以下) --- */
@media (max-width: 768px) {
	.header__logo a {
		max-width: 280px;
		font-size: .727rem;
	}
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-otech); /* 背景色 */
        z-index: 1050;
        padding: 100px 20px 40px;
        transform: translateX(100%); /* 画面外へ隠す */
        overflow-y: auto;
    }
    .header__nav.is-active {
        transform: translateX(0); /* スライドイン */
    }

    .header__list {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .header__item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .header__item > a {
        display: block;
        padding: 20px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
    }

    /* SP用ドロップダウン（アコーディオン） */
    .header__sub-list {
        display: none; /* JSで開閉 */
        background: rgba(0,0,0,0.1);
        padding: 0;
    }
    .header__item.has-sub.is-open .header__sub-list {
        display: block;
    }
    .header__sub-list li {
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .header__sub-list li a {
        display: block;
        padding: 15px;
        font-size: 14px;
        color: #ddd;
    }
    
    /* 矢印アイコン */
    .js-sub-menu-toggle {
        position: relative;
    }
    .js-sub-menu-toggle::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-weight: 300;
        transition: transform 0.3s;
    }
    .header__item.has-sub.is-open .js-sub-menu-toggle::after {
        content: '-';
        transform: none;
    }
}

.btn-contact {
	font-size: .85rem;
    background-color: var(--color-otech);
    color: #fff !important;
    padding: .3rem 1rem;
    border-radius: 3px;
}
/* お問い合わせボタンのSP版調整 */
@media (max-width: 768px) {
    .btn-contact {
        background-color: #fff;
        color: var(--color-otech) !important;
        margin-top: 20px;
        display: inline-block !important;
        width: auto;
    }
}

.btn-contact:hover {
    background-color: var(--color-accent);
    opacity: 1;
}

/* ハンバーガーメニュー */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-otech);
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span {
    background-color: #fff; /* SPメニュー展開時は白くする */
}
.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
/* @end アニメーション ヘッダー & ナビゲーション */

/* ==========================================================================
   ヒーローエリア
   ========================================================================== */
.hero {
    padding-top: 160px;
}

.hero__copy {
    font-family: var(--font-en);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    background: linear-gradient(80deg, rgba(35, 24, 21, 1) 0%, rgba(98, 121, 217, 1) 20%, rgba(49, 77, 156, 1) 55%, rgba(35, 24, 21, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__jp {
    font-size: 1.4rem;
    font-weight: 400;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
	.hero {
		padding-top: 100px;
	}
    .hero__copy { 
		font-size: 1.4rem;
		font-weight: 400;
		margin-bottom: 10px;
	}
    .hero__jp {
		font-size: 1rem;
		padding-bottom: 20px;
	}
	.hero__content {
		width: 100%;
		height: 280px;
		overflow: hidden;
		object-fit: cover;
	}
	.hero__content  img{
		width: 100%;
		height: 100%;
	}
}

/* 中ページ ヘッダー */

/* @group パンくずリスト */

/* パンくずリスト全体のコンテナ */
.pankuzu {
  list-style: none;
  margin: 0;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* PC等の広い画面では折り返す */
  font-size: 14px; /* 文字サイズはお好みで調整 */
  color: #333;
}

/* 各リストアイテム */
.pankuzu li {
  display: flex;
  align-items: center;
  white-space: nowrap; /* テキストの途中改行を防ぐ */
}

/* 区切り文字 (>) の設定 */
.pankuzu li:not(:last-child)::after {
  content: ">"; /* 矢印やスラッシュなど */
  margin: 0 10px; /* 文字と区切り線の間隔 */
  color: #999;    /* 区切り文字の色 */
}

/* ホームアイコンの設定 (最初のliの擬似要素として配置) */
.pankuzu li:first-child::before {
  content: "";
  display: inline-block;
  width: 16px;  /* アイコンの幅 */
  height: 16px; /* アイコンの高さ */
  background: url('/img/common/home.svg') no-repeat center center;
  background-size: contain;
  margin-right: 8px; /* アイコンとテキストの間隔 */
  vertical-align: middle;
}

/* --- レスポンシブ対応 (スマホ向け) --- */
@media screen and (max-width: 768px) {
  .pankuzu {
    flex-wrap: nowrap; /* 折り返さずに一列にする */
    overflow-x: auto;  /* 横スクロールを有効化 */
    -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロール */
    padding-bottom: 5px; /* スクロールバーとの余白 */
  }
  
  /* スクロールバーを隠したい場合は以下を追加 */
  .pankuzu::-webkit-scrollbar {
    display: none;
  }
}

/* @end パンくずリスト */

.page__hero {
    background: var(--color-gradient-footer);
    padding: 60px 0 20px;	
}

.page__hero .container__max {
	display: flex;
	justify-content: space-between;
	line-height: 1;
	padding-top: 80px;
}

.page__hero .container__max h1 {
    color: #fff;
	font-size: 2.5rem;
	font-weight: 400;
	padding-left: 80px;
}
.page__hero .container__max > div {
	font-family: var(--font-en);
    color: rgba(255, 255, 255, 0.5);
	font-size: 4.5rem;
	font-weight: 300;
	padding-top: 40px;
}
@media (max-width: 768px) {
	.page__hero .container__max {
		flex-direction: column;
	}
	.page__hero .container__max h1 {
		padding-left: 0;
	}
	.page__hero .container__max > div {
		font-size: 1.25rem;
		font-weight: 400;
		padding-top: 10px;
	}
}

/* ==========================================================================
   セクション共通設定
   ========================================================================== */
.section {
    padding: 160px 0;
}

.section__header {
    margin-bottom: 6rem;
}

.section__en {
    display: block;
    font: 5rem/1 var(--font-en);
    color: var(--color-main);
    font-weight: 300;
}

.section__jp {
    font-size: 1.8rem;
    font-weight: 600;
}

.pagelink {
    font-family: var(--font-en);
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background-color: var(--color-otech);
	padding: 1rem 1.5rem;
	border-radius: 3px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}
.pagelink::after {
    content: '\2192';
    margin-left: 5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}
.pagelink:hover::after {
    transform: translateX(5px);
}
.pagelink:hover {
    opacity: 0.9;
}

h2.page__title {	
	font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-otech);
	padding-bottom: 5rem;
}
h2.page__title span {
    font-family: var(--font-en);
	font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section__header {
		margin-bottom: 3rem;
	}
    .section__en {
		font-size: 3rem;
	}
	.section__jp {
		font-size: 1.6rem;
	}
}


/* @group トップページ */

/* ==========================================================================
   Aboutセクション
   ========================================================================== */
.about {
    background: url(../img/top/topmassage.webp) center top no-repeat scroll;
    object-fit: cover;
}

.about__content {
    max-width: 1200px;
    margin: 0 auto;
    color: #000;
}

.about__lead {
    font-size: 2rem;
    line-height: 1.5;
    padding-bottom: 3rem;
    font-weight: 500;
}

.about__text p {
    margin-bottom: 20px;
    display: inline-block;
    line-height: 2.8;
}

@media (max-width: 768px) {
    .about__lead { 
		font-size: 1.5rem;
		line-height: 2;
	}
}

/* ==========================================================================
   Serviceセクション
   ========================================================================== */
section.service {
    background-color: var(--color-main);
    color: #fff;    
    text-align: center;
}

section.service .section__en{
    color: #fff;    
}

.service__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
	padding-bottom: 40px;
}

.service__first {
    width: 100%;
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
    text-align: left;
}

.service__first .service__body {
    width: 40%;
}

.service__first .service__img {
    width: 60%;
    overflow: hidden;
    max-height: 380px !important;
    object-fit: cover;
}

.service__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
}

.service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/*.service__card:hover .service__img img {
    transform: scale(1.05);
}*/

.service__title {
    font-size: 1.8rem;
}

.service__cat {
    display: block;
    font-family: var(--font-en);
    font-weight: 200;
    margin-bottom: 10px;
}

.service__body {
	padding: 1rem 0 .5rem;
}

.service__desc {
    line-height: 2.5;
    padding-top: 2rem;
}

.service__card .service__title {
    font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.25;
}

.service__card .service__cat {
    font-size: .9rem;
}

@media (max-width: 768px) {
    .service__first {
		flex-direction: column;
		gap: 20px;
		padding-bottom: 40px;
	}
	.service__first .service__body {
		width: 100%;
		padding: 0;
	}
	.service__first .service__body .service__desc {
		padding: 0;
	}
	.service__first .service__img {
		width: 100%;
	}
	.service__grid {
		gap: 20px;
	}
	.service__grid .service__card {
		display: flex;
		gap: 20px;
	}
	.service__grid .service__card .service__img {
		width: 50%;
		max-height: 150px;
	}
	.service__grid .service__card .service__body {
		width: 50%;
	}
	.service__title {
		font-size: 1.4rem;
	}
}

/* ==========================================================================
   Worksセクション
   ========================================================================== */
.works {
    position: relative;
    overflow: hidden; /* はみ出した画像を隠す */
    text-align: center;
}

/* ランダム画像の配置エリア */
.works__bg-scatter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* 最背面 */
    pointer-events: none; /* 画像がクリックの邪魔をしないように */
}

/* 個々のランダム画像 */
.works__bg-scatter img {
    position: absolute;
    display: block;
    object-fit: cover;
    opacity: 1;
}

/* 白い透過レイヤー */
.works__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); 
    z-index: 1;
    backdrop-filter: blur(.5px);
}

/* コンテンツエリア */
.works .container {
    position: relative;
    z-index: 2;
}

.works__list {
    display: flex;
    gap: 20px;
}

.works__item {
    flex-basis: calc(100% / 2 - (20px / 2));
    position: relative;
    display: flex;
    align-items: center;
    padding: 4.5rem 2rem;
    overflow: hidden;
    color: var(--color-text);
}

.works__bg01, .works__bg02 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.works__bg01 {
    background-color: var(--color-otech);
}

.works__bg02 {
    background-color: var(--color-sub);
}

.works__content {
    color: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.works__en {
    display: block;
    font-family: var(--font-en);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.works__jp {
    font-size: 1.8rem;
}

.works__content ul {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    margin-top: 4.5rem;
}

.works__content ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem .8rem;
}

.works__content ul li dl {
    display: flex;
}

.works__content ul li dl dt {
    width: 10em;
    padding-right: 1.5em;
}

.works__content ul li dl dt dd {
    flex-basis: calc(100% - (10em + 1.5em));
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.works__item:hover .arrow {
    transform: translateX(10px);
}

/* --- Works SP Styles --- */
@media (max-width: 768px) {
    .works__content { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 10px; 
    }
    .works__jp { 
        font-size: 1.4rem; 
    }
    .arrow { 
        align-self: flex-end; 
    }
    
    /* レスポンシブ追加分 */
    .works__list {
        flex-direction: column; /* 横並びを縦積みに */
        gap: 40px;
    }

    .works__item {
        flex-basis: 100%;
        padding: 3rem 1.5rem; /* パディングを少し縮小 */
    }

    .works__content ul {
        margin-top: 2.5rem; /* タイトルとの余白を調整 */
    }

    /* 日付とタイトルのリストを縦積みに変更 */
    .works__content ul li dl {
        flex-direction: column; 
    }

    .works__content ul li dl dt {
        width: 100%;
        padding-right: 0;
        padding-bottom: 0.5rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .works__content ul li dl dt dd {
        flex-basis: 100%;
        padding-left: 0;
    }
}

/* ==========================================================================
   Companyセクション
   ========================================================================== */
.company {
    background-color: var(--color-light-blue);
}

.company__content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* ▼ 画像を囲む箱 */
.company__img-wrapper {
    width: 40%;
    position: relative;
}

/* ▼ 画像本体 */
.company__img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* ▼ テキストエリア */
.company__intro {
    width: 50%;
    margin: 0;
}

.company__intro p {
	line-height: 2;
}

.company__links {
	line-height: 1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    padding-top: 2rem;
}

.company__links li {
    flex-basis: calc(100% / 2 - (20px / 2));
    height: 200px;
}

.company__links a {
    display: block;
    height: 200px;
    padding: 20px;
    border: 3px solid #cfdcff;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.company__links a:hover {
    border-color: var(--color-main);
    background-color: var(--color-main);
    color: #fff;
}

.company__links .en {
    display: block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.6;
}

.company__links .pagelink {
    font-size: var(--font-12);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
	padding: .5rem .75rem;
}

.company__links .pagelink::after {
    margin-left: .5rem;
}

/* --- Company SP Styles --- */
@media (max-width: 768px) {
    .company__content {
        flex-direction: column; /* 画像とテキストを縦積みに */
        gap: 30px;
    }

    .company__img-wrapper {
        width: 100%;
        height: 250px; /* スマホ時は高さを明示 */
    }

    .company__intro {
        width: 100%;
    }

    .company__links {
        gap: 10px;
        padding-top: 1.5rem;
    }

    .company__links li {
        flex-basis: calc(50% - 5px); 
        height: 160px;
    }

    .company__links a {
        padding: 15px;
        height: 100%;
    }

    .company__links h3 {
        font-size: 1rem;
    }

    .company__links .pagelink {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        bottom: 10px;
        right: 10px;
    }
}

/* @end トップページ */

/* @group お問い合わせエリア & フッター */
/* ==========================================================================
   お問い合わせエリア & フッター
   ========================================================================== */
.contact-area {
    background-color: var(--color-bg-gray);
    padding: 80px 20px;
    text-align: center;
}

.contact-area__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-main);
    color: #fff;
    padding: 15px 60px;
    margin-top: 30px;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: #fff;
    opacity: 1;
}

.footer {
    background: var(--color-gradient-footer);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer__logo img {
    max-width: 300px;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo p {
    font-size: 0.8rem;
    padding-bottom: .5rem;
}

.footer__address {
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
}

.footer__navi {
    font-weight: 400;
    display: flex;
    gap: 40px;
    font-size: .9px;
	font-size: .9rem;
}

.footer__navi li{
    padding-bottom: .75rem;
}

.footer__item_sub{
    display: flex;
    align-items: center;
}
.footer__item_sub:before{
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    content: "";
    width: .25rem;
    margin-right: .3rem;
}
.footer__item__no{
    color: rgba(255, 255, 255, 0.5);
}

.footer__navi  li a:link{
    text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.5);
}

.footer__title {
    font-size: var(--font-12);
    font-family: var(--font-en);
    color: var(--color-main);
    font-weight: 400;
    border-bottom: 1px solid var(--color-main);
    margin-bottom: 1rem;
    padding-bottom: 0!important;
}

.footer__slogan {
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
}

.footer__slogan .font__en{
    font: 3rem/1.2 var(--font-en);
    font-weight: 300;
}

.footer__slogan .font__jp{
    font: 1rem/1.2 var(--font-jp);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
}
.footer__copy {
    display: flex;
    gap: 20px;
    text-align: right;
    padding-top: 1rem;
}

.footer__copy a:link{
	font-size: 0.9rem;
    text-decoration: underline;
}

.footer__copy small{
    font-family: var(--font-en);
}

@media (max-width: 768px) {
	.footer__navi ul{
		flex-wrap: wrap;
	}
    .footer__flex {
    	flex-direction: column; 
	    gap: 15px; 
	}
    .footer__flex .PddR30{
		padding-right: 0;
	}
    .footer__slogan {
		padding-bottom: 1rem;
	}
    .footer__slogan .font__en {
		font-size: 1.4rem;
		font-weight: 400;
	}
    .footer__bottom { flex-direction: column-reverse; gap: 20px; }
}
/* @end お問い合わせエリア & フッター */

/* @group 事業内容 */
#service_page {
	
}

#service_page h2 {
	color: var(--color-otech);
	font-size: 1.8rem;
	line-height: 1;
}
#service_page h2 span{
	font-size: 1rem;
	font-family: var(--font-en);
	font-weight: 300;
}

#service_page dl {
	display: flex;
	gap: .5rem;
	padding: .25rem 0;
}
#service_page dt {
	color: #fff;
	background-color: var(--color-otech);
	padding: .1rem .5rem;
	border-radius: 4px;
}
#service_page dd {
	
}
#service_page .service__desc {
	padding-bottom: 1rem;
}
#service_page .service__img {
	padding-bottom: 1rem;
}
#service_page .item .service__img {
	height: 360px;
}
#service_page .service__grid {
	padding-top: 2rem;
}
#service_page .service__grid .service__img {
	height: 190px;
}
#service_page .service__card {
	padding-bottom: 1.5rem;
}
#service_page .service__card h3 {
	font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-otech);
	padding-bottom: .85rem;
}
#service_page .service__card h3 span {
    font-family: var(--font-en);
	font-size: .9rem;
    font-weight: 300;
	}
@media (max-width: 768px) {
	#service_page.section {
		padding-top: 0;
	}
	#service_page dl {
		flex-direction: column;
	}
	#service_page .details {
		width: 100%;
	}
}

/* @end 事業内容 */

/* @group 会社概要 */
#company_page .company_profile {
	
}

#company_page .company_profile dl {
	display: flex;
	border-top: 1px solid #d9dff2;
	padding: 2.5rem 1.5rem;
	gap: 2rem;
}
#company_page .company_profile dt {
	flex-basis: calc(25% - 2rem);
}
#company_page .company_profile dd {
	width: 75%;
}
#company_page .company_profile ul {
	display: flex;
	flex-wrap: wrap;
}
#company_page .company_profile ul li {
	width: 50%;
}


/* @end */

/* @group 施工実績 */
/* ベースのテーブルスタイル */
.works-table-wrapper {
  width: 100%;
  overflow-x: auto; /* 横スクロール保険 */
  margin-bottom: 2rem;
}

.works-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid #ddd;
}

.works-table th,
.works-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

/* ヘッダー（PC用） */
.works-table th {
  background-color: #f4f7f9; /* 薄い青グレー */
  color: #333;
  font-weight: bold;
  white-space: nowrap; /* 見出しの折り返し防止 */
}

/* 区分バッジの装飾 */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  min-width: 80px;
}

.status-badge.public {
  background-color: #e3f2fd;
  color: #1565c0; /* 官公庁は青系 */
  border: 1px solid #bbdefb;
}

.status-badge.private {
  background-color: #f5f5f5;
  color: #616161; /* 民間はグレー系 */
  border: 1px solid #e0e0e0;
}


/* --- スマホ対応 (768px以下で切り替え) --- */
@media screen and (max-width: 768px) {
  .works-table {
    border: 0;
  }

  .works-table thead {
    display: none; /* スマホではヘッダーを隠す */
  }

  .works-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .works-table td {
    display: flex; /* Flexboxで横並びにする */
    justify-content: space-between; /* ラベルと値を左右に配置 */
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    padding: 12px;
  }

  .works-table td:last-child {
    border-bottom: none;
  }

  /* data-label属性を使って見出しを表示 */
  .works-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #555;
    margin-right: 15px;
    min-width: 100px; /* ラベルの幅を揃える */
    display: inline-block;
  }

  /* 工事名などが長くなった場合の調整 */
  .works-table td {
    text-align: right; /* スマホでは値を右寄せに */
  }
  
  /* 値が長い場合に左寄せに戻す調整（必要に応じて） */
  .works-table td[data-label="工事名"],
  .works-table td[data-label="クライアント名"] {
      text-align: right;
  }
}
/* @end */

/* @group プライバシーポリシー */
#privacy_page h2 {
	font-size: 1.5rem;
	padding: 3rem 0 1rem;
}
#privacy_page h3 {
	font-size: 1.4rem;
	padding: 2rem 0 1rem;
}
#privacy_page h4 {
	font-size: 1.2rem;
	padding: 1.5rem 0 1rem;
}
#privacy_page h5 {
	font-size: 1.1rem;
	padding: 1.3rem 0 1rem;
}


/* @end */