@charset "utf-8";

/* ----------------------------------------------------
	01. 共通・リセット
---------------------------------------------------- */
/* body / html / a / img / table などの全ページ共通 */
*,
*::before,
*::after {
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
form,
select,
option,
address,
pre {
    font-size: 100%;
    font-style: normal;
    font-family: Verdana, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0
}

body {
    font-size: 12px;
    font-style: normal;
    font-family: Verdana, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

img {
    border: 0px;
    vertical-align: bottom
}

a {
    color: #2200c1;
    text-decoration: underline
}

a:hover {
    color: #2200c1;
    text-decoration: none
}

a:focus {
    outline: none
}

a img {
    vertical-align: top;
    text-decoration: none
}

input.text {
    margin: 0;
    padding: 4px 3px 3px 3px;
    font-size: 100%;
    line-height: 1.3;
    color: #333;
    border: 1px solid #ccc
}

input.text:focus {
    outline: none
}

textarea {
    border: 1px solid #ccc;
    font-size: 100%;
    color: #333
}

textarea:focus {
    outline: none
}

table,
th,
td,
div {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ====================================================
   02. レイアウト全体
   （コンテナ・2カラム・幅指定 など）
==================================================== */
/* レイアウト全体 */
#container {
    width: 960px;
    margin: 0 auto;
}

/* ページ全体の幅の制御 */
#page_block1 {
    width: 960px;    /* 既存の幅を維持 */
    padding: 0;
}

/* 左カラム（メニュー＋サイドボックス） */
#page_block2 {
    width: 175px;
    float: left;
    padding: 0;
    margin: 0 15px 0 0;
}

/* 右カラム（メインコンテンツ） */
#page_block3 {
    width: 770px;
    float: left;
    padding: 0;
    margin: 0;
}

/* フッター部 */
#page_block5 {
    width: 960px;
    clear: both;
    padding: 0;
    margin: 0;
}



table td {
    word-break: normal;
}

/* ====================================================
   03. ヘッダー
   （ロゴ・キャッチコピー・ヘッダー背景）
==================================================== */

/* ヘッダー背景画像 (横並びの親要素+背景) */
.header_d01 {
    background: #FFFFFF url("../images/material/hdr_bg.jpg") no-repeat top center;
    display: flex;
    /* ★これが横並びの指示です★ */
    justify-content: space-between;
    /* 子要素（ロゴとキャッチコピー）を左右に分離 */
    align-items: flex-start;
    /* 子要素を上端に揃える (以前の vertical-align: top の代替) */
    width: 960px;
    /* テーブル幅に揃える */
}

.logo-mark {
    display: inline-block;
}

.header_d01 .logo-mark {
    padding-bottom: 5px
}

.header_d01 h2 {
    padding: 0 10px 0 0;
    color: #FFFFFF;
}

/* ロゴエリア (左側) */
.header_logo {
    /* 必要に応じて幅を設定 (ここでは Flexbox に任せる) */
}

.header_catchphrase {
    text-align: right;
}

/* その他の調整 */
.header_logo img {
    vertical-align: top;
}


/* ====================================================
   04. ナビゲーション
   4-1. グローバルナビ（上部）
   4-2. 左メニュー（gMenu_2 / gnv_d02）
==================================================== */

/* ----------------------------------------------------
	左メニュー
---------------------------------------------------- */
/* 4-1. グローバルナビ */
.gMenu_2 .gnv_d02,
.gMenu_2 .gnv_d02 ul li,
.gMenu_2 .gnv_d02 ul li.home,
.gMenu_2 .gnv_d02 ul li.other,
.gMenu_2 .gnv_d02 ul li.home a {
    background: #FFFFFF;
}

.gMenu_2 .gnv_d02 ul li.other a {
    border-top: 1px solid #CCCCCC;
}


/* 4-2. 左メニュー(幅175px) */
.gMenu_2 .gnv_d02 {
    width: 175px;
    background: #ffffff;
}

.gMenu_2 .gnv_d02 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gMenu_2 .gnv_d02 ul li {
    border-top: 1px solid #cccccc;
}

.gMenu_2 .gnv_d02 ul li:first-child {
    border-top: none;
}

