@charset "utf-8";

/* Thanks...
SujitAdroja => https://uiverse.io/profile/SujitAdroja
coco-factory.jp => https://coco-factory.jp/ugokuweb/
Vincent Durand => https://codepen.io/onediv/pen/jEmjap
@nxworld => https://codepen.io/nxworld
Created by... axn & Y..Y
*/

/* ■■■■■■■■■■■■■■
変数定義
■■■■■■■■■■■■■■ */
:root{
  /* 色系 */
  --text-color-dark: #242424;
  --text-color-light: #ffffff;
  --bg-text-color-01: #ececec;
  --bg-text-color-02: #F3F3F3;
  --bg-color-std: #E4E4E4;
  --bg-color-01: #EBEBEB;
  --accent-color: #16C532;
  --corp-color-light: #00A2DD;
  --corp-color-dark: #0066A8;
  /* 文字サイズ系 */
  --font-size-bg: 240px;
  --font-size-bg-tb: 200px;
  --font-size-bg-sp: 128px;
  --font-size-titleEN-pc: 72px;
  --font-size-titleJP-pc: 24px;
  --font-size-titleEN-sp: 48px;
  --font-size-titleJP-sp: 16px;
  --font-size-pageTitleEN-sp: 48px;
  --font-size-pageTitleJP-sp: 24px;
}

/* ■■■■■■■■■■■■■■
フォント設定
■■■■■■■■■■■■■■ */
@font-face {
  font-family: 'Josefin Sans';
  src: url('../font/JosefinSans-Bold.woff2') format('woff2'),
       url('../font/JosefinSans-Bold.woff') format('woff'),
       url('../font/JosefinSans-Bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Josefin Sans';
  src: url('../font/JosefinSans-BoldItalic.woff2') format('woff2'),
       url('../font/JosefinSans-BoldItalic.woff') format('woff'),
       url('../font/JosefinSans-BoldItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}


/* ■■■■■■■■■■■■■■
PCとスマホ共通設定
■■■■■■■■■■■■■■ */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color-std);
  line-height: 1.6;
  letter-spacing: 0.07em;
  font-size: 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: var(--text-color-dark);
}

img {
  max-width:100%;
  vertical-align:bottom;
  object-fit:cover;
}

.block{
  display: block;
}

.center{
  text-align: center;
}

.overflow-hidden {
  overflow: hidden;
}

.text-color-light {
  color: var(--text-color-light);
}

.text-color-dark {
  color: var(--text-color-dark);
}

.text-color-blue {
  color: var(--corp-color-light);
}

.bg-text-color-01{
  color: var(--bg-text-color-01);
}

.bg-text-color-02{
  color: var(--bg-text-color-02);
}

.mt-32px {
  margin-top: 32px;
}

.mb-32px {
  margin-bottom: 32px;
}

.mb-64px {
  margin-bottom: 64px;
}

.pt-64px {
  padding-top: 64px;
}

.pt-120px {
  padding-top: 120px;
}

.plr-20px {
  padding-right:20px;
  padding-left:20px;
}

/* topへ戻るボタン設定 */
/* 最下部ボタン */
#page-top a {
  background:var(--corp-color-dark);
  color:#fff;
  font-size: 20px;
  text-align: center;
  display: block;
  padding:16px;
  transition: all 0.7s;
}

#page-top a:hover {
  background: var(--corp-color-light);
}

/* 画面右下固定ボタン */
#page-top02 a img {
  border-radius: 5px;
}

#page-top02 a:hover {
  opacity: 0.5;
  transition:all 0.7s;
}

/*リンクを右下に固定*/
#page-top02 {
  position: fixed;
  right: 20px;
  bottom:20px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/
#page-top02.LeftMove {
  animation: LeftAnime 1.0s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
  transform: translateX(100px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/*　右の動き　*/
#page-top02.RightMove {
  animation: RightAnime 1.0s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
  transform: translateX(0);
  }
  to {
    opacity: 0;
  transform: translateX(100px);
  }
}


/* ■■■フェード効果設定■■■ */

/* パララックス設定 */
.parallax_content {
  background-attachment: fixed;
  background-position: center top;
}


/* wrapper設定 */
.wrapper {
  width: 1000px;
  max-width:100%;
  margin: 0 auto;
}

/* ■■■■■■■■■■■■■■■■■■■■■
/* PCサイト */
/* ■■■■■■■■■■■■■■■■■■■■■

/* スマホ用の非表示コンテンツ */
.header-logo-SP, .openbtn1, #SP-nav {
  display: none;
}

/* ナビゲーションメニュー  */
header {
  width: 100%;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-logo img {
  height: 20px;
  vertical-align: middle;
}

.header-nav {
  display: flex;  /* お問い合わせボタンと横並びにするため */
}

/*=======================
メニューを横並びにする設定
=======================*/
.gnavi {
  display: flex;
}

.gnavi li a {
  display: block;
  padding:10px 10px;
}

.gnavi li {
  margin-right: 14px;
}

/*===========================
　中心から外に線が伸びる（下部）
===========================*/

.gnavi li a {
position: relative;  /*線の基点とするためrelativeを指定*/
}

.gnavi li a::before {
  content: '';
  position: absolute;  /*絶対配置で線の位置を決める*/
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background: var(--corp-color-light);

  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

.gnavi li a::after {
  content: '';
  position: absolute;  /*絶対配置で線の位置を決める*/
  top: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background: var(--corp-color-light);

  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::before,
.gnavi li a:hover::before,
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*お問い合わせボタンのきらっと光る効果*/
.btn-shine {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/  
  display:inline-block;
  background: var(--corp-color-light);
  color: #fff;
  padding: 10px 20px;
}

/*キラッと光る*/
.btn-shine::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  right: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btn-shine:hover::before {
  animation: shine 0.8s;
}

@keyframes shine {
  100% {
    right: 125%;
  }
}


/* TOPページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
  MAIN VISUAL
  メインビジュアル */

.main-visual {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
  z-index: 50;
}

/* 文字可視化のための背景黒グラデーション */
.main-visual-wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  z-index: 5;
}

/* 背景画像に青色のスクリーン */
.main-visual-wrap::after {
  content: "";
  display: block;
  background-color: rgba(0, 47, 78, 0.2);
  width: 100%;
  height: 100%;
  position:absolute;
  left: 0;
  top: 0px;
}

/* 背景画像に斜めのスクリーン（左） */
.main-visual::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  clip-path: polygon(0 0, 30vw 0, 10vw 100vh, 0vw 100vh);
  background-color: rgba(0, 101, 168, 0.2);
  z-index: 10;
}

/* 背景画像に斜めのスクリーン（右） */
.main-visual::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  clip-path: polygon(90vw 0, 100vw 0, 100vw 100vh, 70vw 100vh);
  background-color: rgba(0, 101, 168, 0.2);
  z-index: 5;
}

.main-visual img, #mainvisual {
  position: relative;
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

/* メインビジュアルにドットフィルターを描写 */
#mainvisual::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: radial-gradient(#11111179 30%, transparent 31%), radial-gradient(#11111179 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

.main-visual-messages-area {
  display: flex;
  position: absolute;
  top: 55%;
  left: 30%;
  transform: translate(-30%, -50%);
  color: var(--text-color-light);
  z-index: 10;
}

