@charset "UTF-8";


@font-face {
  src: url("../fonts/NotoSansCJKjp-Light.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansCJKjp-Medium.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}

@font-face {
  src: url("../fonts/NotoSerifJP-Light.woff") format("woff");
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSerifJP-Regular.woff") format("woff");
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSerifJP-SemiBold.woff") format("woff");
  font-family: "Noto Serif JP";
  font-style: normal;
  font-display: swap;
}

/*変数*/
:root {
  --main_color: #F23838;
  --black1: #545050;
  --black2: #3A3737;
  --gray-light1: #F1EDED;
  --gray-light2:#f8f5f5;
  --gray-dark: #a4a4a4;
  --gold-dark: #867141;
  --red01: #a5233b;
  --red02: #f5a1a1;
}
/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {margin: 0;}
main {display: block;}
p, table, blockquote, address, pre, iframe, form, figure, dl {margin: 0;}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {font-weight: 700;}
dd {margin-left: 0;}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {font-style: inherit;}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}
abbr[title] {
  text-decoration: underline dotted;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {font-size: 80%;}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {bottom: -0.25em;}
sup {top: -0.5em;}
svg, img, embed, object, iframe {vertical-align: bottom;}
button, input, optgroup, select, textarea {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
[type=checkbox] { appearance: checkbox; }
[type=radio] { appearance: radio; }
button, [type=button], [type=reset], [type=submit] {cursor: pointer;}
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default; }
:-moz-focusring {outline: auto;}
select:disabled {opacity: inherit;}
option {padding: 0;}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {padding: 0;}
progress {vertical-align: baseline;}
textarea {overflow: auto;}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {outline-offset: -2px;}
[type=search]::-webkit-search-decoration {-webkit-appearance: none;}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {cursor: pointer;}
details {display: block;}
summary {display: list-item;}
[contenteditable]:focus {outline: auto;}
table {border-color: inherit;}
caption {ext-align: left;}
td, th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: 700;
}

/*--------------------------------------
サイト共通定義
--------------------------------------*/
html { scroll-behavior: smooth; }
body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  letter-spacing: 1px;
  width: 100%;
  color: var(--black1);
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro','Arial', 'ヒラギノ角ゴ Pro W3', '游ゴシック', 'Yu Gothic', 'メイリオ','Helvetica Neue','Helvetica', 'Meiryo','ＭＳ Ｐゴシック',  sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
body.open { overflow: hidden; }
body::-webkit-scrollbar { width: 16px; }
body::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}
::selection {
  /* background: var(--main_color); */
  background: var(--gray-light1);
  /* color: #fff; */
}
ul::-webkit-scrollbar {
  display: none;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
  /* overflow: hidden; */
}
.inner {
  max-width: 1200px;
  margin: auto;
}

/* 文字色 */
.fc_mc {color: var(--main_color) ;}
.fc_red {color: var(--red01) ;}

/* 文字の太さ */
.fw_bold {font-weight: bold;}

/* 文字マーカー */
.marker_red { background: linear-gradient(transparent 60%, #fcdfdf 60%); }

/* テキスト表示 */
.txt_pc {display: none;}
.txt_sp {display: block;}

/* 改行 - pcはpc版の時に改行・spはsp版のときに改行 */
.br_pc {display: none;}
.br_sp {display: block;}

/* マージン */
.mb_10 {margin-bottom: 10px;}
.mb_20 {margin-bottom: 20px;}
.mb_30 {margin-bottom: 30px;}
.mb_40 {margin-bottom: 40px;}
.mb_50 {margin-bottom: 50px;}
.mb_60 {margin-bottom: 60px;}
.mb_70 {margin-bottom: 70px;}
.mb_80 {margin-bottom: 80px;}
.mb_90 {margin-bottom: 90px;}
.mb_100 {margin-bottom: 100px;}
/* パディング */
.pd_10 {padding-top: 10px;}
.pd_20 {padding-top: 20px;}
.pd_30 {padding-top: 30px;}
.pd_40 {padding-top: 40px;}
.pd_50 {padding-top: 50px;}
.pd_60 {padding-top: 60px;}

/* 背景色 */
.bg_color { background: var(--gray-light2); }


/*--------------------------------------
現在準備中（計4ファイル）
・製品情報ページ＿＿車両関連、電機関連、スポーツ関連、その他
・機械設備ページ＿＿
--------------------------------------*/
section.section_preparation{
  padding: 0 20px 40px!important;
}
@media (min-width: 1025px){
  section.section_preparation{
    padding: 0 20px 120px!important;
  }
}

/*--------------------------------------
共通のアニメーション
--------------------------------------*/
/*ページ全体ふわっと表示*/
body{animation: fadeIn 2s ease 0s 1 normal;}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* フォーカスイン*/
.focusin{opacity: 0;}
.focusin.on {
	animation: focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	opacity: 0;
}
@keyframes focus-in {
	0% {-webkit-filter: blur(12px);filter: blur(12px);opacity: 0;}
	100% {-webkit-filter: blur(0px);filter: blur(0px);opacity: 1;}
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up { transform: translate(0, 50px); }
.fade-in-down { transform: translate(0, -50px); }
.fade-in-left { transform: translate(-50px, 0); }
.fade-in-right { transform: translate(50px, 0); }
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* リンクアクション */
.link_act_01{
	opacity: 1;
	transition: opacity 0.3s 0s linear;
}
.link_act_01:hover{ opacity: 0.5; }

/* 1文字ずつ表示 */
.eachTextAnime p span{
  opacity: 0;display: inline-block;
  transform: translateY(-105%);
  margin-bottom: 0;
}
.eachTextAnime.appeartext p span{ animation:text_anime_on 0.6s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;
  transform: translateY(0);}
}

/* ブロック表示 */
.blockin {
  /* margin: 50px 0; */
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.blockin.active:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #fff;
  /*アニメーションの設定*/
  animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(.77,0,.175,1),
              secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(.77,0,.175,1);
  animation-fill-mode: both;
}
.blockin.active span {
  /* margin: 0.05em; */
  /*アニメーションの設定*/
  animation:blockIn 0.1s 0.5s;
  animation-fill-mode: both;
}

/*文字が消えている状態から現れるアニメーション*/
@keyframes blockIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*はじめにブロックを伸ばすアニメーション*/
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width:  100%;
  }
}
/*のびたブロックを横に追いやるアニメーション*/
@keyframes secondaryImageOverlayOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}


/*--------------------------------------
共通のテキスト枠
--------------------------------------*/
.adjustment {
  /* font-size: 0.9rem; */
  font-size: 1.6rem;
  text-align: center;
}

/* 背景グレー着彩 */
.bg_gray {background: var(--gray-light1);}
/* 白背景枠 */
.unit_outer_w {
  background: #fff;
  padding: 30px;
}
/* 上部赤ライン枠 */
.frame_redtop {
  background: #fff;
  border-top: 6px solid var(--main_color);
	box-shadow: 0 0 20px rgba(127, 101, 101, 0.1);
  padding: 50px 40px 40px;
}
/* 上部グレーライン枠 */
.frame_graytop {
  background: #fff;
  border-top: 6px solid var(--gray-dark);
	box-shadow: 0 0 20px rgba(127, 101, 101, 0.1);
  padding: 50px 40px 40px;
}
/*--------------------------------------
共通のtable
--------------------------------------*/
table {border-spacing: 0;}
.table_01 {
  width: 100%;
  font-size: 0.8rem;
  text-align: left;
}
.table_01 tr th, .table_01 tr td {
  border-bottom: 1px solid var(--gray-light1);
  padding: 20px 0 5px;
}
.table_01 tr th {width: 30%;}
.table_01 tr td {width: 70%;}