.gMenu_2 .gnv_d02 ul li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #565656;
    font-size: 14px;
}

.gMenu_2 .gnv_d02 ul li.home a {
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: 8px center;
}

/* スマホメニューボタン：PCでは非表示 */
.sp-menu-button {
  display: none;
}

/* スマホ幅になったときのメニュー制御 */
@media (max-width: 768px) {
  .sp-menu-button {
    display: block;
    width: 100%;
    background: #257b77;
    color: #fff;
    border: none;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* 初期状態はメニューを隠す */
  #global-menu {
    display: none;
  }

  /* .is-open が付いたら表示 */
  #global-menu.is-open {
    display: block;
  }
}





/* ----------------------------------------------------	
	オンマウス
---------------------------------------------------- */
a:hover img {
    opacity: 0.75;
    /*Chrome・Safari・Opera用*/
}

/* ----------------------------------------------------	
	共通ナビレイアウト(幅は指定しない)
---------------------------------------------------- */

/* 共通ナビレイアウト(幅は指定しない) */
.gnv_d02 {
    border: 1px solid #CCC;
    overflow: hidden;
    margin-bottom: 10px;
    clear: both
}

.gnv_d02 ul {
    width: 100%;
    margin: 0;
    padding: 0
}

.gnv_d02 ul li {
    overflow: hidden
}

.gnv_d02 ul li a {
    display: block
}

/* ホバー時の背景色 */
.gnv_d02 ul li a:hover {
    background: #f2f2f2;
}

.gnv_d02 ul li span {
    width: 100%;
    display: block;
}

.gnv_d02 ul li.other a {
    border-top: 1px solid #CCC;
    padding: 4px 0 4px 22px
}


.gnv_d02 ul.nvPage {
    float: left;
    font-size: 105%;
    word-break: break-all
}

/* レガシー候補 */
.gnv_d01 ul.nvPage {
    display: inline;
    float: left;
    font-size: 105%;
    padding-top: 8px;
    padding-bottom: 6px;
    max-width: 440px;
    word-break: break-all;
    width: 480px;
    list-style-type: none
}

.gnv_d01 ul.nvPageWidth {
    display: inline;
    float: left;
    font-size: 105%;
    padding-top: 8px;
    padding-bottom: 8px;
    word-break: break-all;
    list-style-type: none
}

.gnv_d01 ul.nvPage li a {
    margin: 0
}

.gnv_d01 ul li.home a {
    padding: 4px 0 4px 22px
}

.gnv_d01 ul li.home {
    margin: 0 10px 0 0
}


/* ====================================================
   05. メインビジュアル（トップ画像）
==================================================== */
.hero-image {
    width: 770px;
    height: 360px;
}

.case-image {
    display: block;
    width: 260px;
    height: 160px;
    object-fit: cover;  /* 余白ナシでトリミングする */
    margin-bottom: 10px;
}





/* ====================================================
   06. コンテンツ共通
   見出し / 段落 / 表 / ボタンなど
==================================================== */
/* 6-1. 見出し */
.regist_d01 {
    font-size: 105%
}

.regist_d01 .inner {
    margin: 0 15px;
}

.regist_d01 .inner:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: .1em;
    line-height: 0
}

.regist_d01 h2 {
    border: 1px solid #1f706c;
    background-color: #257b77;
    color: #FFFFFF;
    line-height: 1.1;
    font-size: 105%;
    padding: 8px 0px 8px 27px;
    margin: 0 0 20px 0;
}

.regist_d01 h3 {
    border: 1px solid #9bd2cf;
    background: #b6dedc;
    color: #333333;
    padding: 8px 0 8px 8px;
    line-height: 1.1;
    margin: 0 0 10px 0
}