.main-visual-messages-left {
  margin: 0 2em 0 auto;
}

/* 文字列を縦方向に編集 */
.vertical-text {
  writing-mode: vertical-lr;
  font-size: 12px;
  font-family: 'Josefin Sans';
}

.main-visual-messages-right p {
  margin-bottom: 64px;
}

.row-01 {
  margin-top: -16px;
  font-size: calc(32px + (100vw - 768px) / 50);
  font-weight: 900;
  white-space: nowrap;
}

.row-02 {
  font-size: calc(64px + (100vw - 768px) / 50);
  font-weight: 900;
  white-space: nowrap;
}

.row-03 {
  font-size: 18px;
  font-weight: 400;
}


  /* お問い合わせボタンの設定 */
.contact-button {
  position:relative;
  padding:14px 40px;
  display: inline-block;
  background:var(--accent-color);
  color:var(--text-color-light);
  transition:700ms ease all;
}
.contact-button:hover {
  background:#16c53334;
  color:var(--text-color-light);
}

.contact-button::before,
.contact-button::after {
  position:absolute;
  content:'';
  top:0;
  right:0;
  height:2px;
  width:0;
  background: var(--accent-color);
  transition:700ms ease all;
}

.contact-button::after {
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}

.contact-button:hover::before,
.contact-button:hover::after {
  width:100%;
  transition:700ms ease all;
}

/*スクロールダウン全体の場所*/
.scrolldown {
  margin-bottom: 30px;
  position:absolute;
  right:8%;
  bottom:0px;
  /*全体の高さ*/
  height:100px;
  z-index: 20;
  mix-blend-mode: hard-light;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left:-23px;
  top: -40px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2em;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 2px;
  height: 100px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  60%{
    height:100px;
    opacity: 1;
  }
  100%{
    top:100px;
    opacity: 0;
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■
  STRENGTH
  日鉄ドラムテクノの強み */
#strength {
  position: relative;
}

.section-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 1em;
  top: 0;
  left: calc(100vw - 90%);
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: "Josefin Sans";
  z-index: -10;
}

.section-title-en {
  font-size: var(--font-size-titleEN-pc);
  font-weight: 900;
  font-family: "Josefin Sans";
  text-align: center;
  line-height: 0.98em;
}

.section-title-jp {
  margin-top: 16px;
  margin-bottom: 64px;
  font-size: var(--font-size-titleJP-pc);
  text-align: center;
}

.section-declaration-jp {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color-dark);
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.15em;
}

.section-declaration-en {
  margin-bottom: 72px;
  font-weight: bold;
  color: var(--text-color-dark);
  text-align: center;
  letter-spacing: 0.03em;
}

.strength-area {
  margin-bottom: 140px;
  display: flex;
  justify-content: space-around;
}

.strength-image-container {
  position: relative;
  width: 296px;
  height: 336px;
}

.strength-photo {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  backdrop-filter: brightness(0.6);
}

.strength-photo_sp {
  display: none;
}

.white-box {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  padding: 30px;
  max-width: 226px;
  height: 126px;
  background-color: #36587771;
  backdrop-filter: blur(2px);
}

.white-box > p {
  color: #ffffff;
}

.white-box > p > :first-child {
  font-size: 24px;
  font-weight: 900;
}

.more-info-button {
  max-width: 280px;
  height: 50px;
  color: var(--corp-color-light);
  border: 1px solid var(--corp-color-light);
  padding: 12px 80px;
  font-size: 16px;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 120px;
  white-space: nowrap;
}

.more-info-button::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  left: 20px;
  /*矢印の形状*/
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--corp-color-light);
  border-right: 1px solid var(--corp-color-light);
  transform: rotate(45deg);
}

.more-info-button:hover {
  color: #ffffff;
}

.more-info-button::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--corp-color-light);
  z-index: -1;
  transition: all 1s;
}

.more-info-button:hover::before {
  width: 160%;
}


/* ■■■■■■■■■■■■■■■■■■■■■
PRODUCTS
製品案内
sliderは別ファイル(slider.css)へ記載
*/

#products {
  position: relative;
  background-color: var(--bg-color-01);
  z-index: 0;
}

.carousel-wrap {
  margin-bottom: 72px;
}

.products-image-container {
  background-color: #ebebeb;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
}

.products-detail-text {
  padding: 10px;
  height: 220px;
}

.products-detail-text h4 {
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.products-detail-text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
}

/* ■■■■■■■■■■■■■■■■■■■■■
COMPANY
会社情報 */

#company {
  position: relative;
}

.company-area-block01 {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.company-area-block02 {
  margin-bottom: 120px;
}

.company-image-container {
  width: 500px;
  height: 384px;
  z-index: -1;
}

.company-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.company-text {
  background-color: var(--bg-text-color-02);
  margin: 18px 0px 0px -50px;
  padding: 30px;
  width: 500px;
  height: 348px;
  z-index: 0;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
}

.company-text h4 {
  margin-bottom: 32px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nintei-area {
  margin: 16px auto;
  padding: 30px;
  width: 100%;

  .nintei-area-card {
    padding: 60px 30px;
    text-align: center;
    background-color: var(--bg-text-color-02);
    box-shadow: 0 0 10px rgba(0,0,0,.05);

    h4 {
      font-size: 1.2em;
      font-weight: 700;
    }

    p {
      font-size: 0.8em;
    }

    img {
      max-width: 100%;
    }
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■
CONTACT
お問い合わせ */

#contact {
  width: 100%;
  z-index: 0;
}

.top-triangle {
  position: absolute;
  background-color: var(--bg-color-std);
  width: 60px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
}

.contact-background-image {
  position: relative;
  background-image: url("../images/main-visual-contact.jpg");
  background-repeat: no-repeat;
  object-fit: contain;
  background-size: cover;
  z-index: 0;
  padding-bottom: 120px;
}

/* 背景画像に青色のスクリーン */
.contact-background-image::after {
  content: "";
  position:absolute;
  display: block;
  background-color: rgba(0, 101, 168, 0.555);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  z-index: -10;
}

.map iframe {
  width: 100%;
  height: 400px;
}

/* ■■■■■■■■■■■■■■■■■■■■■
footer */

footer {
  position: relative;
}

.company-logo, .footer-navi {
  margin-bottom: 40px;
}

.company-info-text {
  margin-bottom: 56px;
}

.footer-navi ul {
  justify-content: center;
}

.Copyright {
  text-align: center;
  margin-bottom: 16px;
}


/* 会社情報ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
TOP IMAGE
トップの写真 */

.top-image {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  padding-top: 24px;
}

/* 文字可視化のための背景黒グラデーション */
.top-image-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.151), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 5;
}

/* 背景画像に青色のスクリーン */
.top-image-wrap::after {
  position:absolute;
  left: 0;
  top: 0px;
  content: "";
  display: block;
  background-color: rgba(0, 101, 168, 0.1);
  width: 100%;
  height: 100%;
}

.top-image img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.top-image-messages-area {
  width: 1000px;
  max-width: 80%;
  position: absolute;
  top: 55%;
  left: 40%;
  transform: translate(-40%, -50%);
  color: var(--text-color-light);
  z-index: 10;
}

.top-image-messages-area h1 {
  font-size: 64px;
  font-weight: 900;
  font-family: 'Josefin Sans';
  letter-spacing: 0.07em;
  line-height: 1.2
}

.top-image-messages-area p {
  font-size: 24px;
  margin-left: 5px;
  letter-spacing: 0.1em;
}


/* ■■■■■■■■■■■■■■■■■■■■■
MESSAGE
メッセージ */

#message {
  position: relative;
}