/*--------------------------------------
共通のform
--------------------------------------*/
form {
  width: 100%;
  font-size: 12px;
}
form .item {
  overflow: hidden;
  margin-bottom: 4px;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
form .item:nth-of-type(5), form .item:nth-of-type(6) {
  height: auto;
}
form .item .icon_required {
  color: #fff;
  font-weight: bold;
  font-size: 0.7rem;
  background: var(--main_color);
  padding: 0 6px;
  margin-left: 8px;
}
form .item .label {
  width: 100%;
  margin: 0 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 4px 0;
  cursor: auto;
  font-size: 0.9rem;
}
form .item .label p {
  display: flex;
  align-items: center;
  width: 100%;
}
form .item > div {
  width: 100%;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
}
form .item > div .inputs {
  height: 100%;
  width: 100%;
  outline: none;
}
form .item input[type=email],
form .item input[type=tel],
form .item input[type=text],
form .item textarea {
  border: 1px solid #ccc;
  width: 100%;
  padding: 6px 8px;
  font-size: 16px;
  background: #faf6f6;
}
form .item textarea {
  font-size: 16px;
  width: 100%;
}
.error {margin-bottom: 30px;}
.error li {color: #F23838;}
.btn_area {
  text-align: center;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  max-width: 300px;
  margin: auto;
}
.btn_area input[type=submit],
.btn_area a {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 0 10px;
  transition: all 0.5s;
}
.btn_area input[type=submit]:hover,
.btn_area a:hover {
  background: #fff;
  color: var(--main_color);
}
.btn_area input[type=reset] {
  background: #cfc4c4;
  border: 1px solid #cfc4c4;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* セクション共通タイトル */
.section_title {
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  position: relative;
  color: var(--main_color);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 3px;
}
.section_title .subtitle {
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  animation: 0.5s all;
}
.section_title p:after {
  content:attr(title);
  display: block;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
}
.section_title.main_title {
	position: relative;
}
.section_title.main_title::after{
	content: "";
	position: absolute;
	top: -40px;
	width: 1px;
	height: 40px;
	background: var(--main_color);
}

/* 下層ページ - 共通サブビジュアルタイトル */
.page_underlayer .section_title {
  font-size: 2.0rem;
}

/* 下層ページ - 共通見出しタイトル */
.lead_title {
  margin-bottom: 30px;
}
.lead_title h3 {
  color: var(--black2);
  text-align: center;
  line-height: 1;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
}
.lead_title h3::before{
	content: '';
	display: block;
	background: var(--main_color);
	height: 8px;
	width: 80px;
	margin: 0 auto 28px;
}
.lead_title h3 span:after {
  content: attr(title);
	display: block;
  padding-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--black2);
}
.lead_title h3.lead_title_ja {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  letter-spacing: 1px;
}

/* 製品情報 - 共通タイトル */
.prod_title {
  width: 100%;
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.5;
  color: var(--main_color);
}
.prod_title span {
  font-size: 1.4rem;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.prod_title span:after {
  content:attr(title);
  display: inline;
  font-size: 0.5em;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--black1);
  margin-left: 6px;
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
/*もっと見るボタン*/
.btn_01 {
  background: var(--black1);
  border: 1px solid var(--black1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  margin: 0 auto;
  padding: 5px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 16px;
  position: relative;
  line-height: normal;
  transition: all 0.3s;
}
.btn_01:hover {
  background: #fff;
  color: var(--black1);
}
.btn_01:after {
position: absolute;
right: 16px;
content: "";
top: 40%;
width: 12px;
height: 12px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
transition: all 0.3s;
}
.btn_01:hover:after {
  border-top: 2px solid var(--main_color);
  border-right: 2px solid var(--main_color);
  -webkit-transform: rotate(45deg);
}
.btn_01.btn_red {
  background: #fff;
  border: 1px solid #fff;
  color: var(--black2);
}
.btn_01.btn_red:hover {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  color: #fff;
}
.btn_01.btn_red:after {
  border-top: 2px solid var(--main_color);
  border-right: 2px solid var(--main_color);
}
.btn_01.btn_red:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* カテゴリリンクボタン、一覧へ戻るボタン */
.btn_02 {
  background: #fff;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  transition: 0.5s;
}
.btn_02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.btn_02:after {
  position: absolute;
  right: 16px;
  content: "";
  top: 40%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--main_color);
  border-right: 2px solid var(--main_color);
  transform: rotate(45deg);
  transition: all 0.3s;
}
.btn_02:hover {
  color: #fff;
}
.btn_02:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.btn_02:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*footerのお問い合わせボタン*/
footer .btn_contact {
  font-size: 1.1rem;
  background: var(--main_color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  /* margin-bottom: 10px; */
  padding: 28px 0;
  transition: all 0.5s;
  position: relative;
  line-height: 1.4;
}
footer .btn_contact:after {
  position: absolute;
  right: 20px;
  content: "";
  top: 44%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: all 0.5s;
}
footer .btn_contact:hover {
  background: #fff;
  color: var(--main_color);
}
footer .btn_contact:hover:after {
  border-top: 2px solid var(--main_color);
  border-right: 2px solid var(--main_color);
}
footer .btn_contact i {
  margin-right: 20px;
}
footer .btn_contact br {
  display: none;
}


/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sns a {
  background: var(--main_color);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-size: 18px !important;
  transition: 0.5s !important;
}
.sns a:hover {opacity: 0.7 !important;}
.sns a:last-child {margin-right: 0;}

/*--------------------------------------
共通のページネーション
--------------------------------------*/
.page_list {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  border: 1px solid var(--black1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  text-align: center;
  vertical-align: middle;
}
.page_list li.active {
  background: var(--black1);
  color: #fff;
}
.page_list li.arrow {border: none;}
.page_list li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header .header_nav {
  background: #fff;
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* max-width: 2000px; */
  height: 60px;
  z-index: 999;
}
header .header_nav .logo_box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
header .header_nav .logo_box a {
  padding-left: 16px;
  line-height: 0;
}
header .header_nav .logo_box img {
  max-width: 160px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
header .header_nav .gnav_box {
  display: flex;
  flex-direction: row;
}
header .header_nav ul.gnav_menu {display: none;}
header .header_nav p {
  height: 30px;
  justify-self: end;
  padding-right: 10px;
  transition: all 0.5s;
}
header .header_nav p:hover {opacity: 0.7;}
header .header_nav p.tel {display: none;}
header .header_nav .btn_contact {display: none;}
header .header_nav p a {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_nav p a span {
  display: none;
  margin-left: 10px;
}
header .header_nav p a i {
  color: #fff;
  font-size: 30px;
}
header .header_nav nav {
  justify-self: end;
  position: relative;
  width: 60px;
  height: 100%;
  background: var(--main_color);
}
header .header_nav nav .nav_list {
  position: fixed;
  width: 100%;
  height: calc(100vh - 58px);
  top: 58px;
  right: 0;
  background: var(--black1);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  padding: 20px 0 100px;
  gap: 20px;
  align-content: center;
}
header .header_nav nav .nav_list ul {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  overflow-y: scroll;
}
header .header_nav nav .nav_list ul li {
  opacity: 0;
  transition: 0.5s;
  position: relative;
  line-height: 3.3;
}
header .header_nav  nav .nav_list ul li a {
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  z-index: 1;
  padding: 0 10px;
  pointer-events: auto;
}
header .header_nav  nav .nav_list ul li a.menu_over {
  font-size: 0.9rem;
  border-bottom: 1px solid #7c6c6c;
}
header .header_nav  nav .nav_list ul li a.menu_under {
  font-size: 0.8rem;
  border-bottom: 1px solid #7c6c6c;
  background: var(--black2);
  color: var(--gray-dark);
}
header .header_nav nav .nav_list ul li a:after {
  position: absolute;
  right: 16px;
  content: "";
  top: 40%;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transition: all 0.3s;
}
header .header_nav nav .nav_list ul li a.menu_over:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
header .header_nav nav .nav_list ul li a.menu_under:after {
  border-top: 2px solid #bfbfbf;
  border-right: 2px solid #bfbfbf;
}
header .header_nav nav .nav_list ul li a.menu_over span {
  margin-right: 30px;
  font-size: 0.7rem;
  color: var(--gray-light1);
  letter-spacing: 1px;
}
header .header_nav nav .nav_list ul li a.menu_under span {
  font-size: 0.8rem;
  color: #bfbfbf;
  letter-spacing: 1px;
  padding-left: 10px;
}
header .header_nav nav .nav_list ul li a.menu_under span:before {
  padding-right: 4px;
  content: "ー";
  color: #656565;
  font-weight: bold;
}
/* header .header_nav  nav .nav_list ul li:nth-last-child(2) {margin-bottom: 30px;} */
header .header_nav  nav .nav_list ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
header .header_nav  nav .nav_list ul li:last-child .sns {
  justify-content: flex-start;
  margin-bottom: 0;
}
header .header_nav  nav .nav_list ul li:last-child .sns a {background: #fff;}
header .header_nav  nav .nav_list ul li:last-child .sns a i { color: var(--main_color);}
header .header_nav  nav .menu-btn {display: none;}
header .header_nav  nav .menu-btn:checked ~ .nav_list {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  border-top: 1px solid #fff;
}
header .header_nav  nav .menu-btn:checked ~ .nav_list a,
header .header_nav  nav .menu-btn:checked ~ .nav_list li {
  opacity: 1;
}
header .header_nav  nav .menu-btn:checked ~ .bg {display: block;}
header .header_nav  nav .menu-btn:checked ~ .menu-icon .navicon:before {transform: rotate(-45deg);}
header .header_nav  nav .menu-btn:checked ~ .menu-icon .navicon:after {transform: rotate(45deg);}
header .header_nav  nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {top: 0;}
header .header_nav  nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {bottom: 0;}
header .header_nav  nav .menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .header_nav  nav .menu-btn:checked ~ nav {border-left: 1px solid #000;}
header .header_nav  nav .menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 1;
  position: relative;
}
header .header_nav  nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .header_nav  nav .menu-icon .navicon:before, header .header_nav  nav .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .header_nav  nav .menu-icon .navicon:before {top: 9px;}
header .header_nav  nav .menu-icon .navicon:after {bottom: 9px;}

/*--------------------------------------
フッター
--------------------------------------*/
footer .footer_box {
  background: var(--black2);
    padding: 80px 20px;
}
footer .contact_box {
  padding-top: 20px;
  margin-bottom: 40px;
}
footer .contact_box .section_title {color: #fff;}
footer .contact_box .section_title::after {background: #fff;}
footer .contact_box address {
  color: #fff;
  text-align: center;
}
footer .contact_box address p {
  font-size: 12px;
  padding-top: 20px;
  margin-bottom: 40px;
}
footer .contact_box address p br {display: block;}
footer .contact_box address .btn_box {
  max-width: 480px;
  margin: auto;
}



/* リンクボックス */
footer .footerinfo_link ul.link_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
footer .footerinfo_link ul.link_box li {
  width: calc((100% - 20px) / 3);
  background: var(--black1);
  aspect-ratio: 1/1;
  position: relative;
  transition: all 0.3s ease-in-out;
}
footer .footerinfo_link ul.link_box li:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 20px solid transparent;
  border-right: 20px solid var(--main_color);
  z-index: 10;
}
footer .footerinfo_link ul.link_box li:hover {background: var(--main_color);}
footer .footerinfo_link ul.link_box li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footerinfo_link ul.link_box li a .img_box {
  height: 24px;
  margin-bottom: 12px;
}
footer .footerinfo_link ul.link_box li a .img_box img {
  width: 100%;
  height: 100%;
}
footer .footerinfo_link ul.link_box li .section_title {
  font-size: min(2.0vw, 1.1rem);
  margin-bottom: 0;
  line-height: 1.3;
}
footer .footerinfo_link ul.link_box li .section_title span {
  font-size: min(3.0vw, 1.2rem);
  color: #fff;
}
footer .footerinfo_link ul.link_box li .section_title span:after {
  content:attr(title);
  display: block;
  text-align: center;
  letter-spacing: 2px;
  font-size: min(2.0vw, 0.8rem);
}

/* ロゴ・gnav */
footer .footerinfo_box {margin: 0 auto 20px;}
footer .footerinfo_box a {color: var(--gray-dark);}
footer .footerinfo_box .footerinfo_unit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer .footerinfo_box .footerinfo_unit .box_gnav figure img {
  max-width: 240px;
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: middle;
}
footer .footerinfo_box .footerinfo_unit .box_gnav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
footer .footerinfo_box .footerinfo_unit .box_gnav ul {display: none;}
footer .footerinfo_box .footerinfo_unit .box_gnav ul li {
  border-right: #515151 1px solid;
  font-size: 0.9rem;
  padding: 0 20px;
  line-height: 1.1;
}
footer .footerinfo_box .footerinfo_unit .box_gnav ul li a {
	transition: opacity 0.3s 0s linear;
  opacity: 1.0;
}
footer .footerinfo_box .footerinfo_unit .box_gnav ul li a:hover {
  opacity: 0.5;
}
footer .footerinfo_box .footerinfo_unit .box_gnav ul li:last-child {border-right: none;}


/* コピーライト */
footer .copyright span {
  color: #9CA2A1;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
}

/* PAGETOPボタン */
.arrow_top {
  display: flex;
  justify-content: flex-end;
  /* margin-right: 40px; */
}
.arrow_top a {
  font-size: 1.5em;
  position: fixed;
  right: 8px;
  bottom: 20px;
  background: var(--main_color);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  z-index: 1;
}
/* .arrow_top a {display: none;} */


/*--------------------------------------
メイン（トップページ）
--------------------------------------*/
main #section_mainvisual .eachTextAnime.appeartext p span {
  animation:text_anime_on 0.3s ease-out forwards;
}
main #section_mainvisual {
  padding-top: 60px;
  background: linear-gradient(180deg,var(--gray-light1) 0%,var(--gray-light1) 92%,#fff 92%,#fff 100%);
}
main #section_mainvisual .mv_unit {
  display: flex;
  margin-inline: auto;
  padding-left: 4vw;
}
main #section_mainvisual .mv_detail {
  width: 10%;
  position: relative;
}
main #section_mainvisual .mv_detail p {
  writing-mode: vertical-rl;
  position: absolute;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  color: var(--black1);
  letter-spacing: 2px;
  font-size: 0.6rem;
  bottom: 20px;
  right: 4vw;
}
main #section_mainvisual .mv_ph {
  width: 90%;
  position: relative;
}
main #section_mainvisual .mv_ph .mvslider_box {
  overflow: hidden;
  filter: brightness(70%);
  margin-left: 40px;
  height: 480px;
}
main #section_mainvisual .mv_ph .mvslider_box img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
main #section_mainvisual .mv_ph .txt_box {
  position: absolute;
  z-index: 10;
}
main #section_mainvisual .mv_ph .txt_box.txt_en {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2.6rem;
  /* margin-bottom: 20px; */
  bottom: 120px;
  max-width: 360px;
}
main #section_mainvisual .mv_ph .txt_box.txt_ja {
  font-weight: bold;
  color: var(--main_color);
  font-size: 1.0rem;
  letter-spacing: 1px;
  bottom: 20px;
}
main #section_mainvisual .mv_ph .txt_box.txt_ja p {
  margin-bottom: 10px;
}
main #section_mainvisual .mv_ph .txt_box.txt_ja p span {
  padding: 8px 10px 6px;
  background: #fff;
}