/* 共通の“帯見出し”デザインをクラスに寄せる */
.regist_d01 .heading-lg {
    border: 1px solid #9bd2cf;
    background: #b6dedc;
    color: #333333;
    padding: 8px 0 8px 8px;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

/* h1 ならちょい大きめ、h3 は少し小さめ…なども分けられる */
.regist_d01 h1.heading-lg {
    font-size: 20px;
}

/* regist_d01 内で少し大きめの見出し */
.regist_d01 h3.heading-lg {
    font-size: 18px;
}


.regist_d01 h4 {
    margin: 0 0 5px 0;
    font-size: 125%
}

.regist_d01 p {
    margin: 0 0 15px 0
}

.regist_d01 p.comp {
    width: 550px;
    margin: 40px auto 20px auto;
}

.regist_d01 table.table01 th {
    width: 270px
}

.regist_d01 table.table01 td {
    padding: 7px 10px 2px 10px;
    vertical-align: top
}

.regist_d01 table.conf td {
    vertical-align: middle
}

.regist_d01 table.table01 td p small {
    font-size: 11px;
    font-size: 80%;
}

.regist_d01 table.table01 td p,
.regist_d01 table.table01 td ul {
    padding: 0;
    margin: 0 0 4px 0;
    font-size: 12px;
    font-size: 85%;
    list-style-type: none
}

.regist_d01 table.table01 th ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}


.regist_d01 table.table01 td p.mobileAddress:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: .1em;
    line-height: 0
}

.regist_d01 table.table01 td p.id {
    margin-top: 3px
}

.regist_d01 table.table01 td p.mobileAddress input {
    margin: 0 5px 0 0
}

.regist_d01 table.table01 td span.txt {
    display: inline-block;
}

.regist_d01 table.table01 td ul.list01,
.regist_d01 table.table01 td ul.list02,
.regist_d01 table.table01 td ul.list03 {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.regist_d01 table.table01 td ul.list03 {
    list-style-type: none;
    margin: 4px 0 0 0
}

.regist_d01 ul.list03 {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left
}

.regist_d01 table.table01 td ul.list01:after,
.regist_d01 table.table01 td ul.list02:after,
.regist_d01 table.table01 td ul.list03:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: .1em;
    line-height: 0
}

.regist_d01 table.table01 td ul.list01 li,
.regist_d01 table.table01 td ul.list02 li {
    float: left;
    margin: 0 5px 0 0;
    display: inline
}

.regist_d01 table.table01 td ul.list03 li {
    float: left;
    margin: 0 10px 0 0
}

.regist_d01 table.table01 td ul.list01 li input {
    margin: 0 0 0 5px
}

.regist_d01 table.table01 td ul.list02 li input {
    margin: 0 5px 0 0
}

.regist_d01 table.table01 td ul li.btnA {
    margin: 1px 0 0 0
}

.regist_d01 table.table01 td p input.text {
    height: 15px;
    line-height: 16px
}

.regist_d01 table.table01 td p .type01 {
    width: 400px
}

.regist_d01 table.table01 td p .type02 {
    width: 250px;
    float: left
}

.regist_d01 table.table01 td p .type03 {
    width: 150px
}


.regist_d01 .rule {
    max-width: 700px;
    margin: 0 auto 30px auto
}

.regist_d01 .rule textarea {
    width: 100%;
    height: 170px;
    margin: 0 0 7px 0
}

.regist_d01 .rule label {
    font-size: 12px;
    font-size: 85%;
    display: block
}

.regist_d01 .btn {
    margin: 0 0 40px 0
}

.regist_d01 .btn:after,
.regist_d01 .btn ul:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: .1em;
    line-height: 0
}

.regist_d01 .btn ul {
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.regist_d01 .btn ul li {
    margin: 0 5px
}

.regist_d01 .calendarIcon {
    cursor: pointer
}

.regist_d01 table.table01 th.thwidth {
    text-align: left;
    width: 80px
}

.regist_d01 table.table01 td.tdwidth {
    padding: 7px 10px 2px 10px;
    width: 120px;
    background: #e6e6e6;
    border-right: 1px solid #ccc;
    vertical-align: middle
}

.regist_d01 table.table01 td.tdtable {
    padding: 0px;
    vertical-align: top
}

.regist_d01 table.table01 td ul.list03 li.apeak {
    float: none;
    margin: 8px 10px 8px 0
}

.regist_d01 table.table01 th.width180px {
    text-align: left;
    width: 180px
}

/* 6-2. 表（table01〜03） */
/* ----------------------------------------------------
	テーブル
---------------------------------------------------- */
/* テーブル１ */
table.table01 {
    border-top: 1px solid #000;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0 0 35px 0
}

table.table01 th {
    background: #F4F4F4;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #000;
    width: 180px;
    padding: 10px;
    font-weight: normal;
    text-align: left
}

table.table01 th small {
    line-height: 1.3;
    display: block;
    margin: 7px 0 0 0
}

table.table01 th.last {
    border-right: none
}

table.table01 td {
    background: #FFF;
    border-bottom: 1px solid #000;
    padding: 10px
}

table.table01 td.alignMiddle {
    vertical-align: middle !important;
    text-align: center
}

table.table01 td.borderRight {
    border-right: 1px solid #CCC;
}

/* テーブル２ */
table.table02 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 3px 0 25px 0
}


