@charset "UTF-8";
/* Scss Document */
/* ===============================================
   変数・基本設定
=============================================== */
/* Scss Document */
@font-face {
  font-family: "NoteSans Gothic";
  src: url("../font/NoteSansJp-variablefont_wght.ttf") format("truetype");
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero {
  background: linear-gradient(to right, #1c8BC1 0%, #e9eef6 20%, #3E63A2 100%);
  background-size: 200% 200%;
  animation: gradientMove 1s ease-in-out infinite;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

/* ===============================================
   全体・共通設定
=============================================== */
body, header, foooter, p, div, h1, h2, h3, ul, li, dt, dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #202020;
  font-family: "NoteSans", sans-serif;
  font-size: 1rem;
}

ul, li {
  list-style: none;
}

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

p {
  margin-bottom: 10px;
  line-height: 1.7;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #202020;
}

a:hover {
  color: #006666;
  text-decoration: underline;
}

a:hover img {
  opacity: 0.5;
}

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  word-break: break-all;
  font-size: 0.9rem;
}

/* 共通クラス
----------------------------------------------- */
.all {
  max-width: 100%;
  height: auto;
}

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

.pc {
  display: block;
}

.mb {
  display: none;
}

.small {
  font-size: 0.9rem;
  line-height: 140%;
}

.regular {
  font-size: 1rem;
  line-height: 1.6;
}

.normal {
  font-size: 1.1rem;
  line-height: 1.6;
}

.bigC {
  margin-top: 60px;
  font-size: 1.1rem;
  line-height: 3.6rem;
}

.ls2 {
  letter-spacing: 0.2rem;
}

.bold {
  font-weight: bold;
}

.lBlue {
  color: #1c8BC1;
}

.kon {
  color: #076DAA;
}

.yellow {
  color: #F0B500;
}

.white {
  color: #fff;
}

.red {
  color: red;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.textBox {
  margin: 0 auto;
  width: 80%;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

a.pdf::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
  content: "";
  color: red;
  font-size: 1.8rem;
  padding-left: 5px;
}

.h300 {
  margin: 100px auto;
  text-align: center;
  font-size: 1.2rem;
}

/* レイアウト・Float
----------------------------------------------- */
.migi {
  float: right;
  margin-bottom: 20px;
}
.migi img {
  margin-left: 10px;
  margin-right: 10px;
}

.alignright {
  float: right;
}

.aligncenter {
  text-align: center;
}
.aligncenter .img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FlexBox
----------------------------------------------- */
.flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexBox figure {
  width: 50%;
}
.flexBox .item {
  width: 49%;
  padding: 40px;
  text-align: left;
  font-size: 1.2rem;
}
.flexBox .item ul {
  padding-left: 20px;
}
.flexBox .item ul li {
  margin-bottom: 10px;
}
.flexBox .item2 {
  margin-top: 30px;
  margin-left: 20px;
}
.flexBox .item-bottom {
  align-self: flex-end;
}

.flexBoxC {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* 上揃え */
  gap: 60px;
  /* アイテム間の間隔 */
  flex-wrap: wrap;
  /* はみ出した場合に折り返す */
  margin: 20px 0;
  /* 上下の余白 */
}
.flexBoxC figure {
  text-align: center;
}

.flexBoxL {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.flexBoxL figure figcaption {
  font-size: 0.9rem;
}

.flexBoxSys {
  display: flex;
  justify-content: space-between;
}
.flexBoxSys figure figcaption {
  font-size: 0.9rem;
  text-align: center;
}
.flexBoxSys p {
  margin: 10px;
  font-size: 1.1rem;
  width: 80%;
}

/* ===============================================
   ヘッダー
=============================================== */
header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #076DAA;
  background: #fff;
  position: fixed;
  z-index: 10;
}

#headerArea {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 180px;
}

/* グローバルナビゲーション
----------------------------------------------- */
#gNavi {
  flex-grow: 1;
}
#gNavi ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: space-around;
}
#gNavi ul li {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}
#gNavi ul li.toi a {
  background: #076DAA;
  width: 120px;
  font-size: 0.9em;
  text-align: center;
  padding: 6px 10px;
  border-radius: 10px;
  margin-top: -8px;
  color: #fff;
}
#gNavi ul li.toi a:hover {
  background: #66B9E7;
  color: #fff;
}
#gNavi ul li.toi a i {
  font-size: 1.2em;
}
#gNavi ul li a {
  display: block;
  padding: 6px 2px;
  color: #202020;
  border-bottom: 2px solid #fff;
}
#gNavi ul li a:hover {
  border-bottom: 2px solid #66B9E7;
  text-decoration: none;
  color: #076DAA;
}

/* モバイル用ナビゲーション
----------------------------------------------- */
#naviB {
  display: none;
}
#naviB .menu-btn {
  display: none;
}
#naviB .menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 22px;
}
#naviB .navicon {
  display: block;
  background: #3E63A2;
  width: 100%;
  height: 3px;
  position: absolute;
  transition: 0.25s ease-in-out;
}
#naviB .navicon:before, #naviB .navicon:after {
  content: "";
  display: block;
  background: #3E63A2;
  width: 100%;
  height: 3px;
  position: absolute;
  transition: 0.25s ease-in-out;
}
#naviB .navicon:before {
  top: -8px;
}
#naviB .navicon:after {
  top: 8px;
}
#naviB .menu {
  list-style: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #3E63A2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#naviB .menu li a {
  display: block;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ededed;
  color: #fff;
}
#naviB .menu li a:hover {
  background-color: #66B9E7;
  text-decoration: none;
}
#naviB .menu-btn:checked ~ .menu {
  max-height: 500px;
}
#naviB .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
#naviB .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(45deg);
  top: 0;
}
#naviB .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(-45deg);
  top: 0;
}

