@charset "utf-8";
/* CSS Document */

/* 画面サイズが640pxまでの幅の場合に適応される */
@media screen and (max-width:750px) {
  html {
    /* 基準のフォントサイズを 16px に */
    font-size: 100%;
  }
  body {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    padding: 0;
  }

  /*固定すたいるCSSキャスティング*/
  .sp-only {
    display:block !important;
  }
  .pc-only {
    display:none !important;
  }
  .sp-none {
    display: none !important;
  }
  .sp-mgt0 {
    margin-top:0 !important;
  }
  .sp-mgt20 {
    margin-top:1.25em !important;
  }
  .sp-mgt30 {
    margin-top:1.875em !important;
  }
  .sp-mgt40 {
    margin-top:2.5em !important;
  }
  .sp-mgt50 {
    margin-top:3.125em !important;
  }
  .sp-mgb0 {
    margin-bottom:0 !important;
  }
  .sp-mgb16 {
    margin-bottom: 1em !important;
  }
  .sp-pdr23 {
    padding-right:1.45em !important;
  }
  .sp-pd10 {
    padding:0.625em !important;
  }
  .sp-pd0 {
    padding: 0 !important;
  }
  .sp-pdt0 {
    padding-top: 0 !important;
  }
  .sp-pdt {
    padding-top: 1em !important;
  }
  .sp-pdl0 {
    padding-left: 0 !important;
  }
  .sp-adjpd {
    padding-top: 3em !important;
    padding-bottom: 0 !important;
    margin-bottom: 4em !important;
  }
  .sp-border-top {
    border-top: 1px solid #ccc !important;
  }
  .sp-textleft {
    text-align:left !important;
  }
  .sp-textright {
    text-align:right !important;
  }
  .sp-textcenter {
    text-align: center !important;
  }
  .wp-block-columns {
    display: block !important;
  }
  .wp-block-column.first-column {
    padding-right: 0;
    border-right: none;
  }
  .wp-block-column:not(:first-child) {
    margin-left: 0em !important;
    margin-top: 1.25em;
  }
  .profile-content .wp-block-column.first-column,
  .profile-content .wp-block-column.second-column {
    width: 100%;
  }

  /*テンプレート用の必要なカスタマイズCSS*/
  .header-inner, .container, .footer-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  /*ナビゲーションバー*/
  .header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  /*タイトル画像*/
  .site-title a img {
    display: inline-block;
    width: auto;
    height: 25px;
  }

  /*PCナビゲーションメニュー*/
  .header-gnav {
    display: none;
  }

  /*SPナビゲーションボタン*/
  .navbutton {
    font-size: 2rem;
    position: absolute;
    z-index: 999;
    top: 50%;
    right: 1.25rem;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
  }
  .navbutton:focus {
    outline: 0;
  }

  /*ハンバーガーボタン*/
  .drawer__button {
    width: 60px;
    height: 50px;
    display: block;
    box-sizing: border-box;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
  }
  .drawer__button__icon {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 0;
    bottom: 0;
    display: block;
    transform: translateX(-130%);
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .show_header .drawer__button__icon {
    transform: translateX(0px);
  }
  .drawer__button__icon::after,
  .drawer__button__icon::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #242424;
    transform-origin: 50% 50% 0;
    transition-duration: 0.2s;
    transition-property: transform, opacity;
  }
  .drawer__button__icon::before{
    transform: translateY(-4px);
  }
  .drawer__button__icon::after{
    transform: translateY(4px);
  }

  /*CLOSEボタンスタイル*/
  .is-show-drawer .drawer__button__icon {
    color: #242424;
  }
  .is-show-drawer .drawer__button__icon::before {
    transition-delay: 0s;
    transform: rotate(45deg);
  }
  .is-show-drawer .drawer__button__icon:after {
    transition-delay: 0s;
    transform: rotate(-45deg);
  }

  /*MENUボタンを押したら出るスタイル*/
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
    z-index: 2;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    color: #242424;
    background-color: #fff;
    pointer-events: none;
    transform: translate3d(0,0,0);
    transform: translateX(-100%);
    will-change: transform;
    transition: transform .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .is-show-drawer .drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  /*背景スタイル*/
  .drawer__inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transform: translateX(-100%);
    transform-origin: bottom left;
    will-change: transform;
    transition: transform .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .is-show-drawer .drawer__inner {
    transform: translateX(0);
  }

  /*SPナビゲーションリスト*/
  .drawer-nav {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    top: auto;
    left: 135px;
    overflow: hidden;
    display: block;
  }

  .drawer-nav a {
    z-index: 1;
    color: #242424;
    text-decoration: none;
    transform: translateX(-100%);
    transition: color .5s, transform .75s;
    transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }
  .is-show-drawer .drawer-nav a {
    transform: translateX(0px);
  }

  .drawer-nav__item {
    font-size: 20px;
    font-size: 1.25rem;
    display: block;
    margin: 2.5em 0;
    text-decoration: none;
  }
  .drawer-nav__item span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Neue Helvetica Medium", sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.31253em;
    position: relative;
  }
  .drawer-nav__item span::before {
    content: url('../images/hover_mark.svg');
    display: block;
    position: absolute;
    left: -50px;
    top: 6px;
    width: 45px;
    height: auto;
    transform: scale(0);
    transition: all .3s;
  }
  .drawer-nav__item:hover span::before,
  .drawer-nav__item.current span::before {
    transform: scale(1);
  }

  /*ナビゲーションお問い合わせリンクボタン*/
  .drawer-nav__item:last-child span {
    position: relative;
    z-index: 1;
    padding: 0.125em 0.31253em;
    transition: color 0.2s ease;
    border: 1px solid #242424;
  }
  .drawer-nav__item:last-child span::before,
  .drawer-nav__item:last-child span::after {
    content: ''; 
    position: absolute;
    width: 0;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
  }
  .drawer-nav__item:last-child span::before {
    transition: width 0.2s;
    background-color: #fff;
  }
  .drawer-nav__item:last-child span::after {
    transition: width 0.2s;
    background-color: #242424;
  }
  .drawer-nav__item:last-child:hover span {
    color: #fff;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .drawer-nav__item:last-child:hover span::before,
  .drawer-nav__item:last-child:hover span::after {
    top: 0;
    left: 0;
    width: 100%;
  }

  /*ビデオモーションセクション*/
  #main #movie_main {
    position: relative;
    width: 100%;
    height: 60vh;
  }
  #main #movie_main video {
    position: absolute;
    width: 100%;
    height: 60vh;
  }
  #main.movie_end #movie_main {
    background: url('../images/top/media/video-placeholder.svg') center no-repeat;
    background-size: contain;
    margin-top: 0;
    margin-bottom: 0;
    height: 60vh !important;
  }

  /*コンテンツのサイズ指定*/
  .main-content {
    padding-top: 7.375em;
  }

  /*ページタイトル*/
  .page-title h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .page-title h5 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
  }

  /*セクションDIVタイトル*/
  .section-title_subtile {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
  .section-title_subtile span {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
  }

  /*セクションボックステキスト変*/
  .section-box__item.description,
  #recruit .recruit .section-box__item.description {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 3em 0;
  }
  .section-box__item dl dt {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .section-box__item dl dd,
  #recruit .section-box__item dl dd  {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
    padding-right: 0;
  }

  /*View Moreボタン*/
  .btn-wrap,
  .products-item__text .btn-wrap {
    padding: 7px 20px;
    font-size: 12px;
    font-size: 0.75rem;
    width: 155px;
    text-align: center;
  }
  #business .btn-wrap {
    padding: 12px 30px;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .btn-wrap span,
  .products-item__text .btn-wrap span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .btn-wrap span::after {
    top: 0px;
    width: 8px;
    height: 13px;
    position: relative;
    display: inline-block;
  }
  .btn-wrap:hover span::after {
    top: 0px;
    width: 8px;
    height: 13px;
    position: relative;
  }
  /*Entryボタン*/
  .sp-only .btn-entry {
    padding: 8px 10px;
    font-size: 16px;
    font-size: 1rem;
    width: 52%;
    text-align: center;
  }
  .sp-only .btn-entry span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Neue Helvetica Medium", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
  }
  .sp-only .btn-entry:hover span {
    color: #fff;
    font-weight: 600;
  }
  .sp-only .btn-entry span::after {
    width: 10px;
    height: 17px;
    position: relative;
  }
  .sp-only .btn-entry:hover span::after {
    width: 10px;
    height: 17px;
    position: relative;
  }
  .btn-maps {
    width: auto !important;
  }
  .products-item__text .btn-wrap span::after {
    content: url(../images/play-solid.svg);
    top: 2px;
    right: -20px;
    width: 9px;
    height: 16px;
    position: relative;
  }
  .products-item__text .btn-wrap:hover span::after {
    content: url('../images/play-solid-white.svg');
    display: inline-block;
    top: 2px;
    right: -20px;
    width: 9px;
    height: 16px;
    position: relative;
  }

  /*topへ戻るボタン*/
  .pagetop .scrl_text,
  .scrolldown .scrl_text {
    font-size: 8px;
    font-size: 0.375rem;
    font-weight: normal;
  }
  .pagetop .scrl_icon img,
  .scrolldown .scrl_icon img {
    width: 33px;
    height: 33px;
  }
  /*下へスクロールボタン*/
  .scroll-down {
    position: absolute;
    right: 20px;
    bottom: 30px;
  }
  .scrolldown .scrl_text {
    letter-spacing: -1px;
  }

  /*フッターメニューリスト*/
  .footer-nav-wrap {
    display: block;
    justify-content: center;
    align-items: center;
  }
  .footer-nav ul {
    text-align: center;
  }
  .footer-nav li {
    margin-right: 30px;
  }
  .footer-nav li a {
    font-size: 14px;
    font-size: 0.875rem;
  }

  /*フッター画像とcopyrightテキスト*/
  .footer-gallery-grid  {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    padding-top: 1.5625em;
    padding-bottom: 1.5625em;
  }
  .footer-gallery-grid img {
    width: auto;
    height: 60px;
  }
  .copyright-txt {
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Neue Helvetica Thin", sans-serif;
    display: block;
    color: #242424;
    margin-top: 0 !important;
    text-align: center;
  }

  /*デフォルトセクション*/
  #fullpage .section {
    padding: 3em 0;
    padding-bottom: 5em;
  }
  #company .section {
    padding: 3.5em 0;
  }
  #business .section {
    padding: 3em 0;
  }

  /*2列セクションボックス*/
  .section-box {
    display: block;
  }
  .section-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .section-sub_title {
    font-size: 16px;
    font-size: 1rem;
  }
  .section-paragraph {
    font-size: 12px;
    font-size: 0.75rem;
  }

  /*セクションボックステキスト変*/
  .text {
    padding-left: 0;
  }
  .section-box__item.text {
    max-width: 100%;
  }
  .section-box__item.text::before {
    content: '';
    display: none;
  }

  /*セクションボックス画像変*/
  .section-box__item.eyecatch {
    padding: 0;
  }
  .section-box__item.eyecatch img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .products .section-box__item.eyecatch {
    right: 0px;
  }

  /*変態ボックスバージョン*/
  .reverse .text {
    padding-right: 0 !important;
  }
  .reverse .text::before {
    content: '';
    display: none;
  }

  /*フロントページセクション番号*/
  .section-box.section-number::after {
    position: absolute;
    top: 0px;
    right: 0;
  }
  .company .section-box.section-number::after {
    content: '01';
    color: #242424;
    font-size: 29px;
    font-size: 1.8125rem;
    letter-spacing: 2px;
    text-decoration-thickness: 5px;
  }
  .business .section-box.section-number::after {
    content: '02';
    color: #242424;
    font-size: 29px;
    font-size: 1.8125rem;
    letter-spacing: 2px;
    text-decoration-thickness: 5px;
  }
  .products .section-box.section-number::after {
    content: '03';
    color: #242424;
    font-size: 29px;
    font-size: 1.8125rem;
    letter-spacing: 2px;
    text-decoration-thickness: 5px;
  }
  .recruit .section-box.section-number::after {
    content: '04';
    color: #242424;
    font-size: 29px;
    font-size: 1.8125rem;
    letter-spacing: 2px;
    text-decoration-thickness: 5px;
  }

  /*アイキャッチ画像タイポグラフィ*/
  .company .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    transform: translate(15px, 30px);
  }
  .business .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    top: 10%;
    right: 12%;
    transform: translate(10px, 20px);
  }
  .products .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    top: 0%;
    right: 5%;
    transform: translate(-5%, 0px);
  }
  .recruit .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(30px, 0px);
  }

  /*Newsセクションボックス*/
  .news-inner-wrap {
    width: 100%;
    padding: 0;
    padding-top: 3em;
    margin: 0 0 1.25em;
  }
  .article-list {
    margin-bottom: 1.5em;
  }
  .article-list .text {
    font-weight: normal;
    font-size: 14px;
    font-size: 0.875rem;
    color: #242424;
    margin: 0;
  }
  .article-list .text span {
    display: block;
  }
  .article-list .article-date {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    margin-bottom: 0.25em;
    margin-right: 0;
  }
  /*投稿・固定ページ*/
  .archive-wrap, .sidebar {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  /*---------------------------------------------------------
  サイトマップ
  ---------------------------------------------------------*/
  /*経営理念*/
  #philosophy.section {
    padding: 0;
  }
  #philosophy.company .section-box__item.eyecatch {
    padding-bottom: 5em !important;
  }
  #philosophy.company .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 10%;
    transform: translate(20px, -30px);
  }
  #philosophy .section-box__item dl dt {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
  }

  /*ご挨拶*/
  .section.president-message {
    background-image: none;
  }
  .president-message .section-box__item.description {
    padding: 0;
  }
  .president-message .section-box__item.eyecatch {
    padding-top: 2.5em;
  }
  .president-message .section-box__item dl dt {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .president-message .section-box__item dl dd {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 300;
    padding-right: 0;
    line-height: 2;
  }
  .president-message .section-box__item .president-name {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    padding-right: 0;
    padding-top: 2em;
    padding-bottom: 0;
  }
  /*会社概要*/
  #profile .profile-content {
    padding-left: 0;
    padding-top: 0;
  }
  .profile-content .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
  }
  .company-info .sp-only {
    display: none !important;
  }
  .company-info p {
    display: flex;
    padding-bottom: 0.75em;
  }
  .company-info p span:first-child {
    width: 40%;
  }
  .company-info p span:last-child {
    width: 100%;
    padding-left: 0;
  }
  .company-info .sp-only {
    display: block !important;
  }

  /*許可・登録*/
  /*.client ul, .client ul li,
  .qualification ul, .qualification ul li {
    list-style: none;
    font-weight: normal;
    font-size: 14px;
    font-size: 0.875rem;
  }*/

  /*会社沿革*/
  .history-wrap .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
  }
  .history-wrap tbody tr td span {
    margin-left: 0.45em;
  }
  /*アクセス*/
  .access-wrap {
    padding: 0;
  }
  .access-wrap .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: bold;
  }
  .access-wrap .section-title_subtile span {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .access-content__text {
    flex-direction: column-reverse;
    text-align: center;
  }
  .access-content__text .right-content {
    width: 100%;
    padding-bottom: 1.875em;
  }
  .access-content__text .left-content {
    width: 100%;
  }
  .access-content__text p {
    font-weight: normal;
    font-size: 12px;
    font-size: 0.75rem;
  }

  /*環境マネジメント基本方針&情報セキュリティ基本方針*/
  .security-wrap .section-box__item.description,
  .environment-wrap .section-box__item.description {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 2.5em 0;
  }
  .security-wrap .section-box__item.eyecatch .left-content,
  .environment-wrap .section-box__item.eyecatch .left-content {
    padding-right: 0.25em !important;
  }
  .security-wrap .section-box__item.eyecatch .right-content,
  .environment-wrap .section-box__item.eyecatch .right-content {
    padding-left: 0.25em !important;
  }
  .security-wrap .section-paragraph,
  .environment-wrap .section-paragraph {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 2;
  }
  .security-wrap .section-title_subtile,
  .environment-wrap .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
  }
  .security-wrap .section-title_subtile span,
  .environment-wrap .section-title_subtile span {
    display: block;
    line-height: 3;
  }

  /*環境マネジメント基本方針*/
  .environment-wrap dl {
    display: block;
  }
  .environment-wrap dl dt {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .environment-wrap dl dd {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
  }
  blockquote {
    padding: 2em 0;
  }
  blockquote ol {
    font-size: 14px;
    font-size: 0.875rem;
  }


  /*---------------------------------------------------------
  事業内容、工事部、取扱製品、採用情報ページ
  ---------------------------------------------------------*/
  #business .section-box__item.description,
  #construction .section-box__item.description,
  #ict .section-box__item.description,
  #building .section-box__item.description,
  #planning .section-box__item.description {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 0;
  }
  #business .section-box__item dl dt,
  #ict .section-box__item dl dt,
  #building .section-box__item dl dt,
  #planning .section-box__item dl dt {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.8;
  }
  #business .section-box__item dl dd,
  #ict .section-box__item dl dd,
  #building .section-box__item dl dd,
  #planning .section-box__item dl dd {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    text-align: left;
  }
  #business .business .section-box .section-box__item.eyecatch::after {
    width: 90px;
    height: auto;
    position: absolute;
    top: 10%;
    right: 12%;
    transform: translate(10px, 20px);
  }
  #business .section-box__item.text,
  #construction .section-box__item.text {
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  #business .reverse .text,
  #construction .reverse .text {
    padding-left: 0;
  }
  #business .section-title_subtile,
  #construction .section-title_subtile,
  #construction .section-under__page-title .section-title_subtile,
  .access-wrap.section-under__page-title .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: bold;
  }
  #business .section-paragraph,
  #construction .section-paragraph,
  #products .section-paragraph {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
  }
  #business #planningDept .section-box__item.text {
    max-width: 100%;
  }

  /*工事部*/
  #construction .page-title h3,
  #ict .page-title h3,
  #building .page-title h3,
  #planning .page-title h3,
  .business-content h3,
  .list-wrap .section-title_subtile {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: bold;
  }
  #construction .page-title h5,
  #ict .page-title h5,
  #building .page-title h5,
  #planning .page-title h5,
  .business-content .section-paragraph {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
  }
  #construction .description__text {
    font-size: 16px;
    font-size: 1rem;;
    font-weight: bold;
  }
  #construction .pd-right {
    padding-right: 0 !important;
  }
  .photo-list,
  .products-list {
    display: block;
    margin: 0;
  }
  .photo-item,
  .products-item {
    width: 100%;
    margin: 0 0 30px;
  }
  .photo-item__text {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
  }

  /*ICT事業部*/
  .business-wrap,
  #planning .business-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5em;
  }
  .business-content h3 {
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
  .section-under__list ul li {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    margin-bottom: 0.5em;
  }
  .section-under__list .wp-block-column:not(:first-child) {
    margin-left: 0em !important;
  }

  /*企画部*/
  .business-content__item {
    display: block !important;
  }

  /*取扱製品*/
  section.products.section {
    padding-top: 1em;
  }
  .section-block {
    padding-left: 0;
    padding-right: 0;
  }
  .products .section-block::after {
    width: 90px;
    height: auto;
    position: absolute;
    top: 0%;
    right: 5%;
    transform: translate(-15%, 10px);
  }
  .pd-line_container {
    margin-top: 5em;
  }
  .pd-line_container h4.sp-only {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
  }
  #products .section-under__page-title .section-title_subtile {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
  .products-item {
    margin: 0 0 60px;
  }
  .products-item.last {
    margin-bottom: 0;
  }
  .products-item__text h5 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
  }

  /*クリスタルヴァレーページ*/
  .all_mv {
    height: auto;
    padding-top: 80px;
  }
  .all_mv::before {
    width: 0;
    height: 0;
  }
  .all_mv_content {
    width: 100%;
    padding-top: 110px;
    position: relative;
    bottom: auto;
  }
  .coopSolar .all_mv_content {
    background-image: url(../images/products/img/coopSolar_bg_mv.jpeg),linear-gradient(to right top, rgba(235,235,235,0.8) 30%,rgba(0,0,0,0.3));
    background-blend-mode: overlay;
  }
  .all_product_sub_mv_title {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: auto;
    position: relative;
    padding-bottom: 30px;
  }
  .all_product_sub_mv_title h3 {
    font-size: 16px;
    font-size: 1rem;
    padding-left: 1.5em;
    margin-bottom: 8px;
  }
  .all_product_sub_mv_title h5 {
    font-size: 1rem;
    font-weight: 700;
    padding-left: 1.5em;
    line-height: 2;
    letter-spacing: 1px;
  }
  .all_intro {
    margin-top: 0;
    padding-top: 50px;
    padding-left: 1.8em;
    padding-right: 1.5em;
  }
  .all_intro.all_02 {
    margin-top: 80px;
    padding-top: 0px;
  }
  .all_intro:after {
    content: "";
    background: transparent;
  }
  .all_product_sub_intro {
    margin-top: 0;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }
  .all_product_sub_intro_left {
    width: 100%;
    margin-left: 0;
  }
  .all_product_sub_intro_title_main {
    font-size: 2rem;
  }
  .all_product_sub_intro_title_main img {
    width: 70%;
  }
  /*仕様／SPECIFICATION*/
  .all_product_sub_intro_title_sub,
  .all_product_sub_intro .all_text,
  .all_product_sub_title_sub,
  .disaster_capacity_title_sub {
    font-size: 0.875rem;
  }
  .all_product_sub_title_sub span,
  .disaster_capacity_title_sub span {
    font-size: 0.75rem;
  }
  .all_product_sub_exam_table td {
    font-size: 0.75rem;
    padding: 14px 12px;
  }
  .all_product_sub_intro_right {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    padding-top: 40px;
    transform: translateY(0%);
  }
  .all_product_sub_content {
    margin-top: 0;
    padding: 50px 1.5em;
    margin-bottom: 0px;
  }
  /*浄水対応能力／CAPACITY*/
  .disaster_capacity {
    padding: 0;
  }
  .all_product_sub_content .content {
    max-width: 100%;
  }
  .disaster_capacity_title_sub {
    margin-bottom: 20px;
  }
  .disaster_capacity_top_img .icon img {
    width: 100%;
  }
  .disaster_capacity_column {
    margin-top: 30px;
    display: flex;
    flex-direction: column-reverse;
  }
  .disaster_capacity_column_left {
    width: 100%;
    padding: 0;
  }
  .disaster_capacity_column_left_content {
    padding-top: 30px;
  }
  .disaster_capacity_column_right {
    width: 100%;
  }
  .disaster_capacity_column_right_content .list li {
    margin-left: 1.25em !important;
    font-size: 13px;
    padding-left: 0;
  }
  .all_02 .disaster_capacity_top_img .icon img {
    width: 85%;
  }

  /*法人向けシステムページ*/
  .wrap {
    max-width: 100%;
  }
  .box-text {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
  }
  .wrap .box-wrap,
  .reason-wrap {
    width: 100%;
  }
  .wrap .box-wrap img {
    height: 120px;
  }
  .wrap .box-wrap .wp-block-column.left {
    border: none;
    padding-right: 0;
    padding-bottom: 60px;
  }
  .text-center-title {
    padding-top: 30px;
  }
  .wrap .box-wrap .wp-block-column:not(:first-child) {
    margin-left: 0 !important;
  }
  /*お勧めの理由*/
  .reason, .demerit, .howto {
    padding: 60px 0;
  }
  .demerit .box-wrap {
    padding-top: 30px;
  }
  .reason .tx1,
  .demerit .box-wrap h3 {
    font-size: 1.125rem;
    text-align: left;
  }
  .reason .tx1 span {
    font-size: 1rem;
  }
  .reason .recommend .riyunum {
    font-size: 24px;
    font-size: 2.5rem;
    display: block;
  }
  .reason .recommend .riyutlt {
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: 0;
  }
  .reason .recommend .p11, .p11 .link a,
  .demerit .box-wrap p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .reason .recommend:last-of-type {
    padding-bottom: 0em;
  }
  .box-wrap .items .box {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }  
  .demerit .items .box p {
    font-size: 16px;
    font-size: 1rem;
  }
  /*一般住宅向けシステムページ*/
  .homeSolar .item#item01 {
    background-size: auto 66px;
    margin-top: 60px;
  }
  .homeSolar .item#item02 {
    background-size: auto 45px;
    margin-bottom: 0;
  }
  .homeSolar .item#item03 {
    background-size: auto 39px;
    background-position: center 60px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .homeSolar .item .wrap {
    width: auto;
  }
  .homeSolar .item h3,
  .homeSolar .item#item01 .data h4,
  .homeSolar .item#item02 .textbox h4,
  .homeSolar .item#item02 .hems .box h4,
  .homeSolar .item#item03 .box h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
  }
  .homeSolar .item#item01 h3 {
    margin-bottom: 50px;
  }
  .homeSolar .item#item03 h3 {
    margin-bottom: 50px;
  }
  .homeSolar .item#item02 .textbox {
    float: none;
    padding-top: 0px;
    width: auto;
  }
  .homeSolar .item#item01 .data p,
  .homeSolar .item#item02 .textbox p,
  .homeSolar .item#item02 .hems .box p,
  .homeSolar .item#item03 .box p {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
  }
  .homeSolar .item#item01 .data ul {
    margin-top: 0;
    padding-top: 0;
  }
  .homeSolar .item#item02 .hems {
    background: url(../images/products/img/bg02.jpg) left top no-repeat;
    background-size: 135% auto;
  }
  .homeSolar .item#item02 .hems .wrap {
    height: auto;
  }
  .homeSolar .item#item02 .hems .box h4 {
    position: absolute;
    top: 70px;
    right: -40px;
    padding: 45px 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .homeSolar .item#item02 .hems .box p {
    padding-top: 255px;
  }
  .homeSolar .item#item03 .box-wrap img {
    height: auto;
  }
  .last_section .shop {
    display: block;
  }
  .last_section .shop .title,
  .last_section .shop .text {
    display: block;
  }
  .last_section .shop .title {
    padding: 1em;
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
  .last_section .shop .text {
    padding: 30px;
    font-size: 0.875rem;
  }
  .last_section .shop .text span {
    font-size: 0.9rem;
    margin-bottom: 1em;
  }
  .last_section .shop .text span.link,
  .last_section .shop .text span.link a {
    font-size: 0.9rem;
    text-decoration-style: dashed;
  }


  /*採用情報*/
  #recruit .recruit.section {
    padding: 0;
  }
  #recruit .recruit .section-box__item.description {
    padding-top: 1em;
  }
  #recruit .section-box__item dl dt {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: bold;
  }
  #recruit .recruit .description blockquote::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #242424;
  }
  #recruit .recruit .description blockquote::after {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #242424;
  }
  #recruit .recruit .section-box .section-box__item.eyecatch::after {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 10%;
    transform: translate(15px, 15px);
  }

  /*採用一覧*/
  .recruit-wrap,
  #recruit_info .recruit-wrap,
  .list-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .recruit-item .heading span:first-of-type {
    font-family: "D-DIN-Condensed-Bold", sans-serif;
    font-size: 29px;
    font-size: 1.8125rem;
    font-weight: 700;
    color: rgba(36,36,36,0.4);
  }
  .recruit-item .heading span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: left;
    line-height: 2;
    display: block;
  }
  .item-data__table {
    margin-top: 2em;
  }
  .item-data__table thead,
  .item-data__table thead th {
    display: none !important;
  }
  .item-data__table tbody tr td:first-of-type {
    width: 20%;
    padding: 0 0 1em;
  }
  .item-data__table tbody tr td {
    font-size: 12px;
    font-size: 0.75rem !important;
    font-size: inherit;
    line-height: 2;
  }

  /*募集要項*/
  #recruit_info .btn-entry {
    padding: 15px 30px;
    font-size: 12px;
    font-size: 0.75rem;
    width: 200px;
    text-align: center;
  }
  #recruit_info .btn-entry span {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
  }
  #recruit_info .btn-entry span::after {
    top: -1px;
    width: 10px;
    height: 10px;
    position: relative;
  }
  #recruit_info .btn-entry:hover span::after {
    top: -1px;
    width: 10px;
    height: 10px;
    position: relative;
  }

  /*お知らせ*/
  #blogpage .section,
  #privacy-policy .section,
  #siteMap .section {
    padding: 0;
  }

  /*プライバシーポリシー*/
  .wp-block-column h3 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
  }
  .wp-block-column .section-paragraph {
    margin: 0.25em 0 1em;
    line-height: 2;
  }

  /*サイトマップ*/
  .table-wrap {
    width: 100%;
    margin: 3em auto 0;
    text-align: center;
  }
  .table-content {
    border-left: none;
    border-right: none;
  }
  .table-content tbody tr td {
    display: block;
    border: none;
    padding: 2em 0;
  }

}

/*---------------------------------------------------------
END
---------------------------------------------------------*/