.whiteLine{
  width:120px;
  height:40px;
  padding:0 14px;
  text-align:center;
  line-height:40px;
  position:relative;
  transition:.2s ease-in-out;
  overflow:hidden;
  cursor:pointer;
  animation: whiteLine 2s ease 0s 1 normal;
}
.whiteLine::after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  transform:translateX(-100%);
  background:#fff;
  transition:transform .2s ease-out;
  z-index:-1;
}
.whiteLine::after {
  transform: translateX(0);
  transition: transform .2s ease-in;
}

@keyframes whiteLine {
	0% {opacity: 0}
	100% {opacity: 1}
}



/* セクション区切り */
main .section_box {padding: 100px 20px;
}

/* トップページ - コンセプト */
main #section_concept {position: relative;}
main #section_concept:after {
  z-index: -1;
  color: #fde8e8;
  content: "OSHITANI";
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  bottom: 20px;
  right: -10px;
  font-size: 5.5rem;
}
main #section_concept.section_box {
  padding: 100px 20px 120px;
  overflow: hidden;
}
main #section_concept .lead_title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: min(5.0vw, 2.4rem);
  line-height: min(8vw, 3.6rem);
  margin-bottom: 10px;
  padding-top: 20px;
}
main #section_concept .concept_unit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main #section_concept .concept_unit li {width: 100%;}
main #section_concept .concept_unit .unit_ph img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main #section_concept .concept_unit .unit_txt .txt_box {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

/* トップページ - 製品情報 */
main #section_product.section_box {padding: 0 0 60px;}
main #section_product .section_title {
  background: linear-gradient(180deg,#fff 0%,#fff 27%, #fff 27px, var(--gray-light1) 27%,var(--gray-light1) 100%);
}
main #section_product .inner {padding: 0 20px;}
main #section_product .product_list {padding-top: 60px;}

/* トップページ - OSHITANIについて */
main #section_explanation {
  background: url(../images/bg_explanation.webp) no-repeat center center/cover;
}
main #section_explanation .explanation_bg {
  max-width: 1200px;
  margin: auto;
  height: 520px;
  position: relative;
}
main #section_explanation .explanation_box {
  background: var(--main_color);
  max-width: 640px;
  width: 90%;
  position: absolute;
  bottom: -120px;
}
main #section_explanation .explanation_box .txt_box {
  padding: 60px 30px;
  color: #fff;
}
main #section_explanation .explanation_box .txt_box .lead_title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: min(6vw, 2.4rem);
  line-height: min(8vw, 3.6rem);
  margin-bottom: 10px;
}
main #section_explanation .explanation_box .txt_box p {font-size: 0.8rem;}

/* トップページ - 新着情報 */
main #section_news.section_box {padding: 180px 20px 100px;}


/*--------------------------------------
下層ページ
--------------------------------------*/
.spacing {padding: 0 20px;}

.unit_box {padding: 0 20px 80px;}
.unit_box:last-child {padding: 0 20px 160px;}


/* 共通 - サブビジュアル */
main .subvisual {
  background: url(../images/img_sv01.jpg) no-repeat 50% 30%/cover;
  height: 32vh;
  min-height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 70px;
}

/* 共通 - 製品情報リンク  */
.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.product_list li {
  width: 100%;
}
.product_list li a {
  display: flex;
  flex-direction: column;
}
.product_list li a .txt_box {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.product_list li a .txt_box .prod_arrow {
  max-width: 36px;
}
.product_list li a .txt_box .prod_arrow img {
  width: 100%;
  height: auto;
}
.product_list li a .img_box img {
  aspect-ratio: 2/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 共通 - 新着情報  */
.news_unit {
  display: flex;
  flex-direction: column;
}
.news_unit.unit_box {
  padding: 0 0 80px;
}
.news_unit .news_title {
  width: 240px;
  padding-top: 10px;
}
.news_unit .news_title h2 {
  position: relative;
}
.news_unit .news_title h2:before {
  content:"";
  display:block;
  position: absolute;
  top: -10px;
  width: 64px;
  height: 6px;
  background: var(--main_color);
}
.news_unit .news_title h2 span {
  display: block;
  font-size: 2.0em;
  letter-spacing: 0;
  text-align: left;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}
.news_unit .news_title h2 span:after {
  content:attr(title);
  display:block;
  font-size: 0.5em;
  letter-spacing: 2px;
  line-height: 0.4;
}
.news_unit .news_detail {width: 100%;}
.news_unit .news_detail .txt_box {
  padding-top: 20px;
  margin-bottom: 10px;
}
.news_unit .news_detail .notposted {
  padding-top: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.9rem;
}
.news_unit .news_detail article a {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--black1);
  letter-spacing: 2px;
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
  /* max-width: 680px; */
}
.news_unit .news_detail article a .post_title {
  word-break: break-all;
}
.news_unit .news_detail article a time {
  font-weight: bold;
}
.news_unit .news_detail .btn_list {
  display: flex;
  justify-content: flex-end;
  font-size: 0.8rem;
  vertical-align: middle;
  position: relative;
  padding-right: 14px;
  margin-top: 10px;
}
.news_unit .news_detail .btn_list:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main_color);
  border-right: 2px solid var(--main_color);
  transform: rotate(45deg);
  transition: all 0.3s;
}

/* 共通 - 説明カテゴリ */
.cat_unit_frame {
  display: flex;
  flex-direction: column;
}
.cat_unit_frame .anchor_list {
  position: sticky;
  top: 60px;
  background: var(--gray-light1);
  padding: 20px 0;
  margin-bottom: 20px;
}
.cat_unit_frame .anchor_list ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cat_unit_frame .anchor_list ul li {width: calc(100% / 2);}
.cat_unit_frame .anchor_list ul li a {
  display: block;
  background: #fff;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  width: 100%;
  padding: 12px 8px 12px 32px;
  font-size: min(3.0vw, 0.9rem);
  line-height: min(5.0vw, 1.3rem);
}
.cat_unit_frame .anchor_list ul li a span {position: relative;}
.cat_unit_frame .anchor_list ul li a span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left: 8px solid var(--main_color);
}
.cat_unit_frame .unit_item {
  margin-top: -160px;
  padding-top: 160px;
  margin-bottom: 60px;
}
.cat_unit_frame .unit_item:last-child {margin-bottom: 0;}
.cat_unit_frame .frame_redtop {padding: 30px 20px 40px;}
.cat_unit_frame .item_cat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cat_unit_frame .item_cat > .img_box {
  margin-inline: auto;
  width: 100%;
  max-width: 700px;
}
.cat_unit_frame .item_cat .cat_caption,
.cat_unit_frame .item_cat .cat_about {
  width: 100%;
}
.cat_unit_frame .item_cat .cat_caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cat_unit_frame .item_cat .cat_caption .img_box {
  margin-inline: auto;
  max-width: 100px;
}
.cat_unit_frame .item_cat .cat_about .img_box {max-width: 280px;}
.cat_unit_frame .item_cat .cat_caption h4 {
  color: var(--black1);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
}
.cat_unit_frame .item_cat .cat_about .cat_about_inner {
  display: flex;
  gap: 20px;
}
.cat_unit_frame .item_cat .cat_about .cat_about_inner .img_box {width: 30%;}
.cat_unit_frame .item_cat .cat_about .cat_about_inner .txt_box_outer {width: 70%;}
.cat_unit_frame .item_cat .txt_box {margin-bottom: 30px;}
.cat_unit_frame .item_cat .txt_box:last-child {margin-bottom: 0;}
.cat_unit_frame .item_cat .txt_box p {font-size: 0.9rem;}
.cat_unit_frame .item_cat .img_box img {
  width: 100%;
  height: auto;
}
.cat_unit_frame .item_cat .office_list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light1);
}
.cat_unit_frame .item_cat .office_list li:first-child {padding: 8px 0 16px;}
.cat_unit_frame .item_cat .office_list li p {font-size: 0.8rem;}
.cat_unit_frame .item_cat .office_list li .office_name {
  font-size: 0.9rem;
  font-weight: bold;
}
.cat_unit_frame .item_cat .doc_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.cat_unit_frame .item_cat .doc_box li {
  width: 100%;
}
.cat_unit_frame .item_cat .doc_box li a {
  padding: 16px;
  border: 2px solid var(--gray-light1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat_unit_frame .item_cat .doc_box li a .txt_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: initial;
}
.cat_unit_frame .item_cat .doc_box li p span {
  font-size: 0.7rem;
}
.cat_unit_frame .item_cat .doc_box li .icon_pdf {
  max-width: 28px;
}
.cat_unit_frame .item_cat .doc_box li .icon_pdf img {
  width: 100%;
}
.cat_unit_frame .item_cat .doc_box li .pdf_box {
  max-width: 160px;
}
.cat_unit_frame .item_cat .doc_box li .pdf_box img {
  width: 100%;
}

/*--------------------------------------
企業情報ページ
--------------------------------------*/
/* 企業情報リンクメニュー（共通） */
.company_menu {
  max-width: 800px;
  width: 100%;
  padding-top: 20px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.company_menu li {
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.company_menu li:hover {color: var(--main_color);}
.company_menu li.menu_philosophy {
  background: url(../images/img_company_menu_01.jpg) no-repeat center center;
  background-size: cover;
}
.company_menu li.menu_about {
  background: url(../images/img_company_menu_02.jpg) no-repeat center center;
  background-size: cover;
}
.company_menu li.menu_efforts {
  background: url(../images/img_company_menu_03.jpg) no-repeat center center;
  background-size: cover;
}
.company_menu li.menu_access {
  background: url(../images/img_company_menu_04.jpg) no-repeat center center;
  background-size: cover;
}
.company_menu li a .txt_box {
  font-size: 0.8rem;
  padding: 28px;
}
.company_menu li a .unit_title {
  text-align: center;
  position: relative;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 3px;
}
.company_under .company_menu {
  max-width: initial;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 80px;
}
.company_under .company_menu li {width: 100%;}
.company_under .company_menu li a .txt_box {font-size: 0.8rem;}
.company_under .company_menu li a .unit_title {font-size: 1.2rem;}

/* 社長挨拶・企業理念*/
#page_company .representative_unit .unit_item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#page_company .representative_unit ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#page_company .representative_unit ul li {width: 100%;}
#page_company .representative_unit .img_box p {
  max-width: 400px;
  margin-inline: auto;
}
#page_company .representative_unit .img_box img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page_company .representative_unit .txt_box_outer {
  width: 100%;
}
#page_company .representative_unit .txt_box_outer .txt_box {
  text-align: left;
}
#page_company .representative_unit .txt_box_outer .greeting_caption {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
#page_company .representative_unit .txt_box p {
  line-height: 2.2;
  padding-bottom: 0;
  margin-bottom: 20px;
}
#page_company .representative_unit .txt_box p:last-child {
  margin-bottom: 0;
}
#page_company .representative_unit .name_box {
  padding-top: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#page_company .representative_unit .name_box p {text-align: right;}