.section-message-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 1em;
  top: 350px;
  left: calc(100vw - 85%);
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: 'Josefin Sans';
  z-index: -10;
}


/* パンくずリスト設定 */
.breadcrumb {
  position: absolute;
  top: 0;
  padding: 10px;
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
  display: flex; /* リストを横並びにする */
  align-items: center; /* 水平方向と垂直方向の中央寄せ */
}

.breadcrumb li {
  font-size: 14px;
}

.breadcrumb ul li a {
  color: var(--text-color-dark);
}

.breadcrumb ul li a:hover {
  color: var(--corp-color-light);
  font-weight: bold;
  transition: all .3s;
}

.breadcrumb li:not(:last-child)::after {
  content: "/"; /* /を追加する */
  margin: 0 10px; /* /の左右にスペースを設ける */
}

/* 縦書きエリア */
.vertical-writing {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.lead-text {
  margin-right: 20px;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 900;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 2.4em;
  letter-spacing: .12em;
}

.lead-text, .lead-en span {
  display: block;
  white-space: nowrap;
}

.lead-en {
  position: relative;
  width: 16px;
}

.lead-en span {
  position: absolute;
  left: -800%;
  top: 35%;
  color: var(--corp-color-light);
  font-weight: 500;
  font-family: 'Josefin Sans';
  transform: rotate(90deg);
  letter-spacing: .012em;
  margin-left: 1em;
}

.lead-en span::before {
  content: "";
  display: inline-block;
  background-color: var(--corp-color-light);
  width: 14px;
  height: 14px;
  clip-path: inset(0 60% 0 0);
}

/* 会社からのメッセージエリア */
.corporate-message {
  width: 800px;
  max-width: 90%;
  margin: 40px auto 145px auto;
  padding: 0 20px;
}

.corporate-message p .ceo {
  display: block;
  text-align: right;
}


/* ■■■■■■■■■■■■■■■■■■■■■
MAIN PRODUCTS
主要製品 */

#main-products {
  position: relative;
  background-color: var(--bg-color-01);
  z-index: 0;
  padding-bottom: 128px;
  overflow: hidden;
}

.section-main-products-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 0.91em;
  top: 0;
  left: 0;
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: 'Josefin Sans';
  z-index: -10;
}

.product-list {
  padding: 0 20px;
  width: 1500px;
  max-width: 100%;
  text-align: center;
  
}

.product-list ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.product-list li {
  border: 1px solid var(--text-color-dark);
  background-color: var(--bg-text-color-02);
  border-radius: 50px;
  margin-right: 7px;
  margin-bottom: 10px;
  padding: 8px 20px;
  font-size: 14px;
}


/* ■■■■■■■■■■■■■■■■■■■■■
OVER VIEW
会社概要 */

#over-view {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.over-view-table {
  padding: 0 20px 40px 20px;
  width: 1000px;
  max-width: 100%;
  border-collapse: collapse;
  display: block;
}

.over-view-table tr th {
  width: 286px;
  max-width: 100%;
  vertical-align: middle;
}

.over-view-table tr td {
  width: 714px;
  max-width: 100%;

}

.over-view-table tr th, .over-view-table tr td {
  padding: 20px;
  border-bottom: 1px solid #cecccc;
}

/* 先頭行 */
.over-view-table tr:first-child th, 
.over-view-table tr:first-child td {
  border-top: none;
}

/* 最後の行 */
.over-view-table tr:last-child th, 
.over-view-table tr:last-child td {
  border-bottom: none;
}

/* 左右の余白 */
.over-view-table th:first-child,
.over-view-table td:first-child,
.over-view-table th:last-child,
.over-view-table td:last-child {
  border-left: none;
  border-right: none;
}


/* ■■■■■■■■■■■■■■■■■■■■■
GROUP COMPANY
グループ会社 */

#group-company {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: var(--bg-text-color-01);
  padding-bottom: 120px;
}

.group-company-background-image {
  position: relative;
  background-image: url("../images/group_company.jpg");
  background-repeat: no-repeat;
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: 430px;
  margin-bottom: 220px;
  background-size: cover;
  z-index: 0;
}

/* 背景画像に青色のスクリーン */
.group-company-background-image::after {
  content: "";
  position:absolute;
  display: block;
  background-color: rgba(0, 101, 168, 0.555);
  width: 100%;
  height: 430px;
  left: 0;
  top: 0px;
  z-index: -10;
}

.container-company-area {
  display: flex;
  justify-content: space-around;
}

.contents-company-item {
  background-color: #F4F4F4;
  width: 382px;
  max-width: 90%;
  height: 315px;
  margin: 20px;
  padding: 36px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.055);
}

.contents-company-item h4 {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
} 

.contents-company-item p {
  margin-bottom: 24px;
  height: 110px;
} 

/* ウェブサイトボタン */
.website-button {
  max-width: 160px;
  height: 34px;
  color: var(--corp-color-light);
  border: 1px solid var(--corp-color-light);
  padding: 7px 48px;
  font-size: 13px;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
}

.website-button::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  left: 20px;
  /*矢印の形状*/
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--corp-color-light);
  border-right: 1px solid var(--corp-color-light);
  transform: rotate(45deg);
  z-index: -1;
}

.website-button:hover {
  color: #ffffff;
  z-index: 0;
}

.website-button::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--corp-color-light);
  transition: all 1s;
  z-index: -1;
}

.website-button:hover::before {
  width: 160%;
  z-index: -1;
}


/* 当社の強みページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
P_STRENGTH STRENGTH
日鉄ドラムテクノの技術は無限大に広がります */

#p_strength-strength {
  position: relative;
}

/* ■■■■■■■■■■■■■■■■■■■■■
P_STRENGTH DETAIL
3つの強み */

#p_strength-detail {
  padding-bottom: 64px;
  background-color: var(--bg-color-01);
  overflow: hidden;
}

/* --------------------
01 省力化設計-SYSTEM */

.section-system {
  position: relative;
  z-index: 0;
}

.section-system-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 1em;
  top: 0;
  left: 0;
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: 'Josefin Sans';
  z-index: -10;
}

.p_strength-detail-wrapper {
  width: 1000px;
  max-width:100%;
  margin: 0 auto;
  padding-left: 20px;

}

.p_strength-detail-wrapper div {
  position: relative;
}

.p_strength-detail-wrapper div img {
  position: absolute;
  max-width: 100%;
  bottom: 0;
  right: -25vw;
}

.p_strength-section-detail-container {
  padding-top: 48px;
  display: flex;
  align-items: center;
  margin-top: -64px;
  margin-bottom: 16px;
}

.p_strength-section-detail-title {
  font-size:40px;
  font-weight: 900;
  font-family: 'Josefin Sans';
  text-align: center;
}

.p_strength-section-detail-title span {
  color: var(--corp-color-light);
  font-size: 64px;
  font-style: italic;
  margin-right: 32px;
}