/* ===============================================
   各ページタイトルエリア
=============================================== */
h1 {
  margin-top: 220px;
  margin-left: 150px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
}
h1 .sub-title {
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.5;
  display: inline-block;
  padding-top: 10px;
}

.topCatch {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
}

/* パンくずリスト
----------------------------------------------- */
#bread {
  width: 96%;
  text-align: right;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #555;
}
#bread a {
  color: #555;
}

/* ===============================================
   企業情報関連
=============================================== */
/* タイトルエリア
----------------------------------------------- */
#h1AreaCompany {
  width: 100%;
  height: 350px;
  background: url(../images/company/header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

/* 新しいヘッダーレイアウト用のスタイル */
.flex-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.flex-header h1 {
  position: static;
  width: 550px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-header .topCatch {
  flex-grow: 1;
  margin: 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* コンテンツエリア
----------------------------------------------- */
.companyArea {
  background: url(../images/company/company_bk.jpg) left top no-repeat;
  width: 100%;
}

.messegeArea {
  background: url(../images/company/header_cheer.jpg) left top no-repeat;
  width: 100%;
}

#breadCompany {
  height: 214px;
}

.comContentsArea {
  width: 96%;
  max-width: 959px;
  margin: 40px auto;
  margin-bottom: 100px;
}

.comBox1 {
  background-image: linear-gradient(to right, #6EA0B9, #E3F5FD 70%, #66B9E7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}

.comBox2 {
  background-image: linear-gradient(to right, #66B9E7, #E3F5FD 70%, #66B9E7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}

.comBox3 {
  background-image: linear-gradient(to right, #6285B5, #E3F5FD 70%, #66B9E7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}

.com {
  width: 330px;
}
.com h2 {
  font-size: 2.2rem;
  font-weight: normal;
  color: #fff;
  padding: 20px;
}
.com h2 span {
  font-size: 1.3rem;
}
.com p {
  color: #fff;
  padding-left: 20px;
}

h3.comh3 {
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 2px solid #076DAA;
  padding: 0;
  margin: 60px 0 20px 0;
}

.flexBoxCom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0;
  /* 上下の余白 */
}
.flexBoxCom h2 {
  width: 310px;
  /* 固定幅を指定 */
  margin: 40px 0 0 40px;
  font-family: "NoteSans", sans-serif;
  text-align: left;
  color: #fff;
  font-weight: 300;
  font-size: 2.5rem;
}

/* テーブル
----------------------------------------------- */
.overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin-top: 60px;
}

.overview-table td {
  border-bottom: 1px solid #999;
  padding: 20px;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin-top: 20px;
}

.history-table td {
  padding: 15px;
  vertical-align: top;
  line-height: 2;
}

.required {
  display: inline-block;
  padding: 3px 6px;
  background: #555;
  color: #fff;
  font-size: 12px;
  line-height: 100%;
  margin: 0 20px;
  margin-top: -10px;
}

/* フォーム部品
----------------------------------------------- */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  max-width: 100%;
  box-sizing: border-box;
}

.contact-table {
  width: 80%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1.2rem;
  margin-top: 60px;
  table-layout: fixed;
}
.contact-table td {
  border-bottom: 1px solid #999;
  padding: 20px;
}
.contact-table td:first-child {
  border-right: 1px solid #999;
}

.contact-table .required {
  float: right;
  margin-top: 5px;
}

.recruit-table {
  width: 80%;
  border-collapse: collapse;
  margin: 0 auto;
}
.recruit-table th, .recruit-table td {
  border: 1px solid #ccc;
  padding: 15px;
  vertical-align: middle;
}
.recruit-table th {
  background-color: #f0f0f0;
  font-weight: normal;
  text-align: left;
  width: 20%;
}

.recruit-table .required {
  float: right;
  margin-top: 5px;
}

.group-list {
  list-style: none;
  padding-top: 20px;
  padding-left: 0;
}
.group-list li {
  position: relative;
  font-size: 1.2rem;
  padding-left: 2em;
  margin-bottom: 20px;
}
.group-list li::before {
  padding-right: 10px;
  font-size: 1.2em;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "";
  text-decoration: none;
}

.office-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.office-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* 背景エリア
----------------------------------------------- */
.grayArea {
  background: #ededed;
  width: 100%;
  padding-top: 50px;
}
.grayArea h2 {
  color: #999;
}

.wideArea {
  background: #fff;
  width: 100%;
  padding: 0;
}
.wideArea h2 {
  color: #999;
}

.catalogArea {
  background: #fff;
  width: 1159px;
  margin: 0 auto;
  padding: 50px 0;
}

/* ===============================================
   製品情報関連
=============================================== */
/* タイトルエリア
----------------------------------------------- */
#h1AreaP {
  width: 100%;
  height: 350px;
  background: url(../images/products/header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaFine {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_fine_floor.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaFineX {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_fine_x.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaCreek {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_creek.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaSystem {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_floor_sysem.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaTras {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_Tras.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaWras {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_Wras.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaOras {
  width: 100%;
  height: 350px;
  background: url(../images/products/header_Oras.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

/* コンテンツエリア
----------------------------------------------- */
#contentsArea {
  width: 1160px;
  margin: 0 auto;
  padding-bottom: 60px;
  background: #fff;
}

.contents {
  width: 1160px;
  margin: 20px auto 0 auto;
  padding-bottom: 40px;
}

.catchP {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.catch {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

.tbLine {
  border-top: 1px solid #5D84A6;
  border-bottom: 1px solid #5D84A6;
  padding: 20px 0 20px 0;
  margin: 40px auto;
}

/* H2見出し
----------------------------------------------- */
.h2AreaB {
  width: 100%;
  height: 110px;
  margin-top: -20px;
  background: url(../images/products/h2bldg.png) no-repeat center;
  background-size: cover;
  background-position: center left;
}
.h2AreaB .bldgH2 {
  width: 1160px;
  position: relative;
  margin: 0 auto;
  height: 110px;
  background: url(../images/products/h2_bg.png) no-repeat left;
}
.h2AreaB .bldgH2 h2 {
  position: absolute;
  top: 46px;
  left: 140px;
  font-size: 2rem;
  font-weight: normal;
  text-align: left;
  color: #fff;
}

.h2AreaH {
  width: 100%;
  height: 110px;
  margin-top: -20px;
  background: url(../images/products/h2hous.png) no-repeat center;
  background-size: cover;
  background-position: center left;
}
.h2AreaH .housH2 {
  width: 1160px;
  position: relative;
  margin: 0 auto;
  height: 110px;
  background: url(../images/products/h2_hous.png) no-repeat left;
}
.h2AreaH .housH2 h2 {
  position: absolute;
  top: 42px;
  left: 140px;
  font-size: 2rem;
  font-weight: normal;
  text-align: left;
  color: #fff;
}

/* H3見出し・MOREボタン
----------------------------------------------- */
h3.pBldg {
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 2px solid #1c8BC1;
  padding: 0;
  margin: 60px 0 20px 0;
}

.moreBldg a {
  background-image: linear-gradient(to right, #1c8BC1, #557cbe, #3E63A2);
  display: block;
  width: 280px;
  height: 60px;
  text-align: center;
  padding: 15px;
  margin: 20px auto;
  color: #fff;
  border-radius: 3px;
}

.moreBldg a:hover {
  background-image: linear-gradient(to right, #66B9E7, #92cdee, #1c8BC1);
  color: #fff;
}

h3.pHous {
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 2px solid #F0B500;
  padding: 0;
  margin: 60px 0 20px 0;
  margin-bottom: 30px;
}

.moreHous a {
  background-image: linear-gradient(to right, #F0B500, #bb9789, #A87B69);
  display: block;
  width: 280px;
  height: 60px;
  text-align: center;
  padding: 15px;
  margin: 20px auto;
  color: #fff;
  border-radius: 3px;
}

.moreHous a:hover {
  background-image: linear-gradient(to right, #F0B500, #fbf5d9, #F0B500);
  color: #fff;
}

/* 吹き出し型タブ
----------------------------------------------- */
.speech-bubble-tabs {
  width: 1159px;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 40px auto;
  gap: 0;
}
.speech-bubble-tabs li {
  position: relative;
  flex-grow: 1;
}
.speech-bubble-tabs li a {
  display: block;
  text-align: center;
  padding: 30px;
  background-color: #999;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
.speech-bubble-tabs li a:hover {
  background-color: #66B9E7;
  text-decoration: none;
}
.speech-bubble-tabs li:first-child a {
  border-radius: 6px 0 0 6px;
}
.speech-bubble-tabs li:last-child a {
  border-radius: 0 6px 6px 0;
}
.speech-bubble-tabs li.is-active a {
  background-color: #3E63A2;
}
.speech-bubble-tabs li.is-active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #3E63A2 transparent transparent transparent;
}

/* 詳細ページ
----------------------------------------------- */
.pcontents {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  font-size: 1.4rem;
}

.specArea {
  width: 959px;
  margin: 0 auto 80px auto;
}

h3[id], h4[id] {
  scroll-margin-top: 90px;
}

.anchor-target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

h3.blueLine {
  font-size: 1.6rem;
  font-weight: normal;
  border-left: 8px solid #3E63A2;
  border-bottom: 1px solid #3E63A2;
  padding-left: 10px;
  margin: 40px 0 20px 0;
}

h3.konLine {
  font-size: 1.6rem;
  font-weight: normal;
  border-left: 8px solid #076DAA;
  border-bottom: 1px solid #076DAA;
  padding-left: 10px;
  margin: 40px 0 20px 0;
}

h4.konBase {
  background: #113C79;
  color: #fff;
  margin: 0;
  margin-top: 60px;
  padding: 5px;
  font-size: 1.2rem;
  font-weight: normal;
}

h4.grayLine {
  color: #202020;
  font-weight: normal;
  border-bottom: 1px solid #999;
  margin: 40px 0 10px 0;
  font-size: 1.4rem;
}

h4.blueLine {
  color: #202020;
  font-weight: normal;
  border-bottom: 4px solid #3E63A2;
  margin: 40px 0 10px 0;
  font-size: 1.4rem;
}

.rasText {
  margin: 10px 60px;
}

/*回り込み解除flex*/
.flex-layout {
  display: flex;
  align-items: flex-start;
  /* 上揃え */
  /* 下に余白を追加 */
}

.flex-layout figure {
  margin-right: 20px;
  flex-shrink: 0;
  /* 画像が縮まないようにする */
}

.flex-layout p {
  margin: 0;
  /* rasTextのmarginをリセット */
}

.imgFlex {
  display: flex;
}
.imgFlex img {
  width: 50%;
}

.pcontents figure img {
  max-width: 100%;
  height: auto;
}

/* リスト
----------------------------------------------- */
.normalList {
  margin-left: 40px;
  margin-bottom: 20px;
}
.normalList li {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: -10px;
  padding-bottom: 10px;
}

.littleList li {
  list-style-type: disc;
  list-style-position: inside;
  padding-bottom: 10px;
}

.mapList {
  margin: 20px 10px;
}
.mapList li {
  list-style-type: disc;
  color: #3E63A2;
  list-style-position: inside;
  margin-left: -10px;
  padding-bottom: 10px;
}

.littleList li {
  list-style-type: disc;
  list-style-position: inside;
  padding-bottom: 10px;
}

/* タブ・サブリンク
----------------------------------------------- */
ul.tabLink {
  width: 1160px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #076DAA;
}
ul.tabLink li {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  flex-grow: 1;
  text-align: center;
}
ul.tabLink li:first-child {
  border-left: 2px solid #999;
  border-top-left-radius: 5px;
}
ul.tabLink li:last-child {
  border-right: 2px solid #999;
  border-top-right-radius: 5px;
}
ul.tabLink li a {
  background: #999;
  display: block;
  padding: 15px 0;
  font-size: 1.4rem;
  color: #fff;
}
ul.tabLink li a:hover {
  background-image: linear-gradient(to right, #1c8BC1, #557cbe, #3E63A2);
  color: #fff;
  text-decoration: none;
}

ul.subLink {
  width: auto;
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
ul.subLink li {
  text-align: center;
  font-size: 1.2rem;
  margin-left: 20px;
  color: #202020;
}
ul.subLink li a {
  color: inherit;
}
ul.subLink li a::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "";
  text-decoration: none;
  color: #66B9E7;
}
ul.subLink li a:hover {
  background: #66B9E7;
  color: #fff;
}

ul.sysLink {
  width: auto;
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
ul.sysLink li {
  text-align: center;
  font-size: 1.1rem;
  margin-left: 10px;
  margin-bottom: 10px;
  color: #202020;
  background: #66B9E7;
  padding: 2px 5px;
}
ul.sysLink li a {
  color: inherit;
}
ul.sysLink li a::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "";
  text-decoration: none;
  color: #fff;
}
ul.sysLink li a:hover {
  background: #66B9E7;
  color: #fff;
}

/* テーブル
----------------------------------------------- */
table.specTable {
  width: 80%;
  border-collapse: collapse;
  margin: 10px auto;
  font-size: 1rem;
}
table.specTable caption {
  text-align: center;
}
table.specTable th {
  border: 1px solid #fff;
  padding: 5px;
  text-align: center;
  font-weight: normal;
  background: #66B9E7;
}
table.specTable td {
  border: 1px solid #999;
  padding: 5px;
  text-align: center;
  font-weight: normal;
  background: #E3F5FD;
}

table.specTableSys {
  width: 60%;
  border-collapse: collapse;
  margin: 10px auto;
  font-size: 1rem;
}
table.specTableSys caption {
  text-align: center;
}
table.specTableSys th {
  border: 1px solid #fff;
  padding: 2px;
  text-align: center;
  font-weight: normal;
  background: #66B9E7;
}
table.specTableSys td {
  border: 1px solid #999;
  padding: 2px;
  text-align: center;
  font-weight: normal;
  background: #E3F5FD;
}

table.list-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1rem;
}
table.list-table td, table.list-table th {
  border: 1px solid #999;
  padding: 8px;
  text-align: center;
}
table.list-table th:first-child,
table.list-table td:first-child {
  width: 60%;
}
table.list-table th:not(:first-child),
table.list-table td:not(:first-child) {
  width: 10%;
}
table.list-table tr:nth-child(even) {
  background-color: #ededed;
}
table.list-table caption {
  background: #66B9E7;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 5px;
}

.tokuList {
  margin-left: 20px;
  /* ol全体の左側の余白 */
  padding-left: 20px;
  /* 数字とテキストの間のスペースを確保 */
}

.tokuList li {
  font-size: 1.2rem;
  line-height: 2;
  list-style-type: disc;
  /* 番号付きリスト */
  margin-left: 10px;
  padding-bottom: 5px;
  /* 行間の調整 */
}

.specList {
  margin-left: 20px;
  /* ol全体の左側の余白 */
  padding-left: 20px;
  /* 数字とテキストの間のスペースを確保 */
}

.specList li {
  line-height: 2;
  list-style-type: decimal;
  /* 番号付きリスト */
  margin-left: 10px;
  padding-bottom: 5px;
  /* 行間の調整 */
}

/* 背景エリア
----------------------------------------------- */
#breadBackB {
  background: url(../images/products/bk_breadB.jpg) no-repeat;
  height: 58px;
}

#breadBackH {
  background: url(../images/products/bk_breadH.jpg) no-repeat;
  height: 58px;
}

.seijiArea {
  background: #E3F5FD;
  width: 100%;
}

.yellowArea {
  background: #F9F4E3;
  width: 100%;
}

/* ===============================================
   カタログダウンロード関連
=============================================== */
/* タイトルエリア
----------------------------------------------- */
#h1AreaCatalog {
  width: 100%;
  height: 350px;
  background: url(../images/catalog/header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

/* PDFダウンロードボタン
----------------------------------------------- */
.pdfBox a {
  display: inline-block;
  padding: 5px 30px;
  background: #66B9E7;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.pdfBox a:hover {
  background: #3E63A2;
}
.pdfBox a::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
  content: "";
  color: #fff;
  font-size: 1.6rem;
  padding-left: 30px;
}

/* カタログページテーブル
----------------------------------------------- */
table.catalogTable {
  width: 80%;
  border-collapse: collapse;
  margin: 10px auto;
  font-size: 1rem;
}
table.catalogTable caption {
  text-align: left;
}
table.catalogTable td {
  width: 50%;
  border: 1px solid #999;
  font-size: 1.2rem;
  padding: 5px;
  text-align: center;
  font-weight: normal;
  background: #fff;
}

/* カタログバナー
----------------------------------------------- */
#catalog {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: url(../images/products/banner_catalog.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 164px;
  margin: 50px 0;
  text-decoration: none;
}
#catalog .catalogText {
  background-color: #3E63A2;
  color: #fff;
  padding: 15px 30px;
  border: 2px solid #1c8BC1;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 6%;
  transition: background-color 0.3s;
}
#catalog:hover .catalogText {
  background-color: #66B9E7;
}

/* CADデータ表示・非表示
----------------------------------------------- */
/* img-no-shrinkクラス追加 */
.img-no-shrink {
  max-width: none;
  /* 幅の制限を解除 */
  flex-shrink: 0;
  /* Flexboxで縮小しないようにする */
}

/* --- openArea表示・非表示 --- */
/* チェックボックス自体は非表示にする */
.open-check {
  display: none;
}

/* openAreaを初期状態で非表示にする */
.openArea {
  display: none;
}

/* チェックボックスがチェックされたら、隣接するopenAreaを表示する */
.open-check:checked + .open-button + .openArea {
  display: block;
}

/* ボタンの見た目を整える（任意） */
.open-button {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  padding: 20px;
  background-color: #ededed;
  color: #202020;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 5px;
  text-align: right;
  margin-top: 20px;
}

/* ボタンのテキストを変更する */
.open-button span:after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: " ";
  /* plus */
}

.open-check:checked + .open-button span {
  display: none;
  /* 「開く」を隠す */
}

.open-check:checked + .open-button:after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "閉じる ";
  /* minus */
}

/* ===============================================
   その他のページ
=============================================== */
/* タイトルエリア
----------------------------------------------- */
#h1AreaNews {
  position: relative;
  width: 100%;
  height: 350px;
  text-align: center;
  background: url(../images/others/header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}
#h1AreaNews h1 {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}

#h1AreaContact {
  width: 100%;
  height: 350px;
  background: url(../images/others/contact_header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

#h1AreaRecruit {
  width: 100%;
  height: 350px;
  text-align: center;
  background: url(../images/others/recruit_header.jpg) no-repeat center;
  background-size: cover;
  background-position: center left;
}

/*お問い合わせフォーム等*/
.buttonArea {
  margin: 0 auto;
  text-align: center;
  background: #3E63A2;
  width: 80%;
  padding: 30px 0;
  margin-bottom: 40px;
}

.blueBox {
  display: inline-block;
  background: #ededed;
  color: #202020;
  padding: 10px 30px;
  border-radius: 30px;
}

.blueBox:hover {
  background: #66B9E7;
  color: #fff;
  text-decoration: underline;
}

/* ===============================================
   フッター
=============================================== */
footer {
  width: 100%;
  background-image: linear-gradient(to right, #5D84A6 50%, #66B9E7 50%);
}
footer #footerArea {
  text-align: center;
  margin: 0 auto;
  padding-top: 20px;
  color: #fff;
}
footer #footerArea .flexBoxF {
  width: 1160px;
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
footer #footerArea .flexBoxF .item p {
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
footer #footerArea .flexBoxF .item a:hover {
  color: #fff;
}
footer #footerArea .flexBoxF .item p.grayBox {
  display: inline-block;
  width: 310px;
  background: #ededed;
  color: #000;
  padding: 10px;
  border-radius: 30px;
  margin-top: 10px;
}
footer #footerArea .flexBoxF .item p.grayBox:hover {
  background: #076DAA;
  color: #fff;
  text-decoration: underline;
}
footer #addressArea {
  width: 100%;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  background-color: #525051;
  padding: 20px;
  box-sizing: border-box;
}
footer #addressArea ul.fList {
  width: 1159px;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
}
footer #addressArea ul.fList li {
  margin: 0 10px;
  font-size: 1rem;
}
footer #addressArea ul.fList li a {
  color: #fff;
}
footer #addressArea ul.fList li a:hover {
  color: #E3F5FD;
  text-decoration: underline;
}
footer #addressArea address {
  padding: 10px;
  font-size: 0.9rem;
  height: 30px;
  font-style: normal;
}

/* ===============================================
   ページトップボタン
=============================================== */
a.pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  padding: 20px 22px;
  border-radius: 35px;
  line-height: 1;
  background: #3E63A2;
  color: #fff;
  z-index: 100;
  text-align: center;
  font-size: 2rem;
  scroll-behavior: smooth;
}

a.pagetop::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "";
  text-decoration: none;
}

a.pagetop:hover {
  text-decoration: none;
  background: #66B9E7;
  color: #fff;
}

/* ===============================================
  モアボタン
=============================================== */
.moreArea {
  text-align: right;
  margin-top: 10px;
}

.more {
  float: right;
  margin-top: 5px;
  font-size: 0.9rem;
}
.more a {
  display: inline-block;
  padding: 5px;
  background: #66B9E7;
  color: #fff;
  border-radius: 5px;
}

/* ===============================================
   レスポンシブ設定
=============================================== */
/* タブレット幅（1159px以下）
----------------------------------------------- */
@media screen and (max-width: 1159px) {
  /* 共通
  --------------------------*/
  .pc {
    display: none;
  }

  .mb {
    display: block;
  }

  #bread {
    display: none;
  }

  /* ヘッダー
  --------------------------*/
  #headerArea {
    padding: 0;
    gap: 0;
  }

  #logo {
    padding-left: 20px;
  }

  #gNavi {
    display: none;
  }

  #naviB {
    display: block;
    width: auto;
    margin-right: 20px;
  }

  .companyArea {
    background: none;
    width: 100%;
  }

  /* コンテンツ
  --------------------------*/
  #contentsArea {
    width: 96%;
    padding-bottom: 20px;
  }

  .contents {
    width: 100%;
    padding-bottom: 20px;
  }
  .contents .catchP {
    font-size: 1.1rem;
  }
  .contents h3.pBldg {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .contents h3.pHous {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .catch {
    font-size: 1.1rem;
  }

  .h2AreaB {
    width: 100%;
    height: 80px;
    margin-top: 0;
  }
  .h2AreaB .bldgH2 {
    width: 100%;
    height: 80px;
    background: url(../images/products/h2_bg_mb.png) no-repeat left;
  }
  .h2AreaB .bldgH2 h2 {
    position: absolute;
    top: 36px;
    left: 100px;
    font-size: 1.4rem;
    text-align: left;
    color: #fff;
  }

  .h2AreaH {
    width: 100%;
    height: 80px;
    margin-top: 0;
  }
  .h2AreaH .housH2 {
    width: 100%;
    height: 80px;
    background: url(../images/products/h2_hous_mb.png) no-repeat left;
  }
  .h2AreaH .housH2 h2 {
    position: absolute;
    top: 32px;
    left: 100px;
    font-size: 1.4rem;
    text-align: left;
    color: #fff;
  }

  /* 企業情報関連*/
  #breadCompany {
    height: 0;
  }

  .messegeArea {
    background: none;
    width: 100%;
  }

  .comContentsArea {
    width: 96%;
    margin: 40px auto;
    margin-bottom: 100px;
  }

  .flexBoxCom {
    flex-direction: column;
  }
  .flexBoxCom h2 {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 2rem;
    color: #999;
  }

  .comBox1 {
    background-image: linear-gradient(to right, #6EA0B9, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
  }

  .comBox2 {
    background-image: linear-gradient(to right, #66B9E7, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
  }

  .comBox3 {
    background-image: linear-gradient(to right, #6285B5, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
  }

  .com {
    width: 300px;
  }
  .com h2 {
    font-size: 1.8rem;
    padding: 10px;
  }
  .com h2 span {
    font-size: 1.2rem;
  }
  .com p {
    color: #fff;
    padding-left: 20px;
  }

  /* 製品サブページ--------------------------*/
  .speech-bubble-tabs {
    width: 96%;
  }
  .speech-bubble-tabs li a {
    padding: 20px 10px;
    font-size: 1.2rem;
  }

  ul.tabLink {
    width: 100%;
    margin-top: 20px;
  }
  ul.tabLink li a {
    font-size: 1.1rem;
  }

  .pcontents {
    width: 96%;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 1.2rem;
  }
  .pcontents .specArea {
    width: 100%;
    margin: 0 auto 40px auto;
  }
  .pcontents .normalList {
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .pubFlex {
    flex-direction: column;
    margin-top: 10px;
  }
  .pubFlex h3.pub {
    flex-basis: 100%;
  }
  .pubFlex ul.pubList {
    margin: 0;
    flex-basis: 100%;
  }

  .back a {
    font-size: 0.9rem;
    padding: 5px;
  }

  /* ページトップ
  --------------------------*/
  a.pagetop {
    position: fixed;
    bottom: 30px;
    padding: 10px 12px;
    border-radius: 30px;
    font-size: 1.6rem;
    scroll-behavior: smooth;
  }

  /*採用フォームボタン*/
  .formBox {
    display: block;
    width: 80%;
    height: 120px;
    margin: 0 auto;
    background: #076DAA;
    padding: 20px;
  }
  .formBox a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 5px;
  }

  /* フッター
  --------------------------*/
  footer #footerArea {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
    color: #fff;
  }
  footer #footerArea .flexBoxF {
    width: 100%;
    margin: 40px auto;
  }
  footer #footerArea .flexBoxF .item p {
    font-size: 1.3rem;
    color: #fff;
  }
  footer #addressArea {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  footer #addressArea ul.fList {
    width: 100%;
  }
  footer #addressArea ul.fList li {
    font-size: 0.9rem;
  }
  footer #addressArea address {
    padding: 10px;
    font-size: 0.9rem;
    height: 30px;
    text-decoration: none;
  }
}
/* モバイル幅（959px以下）
----------------------------------------------- */
@media screen and (max-width: 959px) {
  .alignleft img {
    width: 100%;
  }

  .alignright img {
    width: 100%;
  }

  .aligncenter img {
    width: 100%;
  }

  .img {
    display: inline-block;
  }

  .flexBox {
    flex-direction: column;
  }
  .flexBox figure img {
    width: 100%;
  }
  .flexBox .item {
    width: 50%;
    padding: 10px;
    text-align: left;
    font-size: 1rem;
  }

  .flexBoxSys {
    flex-direction: column;
    align-items: center;
  }

  .flexBoxL {
    flex-direction: column;
    align-items: center;
  }

  .contents {
    width: 100%;
    padding-bottom: 20px;
  }
  .contents h3.pBldg {
    font-size: 1.4rem;
  }

  /* タイトル
  --------------------------*/
  #h1AreaP,
#h1AreaFine,
#h1AreaFineX,
#h1AreaCreek,
#h1AreaSystem,
#h1AreaTras,
#h1AreaWras,
#h1AreaOras,
#h1AreaNews,
#h1AreaContact,
#h1AreaRecruit,
#h1AreaCompany,
#h1AreaCatalog {
    height: 175px;
    padding-top: 0;
    /* padding-topをリセット */
    display: block;
    /* flexからblockに変更 */
    position: relative;
    /* h1の絶対位置の基準 */
  }

  #h1AreaP {
    background: url(../images/products/header_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaFine {
    background: url(../images/products/header_fine_floor_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaFineX {
    background: url(../images/products/header_fine_x_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaCreek {
    background: url(../images/products/header_creek_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaSystem {
    background: url(../images/products/header_floor_sysem_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaTras {
    background: url(../images/products/header_Tras_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaWras {
    background: url(../images/products/header_Wras_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaOras {
    background: url(../images/products/header_Oras_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaNews {
    background: url(../images/others/header_mb.jpg) no-repeat left;
    background-size: cover;
  }
  #h1AreaNews h1 {
    top: 76px;
    width: 100%;
  }

  #h1AreaContact {
    background: url(../images/others/contact_header_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaRecruit {
    background: url(../images/others/recruit_header_mb.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaCompany {
    background: url(../images/company/header.jpg) no-repeat left;
    background-size: cover;
  }

  #h1AreaCatalog {
    background: url(../images/catalog/header_mb.jpg) no-repeat left;
    background-size: cover;
  }

  .flex-header .topCatch {
    display: none;
  }

  h1 {
    position: absolute;
    top: 60px;
    left: 60px;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    width: auto;
    text-align: left;
  }

  .topCatch {
    font-size: 1.1rem;
  }

  .flex-header h1 {
    position: absolute;
    top: 60px;
    left: 60px;
    width: auto;
    margin: 0;
  }

  h1 .sub-title {
    font-size: 0.8rem;
    padding-top: 5px;
  }

  /* 企業情報関連 */
  .comContentsArea {
    width: 96%;
    margin: 0 auto 40px auto;
  }

  ul.sysLink {
    margin-top: 40px;
  }
  ul.sysLink li {
    text-align: center;
    font-size: 1rem;
  }

  .catalogArea {
    width: 100%;
  }

  /* テーブルスクロール対応 */
  table.specTable {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* スマートフォン幅（679px以下）
----------------------------------------------- */
@media screen and (max-width: 679px) {
  .normal {
    font-size: 0.9rem;
  }

  .flexBox {
    flex-direction: column;
  }
  .flexBox figure {
    width: 100%;
  }
  .flexBox .item {
    width: 100%;
    padding: 10px;
    text-align: left;
    font-size: 1rem;
  }
  .flexBox .item2 {
    margin-left: 0;
    width: 100%;
  }
  .flexBox .item2 iframe {
    width: 100%;
  }

  .speech-bubble-tabs li a {
    padding: 15px 5px;
    font-size: 1rem;
  }
  .speech-bubble-tabs li.is-active::after {
    bottom: -15px;
    border-width: 15px 15px 0 15px;
  }

  .pcontents {
    width: 96%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 1rem;
  }
  .pcontents h3.blueLine {
    font-size: 1.2rem;
  }
  .pcontents h3.pBldg {
    font-size: 1.2rem;
  }
  .pcontents h4.grayLine {
    font-size: 1.1rem;
  }
  .pcontents .normalList {
    font-size: 1rem;
  }
  .pcontents .normalList li {
    list-style-type: disc;
    list-style-position: inside;
    padding-bottom: 10px;
  }
  .pcontents table.specTable {
    width: 100%;
    margin: 10px auto;
    font-size: 0.9rem;
    overflow: scroll;
  }

  ul.tabLink {
    width: 100%;
    margin-top: 20px;
  }
  ul.tabLink li a {
    font-size: 1rem;
  }

  .tokuList {
    margin-left: 10px;
    /* ol全体の左側の余白 */
  }

  .tokuList li {
    font-size: 1rem;
    line-height: 2;
    list-style-type: disc;
    /* 番号付きリスト */
    margin-left: 0;
    padding-bottom: 5px;
    /* 行間の調整 */
  }

  .flexBoxSys p {
    font-size: 1rem;
  }

  table.specTableSys {
    width: 100%;
  }

  .rasText {
    margin: 10px;
  }

  #catalog {
    background: url(../images/products/banner_catalog_mb.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100px;
    margin: 20px 0;
    text-decoration: none;
  }
  #catalog .catalogText {
    padding: 10px 30px;
    font-size: 1rem;
  }

  footer #footerArea .flexBoxF {
    width: 90%;
    margin: 10px auto;
  }
  footer #footerArea .flexBoxF .item p {
    font-size: 1rem;
    color: #fff;
  }
  footer #addressArea {
    width: 100%;
    padding-top: 10px;
  }
  footer #addressArea ul.fList {
    width: 100%;
    flex-direction: column;
  }
  footer #addressArea ul.fList li {
    padding: 5px;
    margin-top: 10px;
    border-bottom: 1px dotted #ededed;
  }
  footer #addressArea ul.fList li:last-child {
    border: none;
  }
  footer #addressArea address {
    padding: 10px;
    font-size: 0.9rem;
    height: auto;
    font-style: normal;
  }

  /* 企業情報関連*/
  .comContentsArea {
    width: 96%;
    margin: 20px auto;
    margin-bottom: 100px;
  }

  .comBox1 {
    background-image: linear-gradient(to right, #6EA0B9, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
    flex-direction: column;
    padding: 20px;
  }

  .comBox2 {
    background-image: linear-gradient(to right, #66B9E7, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
    flex-direction: column;
    padding: 20px;
  }

  .comBox3 {
    background-image: linear-gradient(to right, #6285B5, #E3F5FD 70%, #66B9E7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
    flex-direction: column;
    padding: 20px;
  }

  .com {
    width: 100%;
  }
  .com h2 {
    font-size: 1.8rem;
    padding: 10px;
  }
  .com h2 span {
    font-size: 1.2rem;
  }
  .com p {
    color: #fff;
    padding-left: 20px;
  }

  .bigC {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 2.2rem;
  }

  .overview-table td:first-child, .contact-table td:first-child {
    background: #ededed;
  }

  .overview-table, .history-table, .contact-table {
    width: 100%;
    font-size: 1rem;
    /* テーブル要素をブロック化して縦並びにする */
    /* モバイル用フォーム調整 */
    /* 姓・名などの短い入力欄の調整 */
  }
  .overview-table tbody, .overview-table tr, .overview-table th, .overview-table td, .history-table tbody, .history-table tr, .history-table th, .history-table td, .contact-table tbody, .contact-table tr, .contact-table th, .contact-table td {
    display: block;
    width: 100%;
  }
  .overview-table td, .history-table td, .contact-table td {
    padding: 10px;
    box-sizing: border-box;
    white-space: normal !important;
    /* HTMLのnowrap属性を無効化 */
  }
  .overview-table input[type=text],
.overview-table input[type=email],
.overview-table input[type=tel],
.overview-table textarea,
.overview-table select, .history-table input[type=text],
.history-table input[type=email],
.history-table input[type=tel],
.history-table textarea,
.history-table select, .contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel],
.contact-table textarea,
.contact-table select {
    width: 100%;
  }
  .overview-table input[name=姓], .overview-table input[name=名],
.overview-table input[name=セイ], .overview-table input[name=メイ], .history-table input[name=姓], .history-table input[name=名],
.history-table input[name=セイ], .history-table input[name=メイ], .contact-table input[name=姓], .contact-table input[name=名],
.contact-table input[name=セイ], .contact-table input[name=メイ] {
    width: 100%;
    margin-bottom: 5px;
  }

  h3.comh3 {
    font-size: 1.4rem;
    margin: 20px 0 20px 0;
  }

  .grayArea {
    padding-top: 10px;
  }

  .group-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 1em;
    margin-bottom: 0;
  }
}
/* スマートフォン幅（460px以下）
----------------------------------------------- */
@media screen and (max-width: 460px) {
  #logo img {
    width: 310px;
  }
}
.contact-links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px 0;
}

.contact-link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #1c8BC1;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-link-btn i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.contact-link-btn:hover {
  background: #3aa5e0;
  color: #fff;
  text-decoration: none;
}
.contact-link-btn .office-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.contact-link-btn .office-list li {
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.contact-link-btn ul.sysLink {
  margin-top: 40px;
}
.contact-link-btn ul.sysLink li {
  text-align: center;
  font-size: 0.9rem;
}

/* メインコンテンツのラッパー */
.main-content {
  padding-top: 80px;
  /* ヘッダーの高さ分 */
}