#page_company .representative_unit .name_box p span {
  font-size: 1.3rem;
  margin-left: 20px;
}
#page_company .philosophy_unit .txt_box {
  background: var(--gray-light2);
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}
#page_company .philosophy_unit .txt_box:last-child {margin-bottom: 0;}
#page_company .philosophy_unit .txt_box h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--main_color);
  margin-bottom: 20px;
}
#page_company .philosophy_unit .txt_box p {
  font-size: 0.9rem;
  line-height: 2.2;
  letter-spacing: 0;
  text-align: left;
}
#page_company .philosophy_unit .txt_box .philosophy_caption {
  font-weight: bold;
  text-align: center;
}
#page_company .philosophy_unit .txt_box .philosophy_caption.caption_large {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
#page_company .philosophy_unit .txt_box .philosophy_caption.caption_small {
  line-height: 1.8;
  font-size: 1.0rem;
  margin-bottom: 8px;
}

/* 企業情報ページ - 会社概要 */
#page_company .overview_unit .frame_redtop {
  padding: 30px 20px 20px;
}
#page_company .overview_unit .member {
  display: flex;
  gap: 10px;
}
#page_company .overview_unit .member p {
  display: block;
  font-size: min(3.5vw, 0.8rem);
}
#page_company .overview_unit .member p.position {
  width: 220px;
}
#page_company .overview_unit .member p.name {
  width: 100%;
}
#page_company .history_unit .timeline_item {
  position: relative;
  border-top: 1px solid var(--gray-dark);
  padding: 14px 0;
}
#page_company .history_unit .timeline_item:last-child {border-bottom: 1px solid var(--gray-dark);}
#page_company .history_unit .timeline_item::before {
  content: attr(data-year);
  position: absolute;
  color: var(--main_color);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  z-index: 1;
  text-align: right;
  width: 80px;
  font-size: 1.0rem;
  top: 1.3rem;
  line-height: 1;
}
#page_company .history_unit .timeline_item ul {padding-left: 100px;}
#page_company .history_unit .timeline_item ul li {
  display: flex;
  align-items: baseline;
  font-size: 0.8rem;
}
#page_company .history_unit .timeline_item ul li .month {
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  text-align: right;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 12px;
  min-width: 40px;
}
#page_company .organization_unit .img_box {
  overflow-x: auto;
  background: var(--gray-light2);
}
#page_company .organization_unit .img_box::-webkit-scrollbar {
  width: 16px;
}
#page_company .organization_unit .img_box::-webkit-scrollbar-track {
  background-color: var(--gray-light2);
  border-radius: 100px;
}
#page_company .organization_unit .img_box::-webkit-scrollbar-thumb {
  background-color: var(--gray-dark);
  border-radius: 100px;
}
#page_company .organization_unit .img_box p {
  width: 100%;
  max-width: 960px;
  min-width: 560px;
  margin-inline: auto;
}
#page_company .organization_unit .img_box p img {
  padding: 20px;
  width: 100%;
  height: auto;
}
#page_company .organization_unit .txt_box {
  padding-top: 20px;
  text-align: left;
}
#page_company .organization_unit .txt_box p {
  font-size: 0.9rem;
}
#page_company .suppliers_unit ul.suppliers_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 4px;
}
#page_company .suppliers_unit ul.suppliers_list li {
  position: relative;
  padding-left: 1em;
  font-size: 0.9rem;
}
#page_company .suppliers_unit ul.suppliers_list li:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: 0;
  margin: auto;
  color: var(--main_color);
  content: "・";
}
#page_company .suppliers_unit .omission {
  width: 100%;
  text-align: right;
  padding-top: 20px;
  font-size: 0.9rem;
}
/* 企業としての取り組み */
#page_company .efforts_unit .flex_box {
  display: flex;
  max-width: 630px;
  margin: auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#page_company .efforts_unit .flex_box p {
  max-width: 100%;
  text-align: left;
}
.test {
  background: #fff;
  border-top: 6px solid var(--gray-dark);
  box-shadow: 0 0 20px rgba(127, 101, 101, 0.1);
  padding: 50px 40px 40px;
}
#page_company .efforts_unit .flex_box .img_box {
  width: auto;
  height: auto;
}
#page_company .efforts_unit .flex_box .img_box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  }
#page_company .efforts_unit .txt_box {
  background: var(--gray-light2);
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}
#page_company .efforts_unit .txt_box p {
  font-size: 0.9rem;
  line-height: 2.2;
  letter-spacing: 0;
  text-align: left;
}
/* #page_company .efforts_unit .txt_box a {
  color: var(--main_color);
  font-size: 0.9rem;
  text-align: left;
} */
#page_company .efforts_unit .txt_box .txt_center {
  text-align: center;
}
/* #page_company .efforts_unit .txt_right {
  display: block;
  text-align: right;
} */
#page_company .efforts_unit .txt_box .btn_01{
  margin: 0 auto 20px auto;
}
#page_company .efforts_unit .txt_box .btn_01:last-of-type{
  margin: 0 auto ;
}
#page_company .efforts_unit .txt_box:last-child {margin-bottom: 0;}
#page_company .efforts_unit .txt_box h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--main_color);
  margin-bottom: 20px;
}
#page_company .efforts_unit .txt_box .efforts_caption {
  text-align: center;
  font-weight: bold;
}
#page_company .efforts_unit .txt_box .efforts_caption.caption_large {
  font-size: 1.2rem;
}
#page_company .efforts_unit .txt_box .efforts_caption.caption_small {
  line-height: 1.8;
  font-size: 1.0rem;
}
/* 事業所紹介 */
#page_company .office_info .unit_item .img_box {
  margin-inline: auto;
  width: 80%;
  margin-bottom: 20px;
}
#page_company .office_info .unit_item .img_box img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page_company .office_info .info_box .office_name {
  color: var(--main_color);
  margin-bottom: 10px;
  font-weight: bold;
  font-size: clamp(1.1rem, 3.0vw, 0.8rem);
}
#page_company .office_info .info_box .office_name p {
  line-height: 1.4;
}
#page_company .office_info .info_box .office_name .office_name_small {
  line-height: 1.0;
}
#page_company .office_info .info_box .office_name p span {
  font-size: min(2.0vw, 0.8rem);
}
#page_company .office_info .info_box .address_box {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

#page_company .office_info .info_box .tel_box span {
  color: var(--black2);
  /* font-size: min(3.0vw, 0.9rem); */
  font-size: min(4.0vw, 0.9rem);;
  margin-right: 2px;
}
#page_company .office_info .info_box .tel_box span.represent {
  font-size: min(2.0vw, 0.8rem);
  margin-right: 0;
}
#page_company .office_info .info_box .btn_box {
  padding-top: 20px;
  margin-inline: auto;
  width: 100%;
  /* max-width: 480px; */
}
#page_company .office_info .unit_item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
}
#page_company .office_info.mainoffice_unit .unit_item .item_office {
  width: 100%;
}
#page_company .office_info .unit_item .item_office .item_office_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: -130px;
  padding-top: 130px;
}
#page_company .office_info .unit_item .item_office .frame_redtop {
  padding: 40px 30px 30px;
  box-shadow: initial;
  /* margin-bottom: 40px; */
}
#page_company .office_info .unit_item .img_box{
  width: 100%;
  max-width: 200px;
}
#page_company .office_info .unit_item .info_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#page_company .office_info .unit_item .info_box ul {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
#page_company .office_info .unit_item .info_box .tel_box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
#page_company .office_info .unit_item .info_box .tel_box:last-child {
  margin-bottom: 0;
}
#page_company .office_info .unit_item .info_box .tel_box .dept {
  font-weight: bold;
  padding-right: 10px;
}

/* マップ */
#page_company .map_unit {
  background: var(--gray-light2);
  margin-bottom: 80px;
}
#page_company .map_unit .img_box {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
}
#page_company .map_unit .img_box img {
  width: 100%;
  margin-inline: auto;
}

/* #page_company .map_unit .img_box area:focus-visible {
  outline: var(--main_color) auto 1px;
} */
#page_company .map_unit .hover-outline {
  position: absolute;
  outline: 3px solid var(--main_color);
  border-radius: 4px;
  pointer-events: none;
  display: none;
}

#page_company .office_info .unit_item .btn_box .btn_01 {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  max-width: 480px;
}
#page_company .office_info .unit_item .btn_box .btn_01::after {
  top: 38%;
  width: 10px;
  height: 10px;
}
#page_company .office_info .unit_item .btn_box .btn_01:hover {
  background: #fff;
  color: var(--main_color);
}
#page_company .office_info.mainoffice_unit .info_box .tel_box .mainoffice_tel,
#page_company .office_info.suboffice_unit .info_box .tel_box .suboffice_tel {
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  display: flex;
  flex-direction: column;
  color: var(--main_color);
  font-size: min(5vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: 1px;
}

/* 本社 */
#page_company .office_info.mainoffice_unit .unit_item {
  display: flex;
  flex-direction: column;
  z-index: 0;
}
#page_company .office_info.mainoffice_unit .unit_item .img_box {
  width: 80%;
  max-width: 280px;
}
#page_company .office_info.mainoffice_unit .unit_item .info_box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box:last-child {margin-bottom: 0;}
#page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box .dept {
  color: var(--black2);
  font-weight: bold;
  font-size: 1.0rem;
}
#page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  color: var(--main_color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box span {
  color: var(--black2);
  font-size: 1.0rem;
  margin-right: 8px;
}
#page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box .mainoffice_tel {
  display: flex;
  flex-direction: column;
}