.p_strength-section-detail-title-en {
  font-size: 20px;
  position: relative;
  margin-left: 160px;
  color: #a1a1a1;
}

.p_strength-section-detail-title-en::before {
  content: "";
  display: inline-block;
  width: 80px;
  max-width: 100%;
  position: absolute;
  border-top: 1px solid #a1a1a1;
  top: 50%;
  left: -80px;
  transform: translate(-50%, -50%);
}

.blue-line {
  width: 100vw;
  height: 64px;
  display: block;
  color: var(--text-color-light);
  font-size: 20px;
  padding-left: 24px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0,128,221,1) 0%, rgba(0,150,204,1) 33%, rgba(0,212,255,1) 54%, rgba(0,128,221,1) 89%);
  background-size: 200% 200%; /* グラデーションを2倍に拡大する */
  animation: gradient-animation 10s ease infinite; /*アニメーションを設定*/
}

@keyframes gradient-animation {
  0% {
    background-position: -100% 50%; /*左端(-100%)から開始して、右方向へ移動*/
  }
  100% {
    background-position: 100% 50%; /*右端(100%)まで移動*/
  }
}

.p_strength-section-detail-textarea-container {
  padding: 32px 0;
  z-index: 30;
}

.p_strength-section-detail-textarea {
  display: flex;
  align-items: center;
  margin: 12px 0;
  }

.p_strength-section-detail-textarea::before {
  content: url("/images/check.svg");
  display: block;
  margin-right: 24px;
}

.p_strength-section-detail-textarea h5 {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.p_strength-section-detail-textarea h6 {
  display: block;
  margin-bottom: 12px;
  width: 660px;
  max-width: 100%;
}

/* --------------------
02 特殊技術-TECHNOLOGY */

.section-technology {
  background-color: var(--bg-color-std);
  display: flex;
  padding-top: 64px;
}

.section-technology img {
  width: 25vw;
  height: 446px;
  object-fit: cover;
}

.section-technology-right {
  position: relative;
  z-index: 0;
}

.section-technology-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 1em;
  top: 0;
  left: 0;
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: 'Josefin Sans';
  z-index: -10;
  margin-top: -64px;
  width: 1200px;
  max-width: 70%;
}

.p_strength-detail-wrapper-technology {
  max-width:100%;
  word-wrap: break-word;
}

.p_strength-section-detail-container-technology {
  padding-top: 48px;
  padding-left: 48px;
  display: flex;
  align-items: center;
  margin-top: -64px;
  margin-bottom: 16px;
}

.pl-48px {
  padding-left: 48px;

}


/* --------------------
03 設備づくり-EQUIPMENT */

.section-equipment {
  position: relative;
  display: flex;
  padding-top: 64px;
  background-color: var(--bg-color-01);
  z-index: 0;

}

.section-equipment-bg-text {
  position: absolute;
  word-break: break-all;
  line-height: 1em;
  top: 0;
  left: 0;
  font-size: var(--font-size-bg);
  font-style: italic;
  font-weight: 900;
  font-family: 'Josefin Sans';
}


/* 製品一覧ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
P_PRODUCTS PRODUCTS
日鉄ドラムテクノの技術は無限大に広がります */

#p_products-products {
  position: relative;
  padding-bottom: 120px;
}

/* スマホ用カルーセルを非表示 */
.carousel-wrap-sp {
  display: none;
  margin-bottom: 72px;
}

.container-products-area {
  width: 1072px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.container-products-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-products {
  position: relative;
  background-color: #f3f2f2;
  width: 250px;
  max-width: 100%;
  padding: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
  margin: 0 8px 16px 8px;
}

.card-products > a > img {
  background-color: #ffffff;
  width: 250px;
  object-fit: cover;
  background-position: center center;
}

.card-products > a > div {
  padding: 16px 8px;
  height: 270px;
}

.card-products > a > div > h4 {
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4em;

}

.card-products > a > div > p {
  letter-spacing: 0.03em;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ダウンロードボタン */
.download-button-products {
  position: absolute;
  bottom: 16px;
  left: 50%;
  translate: -50%;
  width: 180px;
  margin: 8px auto 0px auto;
  padding: 6px 16px;
  border: 1px solid #0066A8;
  color: #0066A8;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.download-button-products:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.download-button-products img {
  margin-right: 10px;
}

/* ■■■■■■■■■■■■■■■■■■■■■
WORKS
導入事例 */

#works {
  position: relative;
  background-color: var(--bg-color-01);
  z-index: 0;
  padding-bottom: 128px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}

.container-works {
  margin: 0 auto 24px auto;
  max-width: 1200px;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
}

.left-contents-works {
  display: flex;
  padding: 72px 24px;
}

.left-contents-works-title {
  width: 160px;
  max-width: 100%;
}

.left-contents-works-title span {
  position: relative;
  color: var(--corp-color-light);
  font-weight: 900;
}

.left-contents-works-title span::after {
  content: "";
  display: inline-block;
  width: 32px;
  max-width: 100%;
  position: absolute;
  border-top: 1px solid #a1a1a1;
  top: 50%;
  right: -45%;
  transform: translate(45%, -50%);  
}

.left-contents-works-detail {
  width: 440px;
  max-width: 100%;
}

.left-contents-works-detail h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 32px;
}

.left-contents-works-detail h5 {
  font-size: 28px;
  margin-bottom: 32px;
}

.left-contents-works-detail p {
  margin-bottom: 32px;
}

.right-contents-works {
  margin: auto 24px;
}

.right-contents-works img {
  height: 350px;
  object-fit: cover;
}

.download-button-works {
  width: 180px;
  padding: 6px 16px;
  border: 1px solid #0066A8;
  color: #0066A8;
  font-size: 13px;
  display: flex;
  transition: all 0.3s;
}

.download-button-works:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

.download-button-works img {
  margin-right: 10px;
}


/* ■■■■■■■■■■■■■■■■■■■■■
MAINTENANCE
メンテナンス */

#maintenance {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #f4f4f4;
  padding-bottom: 120px;
}

.maintenance-bg-text {
position: absolute;
word-break: break-all;
line-height: 0.91em;
top: 0;
left: 0;
font-size: var(--font-size-bg);
font-style: italic;
font-weight: 900;
font-family: 'Josefin Sans';
z-index: -10;
}

/* スマホサイト用の改行 */
.sp_br {
  display: none;
}

.container-maintenance {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.left-contents-maintenance-img {
  margin-right: 56px;
}

.left-contents-maintenance-img img {
  height: 100%;
}

.right-contents-maintenance-detail h4 {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 900;
}

.right-contents-maintenance-detail div {
  font-size: 20px;
  border-left: 2px solid #a1a1a1;
  padding: 8px 40px;
  margin-bottom: 24px;
  font-weight: 900;
}

.font-color-blue {
  color: var(--corp-color-light);
}

.right-contents-maintenance-detail p {
  margin-bottom: 32px;
}


/* お問い合わせページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
P_CONTACT CONTACT
お問い合わせ */

#p_contact-contact {
  position: relative;
}

.section-contact-top-message {
  font-weight: bold;
  text-align: center;
}

.step-area {
  width: 500px;
  margin: 72px auto 0 auto;
}