table.table02 th {
    color: #FFF;
    border-right: 1px solid #FFF;
    text-align: center;
    vertical-align: middle;
    padding: 3px 10px;
    font-weight: normal;
    text-align: left
}

table.table02 th.last {
    border-right: none
}

table.table02 td {
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #333;
    background: #FFF;
    text-align: center;
    vertical-align: middle;
    padding: 10px
}

table.table02 td.alignLeft {
    text-align: left
}

table.table02 td.last {
    border-right: none
}

table.table02 td.photo {
    padding: 20px 10px
}

table.table02 td.itemInfo {
    text-align: left
}

table.table02 td.payment {
    background: #e6e6e6
}

/* テーブル３ */
table.table03 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 3px 0 25px 0
}

table.table03 th {
    background: #F4F4F4;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #000;
    text-align: left;
    padding: 8px 10px;
    font-weight: normal
}

table.table03 th.last {
    border-right: none
}

table.table03 td {
    background: #FFF;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #333;
    vertical-align: middle;
    padding: 8px 10px
}


table.table03 td.last {
    border-right: none
}

table.table03 th.alignCenter,
table.table03 td.alignCenter {
    text-align: center
}

table.table03 th.select {
    width: 30px
}

/* 6-3. ボタン系 */

/* 6-4. お問い合わせバナー */
.contact-banner {
    width: 770px;           /* 周りに合わせて固定幅 */
    margin: 0 auto 20px;    /* 中央寄せ＋下マージン */
}

.contact-banner__link {
    display: inline-block;
    color: #000;            /* お好みで。グローバルaの青を消す */
}

.contact-banner__image {
    display: block;
    max-width: 100%;
    height: auto;
}

.contact-banner__text {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

/* 6-x. サイドバー共通ボックス */
.sidebar-block {
    margin-bottom: 20px;
    font-size: 12px;
}

/* タイトル部分を“色ベタ塗りバー”にする */
.sidebar-block__title {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background-color: #257b77;   /* タイトルの塗りつぶし色 */
    border: 1px solid #1f706c;   /* もともとの regist_d01 h2 と合わせた枠線 */
    padding: 6px 8px;
    margin: 0;                   /* 下のボディとピッタリくっつける */
}

/* ボディは下側の枠線＆白背景 */
.sidebar-block__body {
    border: 1px solid #cccccc;
    border-top: none;            /* タイトルと二重線にならないように */
    padding: 10px;
    background: #ffffff;
}


/* 対応材料用の細かいスタイル */
.sidebar-materials__section {
    font-weight: bold;
    margin: 6px 0 2px;
}

.sidebar-materials__list {
    list-style: none;
    margin: 0 0 4px 0;
    padding: 0;
}

.sidebar-materials__list li {
    line-height: 1.5;
}

/* ====================================================
   07. ページ別スタイル
   7-0. HOME(トップページ)
   7-1. 会社概要
   7-2. 事業内容
   7-3. 設備紹介 … など
==================================================== */

/* ====================================================
   07-0. トップページ(index.html)
==================================================== */
.pics {
    margin: 0 auto 20px;
    /* ← ここで下に20pxの余白をつける */
}
/* ====================================================
   07-0. HOME（トップページ）
   トップのバナー横並びレイアウト
==================================================== */
.top-banners-row {
    display: flex;
    flex-wrap: wrap;  /* 幅が足りないときは折り返し */
    gap: 10px;          /* バナー間の余白 */
    margin-bottom: 20px;
}

.top-banners-row .banner-item {
    flex: 1 1 0;
    text-align: left;
    font-size: 11.5px;
    line-height: 1.4;
}

.top-banners-row .banner-item img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ====================================================
   07-0. HOME（トップページ）
   導入事例レイアウト
==================================================== */
.case-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* 左カラム：画像を縦に3枚並べる */
.case-section .case-images {
    flex: 0 0 260px;      /* 左カラムの幅 */
    display: flex;        /* ここを flex にする */
    flex-direction: column; /* 縦並び */
    gap: 10px;
}

.case-section .case-images img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 右カラム：テキスト */
.case-section .case-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

/* 導入事例テキスト */
.case-text {
  font-size: 14px;
  line-height: 1.8;
}

.case-text p {
  margin: 0 0 8px;
}

.case-text__title {
  font-size: 16px;
  margin-bottom: 12px;
}

.case-text__name {
  font-size: 22px;
  color: #ff0000;
  font-weight: bold;
}

.case-text__series {
  font-size: 18px;
  font-weight: bold;
}

.case-text__link {
  margin-top: 12px;
  font-size: 14px;
}



.regist_d01 .intro-text {
    margin-bottom: 16px; /* 導入文の下の余白。好みで調整 */
    font-size: 95%;      /* 少しだけ小さくしたいなら */
}



/* ====================================================
   07-0. HOME（トップページ）
   流動解析レイアウト
==================================================== */

/* 流動解析ブロック：画像＋テキストの2カラム */
.simulation-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.simulation-section .simulation-image {
    flex: 0 0 260px; /* 左カラムの幅（元の画像260pxに合わせている） */
}

.simulation-section .simulation-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.simulation-section .simulation-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.simulation-text__body {
  margin: 0 0 12px;
}

.simulation-text__link {
  text-align: right;
}

/* ====================================================
   07-0. HOME（トップページ）
   会社案内
==================================================== */

.about-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 770px;
}