/* 事業所など */
#page_company .office_info.suboffice_unit .unit_item .info_box .tel_box {
  flex-direction: column;
}

/*--------------------------------------
製品情報ページ
--------------------------------------*/
#page_product .cat_unit_frame .anchor_list {display: none;}


#page_product .unit_outer_w {
  margin-bottom: 60px;
  padding: 0;
}
#page_product .product_list {
  width: 100%;
  gap: 60px 40px;
  justify-content: flex-start;
}
#page_product .prod_title span {font-size: 1.4rem;}
#page_product.product_under .unit_box {padding: 0 0 80px 0;}
#page_product.product_under .txt_box.about_product {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 80px;
}

/* 製品情報 - 共通 */
#page_product .product_item_box {margin-bottom: 80px;}
#page_product .product_item_box ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 60px;
}
#page_product .product_item_box ul:last-child {
  margin-bottom: 0;
}
#page_product .product_item_box ul.electrical_outdoorunit {
  margin-bottom: 0;
}
#page_product .product_item_box ul li {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
#page_product .product_item_box ul .img_box_outer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#page_product .product_item_box ul .img_box {
  /* width: 96%; */
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1/1;
  /* aspect-ratio: 3/2; */
  /* margin-bottom: -160px; */
}
#page_product .product_item_box ul .txt_box_outer {
  /* width: 96%; */
  width: 100%;
  /* max-width: 640px; */
  background: var(--gray-light2);
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 10;
}
#page_product .product_item_box ul .txt_box {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
}
#page_product .product_item_box ul .txt_box p {line-height: 2.0;}
#page_product .product_item_box ul .txt_box p span.txt_neoone {
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  color: #418636;
  font-size: 1.4rem;
  line-height: 1.4;
}
#page_product .product_item_box .product_item_title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--main_color);
  line-height: 1.4;
  margin-bottom: 16px;
}
#page_product .product_item_box .product_item_title span:after {
  content: attr(title);
	display: block;
  padding-top: 6px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--black2);
}

/* 車両関連 */
#page_product .product_item_box ul.vehicle_car .img_box {
  background: url(../images/img_ph_vehicle_car.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.vehicle_train .img_box {
  background: url(../images/img_ph_vehicle_train.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.vehicle_contraction .img_box {
  background: url(../images/img_ph_vehicle_contraction.jpg) no-repeat center center;
  background-size: cover;
}
/* 電機関連 */
#page_product .product_item_box ul.electrical_refrigerator .img_box {
  background: url(../images/img_ph_electrical_refrigerator.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.electrical_outdoorunit .img_box {
  background: url(../images/img_ph_electrical_outdoorunit.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.electrical_aircon .img_box {
  background: url(../images/img_ph_electrical_aircon.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.electrical_vending .img_box {
  background: url(../images/img_ph_electrical_vending.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.electrical_showcase .img_box {
  background: url(../images/img_ph_electrical_showcase.jpg) no-repeat center center;
  background-size: cover;
}
/* スポーツ関連 */
#page_product .product_item_box ul.other_sports .img_box {
  background: url(../images/img_ph_sports_urethane.jpg) no-repeat center center;
  background-size: cover;
}
/* その他 */
#page_product .product_item_box ul.other_medical .img_box {
  background: url(../images/img_ph_other_medical.jpg) no-repeat center center;
  background-size: cover;
}
#page_product .product_item_box ul.other_building .img_box {
  background: url(../images/img_ph_other_building.jpg) no-repeat center center;
  background-size: cover;
}

/* 製品情報 - スライダー */
/* #page_product .slider_unit {
  display: flex;
  flex-direction: column;
}
#page_product .slider {
  width: 100%;
  display: flex;
  align-items: center;
}
#page_product .swiper-slide img {
  height: auto;
  width: 100%;
}
#page_product .swiper-button-prev,
#page_product .swiper-button-next {
  color: var(--gray-light1);
}
#page_product .slider-thumbnail {
  width: 100%;
  padding-top: 20px;
}
#page_product .slider-thumbnail .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 4px;
}
#page_product .slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
  display: contents;
}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(1) p {order: 1;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(2) p {order: 3;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(3) p {order: 5;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(4) p {order: 7;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(5) p {order: 2;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(6) p {order: 4;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(7) p {order: 6;}
#page_product .slider-thumbnail .swiper-wrapper .swiper-slide:nth-child(8) p {order: 8;}

#page_product .slider-thumbnail .swiper-slide p {
  background: #fff;
  color: var(--main_color);
  width: calc((100% - 4px) / 2);
  border: 1px solid var(--main_color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#page_product .slider-thumbnail .swiper-slide p span.number {
  height: 100%;
  background: var(--main_color);
  color: #fff;
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  padding: 6px;
  font-size: 1.0rem;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page_product .slider-thumbnail .swiper-slide p span.name {
  width: 100%;
  padding: 6px;
  font-size: 0.8rem;
  line-height: 1.6;
}
#page_product .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {opacity: 1;}
#page_product .slider-thumbnail .swiper-slide.swiper-slide-thumb-active p {
  background: var(--main_color);
  color: #fff;
} */

/* 製品情報 - 電気製品 */
#page_product .product_item_box .outdoorunit_detail .slider_unit {
  margin-inline: auto;
}
/* 製品情報 - 電気製品（室外機スライダー） */
#page_product .product_item_box .outdoorunit_detail {
  padding: 20px;
  background: #fff;
  width: 100%;
  margin-bottom: 60px;
}
#page_product .outdoorunit_detail .slider_unit {
  max-width: 960px;
  display: flex;
  flex-direction: column;
}
#page_product .outdoorunit_detail .slider {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-light1);
}
#page_product .outdoorunit_detail .swiper-slide img {
  height: auto;
  width: 100%;
}
#page_product .outdoorunit_detail .swiper-button-prev,
#page_product .outdoorunit_detail .swiper-button-next {
  color: var(--gray-light1);
}
#page_product .outdoorunit_detail .slider-thumbnail {
  width: 100%;
  padding-top: 20px;
}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 0;
}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
  display: contents;
}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p {
  background: #fff;
  color: var(--main_color);
  width: calc((100% - 8px) / 2);
  border: 1px solid var(--main_color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p span.name {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {opacity: 1;}
#page_product .outdoorunit_detail .slider-thumbnail .swiper-slide.swiper-slide-thumb-active p {
  background: var(--main_color);
  color: #fff;
}

/*--------------------------------------
品質保証ページ
--------------------------------------*/
#page_quality .quality_unit .txt_box {margin-bottom: 60px;}
#page_quality .quality_unit .txt_box p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 10px;
}
#page_quality .quality_unit .txt_box p:last-child {margin-bottom: 0;}
#page_quality .quality_unit .unit_item .frame_redtop {
  max-width: 960px;
  margin-inline: auto;
}
#page_quality .quality_unit .link_box {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
}
#page_quality .quality_unit ul.contribute_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
#page_quality .quality_unit ul.contribute_box li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid var(--gray-light1);
  padding-bottom: 40px;
}
#page_quality .quality_unit ul.contribute_box h4 {
  font-weight: bold;
  font-size: 1.1rem;
}
#page_quality .quality_unit ul.contribute_box h4 span {color: var(--main_color);}
#page_quality .quality_unit ul.contribute_box p {width: 100%;}

#page_quality .quality_unit .link_box a {
  width: 100%;
  background: var(--gray-light1);
  font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
  text-align: left;
  padding: 20px 16px;
  font-size: 1.0rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#page_quality .quality_unit .link_box a:after {
  position: absolute;
  right: 16px;
  content: "";
  top: 42%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--black1);
  border-right: 2px solid var(--black1);
  transform: rotate(45deg);
  transition: all 0.5s;
}
#page_quality .quality_unit .link_box a span {margin-right: 8px;}
#page_quality .iso_unit .cat_unit_frame {margin-bottom: 60px;}
#page_quality .iso_unit .cat_unit_frame .anchor_list ul li a {
  font-size: min(3.5vw, 0.9rem);
}


/*--------------------------------------
機械設備ページ
--------------------------------------*/
#page_equipment .cat_unit_frame .anchor_list {display: none;}
#page_equipment .cat_unit_frame .item_cat .cat_caption h4 {
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
#page_equipment .cat_unit_frame .item_cat .cat_caption h4 span {
  color: #fff;
  background: var(--black1);
  vertical-align: text-top;
  font-weight: normal;
  font-size: 0.8rem;
  padding: 2px 10px;
  line-height: 2.0;
}
#page_equipment .cat_unit_frame .item_cat .eq_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box .eq_name {
  padding: 6px 14px;
  background: var(--gray-light2);
  color: var(--main_color);
  font-weight: bold;
  margin-bottom: 10px;
}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box .eq_name span {font-size: 0.8rem;}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box p {
  font-size: 0.9rem;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  margin-bottom: 4px
}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box p:last-child {margin-bottom: 0;}
#page_equipment .cat_unit_frame .item_cat .eq_box .txt_box .eq_frame {
  margin-top: 10px;
  padding: 10px 16px;
  border: 2px solid var(--gray-light1);
}

#page_equipment .cat_unit_frame .item_cat .eq_box .img_box p {
  font-size: 0.8rem;
  padding-top: 10px;
  margin-bottom: 10px
}
#page_equipment .cat_unit_frame .item_cat .eq_box.img_box:last-child p {margin-bottom: 0;}

/* 加工例・施工例リスト */
#page_equipment .cat_unit_frame .item_cat .thumn_box {
  padding-top: 20px;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box .thumn_title {
  padding: 8px 14px;
  font-size: 1.0rem;
  font-weight: bold;
  background: var(--gray-light1);
  margin-bottom: 10px;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li {
  width: calc((100% - 20px) / 3);
  display: flex;
  flex-direction: column;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li p {
  font-size: min(2.5vw, 0.7rem);
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li .epex_box {
  position: relative;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li .epex_box img {
  width: 100%;
  height: auto;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li .epex_box .txt_over {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1% 3%;
  background: var(--black1);
  color: #fff;
}
#page_equipment .cat_unit_frame .item_cat .thumn_box ul li .txt_explain {padding-top: 4px;}

.pmenu_pc {display: none;}

/*--------------------------------------
新着情報ページ
--------------------------------------*/
#page_news .unit_outer_w {padding: 30px 30px 60px;}
#page_news .page_list{padding-top: 40px;}
#page_news .news_detail_unit {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}
#page_news .news_detail_unit .unit_item {width: 100%;}
#page_news .news_detail_unit .unit_item .lead_title {
  word-wrap: break-word;
}
#page_news .post_unit .img_box {margin-bottom: 20px;}
#page_news .post_unit .img_box p {
  display: flex;
  justify-content: center;
  aspect-ratio: auto;
}
#page_news .post_unit .img_box img {
  height: auto;
  width: 100%;
  max-width: 800px;
  max-height: 800px;
  object-fit: contain;
}
#page_news .post_unit .txt_box {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 2.0;
  margin-bottom: 40px;
  word-wrap: break-word;
}
#page_news .post_unit .txt_box a {color: var(--main_color);}
#page_news .log_unit .title_new_post {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#page_news .log_unit ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 80px;
  position: relative;
}
#page_news .log_unit article {background: #fff;}
#page_news .log_unit article a {
  display: flex;
  padding: 16px 10px 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#page_news .log_unit article a .img_box {
  width: 108px;
  height: 108px;
  display: none;
}
#page_news .log_unit article a .img_box img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page_news .log_unit article a .title_log_post {
  color: var(--black1);
  font-size: 0.9rem;
  padding-left: 16px;
  word-break: break-all;
}