@media only screen and (max-width: 767px) {
  .step-area {
    width: 95%;
  }
}

.step-area ul {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.step-area ul li {
  position: relative;
  color: #c7c7c7;
  z-index: 1;
}

.step-area ul li:before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: #c7c7c7;
  margin: 0 auto 1em;
  border-radius: 100%;
}

.step-area ul li.active {
  font-size: 18px;
  color: var(--corp-color-light);
}

.step-area ul li.active:before {
  margin: -.3em auto 1em;
  background: var(--corp-color-light);
  width: 2em;
  height: 2em;
}

.step-area ul:before {
  position: absolute;
  z-index: 1;
  width: 85%;
  height: 1px;
  background: #c7c7c7;
  content: "";
  left: 50%;
  top: 12px;
  z-index: 0;
  transform: translateX(-50%);
}

.container-contact-form {
  padding: 40px 32px;
  background-color: #eeeeee;
}

.contants-contact-form > span {
  font-weight: 900;
  font-size: 11px;
  display: inline-block;
  background-color: var(--corp-color-dark);
  color: #ffffff;
  padding: 2px 10px;
  margin-bottom: 4px;
}

.upfile-info {
  font-size: 11px;
  color: var(--text-color-dark);
  margin-bottom: 8px;

}

.contants-contact-form-title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.contants-contact-form-title > label {
  font-weight: 900;
  margin-right: 16px;
}

.contants-contact-form-title > span {
  font-weight: 900;
  font-size: 11px;
  display: inline-block;
  background-color: #CF000E;
  color: #ffffff;
  padding: 2px 10px;
  margin-bottom: 4px;
}

.contants-contact-form-input input {
  background-color: #dddddd;
  width: 100%;
  height: 46px;
  margin-bottom: 24px;
  padding: 8px 16px;
}

input::placeholder {
  color: #aaaaaa;
}

.contants-contact-form-input-inquiry textarea {
  background-color: #dddddd;
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  padding: 8px 16px;
}

.contact-form-button {
  display: flex;
  justify-content: center;
  margin-top: 104px;
}

a.note-link {
  text-decoration: underline #00A2DD;
  display: inline-block;
  color: #00A2DD;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 40px;
  border: 1px solid #888;
  max-width: 500px;
}

.modal-header {
  margin-bottom: 16px;
  font-weight: bold;
}

#copy-text {
  margin-bottom: 16px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-footer > button {
  margin-right: 40px;
  padding: 8px;
  border: #0066A8 solid 1px;
  color: #0066A8;
  transition: all 0.5s;
}

.close {
  padding: 8px;
  border: #0066A8 solid 1px;
  color: #0066A8;
  transition: all 0.5s;
}

.modal-footer > button:hover, .close:hover {
  background-color: var(--corp-color-light);
  color: #fff;
  border: #fff solid 1px;
  cursor: pointer;
}

.submit-button, .reset-button {
  border: 1px solid var(--corp-color-light);
  color: var(--corp-color-light);
  padding: 12px 64px;
  margin: 0 40px;
  transition: all 0.5s;
}

.submit-button:hover, .reset-button:hover {
  background-color: var(--corp-color-light);
  color: #fff;
}

/* ■■■■■■■■■■■■■■■■■■■■■
確認画面 */

#formWrap {
	width: 700px;
	margin: 40px auto;
	color: #555;
	line-height: 120%;
	font-size: 16px;
}

table.formTable {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}

table.formTable td,table.formTable th {
	border: 1px solid #ccc;
	padding: 16px;
}

table.formTable th {
	width: 35%;
	font-weight: bold;
	background: #333;
  color: #fff;
	text-align: left;
}

table.formTable td {
	background: #f4f4f4;
}

p.error_messe {
	margin: 10px 0;
  padding: 10px 0;
  background-color: #ffc8cb;
	color: #CF000E;
}


/* ■■■■■■■■■■■■■■■■■■■■■
完了画面 */

.section-thanks-message {
  background: var(--bg-color-01);
  max-width: 800px;
  margin: 64px auto 0 auto;
  padding: 48px;
}

.section-thanks-message p {
  margin-bottom: 48px;
}