.about-block__image {
    flex: 0 0 250px;
}

.about-block__image img {
    width: 260px;       /* 横幅固定 */
    height: auto;       /* 縦は自動 → 比率崩さない */
    display: block;
    object-fit: contain;
    /* 写真が縦に伸びて見える場合は、さらに上限をかける */
    max-height: 160px;  /* 必要に応じて調整 */
}

.about-block__text {
    flex: 1;
    font-size: 14px;
}

.about-block__lead {
    font-size: 14px;
    margin-bottom: 8px;
}

.about-block__body {
    font-size: 11px;   /* 好きなサイズに調整してOK */
    line-height: 1.6;
}

/* 「会社案内はこちら」リンク */
.about-block__link {
    text-align: right;
    margin-top: 16px;
    margin-bottom: 16px;
}



/* ====================================================
   07-1. 会社概要ページ(company.html)
==================================================== */
.greeting {
  display: flex;
  max-width: 745px;
  margin: 0 auto 20px;
  gap: 10px;
}

.greeting__photo {
  flex: 0 0 240px;  /* もとの241pxくらい */
}

.greeting__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.greeting__text {
  flex: 1;
  text-align: left;
}


/* ================================
   パンくずリスト
================================ */
.breadcrumb {
  font-size: 12px;
  margin: 10px 0 10px 0;
}

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__item {
  color: #333;
}

/* セパレータ（HOME » 会社概要 の「»」） */
.breadcrumb__item + .breadcrumb__item::before {
  content: "»";
  margin: 0 4px;
}

/* リンク部分 */
.breadcrumb a {
  color: #333;
  text-decoration: underline;
}

.breadcrumb a:hover {
  text-decoration: none;
}

/* 現在ページ */
.breadcrumb__item--current {
  /* 太字にしたければコメント外す */
  /* font-weight: bold; */
}
/* ====================================================
   07-2. 事業内容ページ
==================================================== */

/* ====================================================
   07-X. お問い合わせページ(contact.html)
==================================================== */
/* お問い合わせフォーム */
.contact-form {
    max-width: 745px;
    margin: 0 auto 40px;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.contact-table th,
.contact-table td {
    border: 1px solid #cccccc;
    padding: 8px 10px;
    vertical-align: middle;
}

.contact-table th {
    width: 200px;              /* 左カラム幅（必要なら調整） */
    background-color: #8fc4ff; /* 左の水色っぽい背景 */
    text-align: left;
    font-weight: normal;
    white-space: nowrap;
}

.contact-table td {
    background-color: #ffffff;
}

/* テキストボックス／テキストエリア */
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table input[type="tel"],
.contact-table textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    border: 1px solid #999;
}