/*--------------------------------------
お問い合わせページ
--------------------------------------*/
#page_contact .contact_unit .txt_box {
  width: 100%;
  padding: 20px 0;
}
#page_contact .contact_unit .txt_box p {font-size: 0.9rem;}
#page_contact .contact_unit .txt_box p.txt_confirmation {text-align: center;}
#page_contact .contact_unit .unit_outer_w {margin-bottom: 20px;}
#page_contact.contact_confirm form .item {
  align-items: center;
  min-height: 60px;
  margin-bottom: 20px;
}
#page_contact.contact_confirm form .item .label {padding: 0;}
#page_contact.contact_confirm .contact_unit .txt_box {
  padding: 4px 12px;
  background: var(--gray-light2);
}
#page_contact.contact_confirm .contact_unit .txt_confirmation {
  font-size: 0.9rem;
  text-align: center;
  background: initial;
  margin-bottom: 40px;
}

/*--------------------------------------
プライバシーポリシーページ
--------------------------------------*/
#page_privacy .privacy_unit {padding: 0 20px 160px;}
#page_privacy .txt_box {margin-bottom: 40px;}
#page_privacy .txt_box:last-child {margin-bottom: 0;}
#page_privacy .txt_box .privacy_lead {
  margin-bottom: 10px;
  border-left: 2px solid var(--main_color);
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}
#page_privacy .txt_box p {
  letter-spacing: 0;
  font-size: 0.9rem;
}
#page_privacy .txt_box ol {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline-start: 20px;
  /* list-style-type: decimal; */
}
#page_privacy .txt_box ol li {padding-left: 0.5em;}
#page_privacy .wmd_box {padding-top: 20px;}
#page_privacy .name_box p span {
  font-size: 1.1rem;
  margin-left: 20px;
}


/*--------------------------------------
600px以下
--------------------------------------*/
@media (min-width: 600px) {
  body.open {overflow: auto;}

  /* テキスト表示 */
  .txt_pc {display: block;}
  .txt_sp {display: none;}

  /* 改行 */
  .br_pc {display: block;}
  .br_sp {display: none;}

  /* 共通のテキスト枠 */
  /* .unit_outer_w {padding: 60px;} */
  .frame_redtop {padding: 70px 60px 60px;}

  /* 共通のtable */
  .table_01 {font-size: 0.9rem;}
  .table_01 tr td, .table_01 tr th {padding: 25px 0 10px;}
  .table_01 tr th {width: 20%;}
  .table_01 tr td {width: 80%;}

/* トップページ - 共通タイトル */
  .title {font-size: 16px;}
  .title span {
    font-size: 2.2em;
    letter-spacing: 6px;
  }
  .title span:after {font-size: 0.4em;}
  .section_title span {font-size: 3.2rem;}

  /* 下層ページ - 共通サブビジュアルタイトル */
  .page_underlayer .section_title {font-size: 2.8rem;}

  /* 下層ページ - 共通見出しタイトル */
  .lead_title {margin-bottom: 40px;}
  .lead_title h3::before{margin: 0 auto 30px;}
  .lead_title h3 span:after {
    padding-top: 6px;
    font-size: 0.9rem;
  }

  /* 共通のボタン */
  /*もっと見るボタン*/
  .btn_01 {font-size: min(2.0vw, 1.0rem);}

  /* 共通のform */
  form { font-size: 16px;}
  form .item .label {padding: 10px 0 4px;}
  form .item > div {padding: 0 0 4px}
  form .item input[type=email],
  form .item input[type=tel],
  form .item input[type=text] {
    padding: 10px;
  }

  /* ヘッダー */
  header .header_nav nav .menu-btn:checked ~ .nav_list {border: none;}
  header .header_nav p {
    width: 100%;
    height: 100%;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
  header .header_nav p.tel {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    font-family: yu-gothic-pr6n, sans-serif;
  }
  header .header_nav p a {padding: 0 15px;}
  header .header_nav p a span {
    display: inline-block;
    color: #fff;
  }
  header .header_nav p a i {font-size: 20px;}
  header .header_nav nav {border-left: none;}
  header .header_nav nav .nav_list {padding: 50px;}
  header .header_nav nav .nav_list ul {padding: 0;}

  /* フッター */
  footer .contact_box {margin-bottom: 60px;}
  footer .contact_box .section_title span {font-size: 2.4rem;}
  footer .contact_box address p {font-size: 14px;}
  footer .contact_box address p br {display: none;}
  footer .footerinfo_link ul.link_box li {
    width: calc((100% - 40px) / 5);
  }
  /* footer .footerinfo_link ul.link_box {justify-content: space-between;} */
  footer .footerinfo_link ul.link_box li .section_title {line-height: 1.4;}
  footer .footerinfo_link ul.link_box li .section_title span {
    font-size: min(2.2vw, 1.2rem);
    letter-spacing: 2px;
  }
  footer .footerinfo_link ul.link_box li .section_title span:after {
    font-size: min(1.5vw, 0.8rem);
  }

  /* メイン（トップページ） */
  main #section_mainvisual .mv_detail p {
    font-size: 0.7rem;
    bottom: 20px;
    right: 4vw;
  }
  main #section_mainvisual .mv_ph .mvslider_box {
    margin-left: 80px;
    height: 640px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_en {
    font-size: 3.4rem;
    line-height: 3.2rem;
    bottom: 160px;
    max-width: 500px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_ja {
    font-size: 1.3rem;
    letter-spacing: 3px;
    bottom: 20px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_ja p {margin-bottom: 16px;}
  main #section_mainvisual .mv_ph .txt_box.txt_ja p span {padding: 14px 12px 8px;}
  main #section_concept:after {
    bottom: 20px;
    right: -10px;
    font-size: 9.0rem;
  }
  main #section_concept.section_box {padding: 100px 20px 160px;}
  main #section_concept .lead_title {
    font-size: min(6.0vw, 2.0rem);
    line-height: 3.2rem;
    padding-top: 0;
  }
  main #section_concept .concept_unit {flex-direction: row;}
  main #section_concept .concept_unit li {
    width: calc((100% - 40px ) / 2);
  }
  main #section_concept .concept_unit .unit_txt .txt_box {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  main #section_product.section_box {padding: 0 0 100px;}
  main #section_product .section_title {
    background: linear-gradient(180deg,#fff 0%,#fff 40%, #fff 40px, var(--gray-light1) 40%,var(--gray-light1) 100%);
  }
  main #section_product .product_list li {
    width: calc((100% - 30px ) / 2);
  }

  main #section_explanation .explanation_box {bottom: -60px;}
  main #section_explanation .explanation_box .txt_box {padding: 40px 40px;}
  main #section_explanation .explanation_box .txt_box .lead_title {
    font-size: min(4vw, 1.4rem);
    line-height: 2.4rem;
    padding-top: 0;
  }

  /* 新着情報 */
  main #section_news.section_box .inner {max-width: 960px;}
  main #section_news.section_box {padding: 100px 20px;}
  main #section_news .unit_outer_w {padding: 60px;}

  /* 新着情報 - 共通 */
  .news_unit {
    flex-direction: row;
    gap: 30px;
  }
  .news_unit .news_title {width: 20%;}
  .news_unit .news_detail .notposted {
    padding-top: initial;
  }
  .news_unit .news_detail .news_box {padding-top: 0;}
  .news_unit .news_detail article a {
    flex-direction: row;
    font-size: 0.9rem;
    padding: 16px 0;
  }
  .news_unit .news_detail .btn_list {font-size: 0.9rem;}
  .news_unit .news_detail article a .post_title {
    margin-left: 20px;
  }

  .company_menu {padding-top: 40px;}

  .cat_unit_frame .frame_redtop {padding: 40px;}

  /* 企業情報ページ - 会社概要 */
  #page_company .organization_unit .img_box {overflow-x: initial;}
  #page_company .organization_unit .img_box p img {padding: 40px;}
  #page_company .organization_unit .txt_box {text-align: right;}

  /* 企業情報ページ - 事業所案内 */
  #page_company .office_info.mainoffice_unit,
  #page_company .office_info.suboffice_unit {
    padding: 0 20px 120px;
  }
  #page_company .office_info .unit_item {
    flex-direction: row;
    gap: 20px;
  }
  #page_company .office_info .cat_item_outer {gap: 0 60px;}
  #page_company .office_info .unit_item .info_box .tel_box {line-height: 1.6rem;}
  #page_company .info_box .btn_box {padding-top: 10px;}
  #page_company .office_info .unit_item .btn_box .btn_01 {
    font-size: 0.9rem;
  }
  #page_company .office_info.mainoffice_unit .info_box .tel_box .mainoffice_tel,
  #page_company .office_info.suboffice_unit .info_box .tel_box .suboffice_tel {
    font-size: min(5vw, 1.1rem);
    letter-spacing: 0px;
  }
  #page_company .office_info.mainoffice_unit .unit_item .info_box ul {width: auto;}
  #page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box {margin-bottom: 0;}
  #page_company .office_info.mainoffice_unit .unit_item .info_box .tel_box .mainoffice_tel {
    flex-direction: row;
    gap: 20px;
  }
  #page_company .office_info.suboffice_unit .unit_item .item_office {
    width: calc((100% - 30px) / 2);
  }
  #page_company .office_info.suboffice_unit .unit_item .item_office.frame_redtop {
    padding: 30px 20px 20px;
  }
    /* #page_company .office_info.suboffice_unit .unit_item .item_office .frame_redtop {
    padding: 30px 20px 20px;
  } */