.section-thanks-message a {
  display: block;
  width: 350px;
  margin: 0 auto;
  text-align: center;
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
タブレットサイト設定　～1025px
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@media screen and (max-width: 1025px) {

  .header-logo, .header-nav {
    display: none;
  }

  .header-logo-SP {
    display: block;
    margin-right: 20px;
  }
  

  /* スマホのメニューボタン */

/*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    z-index: 9999;/*ボタンを最前面に*/
    display: block;
    position: fixed;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
  }
    
  /*×に変化*/  
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--text-color-dark);
    width: 40px;
  }

  .openbtn1 span:nth-of-type(1) {
    top:10px; 
  }

  .openbtn1 span:nth-of-type(2) {
    top:20px;
  }

  .openbtn1 span:nth-of-type(3) {
    top:30px;
  }

  .openbtn1.active span:nth-of-type(1) {
    top: 10px;
    left: 0px;
    transform: translateY(10px) rotate(-45deg);
    width: 40px;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 0px;
    transform: translateY(-10px) rotate(45deg);
    width: 40px;
  }


  /*========= スマホナビゲーション ===============*/

  #SP-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    display: block;
    position:fixed;
    z-index: 1999;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:var(--bg-color-01);
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたらtop位置を0に*/
  #SP-nav.panelactive {
    top: 0;
  }

  .SP-nav-logo {
    display: block;
    padding: 15px 20px;
  }

  /*ナビゲーション*/
  #SP-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 1999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
  }

  /*リストのレイアウト設定*/
  #SP-nav li {
    text-align: center; 
    margin-right: 0;  /* 元のliのmaginをリセット */
    margin-bottom: 20px;
  }

  #SP-nav li:nth-of-type(4) {
    margin-bottom: 40px;

  }
  
  #SP-nav li a {
    color: #333;
    padding:10px;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-weight: bold;
  }

  .deFlex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .deFlex .contact-btn-nav, .deFlex .contact-btn-nav .btn-shine {
    background-color: #16C532;
    width: 260px;
    height: 45px;
    text-align: center;
    overflow: hidden;
  }

  /* 製品案内ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  WORKS
  導入事例 */

  .left-contents-works {
    display: block;
  }
  
  .left-contents-works-title {
    margin-bottom: 24px;
  }
  
  .left-contents-works-detail h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
  }
  
  .left-contents-works-detail h5 {
    font-size: 28px;
    margin-bottom: 16px;
  }
    
  .right-contents-works {
    margin-left: 0;
  }


  /* ■■■max-width: 1023pxの末尾■■■ */
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
タブレットサイト設定　～900px
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@media screen and (max-width: 900px) {

  /* トップページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  STRENGTH
  日鉄ドラムテクノの強み */

  .strength-area {
    padding: 0;
    display: block;
    justify-content: unset;
  }
  
  .strength-image-container {
    width: 100%;
    height: 136px;
  }
  
  .strength-photo {
    display: none;
  }
  
  img.strength-photo_sp {
    position: relative;
    display: block;
    max-width: 100%;
    height: 136px;
    object-fit: cover;
    backdrop-filter: brightness(0.6);
  }
  
  .white-box {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(-5%, -50%);
    padding: 16px 24px;
    max-width: 330px;
    height: 66px;
  }
  
  .white-box > p {
    display: flex;
    align-items: center;
  }
  
  .white-box > p > :first-child {
    margin-right: 24px;
  }
  


  /* 製品案内ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  WORKS
  導入事例 */

  .container-works {
    background-color: #f3f3f3;
    justify-content: center;
    flex-direction: column-reverse;
  }
  
  .left-contents-works {
    margin: 0 auto;
    padding: 24px;
  }
  
  
  .left-contents-works-title {
    margin-bottom: 24px;
  }

  .left-contents-works-detail {
    width: 100%;
  }
  
  .left-contents-works-detail h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
  }
  
  .left-contents-works-detail h5 {
    font-size: 28px;
    margin-bottom: 16px;
  }
    
  .right-contents-works {
    margin: 24px auto;
    max-width: 900px;
    height: 540px;
    background-position: center center;
  }
  
  .right-contents-works img {
    width: 100%;
    height: 100%;
  }



  /* 当社の強みページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* --------------------
  01 省力化設計-SYSTEM */

  .section-system-bg-text {
    font-size: var(--font-size-bg-tb);
  }

  .p_strength-detail-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding-left: 0px;
  }

  .p_strength-detail-wrapper > div img {
    position: unset;
    margin-top: -80px;
    margin-left: 15%;
  }

  .p_strength-section-detail-container {
    padding-left: 24px;
  }

  .p_strength-section-detail-textarea-container {
    padding-left: 24px;
  }


  /* --------------------
  02 特殊技術-TECHNOLOGY */

  .section-technology {
    display: flex;
    flex-direction: column-reverse;
  }

  .section-technology img {
    width: 100%;
  }

  .section-technology-bg-text {
    font-size: var(--font-size-bg-tb);
    max-width: 900px;
    padding-top: 24px;
  }

  .p_strength-section-detail-container-technology {
    padding-left: 24px;
  }

  .pl-48px {
    padding-left: 24px;
  }


  /* --------------------
  03 設備づくり-EQUIPMENT */

  .section-equipment-bg-text {
    padding-top: 24px;
    font-size: var(--font-size-bg-tb);
  }

}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
タブレットサイト設定　～768px
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@media screen and (max-width: 768px) {

  .footer-navi {
    display: none;
  }

/* TOPページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ■■■■■■■■■■■■■■■■■■■■■
  MAIN VISUAL
  メインビジュアル */
  
  .main-visual-messages-left {
    margin: 0 1em;
  }

  .vertical-text {
    font-size: 12px;
    letter-spacing: 0em;
    font-weight: 400;
  }
  
  .main-visual-messages-right p {
    margin-bottom: 48px;
  }
  
  .row-01 {
    margin-top: -8px;
    font-size: calc(28px + (100vw - 768px) / 50);
    font-weight: 900;
    white-space: nowrap;
  }
  
  .row-02 {
    font-size: calc(48px + (100vw - 768px) / 50);
    font-weight: 900;
    white-space: nowrap;
  }
  
  .row-03 {
    font-size: 16px;
    font-weight: 400;
  }
  
  /* お問い合わせボタンの設定 */
  .contact-button {
    padding:12px 40px;
    display: inline-block;
  }

  .section-bg-text {
    left: 0;
    font-size: var(--font-size-bg-tb);
    letter-spacing: 0.0em;
  }


/* ■■■■■■■■■■■■■■■■■■■■■
  CONTACT
  会社情報 */

  .company-area {
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
  }
  
  .company-image-container {
    width: 500px;
    height: 384px;
    z-index: -1;
  }
  
  .company-image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .company-text {
    background-color: var(--bg-text-color-02);
    margin: 18px 0px 0px -50px;
    padding: 30px;
    width: 500px;
    height: 348px;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
  }
  
  .company-text h4 {
    margin-bottom: 32px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  

  /* 会社情報ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
    GROUP COMPANY
    グループ会社 */
    
  .container-company-area {
    margin-top: -40px;
  }
  
  .contents-company-item {
    padding: 24px;
  }
  
  .contents-company-item h4 {
    font-size: 18px;
  } 
  
  .contents-company-item p {
    margin-bottom: 24px;
    height: 160px;
  } 
  

  /* 製品案内ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* PC用製品一覧を非表示 */
  .container-products-area {
    display: none;
  }
  
  /* スマホ用カルーセルを表示 */
  .carousel-wrap-sp {
    display: block;
    margin-bottom: 72px;
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  WORKS
  導入事例 */

  .right-contents-works {
    margin: 0px 24px;
    height: 350px;
    max-height: 100%;
  }
  
  .right-contents-works img {
    object-fit: contain;
  }
  

  /* ■■■■■■■■■■■■■■■■■■■■■
  MAINTENANCE
  メンテナンス */

  .maintenance-bg-text {
    font-size: var(--font-size-bg-tb);
  }

  .container-maintenance {
    display: block;
    padding: 0 56px;
  }

  .left-contents-maintenance-img {
    margin-right: 0px;
    margin-bottom: 40px;
    text-align: center;
  }

  .right-contents-maintenance-detail > a {
    display: block;
    text-align: center;
  }

  /* 当社の強みページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */



  .section-declaration-jp {
    font-size:22px;
  }

  /* --------------------
  01 省力化設計-SYSTEM */

  .section-system-bg-text {
    font-size: var(--font-size-bg-tb);
  }

  .p_strength-detail-wrapper {
    margin: 0 auto;
    padding-left: 0px;
  }

  .p_strength-detail-wrapper > div img {
    position: unset;
    margin-top: -80px;
    margin-left: 15%;
  }

  .p_strength-section-detail-container {
    padding-left: 24px;
  }

  .p_strength-section-detail-title {
    font-size:32px;
    font-weight: 900;
    font-family: 'Josefin Sans';
    text-align: center;
  }
  
  .p_strength-section-detail-title span {
    color: var(--corp-color-light);
    font-size: 50px;
    font-style: italic;
    margin-right: 32px;
  }
  
  .blue-line {
    font-size: 18px;
  }

  .p_strength-section-detail-textarea-container {
    padding-right: 24px;
  }

  .p_strength-section-detail-textarea > div {
    max-width: 92%;
  }

  /* --------------------
  02 特殊技術-TECHNOLOGY */

  .section-technology {
    display: flex;
    flex-direction: column-reverse;
  }

  .section-technology img {
    width: 100%;
  }

  .section-technology-bg-text {
    font-size: var(--font-size-bg-tb);
    max-width: 900px;
    padding-top: 24px;
  }

  .p_strength-section-detail-container-technology {
    padding-left: 24px;
  }

  .pl-48px {
    padding-left: 24px;
  }

}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
スマホサイト設定　～572px
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@media screen and (max-width: 572px) {

  /* TOPページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
    MAIN VISUAL
    メインビジュアル */


  /* 背景画像に青色のスクリーン */
  .main-visual-wrap::after {
    background-color: rgba(0, 101, 168, 0.05);
  }

  .row-02 {
    font-size: calc(40px + (100vw - 768px) / 50);
    font-weight: 900;
    white-space: nowrap;
  }

    /* お問い合わせボタンの設定 */
  .contact-button {
    position:relative;
    padding:10px 40px;
    display: inline-block;
    background:var(--accent-color);
    color:var(--text-color-light);
    transition:700ms ease all;
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  /*スクロールダウン全体の場所*/
  .scrolldown {
    right:50%;
    /*全体の高さ*/
    height:40px;
  }

  /* 線の描写 */
  .scrolldown::after {
    /*線の形状*/
    height: 60px;
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  STRENGTH
  日鉄ドラムテクノの強み */

  .pt-120px {
    padding-top: 64px;
  }

  .section-bg-text {
    left: 0;
    font-size: var(--font-size-bg-sp);
    letter-spacing: 0.0em;
  }
  
  .section-title-en {
    margin-top: 24px;
    font-size: var(--font-size-titleEN-sp);
    letter-spacing: 0.05em;
    line-height: 0.98em;
  }
  
  .section-title-jp {
    margin-top: 0;
    margin-bottom: 48px;
    font-size: var(--font-size-titleJP-sp);
  }
  
  .section-declaration-jp {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  
  .section-declaration-en {
    margin-bottom: 56px;
    font-weight: bold;
    font-size: 12px;
    color: var(--text-color-dark);
    text-align: center;
    letter-spacing: 0.03em;
  }
  
  .strength-area {
    margin-bottom: 64px;
  }

  .more-info-button {
    margin-bottom: 64px;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  PRODUCTS
  製品案内
  sliderは別ファイル(slider.css)へ記載
  */

  .carousel-wrap {
    margin-bottom: 48px;
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  COMPANY
  会社情報 */

  #company {
    position: relative;
  }

  .company-area {
    display: block;
    justify-content: center;
    margin-bottom: 64px;
  }

  .company-image-container {
    width: 100%;
    height: 384px;
    z-index: -1;
  }

  .company-image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .company-text {
    background-color: var(--bg-text-color-02);
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    height: 348px;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
  }

  .company-text h4 {
    margin-bottom: 32px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  CONTACT
  お問い合わせ */

  #contact {
    width: 100%;
    z-index: 0;
  }

  .top-triangle {
    position: absolute;
    background-color: var(--bg-color-std);
    width: 60px;
    height: 30px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
  }

  .contact-background-image {
    position: relative;
    background-image: url("../images/main-visual-contact.jpg");
    background-repeat: no-repeat;
    object-fit: contain;
    background-size: cover;
    z-index: 0;
    padding-bottom: 120px;
  }

  /* 背景画像に青色のスクリーン */
  .contact-background-image::after {
    content: "";
    position:absolute;
    display: block;
    background-color: rgba(0, 101, 168, 0.555);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    z-index: -10;
  }

  .map iframe {
    width: 100%;
    height: 400px;
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  footer */

  .company-info-text, .Copyright p {
    font-size: 13px;
  }

  /* topへ戻るボタン設定 */
  /* 最下部ボタン */
  #page-top a {
    font-size: 16px;
    text-align: center;
    display: block;
    padding:16px;
  }


  /* 会社情報ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  TOP IMAGE
  トップの写真 */

  .top-image-messages-area {
    width: 1000px;
    max-width: 80%;
    position: absolute;
    top: 55%;
    left: 40%;
    transform: translate(-40%, -50%);
    color: var(--text-color-light);
    z-index: 10;
  }

  .top-image-messages-area h1 {
    font-size: var(--font-size-pageTitleEN-sp);
    font-weight: 900;
    font-family: 'Josefin Sans';
    letter-spacing: 0.07em;
    line-height: 1.2
  }

  .top-image-messages-area p {
    font-size: 24px;
    margin-left: 5px;
    letter-spacing: 0.1em;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  MESSAGE
  メッセージ */

  #message {
    position: relative;
  }

  .section-message-bg-text {
    top: 270px;
    left: 0;
    font-size: var(--font-size-bg-sp);
  }

  /* 縦書きエリア */
  .vertical-writing {
    margin-top: 64px;
  }

  .lead-text {
    margin-right: 20px;
    writing-mode: vertical-rl;
    font-size: 24px;
    font-weight: 900;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    line-height: 2.4em;
    letter-spacing: .12em;
  }

  .lead-text, .lead-en span {
    display: block;
    white-space: nowrap;
  }

  .lead-en {
    position: relative;
    width: 16px;
  }

  .lead-en span {
    position: absolute;
    left: -800%;
    top: 35%;
    color: var(--corp-color-light);
    font-weight: 500;
    font-family: 'Josefin Sans';
    transform: rotate(90deg);
    letter-spacing: .012em;
    margin-left: 1em;
  }

  .lead-en span::before {
    content: "";
    display: inline-block;
    background-color: var(--corp-color-light);
    width: 14px;
    height: 14px;
    clip-path: inset(0 60% 0 0);
  }

  /* 会社からのメッセージエリア */
  .corporate-message {
    margin: 40px auto 145px auto;
    padding: 0 0px;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  MAIN PRODUCTS
  主要製品 */

  #main-products {
    padding-bottom: 64px;
  }

  .section-main-products-bg-text {
    font-size: var(--font-size-bg-sp);
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  GROUP COMPANY
  グループ会社 */

  #group-company {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: var(--bg-text-color-01);
    padding-bottom: 64px;
  }

  .group-company-background-image {
    position: relative;
    background-image: url("../images/group_company.jpg");
    background-repeat: no-repeat;
    object-fit: contain;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin-bottom: 0px;
    background-size: cover;
    z-index: 0;
  }

  /* 背景画像に青色のスクリーン */
  .group-company-background-image::after {
    content: "";
    position:absolute;
    display: block;
    background-color: rgba(0, 101, 168, 0.555);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0px;
    z-index: -10;
  }

  .container-company-area {
    display: block;
    justify-content: unset;
    padding: 20px;

  }

  .contents-company-item {
    background-color: #F4F4F4;
    width: 100%;
    max-width: 100%;
    max-height: 280px;
    margin: 0 0 20px 0;
  }

  .contents-company-item h4 {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
  } 

  .contents-company-item p {
    margin-bottom: 24px;
    max-height: 100px;
    display: block;
    letter-spacing: 0em;
  } 


  /* ウェブサイトボタン */

  .contents-company-item div {
    text-align: center;
  }

  .website-button {
    max-width: 100%;
    width: 80%;
    height: 34px;
    padding: 7px 48px;
    margin: 0 auto;
    display: block;
  }

  .website-button::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 40%;
    left: 20px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--corp-color-light);
    border-right: 1px solid var(--corp-color-light);
    transform: rotate(45deg);
    z-index: -1;
  }

  .website-button:hover {
    color: #ffffff;
    z-index: 0;
  }

  .website-button::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: var(--corp-color-light);
    transition: all 1s;
    z-index: -1;
  }

  .website-button:hover::before {
    width: 160%;
    z-index: -1;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  P_PRODUCTS PRODUCTS
  日鉄ドラムテクノの技術は無限大に広がります */

  #p_products-products {
    position: relative;
    padding-bottom: 64px;
  }

  /* スマホ用カルーセルを非表示 */
  .carousel-wrap-sp {
    margin-bottom: 0px;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  WORKS
  導入事例 */

  #works {
    padding-bottom: 64px;
  }
  
  /* ■■■■■■■■■■■■■■■■■■■■■
  MAINTENANCE
  メンテナンス */

  #maintenance {
    padding-bottom: 64px;
  }

  .maintenance-bg-text {
    font-size: var(--font-size-bg-sp);
  }

  .container-maintenance {
    padding: 0 40px;
  }

  .left-contents-maintenance-img {
    margin-right: 0px;
  }

  .left-contents-maintenance-img img {
    width: 100vw;
  }

  .right-contents-maintenance-detail h4 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .right-contents-maintenance-detail div {
    font-size: 20px;
    border-left: 2px solid #a1a1a1;
    padding: 8px 40px;
    margin-bottom: 24px;
    font-weight: 900;
  }

  .font-color-blue {
    color: var(--corp-color-light);
  }

  .right-contents-maintenance-detail p {
    margin-bottom: 32px;
  }

  /* 当社の強みページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */


  /* ■■■■■■■■■■■■■■■■■■■■■
  P_STRENGTH DETAIL
  3つの強み */

  #p_strength-detail {
    padding-bottom: 64px;
    background-color: var(--bg-color-01);
    overflow: hidden;
  }

  /* --------------------
  01 省力化設計-SYSTEM */


  .section-system-bg-text {
    line-height: 0.56em;
    letter-spacing: -0.05em;
    font-size: var(--font-size-bg-sp);
    writing-mode: vertical-rl;
  }

  .p_strength-section-detail-title {
    font-size: 24px;
  }

  .p_strength-section-detail-title span {
    margin-right: 24px;
  }

  .p_strength-section-detail-title-en {
    display: none;
  }

  .blue-line {
    font-size: 16px;
  }

  .p_strength-section-detail-textarea h5 {
    font-size: 18px;
  }

  /* --------------------
  02 特殊技術-TECHNOLOGY */

  .section-technology {
    background-color: var(--bg-color-std);
    display: flex;
    padding-top: 64px;
  }

  .section-technology img {
    width: 100vw;
    margin-top: -340px;
  }


  .section-technology-bg-text {
    top: -50px;
    left: 0px;
    width: 70px;
    line-height: 0.56em;
    letter-spacing: 0em;
    font-size: var(--font-size-bg-sp);
    writing-mode: vertical-rl;
    word-break: break-all;
  }

  .p_strength-detail-wrapper-technology {
    max-width:100%;
    word-wrap: break-word;
    padding-bottom: 340px;
  }

  .p_strength-section-detail-container-technology {
    padding-top: 48px;
    display: flex;
    align-items: center;
    margin-top: -64px;
    margin-bottom: 16px;
  }

  .pl-48px {
    padding-left: 24px;
  }


  /* --------------------
  03 設備づくり-EQUIPMENT */

  .section-equipment {
    position: relative;
    display: flex;
    padding-top: 64px;
    background-color: var(--bg-color-01);
    z-index: 0;

  }

  .section-equipment-bg-text {
    top: -30px;
    left: 0px;
    line-height: 0.56em;
    font-size: var(--font-size-bg-sp);
    writing-mode: vertical-rl;
  }

  /* お問い合わせページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  P_CONTACT CONTACT
  お問い合わせ */

  .section-contact-top-message {
    padding: 40px 24px 0 24px;
    text-align: left;
  }

  .container-contact-form {
    padding: 32px 24px;
  }

  .contact-form-button {
    margin-top: 32px;
  }
  
  .submit-button, .reset-button {
    padding: 12px 16px;
    margin: 0 16px;
    width: 130px;
    text-align: center;
  }
  
  
  /* ■■■■■■■■■■■■■■■■■■■■■
  確認画面 */
  
  #formWrap {
    width: 700px;
    margin: 40px auto;
    color: #555;
    line-height: 120%;
    font-size: 16px;
  }
  
  table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
  }
  
  table.formTable td,table.formTable th {
    border: 1px solid #ccc;
    padding: 16px;
  }
  
  table.formTable th {
    width: 35%;
    font-weight: bold;
    background: #333;
    color: #fff;
    text-align: left;
  }
  
  table.formTable td {
    background: #f4f4f4;
  }
  
  p.error_messe {
    margin: 10px 0;
    padding: 10px 0;
    background-color: #ffc8cb;
    color: #CF000E;
  }
  
  /*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
  #formWrap {
    width: 95%;
    margin: 40px auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  
  /* ■■■■■■■■■■■■■■■■■■■■■
  完了画面 */
  
  .section-thanks-message {
    background: var(--bg-color-01);
    max-width: 800px;
    margin: 64px auto 0 auto;
    padding: 24px;
  }
  
  
  .section-thanks-message a {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
スマホサイト設定　～425px
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@media screen and (max-width: 425px) {

  /* TOPページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  .main-visual-messages-area {
    display: block;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
  
  .main-visual-messages-left {
    margin: 0 0 1em 0;
  }
  
  /* 文字列を縦方向に編集 */
  .vertical-text {
    writing-mode: unset;
    margin: 0 0 16px 0;
  }
  
  .row-01 {
    margin-top: 0px;
    font-size: 24px;
  }
  
  .row-02 {
    font-size: 32px;
  }
  
  .row-03 {
    font-size: 16px;
  }
  
  .main-visual-messages-right > a.contact-button {
    width: 100%;
  }

  /* 会社情報ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  OVER VIEW
  会社概要 */

  .over-view-table {
    padding: 0 10px 24px 10px;
  }

  .over-view-table tr th {
    width: 286px;
    max-width: 100%;
    vertical-align: middle;
  }

  .over-view-table tr td {
    width: 714px;
    max-width: 100%;
    font-size: 13px;
  }

  .over-view-table tr th, .over-view-table tr td {
    padding: 16px 8px;
    font-size: 13px;
  }

  /* ■■■■■■■■■■■■■■■■■■■■■
  GROUP COMPANY
  グループ会社 */

  #group-company {
    padding-bottom: 176px;
  }
  
  .contents-company-item {
    max-height: 280px;
  }

  .contents-company-item h4 {
    font-size: 18px;
  } 

  .contents-company-item p {
    margin-bottom: 24px;
    max-height: 120px;
  } 

/* 製品一覧ページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

  /* ■■■■■■■■■■■■■■■■■■■■■
  WORKS
  導入事例 */

  .left-contents-works-title {
    margin-bottom: 16px;
  }

  .left-contents-works-detail h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .left-contents-works-detail h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }


  /* ■■■■■■■■■■■■■■■■■■■■■
  MAINTENANCE
  メンテナンス */

  .sp_br {
    display: block;
  }

  .container-maintenance {
    padding: 0 24px;
  }

  .right-contents-maintenance-detail h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .right-contents-maintenance-detail div {
    font-size: 16px;
    padding: 8px 40px;
    margin-bottom: 16px;
  }
  

  
  /* 当社の強みページ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

    /* --------------------
  01 省力化設計-SYSTEM */

  .p_strength-section-detail-container {
    padding-left: 16px;
  }

  .blue-line {
    padding-right: 20px;
  }

  .p_strength-section-detail-textarea > div {
    padding-right: 20px;
  }

  
  .p_strength-section-detail-textarea::before {
    margin-right: 16px;
  }

}