/* ファイル選択はブラウザ標準のまま */
.contact-table input[type="file"] {
    width: 100%;
}

/* 必須マーク */
.required {
    color: #ff0000;
    margin-left: 4px;
    white-space: nowrap;   /* ← （※）の途中で改行させない */
}

/* 注意書き */
.contact-note {
    margin: 16px 0;
}

/* 送信ボタン／リセットボタン */
.contact-form__actions {
    text-align: center;
    margin-top: 10px;
}

.contact-button {
    min-width: 120px;
    padding: 8px 16px;
    margin: 0 8px;
    border: 1px solid #777;
    background-color: #ffffff;
    cursor: pointer;
}

.contact-button--primary {
    background-color: #f5f5f5;
}

.contact-button:hover {
    opacity: 0.9;
}



/* ====================================================
   08. フッター
==================================================== */
.footer_d01 {
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
    padding-top: 30px
}


.footer_d01 p.copyright {
    text-align: center;
    padding: 7px 0 10px 0;
    color: #1b1b1b;
}

/* pageTop */
p.pageTop {
    text-align: right;
    padding: 10px 0 5px 0;
    margin: 0 auto
}

/* ====================================================
   09. ユーティリティ・細かい調整
   （.mt10, .mb20, .text-center など使い回し用）
==================================================== */

/* ====================================================
   10. レスポンシブ（必要なら）
==================================================== */
@media (max-width: 768px) {

  /* コンテナ系は横幅100% */
  #container,
  #page_block1,
  #page_block2,
  #page_block3,
  #page_block5 {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* 2カラム解除 → 縦並びに */
  #page_block2,
  #page_block3 {
    float: none;
    margin: 0;
  }

  /* ヘッダー：ロゴとキャッチを縦並びに */
  .header_d01 {
    flex-direction: column;
    align-items: flex-start;
    background-position: left top;
  }

  .header_catchphrase {
    text-align: left;
    padding: 8px 10px 10px;
  }

  .header_d01 h2 {
    font-size: 11px;
  }

  /* 左メニューは幅100%でOK */
  .gMenu_2 .gnv_d02 {
    width: 100%;
  }

  /* メイン画像は横幅100%に */
  .hero-image {
    width: 100%;
    height: auto;
  }

  /* 導入事例・流動解析・About は全部縦並びに */
  .case-section,
  .simulation-section {
    flex-direction: column;
  }

  .about-block {
    flex-direction: column;
    width: 100%;    
  }

  .case-section .case-images,
  .simulation-section .simulation-image,
  .about-block__image {
    flex: none;
    width: 100%;
  }

  .case-section .case-images img,
  .simulation-section .simulation-image img {
    width: 100%;
    height: auto;
  }

  .about-block__image img{
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
  }


  /* お問い合わせバナーも幅100%に */
  .contact-banner {
    width: 100%;
    margin: 0 auto 20px;
  }

    /* サイドバーをスマホで非表示にする例 */
  .sidebar-block {
    display: none;
  }

    /* TOPバナー：スマホでは2列＆中央寄せ */
  .top-banners-row {
    flex-wrap: wrap;
    justify-content: center;/* 並び全体も中央寄せ */
    gap: 8px;
  }

  .top-banners-row .banner-item {
    flex: 0 0 calc(50% - 8px); /* 50% から gap 分ちょい引く */
    box-sizing: border-box;
    text-align: center; /* 中央寄せ */
    font-size: 12px;
  }

  .top-banners-row .banner-item a {
    display: block;
    text-align: center;  /* ▲◯◯の製品紹介 も中央寄せ */
  }

    /* スマホでは事業内容バナーを非表示 */
  .top-banners-row--business {
    display: none;
  }
  /* 画像をitem幅にフィットさせる */
  .top-banners-row .banner-item img {
    width: 100%;
    height: auto;
  }

  .greeting {
    flex-direction: column;
  }

  .greeting__photo,
  .greeting__text {
    flex: none;
    width: 100%;
  }

}