/* 企業としての取り組み */
#page_company .efforts_unit .txt_box p {
  font-size: 1.0rem;
  text-align: center;
}
#page_company .efforts_unit .flex_box p {
  max-width: 50%;
  text-align: left;
}
#page_company .efforts_unit .txt_box h4 {
  font-size: 1.6rem;
}
#page_company .efforts_unit .flex_box.katei_ryouritsu p {
  margin-bottom: 50px;
}
  /* 製品情報ページ */

  /* リスト3つ並びのとき */
  #page_product .product_list {
    gap: 40px 30px;
  }
  #page_product .product_list li {
    width: calc((100% - 60px) / 3);
  }

  #page_product .product_list li a .img_box img {
    aspect-ratio: 3/2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #page_product .product_list li a .txt_box {padding: 16px 0;}
  #page_product .prod_title span {
    display: grid;
    font-size: 1.3rem
  }
  #page_product .prod_title span:after {margin-left: 0;}

  /* 品質保証ページ */
  #page_quality .quality_unit .txt_box {text-align: center;}
  #page_quality .quality_unit .txt_box p {font-size: 1.0rem;}
  #page_quality .quality_unit ul.contribute_box {gap: 60px;}
  #page_quality .quality_unit ul.contribute_box li {
    flex-direction: row;
    gap: 10px;
  }
  #page_quality .quality_unit ul.contribute_box h4 {
    font-size: 1.1rem;
    min-width: 240px;
  }

  /* 新着情報ページ */
  #page_news .unit_outer_w {padding: 60px 60px 80px;}
  #page_news .news_unit {flex-direction: column;}
  /* #page_news .log_unit ul {margin-bottom: 0;} */

  /* プライバシーポリシーページ */
  #page_privacy .txt_box .privacy_lead {font-size: 1.3rem;}
  #page_privacy .txt_box {margin-bottom: 60px;}
  #page_privacy .txt_box p {font-size: 1.0rem;}
  #page_privacy .name_box p span {font-size: 1.3rem;}
}

/*--------------------------------------
1025px以下
--------------------------------------*/
@media (min-width: 1025px) {

  /* カテゴリリンクボタン、一覧へ戻るボタン */
  .btn_02 {margin: 0 auto;}

  .arrow_top {margin-right: 40px;}
  .arrow_top a {bottom: 40px;}

  /* 製品情報 - 共通タイトル */
  .prod_title span {font-size: 1.6rem;}


  /* 共通のtable */
  .table_01 tr:last-child th, .table_01 tr:last-child td {
    padding: 40px 15px;
  }
  .table_01 tr th, .table_01 tr td {
    padding: 20px 15px;
  }

  /* 共通のform */
  form .item {
    -webkit-box-orient: horizontal;
    flex-direction: row;
    height: 80px;
  }
  form .item .label {
    padding: 18px 0 0;
    margin: 0 4px 0 0;
    width: 25%;
  }
  form .item > div {
    padding: 20px 10px;
    width: 75%;
  }
  form .item .label p {justify-content: space-between;}
  form .item .label p span {display: block;}

  /* ヘッダー */
  header .header_nav ul.gnav_menu {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
  }
  header .header_nav ul.gnav_menu li {
    text-align: center;
    width: 110px;
    text-align: center;
  }
  header .header_nav ul.gnav_menu li .gnav_link {
    height: 100%;
    width: 100%;
  }
  header .header_nav ul.gnav_menu li a {
    height: 60px;
    color: var(--black1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header_nav ul.gnav_menu li a:after {
    position: absolute;
    left: 14%;
    content: '';
    width: 70%;
    height: 2px;
    background: var(--main_color);
    bottom: 18px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  header .header_nav .logo_box img {
    max-width: 200px;
  }
  header .header_nav ul.gnav_menu li a:hover:after {transform: scale(1, 1);}
  header .header_nav .btn_contact {
    display: block;
    background: var(--main_color);
    width: 180px;
  }
  header .header_nav nav {display: none;}
  header .header_nav nav .nav_list {
    position: absolute;
    width: 478px;
    padding: 50px 120px;
  }

  /* フッター */
  /* ロゴ・gnav */
  footer .footerinfo_box {margin: 0 auto 40px;}
  footer .footerinfo_box .footerinfo_unit .box_gnav ul {display: flex;}
  footer .footerinfo_box .footerinfo_unit {
    /* flex-direction: row; */
    /* align-items: flex-end; */
  }
  footer .footerinfo_box .footerinfo_unit .box_gnav figure img {
    margin-bottom: 0;
    margin-right: 20px;
    max-width: 200px;
  }
  footer .footerinfo_box .footerinfo_unit ul.link_box li a .img_box {
    height: 32px;
    margin-bottom: 10px;
  }
  footer .footerinfo_box .footerinfo_unit ul.link_box li .section_title {
    line-height: 1.6;
  }
  footer .footerinfo_box .footerinfo_unit ul.link_box li .section_title span {
    font-size: min(3vw, 1.4rem);
    letter-spacing: 3px;
  }
  footer .btn_contact br {display: block;}

  /* メイン（トップページ） */
  main #section_mainvisual .mv_detail p {
    font-size: 0.8rem;
    bottom: 60px;
    right: 2vw;
  }
  main #section_mainvisual .mv_ph .mvslider_box {
    margin-left: 200px;
    height: 960px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_en {
    font-size: 6.0rem;
    line-height: 5.8rem;
    bottom: 200px;
    max-width: 960px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_ja {
    font-size: 1.8rem;
    letter-spacing: 5px;
    bottom: 40px;
  }
  main #section_mainvisual .mv_ph .txt_box.txt_ja p {margin-bottom: 14px;}
  main #section_mainvisual .mv_ph .txt_box.txt_a p span {padding: 12px 20px;}
  main #section_concept:after {
    bottom: -30px;
    font-size: 14.0rem;
  }
  main #section_concept .lead_title {
    font-size: min(6vw, 2.4rem);
    line-height: 3.4rem;
    margin-bottom: 20px;
  }
  main #section_concept .concept_unit li {
    width: calc((100% - 60px ) / 2);
    margin-bottom: 60px;
  }

  main #section_product .product_list {gap:60px;}
  main #section_product .product_list li {width: calc((100% - 60px ) / 2);}
  main #section_explanation .explanation_box {
    width: 60%;
    bottom: -40px;
  }
  main #section_explanation .explanation_box .txt_box {padding: 80px 40px;}
  main #section_explanation .explanation_box .txt_box .lead_title {
    font-size: min(6vw, 2.4rem);
    line-height: 3.4rem;
    margin-bottom: 20px;
  }
  main #section_explanation .explanation_box .txt_box p {font-size: 1.0rem;}

  /* 共通 - 下層ページ */
  .spacing {padding: 0;}
  .unit_box {padding-bottom: 120px;}

  main .subvisual {margin-bottom: 120px;}

  /* 共通 - 説明カテゴリ */
  .cat_unit_frame {
    flex-direction: row;
    gap: 20px;
  }
  .cat_unit_frame .unit_item {
    margin-top: -80px;
    padding-top: 80px;
  }
  .cat_unit_frame .anchor_list {
    min-width: 280px;
    width: 25%;
    top: 0;
    padding: 0;
    margin-bottom: 0;
  }
  .cat_unit_frame .anchor_list ul {
    position: sticky;
    top: 75px;
    flex-direction: column;
  }
  .cat_unit_frame .anchor_list ul li {width: 100%;}
  .cat_unit_frame .cat_item_outer {width: 70%;}
  .cat_unit_frame .frame_redtop {padding: 60px;}
  .cat_unit_frame .item_cat {gap: 20px;}
  .cat_unit_frame .item_cat .cat_caption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .cat_unit_frame .item_cat .cat_caption h4 {
    font-size: 1.8rem;
  }
  .cat_unit_frame .item_cat .cat_about {width: 100%;}
  .cat_unit_frame .item_cat .cat_about.txt_box {font-size: 1.0rem;}
  .cat_unit_frame .item_cat .cat_about .office_list li {
    flex-direction: row;
    gap: 16px;
  }
  .cat_unit_frame .item_cat .cat_about .office_list li p {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
  .cat_unit_frame .item_cat .cat_about .office_list li .office_name {min-width: 120px;}
  .cat_unit_frame .item_cat .doc_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cat_unit_frame .item_cat .doc_box {flex-direction: row;}
  .cat_unit_frame .item_cat .doc_box li {
    width: calc((100% - 10px) / 2);
  }
  .cat_unit_frame .item_cat .doc_box li a {
    padding: 16px;
    border: 2px solid var(--gray-light1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cat_unit_frame .item_cat .doc_box li p span {
    font-size: 0.7rem;
  }
  .cat_unit_frame .item_cat .doc_box li .icon_pdf {
    max-width: 28px;
  }
  .cat_unit_frame .item_cat .doc_box li .icon_pdf img {
    width: 100%;
  }


  /* 企業情報ページ */
  .company_under .company_menu {
    flex-direction: row;
    padding-bottom: 120px;
  }
  .company_under .company_menu li {width: calc((100% - 20px)/3);}
  /* .company_under .company_menu li {width: calc((100% - 30px)/4);} */
  #page_company .company_unit ul {gap: 20px;}
  #page_company .company_unit ul li a .txt_box {
    font-size: 0.9rem;
    padding: 40px;
  }
  #page_company .company_unit ul li .unit_title {font-size: 1.8rem;}

  /* 企業情報ページ - 社長挨拶 */
  #page_company .representative_unit ul {
    flex-direction: row;
    gap: 40px;
  }
  #page_company .representative_unit .img_box {width: 40%;}
  #page_company .representative_unit .img_box p {
    max-width: 640px;
    margin-inline: initial;
  }
  #page_company .representative_unit .txt_box_outer {
    /* width: 60%; */
    padding: 0 40px;
  }
  #page_company .representative_unit .txt_box_outer .txt_box {
    text-align: center;
  }
  #page_company .representative_unit .txt_box .greeting_caption {font-size: 1.4rem;}
  #page_company .philosophy_unit .txt_box {
    padding: 60px;
    margin-bottom: 30px;
  }
  #page_company .philosophy_unit .txt_box .philosophy_caption.caption_large {font-size: 1.5rem;}
  #page_company .philosophy_unit .txt_box .philosophy_caption.caption_small {font-size: 1.2rem;}
  #page_company .philosophy_unit .txt_box p {
    font-size: 1.0rem;
    text-align: center;
  }

  /* 企業情報ページ - 会社概要 */
  #page_company .overview_unit .frame_redtop {
    padding: 50px 40px 40px;
  }
  #page_company .overview_unit .member p {
    font-size: 0.9rem;
  }
  #page_company .history_unit .timeline_item {padding: 20px 0;}
  #page_company .history_unit .timeline_item::before {
    width: 140px;
    font-size: 1.2rem;
    top: 1.6rem;
  }
  #page_company .history_unit .timeline_item ul {padding-left: 160px;}
  #page_company .history_unit .timeline_item ul li {font-size: 0.9rem;}
  #page_company .history_unit .timeline_item ul li span {font-size: 1.0rem;}
  #page_company .suppliers_unit ul.suppliers_list {
    flex-direction: row;
    gap: 8px;
  }
  #page_company .suppliers_unit ul.suppliers_list li {
    width: calc((100% - 16px) / 3);
  }

  /* 企業情報ページ　企業としての取り組み */

  #page_company .efforts_unit .txt_box .efforts_caption.caption_large {font-size: 1.5rem;}
  #page_company .efforts_unit .txt_box .efforts_caption.caption_small {font-size: 1.2rem;}
  #page_company .efforts_unit .flex_box p {
    max-width: 50%;
    text-align: left;
  }
  #page_company .efforts_unit .flex_box.katei_ryouritsu p {
    max-width: 65%;
    text-align: left;
  }
  #page_company .efforts_unit .txt_box {
    padding: 60px;
    margin-bottom: 30px;}

  /* 企業情報ページ - 事業所案内 */
  #page_company .office_info .unit_item .item_office .item_office_inner {
    flex-direction: row;
    gap: 40px;
  }
  #page_company .office_info .unit_item .img_box {
    max-width: 160px;
    margin-bottom: 0;
    order: 2;
  }
  #page_company .office_info .unit_item .info_box {
    order: 1;
  }
  #page_company .office_info.mainoffice_unit .unit_item .img_box {order: 1;}
  #page_company .office_info.mainoffice_unit .unit_item .info_box {order: 2;}
  #page_company .office_info .unit_item .info_box ul {margin-inline: initial;}
  #page_company .office_info .unit_item .img_box {
    width: 100%;
    max-width: 160px;
  }
  #page_company .office_info .info_box .address_box {margin-bottom: 8px;}
  #page_company .office_info .unit_item .info_box ul {
    align-items: flex-start;
  }
  #page_company .office_info .info_box .office_name {
    font-size: clamp(1.2rem, 3.0vw, 0.8rem);
  }
  #page_company .office_info .info_box .address_box {
    font-size: 0.9rem;
  }
  #page_company .office_info .info_box .btn_box {
    max-width: 240px;
    margin-inline: initial;
  }

  #page_company .office_info.mainoffice_unit .unit_item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #page_company .office_info.mainoffice_unit .unit_item .info_box {justify-content: center;}
  #page_company .office_info.mainoffice_unit .unit_item .img_box {
    width: 100%;
    max-width: 320px;
  }
  #page_company .office_info.mainoffice_unit .col_1 .info_box .tel_box .mainoffice_tel {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
  #page_company .office_info.suboffice_unit .unit_item .item_office {
    width: calc((100% - 20px) / 2);
  }
  #page_company .office_info.suboffice_unit .unit_item .item_office.frame_redtop {
    padding: 40px 30px 30px;
  }
  #page_company .office_info.suboffice_unit .col_1 .info_box .tel_box .suboffice_tel {
    flex-direction: row;
    gap: 10px;
  }
  #page_company .office_info.mainoffice_unit .info_box .tel_box .mainoffice_tel,
  #page_company .office_info.suboffice_unit .info_box .tel_box .suboffice_tel {
    font-size: min(5vw, 1.2rem);
    /* letter-spacing: 1px; */
  }

  /* 製品情報ページ */
  #page_product .unit_box {padding: 0 20px 160px;}
  #page_product.product_under .unit_box {padding: 0 0 160px;}
  #page_product.product_under .txt_box {font-size: 1.0rem;}
  #page_product .cat_unit_frame .anchor_list {display: initial;}

  /* 製品情報 - 共通*/
  #page_product .product_item_box {margin-bottom: 120px;}
  #page_product .product_item_box ul {
    display: flex;
    flex-direction: row;
    /* display: block; */
    /* position: relative; */
    /* margin-bottom: 100px; */
    margin-bottom: 0;
  }
  #page_product .product_item_box ul .img_box_outer {
    order: 2;
    display: flex;
  }
  #page_product .product_item_box ul:nth-child(odd) .img_box_outer {justify-content: flex-end}
  #page_product .product_item_box ul:nth-child(even) .img_box_outer {justify-content: flex-start}
  #page_product .product_item_box ul .img_box {
    margin-bottom: initial;
    width: 100%;
    max-width: 800px;
  }
  #page_product .product_item_box ul .txt_box_outer {
    background: initial;
    max-width: initial;
    width: 100%;
    /* position: absolute; */
    order: 1;
    /* bottom: -40px; */
    display: flex;
  }
  #page_product .product_item_box ul:nth-child(odd) .txt_box_outer {
    /* left: 0; */
    justify-content: flex-start;
    order: 2;
  }
  #page_product .product_item_box ul:nth-child(even) .txt_box_outer {
    /* right: 0; */
    justify-content: flex-end;
    order: 1;
  }
  #page_product .product_item_box ul .txt_box {
    padding: 60px;
    background: var(--gray-light2);
    max-width: 720px;
    width: 100%;
    min-height: 320px;
  }
  #page_product .product_item_box .product_item_title {
    margin-bottom: 40px;
  }


  /* リスト3つ並びのとき */
  #page_product .product_list {
    gap: 80px 60px;
  }
  #page_product .product_list li {
    width: calc((100% - 120px) / 3);
  }
  /* リスト4つ並びのとき */
  #page_product .product_list.row_4 {
    gap: 40px;
  }
  #page_product .product_list.row_4 li {
    width: calc((100% - 120px) / 4);
  }
  #page_product .prod_title span {font-size: 1.5rem}

  /* 製品情報 - 電機製品（室外機スライダー） */
  #page_product .product_item_box .outdoorunit_detail {
    padding: 60px 20px;
    margin-bottom: 0;
  }
  #page_product .outdoorunit_detail .slider_unit_outer {padding: 100px 0;}
  #page_product .outdoorunit_detail .slider_unit {
    flex-direction: row;
    padding: 0 20px;
  }
  #page_product .outdoorunit_detail .slider {
    order: 2;
    width: 65%;
  }
  #page_product .outdoorunit_detail .slider-thumbnail {
    order: 1;
    width: 35%;
    padding-right: 3vw;
    padding-top: 0;
  }
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-wrapper {flex-direction: column;}
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-slide {width: 100% !important;}
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p {width: 100%;}
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p:after {
    position: absolute;
    right: 16px;
    content: "";
    top: 40%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p span.number {
    padding: 12px;
    font-size: 1.1rem;
    width: 64px;
  }
  #page_product .outdoorunit_detail .slider-thumbnail .swiper-slide p span.name {
    padding: 12px 30px 12px 12px;
    font-size: clamp(0.8rem, 1.5vw, 1.0rem);
  }

  /* 品質保証ページ */
  #page_quality .quality_unit ul.contribute_box li {
    gap: 60px;
    padding-bottom: 60px;
  }
  #page_quality .quality_unit ul.contribute_box h4 {font-size: 1.3rem;}
  #page_quality .quality_unit .link_box {margin-bottom: 60px;}
  #page_quality .quality_unit .link_box a {font-size: 1.1rem;}

  /* 機械設備ページ */
  #page_equipment .cat_unit_frame .anchor_list {display: initial;}
  #page_equipment .cat_unit_frame .item_cat .cat_caption h4 {
    font-size: 1.3rem;
    order: initial;
    flex-direction: row;
    /* margin-bottom: 20px; */
  }
  #page_equipment .cat_unit_frame .item_cat .cat_caption h4 span {line-height: 2.3;}
  #page_equipment .cat_unit_frame .item_cat .eq_box {
    flex-direction: row;
    gap: 24px;
  }
  #page_equipment .cat_unit_frame .item_cat .eq_box .txt_box,
  #page_equipment .cat_unit_frame .item_cat .eq_box .img_box {
    width: calc((100% - 24px) / 2);
  }
  #page_equipment .cat_unit_frame .item_cat .eq_box.one_column .txt_box {
    width: 100%;
  }
  #page_equipment .cat_unit_frame .item_cat .thumn_box .thumn_title {
    margin-bottom: 20px;
  }

  #page_equipment .cat_unit_frame .item_cat .thumn_box ul {
    gap: 20px;
  }
  #page_equipment .cat_unit_frame .item_cat .thumn_box ul li {
    width: calc((100% - 60px) / 4);
  }

  /*====================================================================
  .s_02 .accordion_one - 機械・検査機メニュー
  ====================================================================*/
  .pmenu_pc {display: block;}
  .cat_unit_frame .product_menu {
    background: var(--gray-light1);
    width: 25%;
  }
  .cat_unit_frame .product_menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .s_02 .accordion_outer {
    position: sticky;
    top: 75px;
  }
  .s_02 .accordion_one .accordion_header {
    background: var(--black2);
    color: #fff;
    border-bottom: 2px solid var(--gray-light1);
    font-size: min(3.0vw, 1.0rem);;
    font-weight: bold;
    padding: 16px 11%;
    text-align: left;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .s_02 .accordion_one .accordion_header:hover {
    opacity: .8;
  }
  .s_02 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .s_02 .accordion_one .accordion_header.open .i_box {
    transform: rotate(180deg);
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background: #fff;
    /* border-radius: 10px; */
    width: 16px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 0;
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .s_02 .accordion_one .accordion_header .i_box .one_i:before {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
  }
  .s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
    transform: rotate(-45deg);
  }
  .s_02 .accordion_one .accordion_inner {
    display: none;
    box-sizing: border-box;
    position: sticky;
    top: 75px;
  }
  .s_02 .accordion_one .accordion_inner .box_one {
    background: #fff;
    padding: 12px 8px 12px 32px;
    margin: 4px 0;
    width: 100%;
  }
  .s_02 .accordion_one .accordion_inner .box_one a {
    display: block;
    font-family: 'Jost', 'Noto Sans JP', yu-gothic-pr6n, sans-serif;
    font-weight: bold;
    font-size: min(3.0vw, 0.9rem);
    line-height: min(5.0vw, 1.3rem);

  }
  .s_02 .accordion_one .accordion_inner .box_one span {
    position: relative;
  }
  .s_02 .accordion_one .accordion_inner .box_one span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left: 8px solid var(--main_color);
  }




  /* 新着情報ページ */
  #page_news .news_unit {flex-direction: column;}
  #page_news .news_detail_unit {
    flex-direction: row;
    padding: 0;
  }
  #page_news .news_detail_unit .unit_item:first-child {
    width: calc(70% - 40px);
  }
  #page_news .news_detail_unit .unit_item:last-child {width: 30%;}
  #page_news .post_unit {margin-bottom: 120px;}
  #page_news .post_unit .txt_box {padding: 40px;}

  /* お問い合わせページ */
  #page_contact .contact_unit .txt_box {padding: 40px 0;}
  #page_contact .contact_unit .txt_box p {font-size: 1.0rem;}
  #page_contact .contact_unit .unit_outer_w {
    padding: 60px;
    margin-bottom: 40px;
  }
  #page_contact.contact_confirm form .item {
    align-items: center;
    min-height: 80px;
    margin-bottom: 0;
  }
  #page_contact.contact_confirm .contact_unit .txt_confirmation {font-size: 1.0rem;}
}