html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}
@charset "UTF-8";

/*
Theme Name: itsuwa-theme
Theme URI: https://iskj.xsrv.jp/
Description: イツワ商事株式会社コーポレートサイトのテーマです。
Version: 1.0
Author: Inoue
*/


/* ベース ここから
---------------------------------- */

:root {
  --font-color-main: #333;
  --font-color-sub: #fff;
  --main-color: #2C62AE;
  --main-color-pale: #CADBF7;
  --accent-color: #34373E;
  --accent-color-pale: #D5D1CF;
  --sdgs-main-color: #007E38;
  --sdgs-main-color-pale: #EBF1E4;
  font-size: 62.5%;
  /* -> 10px */
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

.wrapper {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: var(--font-color-main);
  line-height: 2;
  box-sizing: border-box;
  overflow: hidden;
  text-decoration: none;
  list-style: none;
  text-align: justify;
}

.en {
  font-family: "Open Sans", sans-serif;
  text-align: left;
}

.zh,
.vi {
  font-family: "Arial", sans-serif;
  text-align: left;
}

.thailand {
  font-family: "Leelawadee UI", "Arial", sans-serif;
  text-align: left;
}

img {
  width: 100%;
}

figure img {
  vertical-align: bottom;
}

a {
  transition: .5s;
}

a:hover {
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

ul {
  padding-left: 0;
}


@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {
  .wrapper {
    line-height: 2.4;
  }
}

/* ベース ここまで
---------------------------------- */

/* 動きに関する記述 ここから 
---------------------------------- */

/* 動きの速度は基本 1s */

/*========= 流れるテキスト ここから ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*========= 流れるテキスト ここまで ===============*/

/*========= ふわっと ここから ===============*/

/* 上から */

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}


/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

/*========= ふわっと ここまで ===============*/


/*========= ドローン ここから ===============*/

.l-drone_animation {
  width: 100%;
  height: 100vh;
  position: absolute;
  padding: 90px 10px 0;
}

.l-drone_animation img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {

  .l-drone_animation {
    height: 30vh;
  }

  .l-drone_animation img {
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width: 960px) {
  .l-drone_animation {
    height: 60vh;
    padding: 110px 200px 0;
  }

  .l-drone_animation img {
    width: 160px;
    height: 160px;
  }
}

/*========= ドローン ここまで ===============*/


/* 動きに関する記述 ここまで
---------------------------------- */


/* component ここから
---------------------------------- */

.c-sp_none {
  display: none;
}

.c-fs_small {
  font-size: .5em;
  font-weight: 400;
}

.c-btn,
a.c-btn {
  color: var(--font-color-sub) !important;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 100vh;
  padding: 8px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
}

.c-btn:hover,
a.c-btn:hover {
  color: var(--main-color) !important;
  background: var(--font-color-sub) !important;
}

.c-business_page .c-business_cta {
  padding-top: 0;
}

.c-arrow_bottom {
  display: inline-block;
  vertical-align: middle;
  color: var(--font-color-main);
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.c-arrow_top {
  display: inline-block;
  vertical-align: middle;
  color: var(--font-color-main);
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

.c-arrow_right {
  display: inline-block;
  vertical-align: middle;
  color: var(--font-color-main);
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: .5s;
}

.c-arrow_circle_right {
  display: inline-block;
  vertical-align: middle;
  color: var(--main-color);
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.c-arrow_circle_right::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.c-btn .c-arrow_right {
  color: var(--font-color-sub);
  width: .6em;
  height: .6em;
  margin-left: 16px;
}

.c-btn:hover .c-arrow_right {
  color: var(--main-color);
}

.c-arrow_left {
  display: inline-block;
  vertical-align: middle;
  color: var(--font-color-main);
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}

.c-section_title {
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--font-color-sub);
  text-align: center;
  font-weight: 600;
  letter-spacing: .2rem;
}

.c-section_title .c-fs_small {
  font-size: .7em;
}

.c-fc_main_color {
  color: var(--main-color);
}

.c-fc_sdgs_color {
  color: var(--sdgs-main-color);
}

.c-button_rakuten a,
.c-button_amazon a,
.c-button_yahoo a {
  display: block;
  background-color: #bf0000;
  border-radius: 20px;
  border: 1px solid #bf0000;
  color: var(--font-color-sub) !important;
  width: 80%;
  margin: 0 auto;
  height: 2.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.c-button_amazon a {
  background-color: #ff9900;
  border: 1px solid #ff9900;
}

.c-button_yahoo a {
  background-color: #ff0027;
  border: 1px solid #ff0027;
}

.c-button_rakuten a:link,
.c-button_amazon a:link,
.c-button_yahoo a:link {
  text-decoration: none !important;
}

.c-button_rakuten a:hover,
.c-button_amazon a:hover,
.c-button_yahoo a:hover {
  background-color: var(--font-color-sub);
  color: #bf0000 !important;
}

.c-button_amazon a:hover {
  color: #ff9900 !important;
}

.c-button_yahoo a:hover {
  color: #ff0027 !important;
}

.c-link_icon {
  width: .8em;
  margin-left: .5em;
}

.c-sns_icon {
  width: 2.5em;
  margin-top: 8px;
}

.c-sns_link:hover {
  opacity: .5;
}

/* bogo 用スタイル */

.c-bogo .c-btn {
  margin-top: 16px;
  width: 50%;
}

.c-bogo>ul {
  width: 38%;
  background-color: var(--main-color);
  padding: 16px 4px;
  margin-left: 6%;
  border-radius: 0 0 10px 10px;
}

.bogo-language-switcher li {
  text-align: center;
  margin-top: 16px;
}

.bogo-language-switcher li:first-of-type {
  margin-top: 0;
}

.bogo-language-switcher li a {
  color: var(--font-color-sub);
  text-decoration: none;
}

.bogo-language-switcher li a:hover {
  text-decoration: underline;
}

.c-bogo .bogoflags,
.c-bogo .bogoflags-before:before {
  display: none;
}

#breadcrumbs {
  padding-top: 24px;
  font-size: 1.4rem;
}

#breadcrumbs a {
  transition: .5s;
  text-decoration: none;
  color: var(--main-color);
}

#breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 1;
}

.c-business_page #breadcrumbs {
  position: absolute;
  color: var(--font-color-sub);
  z-index: 100;
  font-weight: 300;
}

.c-business_page #breadcrumbs a {
  color: var(--font-color-sub);
}

.c-business_page #breadcrumbs a:hover {
  text-decoration: underline;
  text-decoration-color: var(--font-color-sub);
}

.p-article #breadcrumbs {
  font-size: 1.2rem;
}


@media screen and (min-width: 768px) {
  .c-section_title {
    font-size: 4rem;
    line-height: 1.1;
  }

  .c-sp_none {
    display: block;
  }

  .c-tb_none {
    display: none;
  }

  .c-button_rakuten a,
  .c-button_amazon a,
  .c-button_yahoo a {
    height: 3em;
  }

  .c-business_cta_button {
    width: 60%;
  }

  .c-bogo .c-btn {
    width: 300px;
  }

  .c-bogo>ul {
    width: 240px;
    margin-left: 30px;
  }

  .p-article #breadcrumbs {
    padding-top: 40px;
  }
}

@media screen and (min-width: 960px) {
  .c-sp_none {
    display: block;
  }

  .c-tb_none {
    display: block;
  }

  .c-pc_none {
    display: none;
  }

  .c-button_rakuten a,
  .c-button_amazon a,
  .c-button_yahoo a {
    height: 3.5em;
    border-radius: 50px;
  }

  .c-business_cta p {
    font-size: 1.8rem;
  }

  .c-link_icon {
    display: inline;
  }

  .c-bogo {
    position: relative;
  }

  .c-bogo .c-btn {
    width: 100%;
    margin-bottom: -6px;
    padding: 8px 16px;
    font-size: 1.2rem;
  }

  .c-bogo>ul {
    width: 80%;
    margin-left: 0;
    left: 10%;
    top: calc(1em + 40px);
  }

  #breadcrumbs {
    padding-top: 32px;
    font-size: 1.6rem;
  }

  .p-article #breadcrumbs {
    font-size: 1.4rem;
    width: 80%;
    margin: 0 auto;
    padding-top: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .c-bogo .c-btn {
    padding: 8px 24px;
    font-size: 14px;
  }
}

/* component ここまで
---------------------------------- */


/* ヘッダー ここから
---------------------------------- */

.l-header {
  line-height: 1.6;
  background-color: white;
  width: 100%;
  height: 80px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.l-header__inner {
  padding: 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 40px 0;
  }
}

@media screen and (min-width: 960px) {

  .l-header {
    padding: 0;
    height: 100px;
  }

  .l-header__inner {
    justify-content: right;
    width: 100%;
    align-items: flex-end;
    padding: 0;
    padding-bottom: 16px;
    padding-left: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .l-header__inner {
    justify-content: right;
    align-items: flex-end;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1700px) {
  .l-header__inner {
    justify-content: right;
    align-items: flex-end;
    padding-left: 60px;
  }
}



/* ヘッダーのロゴ部分 */

.l-header__title {
  width: 80px;
}

.l-header__title a:hover {
  opacity: .5;
}

.l-header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .l-header__title {
    width: 80px;
  }
}

@media screen and (min-width: 976px) {

  .l-header__title {
    width: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .l-header__title {
    width: 100px;
  }
}


/* ヘッダーのナビ部分 */

.l-header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: var(--font-color-sub);
  transition: ease .4s;
  overflow: scroll;
}

.nav-items {
  padding: 24px;
}

@media screen and (min-width: 768px) {
  .nav-items {
    padding: 4.8rem;
  }
}

@media screen and (min-width: 960px) {
  .l-header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
    overflow: visible;
    padding: 0 48px;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: flex-end;
    height: initial;
    justify-content: center;
    margin-bottom: 8px;
  }

  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    padding: 0;
  }
}

@media screen and (min-width: 960px) {
  .l-header__nav {
    padding: 0 8px;
  }
}

@media screen and (min-width: 1200px) {
  .l-header__nav {
    padding: 0 16px;
  }
}

@media screen and (min-width: 1700px) {
  .l-header__nav {
    padding: 0 100px;
  }
}

/* ナビのリンク */

.nav-items__item {
  margin-top: 24px;
}

.nav-items__item:first-of-type {
  width: 30%;
  margin: 0 0 40px;
}

.nav-items__item:last-of-type {
  margin: 40px auto;
}

.nav-items__item_link {
  color: var(--font-color-main);
  width: 100%;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-items__item_arrow_parent {
  position: relative;
}

.nav-items__item_arrow::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 16rem;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: .8rem;
  height: .8rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.nav-items__item_arrow_en::before {
  left: 20rem;
}

.nav-items__item .c-btn {
  display: block;
  width: 50%;
  text-align: center;
  margin-top: 16px;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-items__item .c-btn:hover {
  background-color: var(--font-color-sub);
  color: var(--accent-color);
}

@media screen and (min-width: 768px) {

  .nav-items__item {
    margin-top: 32px;
  }

  .nav-items__item:last-of-type {
    padding-right: 0;
  }

  .nav-items__item:first-of-type {
    width: 20%;
    margin: 0 0 56px;
  }

  .nav-items__item:last-of-type {
    margin: 56px 0;
  }

  .nav-items__item_link {
    font-size: 2.2rem;
  }

  .nav-items__item_arrow::before {
    top: 1.8rem;
    left: 22rem;
  }

  .nav-items__item_arrow_en::before {
    left: 27rem;
  }

  .nav-items__item .c-btn {
    width: 300px;
    margin: 32px 0;
    font-size: 1.8rem;
    padding: 8px 20px;
  }
}

@media screen and (min-width: 960px) {

  .nav-items__item {
    margin-top: 0;
    padding-right: 16px;
  }

  .nav-items__item:last-of-type {
    margin: 0;
  }

  .nav-items__item_link {
    margin-bottom: 0;
    font-size: 1.4rem;
    transition: .5s;
  }

  .nav-items__item_arrow::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: -1.2rem;
    left: calc(50% - 1.2rem);
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: .8rem;
    height: .8rem;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
  }

  .nav-items__item>a:hover {
    color: var(--main-color);
  }

  .nav-items__item .c-btn {
    width: 100%;
    margin-bottom: -6px;
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}

@media screen and (min-width: 1200px) {

  .nav-items__item {
    margin-top: 0;
    padding-right: 32px;
  }

  .nav-items__item_link {
    font-size: 1.4rem;
    font-weight: 500;
  }

  .nav-items__item_arrow::before {
    left: calc(50% - 2.4rem);
  }

  .nav-items__item .c-btn {
    font-size: 1.4rem;
    padding: 8px 24px;
  }
}

@media screen and (min-width: 1700px) {
  .nav-items__item_arrow::before {
    left: calc(50% - 5.3rem);
  }

  .nav-items__item_arrow::before {
    left: calc(50% - 2.5rem);
  }
}

/* ハンバーガーメニュー */

.l-header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.l-header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* ドロップダウンメニュー */

.dropdown__lists {
  display: none;
}

.dropdown__list {
  text-align: left;
  padding: 16px 8px 0;
  position: relative;
}

.dropdown__list:last-of-type {
  padding-bottom: 12px;
}

.dropdown__list>a {
  white-space: nowrap;
  color: var(--font-color-main);
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 24px;
  text-decoration: none;
}

.dropdown__list>a::before {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  top: 2.4rem;
  left: 1.6rem;
  color: var(--font-color-main);
  line-height: 1;
  width: .8rem;
  height: .8rem;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

.dropdown__list a:hover {
  text-decoration: underline;
  text-decoration-color: var(--font-color-main);
}

.dropdown-child__lists {
  padding-left: 24px;
  margin-top: 2px;
}

.dropdown-child__list>a {
  color: var(--font-color-main);
  font-weight: 400;
  font-size: 1.2rem;
  position: relative;
  padding-left: 16px;
  padding-bottom: 5px;
  text-decoration: none;
}

.dropdown-child__list:last-of-type>a {
  padding-bottom: 0;
}

.dropdown-child__list>a::before {
  content: "";
  position: absolute;
  top: .7rem;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  color: var(--font-color-main);
  line-height: 1;
  width: .6rem;
  height: .6rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

@media screen and (min-width: 768px) {

  .dropdown__list {
    padding: 24px 8px 0;
    position: relative;
  }

  .dropdown__list:last-of-type {
    padding-bottom: 0;
  }

  .dropdown__list>a {
    font-size: 1.8rem;
    font-weight: 700;
    padding-left: 24px;
  }

  .dropdown__list>a::before {
    top: 3.4rem;
    left: .8rem;
  }

  .dropdown-child__list {
    padding-bottom: 10px;
  }

  .dropdown-child__list:first-of-type {
    padding-top: 10px;
  }

  .dropdown-child__list:last-of-type {
    padding-bottom: 0;
  }

  .dropdown-child__list>a {
    font-weight: 500;
    font-size: 1.6rem;
    padding-left: 16px;
  }

  .dropdown-child__list>a::before {
    top: 1rem;
  }
}

@media screen and (min-width: 960px) {

  /* .nav-items__item:hover .dropdown__lists {
    display: block;
  } */

  .dropdown__lists {
    display: none;
    position: absolute;
    left: -8px;
    top: calc(1em + 30px);
  }

  .dropdown__list {
    text-align: left;
    background-color: var(--main-color);
    padding: 16px 24px 0;
    position: relative;
  }

  .dropdown__list:first-of-type {
    padding-top: 24px;
  }

  .dropdown__list:last-of-type {
    padding-bottom: 24px;
    border-radius: 0 0 10px 10px;
  }

  .dropdown__list>a {
    white-space: nowrap;
    color: var(--font-color-sub);
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: 18px;
  }

  .dropdown__list>a::before {
    content: "";
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    top: 2.6rem;
    left: 2.6rem;
    color: var(--font-color-sub);
    line-height: 1;
    width: .8rem;
    height: .8rem;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
  }

  .dropdown__list:first-of-type>a::before {
    top: calc(2.6rem + 8px);
  }

  .dropdown__list a:hover {
    text-decoration: underline;
    text-decoration-color: var(--font-color-sub);
  }

  .dropdown-child__lists {
    padding-left: 24px;
    margin-top: 2px;
  }

  .dropdown-child__list>a {
    color: var(--font-color-sub);
    font-weight: 400;
    font-size: 1.2rem;
    position: relative;
    padding-left: 16px;
    padding-bottom: 10px;
  }

  .dropdown-child__list:first-of-type>a {
    padding-top: 4px;
  }

  .dropdown-child__list:last-of-type>a {
    padding-bottom: 0;
  }

  .dropdown-child__list>a::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    color: var(--font-color-sub);
    line-height: 1;
    width: .6rem;
    height: .6rem;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
  }
}

/* ヘッダー ここまで
---------------------------------- */


/* フッター ここから
---------------------------------- */

.l-footer {
  background-color: var(--main-color);
  padding: 80px 16px;
  color: var(--font-color-sub);
  font-size: 1.4rem;
}

.l-footer a {
  color: var(--font-color-sub);
  text-decoration: none;
}

.l-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--font-color-sub);
}

.p-footer_column01 figure {
  width: 100px;
}

.p-footer_column01 figure a:hover {
  opacity: .5;
}

.p-footer_column01 p {
  margin-top: 8px;
  font-weight: 300;
  font-size: 1.2rem;
}

.p-footer_column02,
.p-footer_column03,
.p-footer_column04 {
  margin-top: 24px;
}

.l-footer div>ul>li {
  font-weight: 600;
  margin-top: 14px;
}

.l-footer ul li ul li {
  font-size: 1.2rem;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 80px 40px 100px;
    font-size: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 0 3.2rem;
  }

  .p-footer_column01 {
    grid-area: 1 / 1 / 2 / 2;
  }

  .p-footer_column01 p {
    margin-top: 10px;
    font-size: 1.4rem;
    white-space: nowrap;
    font-weight: 400;
  }

  .p-footer_column02,
  .p-footer_column03,
  .p-footer_column04 {
    margin-top: 0;
  }


  .p-footer_column02 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .p-footer_column03 {
    grid-area: 2 / 2 / 3 / 3;
  }

  .p-footer_column04 {
    grid-area: 2 / 3 / 3 / 4;
  }

  .l-footer div>ul>li:first-of-type {
    margin-top: 0;
  }
}

@media screen and (min-width: 960px) {
  /* .l-footer {
    padding: 80px 40px 100px;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 1fr;
    gap: 0;
    font-size: 1.8rem;
  }

  .p-footer_column01 { 
    grid-area: auto;
  }

  .p-footer_column01 p {
    margin-top: 10px;
    font-size: 1.4rem;
    white-space: nowrap;
    font-weight: 500;
  }  

  .p-footer_column02,
  .p-footer_column03,
  .p-footer_column04 {
    margin-top: 0;
    grid-area: auto;
    margin-left: 16px;
  } */

  .l-footer {
    padding: 160px 40px;
    display: flex;
    justify-content: center;
    gap: 8%;
  }

  .l-footer ul li ul li {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 1200px) {
  .l-footer {
    padding: 160px 60px;
  }

  /* .p-footer_column02,
  .p-footer_column03,
  .p-footer_column04 {
    margin-left: 8px;
  } */
}

/* フッター ここまで
---------------------------------- */

/* 多言語用の共通ボタン */


.c-language_btn {
  background-color: var(--font-color-sub);
  border: 1px solid var(--font-color-main);
  border-right: none;
  width: 8em;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 150;
}

.c-language_btn a {
  display: block;
}

@media screen and (min-width: 768px) {
  .c-language_btn {
    font-size: 1.6rem;
    width: 10em;
  }

  .c-language_btn .dropdown__list:last-of-type {
    padding-bottom: 16px;
  }

  .c-language_btn .dropdown__list a {
    color: var(--font-color-main);
    font-weight: 500;
  }

  .c-language_btn .dropdown__list>a::before {
    top: 2.6rem;
  }
}

@media screen and (min-width: 960px) {
  .c-language_btn {
    top: 140px;
    right: auto;
    left: 0;
    border-right: 1px solid var(--font-color-main);
    border-left: none;
  }

  .c-language_btn li:hover .dropdown__lists {
    display: block;
    width: 10em;
    top: -1px;
    right: -1px;
    left: auto;
    padding-top: 0;
  }

  .c-language_btn .dropdown__list {
    background-color: var(--font-color-sub);
    border-right: 1px solid var(--font-color-main);
    border-bottom: 1px solid var(--font-color-main);
    padding: 10px 16px;
  }

  .c-language_btn .dropdown__list:first-of-type {
    border-top: 1px solid var(--font-color-main);
  }

  .c-language_btn .dropdown__list:last-of-type {
    padding-bottom: 10px;
  }

  .c-language_btn .dropdown__list a {
    color: var(--font-color-main);
  }

  .c-language_btn .dropdown__list>a::before {
    color: var(--font-color-main);
    top: 2.2rem;
  }
}


/* top トップページ ここから
------------------------------------------------------------- */

/* メイン ここから
---------------------------------- */

/* 固定背景画像 */

.l-bg_fix {
  position: fixed;
  /* fixedに変更する。それ以外は同じ。 */
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: top;
}

/* 背景画像　半透明 */

.l-bg_opacity {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-color: rgb(255, 255, 255, .8);
  padding: 80px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-bg_opacity {
    margin: 0;
    width: 100%;
  }
}

@media screen and (min-width: 960px) {}


/* メイン section レイアウト */

/* セクション間の上下余白80px　sp */

.l-top {
  margin-top: 80px;
  /* ヘッダー分 */
  padding: 0 16px;
}

.l-top_intro {
  height: 30vh;
  padding-top: 40px;
}

.l-top_about {
  margin-top: 240px;
  /* padding-top: 300px; */
}

.l-top_about_en {
  margin-top: 0;
}

.l-top .l-top_about_news {
  width: 90%;
  background-color: var(--main-color);
  padding: 16px 24px;
  margin: -160px 0 0 auto !important;
  /* position: absolute;
  top: -100px;
  right: 0; */
}

.l-top_about_exp {
  padding: 0 16px;
  margin: 80px auto 0;
}

.l-top_about_exp_en {
  margin: 0 auto;
}

.l-top_business {
  margin: 0 calc(50% - 50vw);
  padding: 80px 16px;
  background-image: url(./../images/top_bg_business.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.l-top_global {
  padding: 80px 16px;
}

@media screen and (min-width: 768px) {
  /* 各セクションの wrapper はPCとTBのためのクラス */

  .l-top {
    padding: 0;
  }

  .l-top_intro {
    height: 20vh;
    padding-top: 80px;
    width: 700px;
    margin: 0 0 0 auto;
  }

  .l-top_intro_en {
    height: 30vh;
  }

  .l-bg_opacity {
    padding: 100px 0;
  }

  .l-top_about {
    margin-top: 280px;
  }

  .l-top_about_en {
    margin-top: 0;
  }

  .l-top .l-top_about_wrapper {
    width: 700px;
    margin: 0 0 0 auto !important;
  }

  .l-top .l-top_about_news {
    width: 700px;
    margin-top: -220px !important;
    padding: 24px;
  }

  .l-top_about_exp {
    padding: 0 16px 0 0;
  }

  .l-top_business {
    margin: 0;
    padding: 100px 0;
  }

  .l-top_business_wrapper {
    width: 700px;
    margin: 0 auto;
  }

  .l-top_global {
    padding: 100px 0;
  }

  .l-top_global .l-top_global_wrapper {
    width: 700px;
    margin: 0 auto !important;
  }
}

@media screen and (min-width: 960px) {

  /* 各セクションの wrapper はPCとTBのためのクラス */

  .l-top {
    margin-top: 100px;
  }

  .l-top_intro {
    height: 50vh;
    width: 940px;
    margin-top: 100px;
    padding-top: 100px;
  }

  .l-bg_opacity {
    padding: 160px 0;
  }

  .l-top .l-top_about_wrapper {
    width: 940px;
  }

  .l-top .l-top_about_news {
    width: 940px;
    display: grid;
    grid-template-columns: 12% 83%;
    gap: 5%;
    margin-top: -320px !important;
  }

  .l-top_about_exp {
    padding: 0 16px 0 0;
    margin-top: 160px;
    display: grid;
    grid-template-columns: 52% 43%;
    gap: 5%;
    align-items: start;
  }

  .l-top_about_exp_en {
    margin-top: 0px;
  }

  .l-top_business {
    padding: 160px 0;
  }

  .l-top_business_wrapper {
    width: 940px;
  }

  .l-top_global {
    padding: 160px 0;
  }

  .l-top_global .l-top_global_wrapper {
    width: 940px;
    margin: 0 auto 0 0 !important;
    display: grid;
    grid-template-columns: 560px 400px;
  }
}

@media screen and (min-width: 1200px) {
  .l-top_intro {
    width: 1200px;
  }

  .l-top .l-top_about_wrapper {
    width: 1200px;
  }

  .l-top .l-top_about_news {
    width: 1200px;
    grid-template-columns: 10% 85%;
    margin-top: -340px !important;
  }

  .l-top_about_exp {
    padding: 0 32px 0 0;
    grid-template-columns: 50% 43%;
    gap: 7%;
  }

  .l-top_business_wrapper {
    width: 1200px;
  }

  .l-top_global .l-top_global_wrapper {
    width: 1200px;
    grid-template-columns: 750px 450px;
  }
}

@media screen and (min-width: 1700px) {
  .l-top_intro {
    width: 1500px;
  }

  .l-top .l-top_about_wrapper {
    width: 1500px;
  }

  .l-top .l-top_about_news {
    width: 1500px;
    padding: 24px 32px;
  }

  .l-top_business_wrapper {
    width: 1500px;
  }

  .l-top_global .l-top_global_wrapper {
    width: 1500px;
    grid-template-columns: 1000px 500px;
  }
}


/* intro */

.l-top_intro h1 {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .4rem;
}

.l-top_intro h1 .en {
  font-size: 5.8rem;
  letter-spacing: 10px;
  font-weight: 500;
}

.l-top_intro p {
  color: var(--accent-color-pale);
  letter-spacing: normal;
  padding-left: 4px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .l-top_intro h1 {
    font-size: 4rem;
  }

  .l-top_intro p {
    font-size: 2rem;
    margin-top: 16px;
  }
}

@media screen and (min-width: 960px) {
  .l-top_intro h1 {
    font-size: 7.2rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: .4rem;
  }

  .l-top_intro h1 .en {
    font-size: 10.4rem;
  }

  .l-top_intro p {
    font-size: 2rem;
    padding-left: 8px;
    margin-top: 20px;
  }
}

/* news */

.l-top_about_news h2 {
  font-size: 2.0rem;
  line-height: 1.2;
  color: var(--font-color-sub);
}

.l-top_about_news ul {
  margin-top: 16px;
  font-size: 1.2rem;
}

.l-top_about_news li,
.p-top_about_news_list_jump {
  border-bottom: 1px solid var(--main-color-pale);
  padding: 24px 0;
  position: relative;
}

.p-top_about_news_list li {
  position: relative;
}

.p-top_about_news_list li::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 8px;
  width: 50px;
  height: 6px;
  border-right: 2px solid var(--font-color-sub);
  border-bottom: 2px solid var(--font-color-sub);
  transform: skew(45deg);
}

.l-top_about_news li:first-of-type {
  padding-top: 0;
}


.l-top_about_news li a {
  color: var(--font-color-sub);
  line-height: 2;
  display: block;
  text-decoration: none;
}

.l-top_about_news li a:hover,
.l-top_about_news li a:hover span {
  text-decoration: underline;
  text-decoration-color: var(--font-color-sub);
}

.l-top_about_news li a span {
  display: inline-block;
}

.p-top_about_news_list_jump {
  padding: 16px 0;
  text-align: right;
}

.p-top_about_news_list_jump a {
  color: var(--font-color-sub);
  font-weight: 400;
  text-decoration: none;
  font-size: 1.2rem;
}

.p-top_about_news_list_jump a:hover {
  text-decoration: underline;
  text-decoration-color: var(--font-color-sub);
}

.p-top_about_news_list_jump .c-arrow_right {
  color: var(--font-color-sub);
  width: .6em;
  height: .6em;
  margin-left: .5em;
}

.l-top_about_news li time {
  color: var(--font-color-sub);
  display: block;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .l-top_about_news h2 {
    font-size: 2.2rem;
  }

  .l-top_about_news ul {
    margin-top: 24px;
    font-size: 1.4rem;
  }

  .p-top_about_news_list_jump {
    padding: 32px 0 0;
  }

}

@media screen and (min-width: 960px) {

  .l-top_about_news h2 {
    font-size: 2.8rem;
    line-height: .8;
  }

  .l-top_about_news h2 .c-fs_small {
    font-weight: 300;
  }

  .l-top_about_news ul {
    margin-top: 0;
  }

  .l-top_about_news li {
    padding-bottom: 16px;
  }

  .l-top_about_news li time {
    width: 8em;
    margin-right: 16px;
  }
}

/* exp */

.l-top_about_exp h2 {
  font-size: 2rem;
  font-weight: 600;
}

.l-top_about_exp p {
  margin: 30px 0;
}

.l-top_about_exp a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-top_about_exp a .c-arrow_right:hover {
  color: var(--main-color);
}

.p-top_about_exp_image {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
}

.p-top_about_exp_image figure {
  margin-left: 8px !important;
}

.p-top_about_exp_image figure:nth-child(2) {
  margin-top: 20px !important;
}

.p-top_about_exp_image figure:nth-child(1) {
  margin-top: 40px !important;
  margin-left: 0;
}


@media screen and (min-width: 768px) {
  .l-top_about_exp h2 {
    font-size: 2.4rem;
  }

  .l-top_about_exp a {
    width: 300px;
    margin: 0 auto;
  }

  .p-top_about_exp_image {
    width: 80%;
    margin: 80px auto 0;
  }

  .p-top_about_exp_image figure {
    margin-left: 20px !important;
  }

  .p-top_about_exp_image figure:nth-child(2) {
    margin-top: 40px !important;
  }

  .p-top_about_exp_image figure:nth-child(1) {
    margin-top: 80px !important;
  }

}

@media screen and (min-width: 960px) {
  .l-top_about_exp h2 {
    font-size: 3.2rem;
    white-space: nowrap;
    line-height: 2;
  }

  .l-top_about_exp p {
    font-size: 1.8rem;
    margin: 40px 0 60px;
  }

  .l-top_about_exp a {
    width: 400px;
    margin: 0;
  }

  .p-top_about_exp_image {
    width: 100%;
    margin: -20px auto 0;
  }

  .p-top_about_exp_image figure:nth-child(2) {
    margin-top: 40px !important;
  }

  .p-top_about_exp_image figure:nth-child(1) {
    margin-top: 80px !important;
  }
}


/* business */

.p-top_business_contents {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.p-top_business_content {
  background-color: var(--font-color-sub);
  padding: 24px 16px;
  text-align: center;
  width: 90%;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 24px;
}

.p-top_business_content figure {
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top_business_content figure img {
  height: 100%;
  object-fit: contain;
}

.p-top_business_content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}

.p-top_business_content .c-fs_small {
  font-size: .8em;
}

.p-top_business_content p {
  font-size: 1.4rem;
}

.p-top_business_content p:last-of-type {
  width: 100%;
}

.p-top_business_content .c-btn {
  position: relative;
  width: 100%;
  display: block;
}

.p-top_business_content .c-btn .c-arrow_right {
  color: var(--font-color-sub);
  width: .6em;
  height: .6em;
  position: absolute;
  top: calc(50% - .2em);
  right: 3.2rem;
}

.p-top_business_content .c-btn:hover .c-arrow_right {
  color: var(--main-color);
}

.p-top_business_link {
  margin-top: 72px;
}

@media screen and (min-width: 768px) {
  .p-top_business_contents {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 46% 46%;
    gap: 64px 8%;
  }

  .p-top_business_content {
    padding: 32px 24px;
    width: 100%;
    margin: 0;
  }

  .p-top_business_content h3 {
    font-weight: 800;
  }

  .p-top_business_link {
    margin: 80px auto 0;
    width: 60%;
  }
}

@media screen and (min-width: 960px) {
  .p-top_business_contents {
    margin-top: 100px;
    grid-template-columns: 30% 30% 30%;
    gap: 20px 5%;
  }

  .p-top_business_content {
    padding: 32px 10px;
    gap: 32px;
  }

  .p-top_business_content p {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .p-top_business_link {
    margin: 100px auto 0;
    width: 40%;
  }
}

@media screen and (min-width: 1200px) {
  .p-top_business_contents {
    gap: 50px 5%;
  }

  .p-top_business_content {
    padding: 32px 24px;
  }
}

@media screen and (min-width: 1700px) {
  .p-top_business_contents {
    gap: 60px 5%;
  }

  .p-top_business_content {
    padding: 60px;
  }

}

/* itsuwa global network */

.p-top_global_content {
  margin: 20px 0;
}

.p-top_global_content .c-section_title {
  text-align: left;
  letter-spacing: .1rem;
}

.p-top_global_content_text p {
  margin: 20px 0;
}

@media screen and (min-width: 768px) {
  .p-top_global_content {
    margin: 80px 0;
  }

  .p-top_global_content_text p {
    margin: 40px 0 60px;
  }

  .p-top_global_content .c-btn {
    width: 400px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .p-top_global_content {
    margin: 0;
  }

  .p-top_global_image {
    margin-top: 32px;
  }

  .p-top_global_content .c-section_title {
    font-size: 5.25rem;
    margin-left: -60px !important;
    white-space: nowrap;
  }

  .l-top_global .p-top_global_content>p,
  .l-top_global .p-top_global_content_text {
    margin-left: 32px !important;
  }

  .p-top_global_content>p {
    font-size: 2.4rem;
    margin-top: 16px;
  }

  .l-top_global_content_text p {
    margin: 24px 0 32px;
    font-size: 1.8rem;
  }

  .p-top_global_content .c-btn {
    width: 300px;
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .p-top_global_content .c-section_title {
    font-size: 6.5rem;
    margin-left: -5vw !important;
    margin-bottom: .5vw !important;
    white-space: nowrap;
  }

  .l-top_global .p-top_global_content>p,
  .l-top_global .p-top_global_content_text {
    margin-left: 40px !important;
  }
}


/* メイン ここまで
---------------------------------- */

/* top ここまで
------------------------------------------------------------- */


/* top 以外 ここから
------------------------------------------------------------- */

/* top 以外のベースのレイアウト 共通部分 */

/* 基本レイアウト
SP：セクション間→上下余白80px セクションの中のコンテンツ間→上下余白40px
TB：セクション間→上下余白100px セクションの中のコンテンツ間→上下余白64or80px
PC：セクション間→上下余白160px セクションの中のコンテンツ間→上下余白80px */

/* sp：両サイド16pxの余白、pc：コンテンツ幅1,000px */

/* 左右余白 */
.l-main {
  padding: 0 16px;
}

/* セクション上下余白 */
.l-bottom_section {
  padding: 80px 0;
}

.p-article .l-bottom_section {
  padding: 40px 0;
}

/* フッターの上だけ余白多く */

.l-bottom_section:last-of-type {
  padding-bottom: 100px;
}

/* 下層ページの透明背景 トップのものからpaddingを抜いてる */
.l-bg_opacity_bottom {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-color: rgb(255, 255, 255, .8);
  position: relative;
}

@media screen and (min-width: 768px) {

  .l-bg_opacity_bottom {
    margin: 0;
    width: 100%;
    background-color: rgb(255, 255, 255, .8);
    position: relative;
  }

  .l-main {
    padding: 0;
    width: 700px;
    margin: 0 auto;
  }

  .l-page_head .l-main {
    width: 100%;
    padding: 80px 40px 0;
  }

  .l-bottom_section {
    padding: 100px 0;
  }

  .p-article .l-bottom_section {
    padding: 40px 0;
  }

  .l-bottom_section:last-of-type {
    padding-bottom: 160px;
  }
}

@media screen and (min-width: 960px) {
  .l-main {
    width: 940px;
    margin: 0 auto;
  }

  .l-page_head .l-main {
    width: 940px;
    padding: 96px 0 0;
    margin: 0 0 0 auto;
  }

  .l-bottom_section {
    padding: 160px 0;
  }

  .p-article .l-bottom_section {
    padding: 80px 0;
  }

  .l-bottom_section:last-of-type {
    padding-bottom: 240px;
  }
}

@media screen and (min-width: 1200px) {
  .l-main {
    width: 1200px;
    margin: 0 auto;
  }

  .l-page_head .l-main {
    width: 1200px;
    padding: 96px 0 0;
    margin: 0 0 0 auto;
  }
}

@media screen and (min-width: 1700px) {
  .l-main {
    width: 1500px;
  }

  .l-page_head .l-main {
    width: 1500px;
    padding: 96px 0 0;
  }
}


/* 帯部分 共通スタイル */

.l-page_head {
  margin-top: 80px;
  height: 160px;
  background-image: url(./../images/about_head_bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-page_head_title {
  color: var(--font-color-sub);
  font-size: 3rem;
  font-weight: 600;
  padding-top: 40px;
  line-height: 1.1;
}

.p-page_head_title_en {
  line-height: 1.4;
}

.p-page_head_subtitle {
  font-size: .6em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .l-page_head {
    height: 240px;
  }

  .p-page_head_title {
    font-size: 3.5rem;
    line-height: 1.1;
    padding-top: 105px;
  }
}

@media screen and (min-width: 960px) {
  .l-page_head {
    margin-top: 100px;
    height: 320px;
    background-image: url(./../images/about_head_bg.jpg);
    background-position: right top;
  }

  .p-page_head_title {
    font-size: 5rem;
    padding-top: 155px;
  }

  .p-page_head_subtitle {
    font-weight: 500;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/* イツワ商事とは about ここから
------------------------------------------------------------- */

.page-id-4399 .l-wp_template .l-page_head,
.page-id-12409 .l-wp_template .l-page_head,
.page-id-12408 .l-wp_template .l-page_head,
.page-id-12407 .l-wp_template .l-page_head {
  background-image: url(./../images/about_head_bg.jpg);
}

/* MISSION STYLE */

.l-about_ms {
  text-align: center;
}

.l-about_ms h2 {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
}

.l-about_ms h2::after {
  content: "";
  position: absolute;
  bottom: -.8rem;
  left: calc(50% - 25px);
  border: 1px solid var(--main-color);
  width: 50px;
}

.p-about_ms_mission p {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-about_ms_mission p:nth-of-type(2) {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 20px;
}

.p-about_ms_style {
  margin-top: 40px;
}

.p-about_ms_style_item {
  width: 100%;
  color: var(--font-color-sub);
  font-weight: 500;
  background-color: var(--main-color);
  margin-top: 16px;
  padding: .25em 1em;
}

@media screen and (min-width: 768px) {

  .p-about_ms_mission p {
    font-size: 2.4rem;
    font-weight: 600;
  }

  .p-about_ms_mission p:nth-of-type(2) {
    font-size: 1.6rem;
    margin-top: 40px;
  }

  .p-about_ms_style {
    margin-top: 60px;
  }

  .p-about_ms_style_item {
    font-size: 2.2rem;
    margin-top: 24px;
  }
}


@media screen and (min-width: 960px) {

  .l-about_ms h2 {
    font-size: 6rem;
    line-height: 1;
  }

  .l-about_ms h2::after {
    bottom: -40px;
    border: 2px solid var(--main-color);
  }

  .p-about_ms_mission p {
    margin-top: 80px;
    font-size: 3.2rem;
    line-height: 1.8;
  }

  .p-about_ms_mission p:nth-of-type(2) {
    font-size: 1.8rem;
    margin-top: 40px;
    line-height: 2;
  }

  .p-about_ms_style {
    margin-top: 80px;
  }

  .p-about_ms_style_items {
    display: grid;
    grid-template-columns: 450px 450px;
    gap: 40px;
    margin-top: 80px;
  }

  .p-about_ms_style_item {
    margin-top: 0;
  }
}


@media screen and (min-width: 1200px) {
  .p-about_ms_style_items {
    width: 940px;
    margin: 80px auto 0;
  }
}


@media screen and (min-width: 1700px) {
  .p-about_ms_style_items {
    width: 1200px;
    grid-template-columns: 550px 550px;
    gap: 40px 100px;
  }
}


/* next */

.l-about_next {
  background-image: url(./../images/about_next_bg.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

.p-about_next_lead {
  text-align: center;
  font-size: 2rem;
  position: relative;
  z-index: 50;
  padding: 0 4px;
}

.p-about_next_lead::before {
  content: "Road to Next";
  position: absolute;
  top: 70%;
  left: 10%;
  color: var(--font-color-sub);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  opacity: .8;
  z-index: -1;
}

.p-about_next_intro {
  margin-top: 50px;
}

.p-about_next_ex {
  margin-top: 60px;
}

.p-about_next_ex h2 {
  text-align: center;
  font-size: 2rem;
}

.p-about_next_ex_items {
  margin-top: 40px;
}

.p-about_next_ex_item {
  background-color: var(--font-color-sub);
  margin-top: 40px;
}

.p-about_next_ex_item_text {
  padding: 2.4rem 1.6rem;
}

.p-about_next_ex_item_text h3,
.p-about_next_ex_item_text p:first-of-type {
  text-align: center;
}

.p-about_next_ex_item_text h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
}

.p-about_next_ex_item_text p:first-of-type {
  margin-top: 10px;
  font-weight: 600;
}

.p-about_next_ex_item_text p:nth-of-type(2) {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {

  .l-about_next {
    background-position: center top;
  }

  .p-about_next_lead {
    font-size: 2.4rem;
  }

  .p-about_next_lead::before {
    content: "Road to Next";
    position: absolute;
    top: 50%;
    left: 16%;
    color: var(--font-color-sub);
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
    opacity: .8;
    z-index: -1;
  }

  .p-about_next_intro {
    margin-top: 60px;
  }

  .p-about_next_ex {
    margin-top: 80px;
  }

  .p-about_next_ex h2 {
    font-size: 2.4rem;
  }

  .p-about_next_ex_items {
    display: grid;
    grid-template-columns: 220px 220px 220px;
    gap: 20px;
    /* align-items: flex-start; */
  }

  .p-about_next_ex_item {
    margin-top: 0;
    width: 220px;
  }

  /* .p-about_next_ex_item:nth-of-type(2) {
    margin-top: 40px;
  }

  .p-about_next_ex_item:nth-of-type(3) {
    margin-top: 80px;
  } */

  .p-about_next_ex_item figure {
    height: 180px;
  }

  .p-about_next_ex_item figure img {
    height: 100%;
    object-fit: cover;
  }

  .p-about_next_ex_item_text h3 {
    font-size: 3rem;
  }

  .p-about_next_ex_item_text p:first-of-type {
    font-size: 1.8rem;
    margin-top: 16px;
  }

  .p-about_next_ex_item_text p:nth-of-type(2) {
    margin-top: 16px;
  }
}


@media screen and (min-width: 960px) {

  .p-about_next_lead {
    font-size: 3.2rem;
    line-height: 1.8;
  }

  .p-about_next_lead::before {
    font-size: 10rem;
    left: 18%;
  }

  .p-about_next_intro {
    margin-top: 105px;
    font-size: 1.8rem;
  }

  .p-about_next_ex h2 {
    font-size: 3.2rem;
  }

  .p-about_next_ex_items {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    margin-top: 60px;
  }

  .p-about_next_ex_item {
    width: 300px;
  }

  .p-about_next_ex_item figure {
    height: 200px;
  }

  .p-about_next_ex_item_text {
    padding: 2.4rem 3.2rem;
  }

  .p-about_next_ex_item_text h3 {
    font-size: 3.6rem;
  }

  .p-about_next_ex_item_text p:first-of-type {
    line-height: 1.8;
  }
}


@media screen and (min-width: 1200px) {

  .p-about_next_lead::before {
    left: 25%;
  }

  .p-about_next_intro {
    width: 960px;
  }

  .p-about_next_ex_items {
    width: 940px;
    margin: 60px auto 0;
  }
}

@media screen and (min-width: 1700px) {

  .p-about_next_lead::before {
    left: 30%;
  }

  .p-about_next_intro {
    width: 1200px;
  }

  .p-about_next_ex_items {
    width: 1200px;
    grid-template-columns: 350px 350px 350px;
    gap: 75px;
  }

  .p-about_next_ex_item {
    width: 350px;
  }

  .p-about_next_ex_item_text {
    padding: 40px;
  }
}


/* kando */

.l-about_kando {
  background-image: url(./../images/about_kando_bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.l-about_kando h2 {
  color: var(--font-color-sub);
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}

.l-about_kando>p {
  font-size: 6rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  margin-top: 20px;
  margin-left: calc(50% - 110px);
  color: var(--font-color-sub);
  letter-spacing: 1px;
}

.p-about_kando_items {
  margin-top: 110px;
}

.p-about_kando_item {
  margin-top: 110px;
}

.p-about_kando_item:nth-of-type(3),
.p-about_kando_item:nth-of-type(5) {
  margin-top: 94px;
}

.p-about_kando_item h3 {
  position: relative;
  z-index: 100;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
}

.p-about_kando_item h3::after {
  content: "";
  position: absolute;
  top: calc(-90px + 1.9rem);
  left: calc(50% - 90px);
  background-color: var(--font-color-sub);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: -1;
}

.p-about_kando_item:nth-of-type(3) h3::after,
.p-about_kando_item:nth-of-type(5) h3::after {
  top: calc(-90px + 3.5rem);
}

.p-about_kando_item p {
  text-align: center;
  margin-top: 80px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--font-color-sub);
}

.p-about_kando_item:nth-of-type(3) p,
.p-about_kando_item:nth-of-type(5) p {
  margin-top: 59px;
}

@media screen and (min-width: 768px) {

  .l-about_kando h2 {
    font-size: 3rem;
  }

  .l-about_kando>p {
    font-size: 8rem;
    margin-top: 40px;
    margin-left: calc(50% - 150px);
  }

  .p-about_kando_items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
  }

  .p-about_kando_item {
    margin-top: 70px;
  }

  .p-about_kando_item:nth-of-type(3),
  .p-about_kando_item:nth-of-type(5) {
    margin-top: 52px;
  }

  .p-about_kando_item:nth-of-type(1) {
    grid-area: 1 / 2 / 2 / 4;
  }

  .p-about_kando_item:nth-of-type(2) {
    grid-area: 1 / 4 / 2 / 6;
  }

  .p-about_kando_item:nth-of-type(3) {
    grid-area: 2 / 1 / 3 / 3;
  }

  .p-about_kando_item:nth-of-type(4) {
    grid-area: 2 / 3 / 3 / 5;
  }

  .p-about_kando_item:nth-of-type(5) {
    grid-area: 2 / 5 / 3 / 7;
  }

  .p-about_kando_item p {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 85px;
    line-height: 1.8;
  }

  .p-about_kando_item:nth-of-type(3) p,
  .p-about_kando_item:nth-of-type(5) p {
    margin-top: 65px;
  }

}

@media screen and (min-width: 960px) {

  .l-about_kando {
    background-image: url(./../images/about_kando_bg.jpg);
  }

  .l-about_kando h2 {
    font-size: 3.2rem;
    line-height: 1.8;
  }

  .l-about_kando>p {
    font-size: 10rem;
    margin-left: calc(50% - 185px);
  }

  .p-about_kando_items {
    display: grid;
    grid-template-columns: 180px 180px 180px 180px 180px;
    grid-template-rows: auto;
    gap: 10px;
    margin-top: 80px;
  }

  /* .p-about_kando_item {
    margin-top: 80px;
  } */

  .p-about_kando_item:nth-of-type(1),
  .p-about_kando_item:nth-of-type(2),
  .p-about_kando_item:nth-of-type(3),
  .p-about_kando_item:nth-of-type(4),
  .p-about_kando_item:nth-of-type(5) {
    grid-area: auto;
  }

  .p-about_kando_item:nth-of-type(3),
  .p-about_kando_item:nth-of-type(5) {
    margin-top: 42px;
  }

  .p-about_kando_item h3::after {
    top: calc(-90px + 1.92rem);
  }

  .p-about_kando_item:nth-of-type(3) h3::after,
  .p-about_kando_item:nth-of-type(5) h3::after {
    top: calc(-90px + 4.85rem);
  }

  .p-about_kando_item:nth-of-type(3) h3,
  .p-about_kando_item:nth-of-type(5) h3 {
    padding-top: 18px;
  }

  .p-about_kando_item:nth-of-type(3) p,
  .p-about_kando_item:nth-of-type(5) p {
    margin-top: 63px;
  }

  .p-about_kando_item:nth-of-type(3) p,
  .p-about_kando_item:nth-of-type(5) p {
    margin-top: 60px;
  }
}


@media screen and (min-width: 1200px) {
  .p-about_kando_items {
    grid-template-columns: 210px 210px 210px 210px 210px;
    gap: 37.5px;
  }

  .p-about_kando_item {
    margin-top: 80px;
  }

  .p-about_kando_item:nth-of-type(3) h3,
  .p-about_kando_item:nth-of-type(5) h3 {
    padding-top: 25px;
  }

  .p-about_kando_item h3::after {
    width: 200px;
    height: 200px;
    left: calc(50% - 100px);
    top: calc(-90px + 10px);
  }

  .p-about_kando_item:nth-of-type(3) h3::after,
  .p-about_kando_item:nth-of-type(5) h3::after {
    top: calc(-90px + 49px);
  }

  .p-about_kando_item p {
    margin-top: 95px;
  }

  .p-about_kando_item:nth-of-type(3) p,
  .p-about_kando_item:nth-of-type(5) p {
    margin-top: 73px;
  }
}

@media screen and (min-width: 1700px) {
  .p-about_kando_items {
    grid-template-columns: 250px 250px 250px 250px 250px;
    gap: 62.5px;
  }
}


/* detail */

.p-about_detail_item {
  margin-top: 56px;
}

.p-about_detail_item:first-of-type {
  margin-top: 30px;
}

.p-about_detail_item_text h2 {
  font-size: 3.2rem;
  line-height: 1;
  margin-top: 32px;
  padding-left: 23px;
  position: relative;
  z-index: 100;
}

.p-about_detail_item_text h2::before {
  content: "";
  position: absolute;
  font-size: 8rem;
  font-weight: 700;
  color: rgb(255, 255, 255, .2);
  -webkit-text-fill-color: rgb(255, 255, 255, .2);
  -webkit-text-stroke: 1px var(--main-color);
  left: -5px;
  top: -28px;
  z-index: -1;
}

.p-about_detail_item:nth-of-type(1) .p-about_detail_item_text h2::before {
  content: "K";
}

.p-about_detail_item:nth-of-type(2) .p-about_detail_item_text h2::before {
  content: "A";
}

.p-about_detail_item:nth-of-type(3) .p-about_detail_item_text h2::before {
  content: "N";
}

.p-about_detail_item:nth-of-type(4) .p-about_detail_item_text h2::before {
  content: "D";
}

.p-about_detail_item:nth-of-type(5) .p-about_detail_item_text h2::before {
  content: "O";
}

.p-about_detail_item_text h3 {
  margin-top: 24px;
}

.p-about_detail_item_text p {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {

  .p-about_detail_item {
    margin-top: 80px;
  }

  .p-about_detail_item_text h2 {
    font-size: 6rem;
    margin-top: 40px;
    font-weight: 500;
  }

  .p-about_detail_item_text h2::before {
    font-size: 12rem;
    top: -32px;
  }

  .p-about_detail_item_text h3 {
    font-size: 2.4rem;
    margin-top: 40px;
  }

  .p-about_detail_item_text p {
    margin-top: 24px;
  }
}

@media screen and (min-width: 960px) {
  .p-about_detail_item {
    width: 940px;
    display: grid;
    grid-template-columns: 500px 1fr;
    margin: 100px auto 0 0;
    gap: 32px;
  }

  .p-about_detail_item:nth-of-type(2n) {
    grid-template-columns: 1fr 500px;
    margin: 100px 0 0 auto;
  }

  .p-about_detail_item:nth-of-type(2n) figure {
    order: 2;
  }

  .p-about_detail_item figure {
    height: 500px;
    margin-top: 10px;
  }

  .p-about_detail_item figure img {
    height: 100%;
    object-fit: cover;
  }


  .p-about_detail_item_text h2 {
    margin-top: 0;
    padding-left: 55px;
  }

  .p-about_detail_item_text h2::before {
    font-size: 16rem;
    top: -60px;
    left: -12px;
  }

  .p-about_detail_item_text h3 {
    line-height: 1.8;
    margin-top: 52px;
  }
}


@media screen and (min-width: 1200px) {
  .p-about_detail_item {
    width: 1200px;
    grid-template-columns: 650px 1fr;
    gap: 50px;
    margin-top: 160px;
  }

  .p-about_detail_item:nth-of-type(2n) {
    grid-template-columns: 1fr 650px;
    margin: 160px 0 0 auto;
  }
}

@media screen and (min-width: 1700px) {
  .p-about_detail_item {
    width: 1500px;
    grid-template-columns: 750px 1fr;
  }

  .p-about_detail_item:nth-of-type(2n) {
    grid-template-columns: 1fr 750px;
  }
}


/* イツワ商事とは about ここまで
------------------------------------------------------------- */



/* sdgs ここから
------------------------------------------------------------- */

.page-id-9505 .l-bg_fix,
.page-id-12471 .l-bg_fix,
.page-id-12470 .l-bg_fix,
.page-id-12469 .l-bg_fix,
.page-id-12468 .l-bg_fix {
  background-image: url(./../images/sdgs_bg_all.jpg) !important;
}

.page-id-9505 .l-wp_template .l-page_head,
.page-id-12471 .l-wp_template .l-page_head,
.page-id-12470 .l-wp_template .l-page_head,
.page-id-12469 .l-wp_template .l-page_head,
.page-id-12468 .l-wp_template .l-page_head {
  background-image: url(./../images/sdgs_head_bg_sp.jpg);
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {

  .page-id-9505 .l-wp_template .l-page_head,
  .page-id-12471 .l-wp_template .l-page_head,
  .page-id-12470 .l-wp_template .l-page_head,
  .page-id-12469 .l-wp_template .l-page_head,
  .page-id-12468 .l-wp_template .l-page_head {
    background-image: url(./../images/sdgs_head_bg.jpg);
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/* intro */

.p-sdgs_intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-sdgs_intro p {
  margin-top: 16px;
}

.p-sdgs_intro p:first-of-type {
  font-weight: 600;
}


@media screen and (min-width: 768px) {
  .p-sdgs_intro h2 {
    font-size: 3.2rem;
    font-weight: 800;
  }

  .p-sdgs_intro p {
    margin-top: 32px;
  }

  .p-sdgs_intro p:first-of-type {
    font-size: 1.8rem;
    font-weight: 700;
  }
}


@media screen and (min-width: 960px) {
  .p-sdgs_intro .l-main {
    margin: 0 0 0 auto;
  }

  .p-sdgs_intro p:nth-of-type(2) {
    width: 70%;
    font-size: 1.8rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* possibility */

.p-sdgs_possibility {
  background-color: rgb(0, 126, 56, .9);
  text-align: center;
  color: var(--font-color-sub);
}

.p-sdgs_possibility h2 {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
}

.p-sdgs_possibility h2:after {
  content: "";
  position: absolute;
  bottom: -.8rem;
  left: calc(50% - 25px);
  border: 1px solid var(--font-color-sub);
  width: 50px;
}

.p-sdgs_possibility p {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .p-sdgs_possibility h2 {
    font-size: 3.2rem;
  }

  .p-sdgs_possibility h2::after {
    bottom: -1.6rem;
  }

  .p-sdgs_possibility p {
    margin-top: 45px;
  }
}


@media screen and (min-width: 960px) {
  .p-sdgs_possibility p {
    font-size: 1.8rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* ex */

.p-sdgs_ex h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-sdgs_ex_items {
  margin-top: 40px;
}

.p-sdgs_ex_item {
  background-color: var(--font-color-sub);
  margin-top: 40px;
}

.p-sdgs_ex_item>div {
  padding: 26px 32px 24px;
}

.p-sdgs_ex_item:first-of-type {
  margin-top: 0;
}

.p-sdgs_ex_item figure {
  height: 220px;
}

.p-sdgs_ex_item figure img {
  height: 100%;
  object-fit: cover;
}

.p-sdgs_ex_item_num {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 100;
}

.p-sdgs_ex_item_num::before {
  content: "";
  position: absolute;
  background-color: var(--sdgs-main-color-pale);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
  top: -4px;
  left: calc(50% - 25px);
}

.p-sdgs_ex_item h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 16px;
}

.p-sdgs_ex_item_text {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .p-sdgs_ex h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
  }

  .p-sdgs_ex_items {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .p-sdgs_ex_item {
    margin-top: 0;
  }

  .p-sdgs_ex_item>div {
    padding: 26px 24px;
  }

  .p-sdgs_ex_item:nth-of-type(1) {
    grid-area: 1 / 1 / 3 / 3;
  }

  .p-sdgs_ex_item:nth-of-type(2) {
    grid-area: 1 / 3 / 3 / 5;
  }

  .p-sdgs_ex_item:nth-of-type(3) {
    grid-area: 3 / 2 / 5 / 4;
  }

  .p-sdgs_ex_item:nth-of-type(4) {
    grid-area: 5 / 1 / 7 / 3;
  }

  .p-sdgs_ex_item:nth-of-type(5) {
    grid-area: 5 / 3 / 7 / 5;
  }

  .p-sdgs_ex_item figure {
    height: 250px;
  }

  .p-sdgs_ex_item_num {
    font-size: 3.2rem;
    font-weight: 800;
  }

  .p-sdgs_ex_item_num::before {
    width: 80px;
    height: 80px;
    top: -5px;
    left: calc(50% - 40px);
  }

  .p-sdgs_ex_item h3 {
    font-size: 3.2rem;
    margin-top: 32px;
  }

  .p-sdgs_ex_item_text {
    font-size: 18px;
    margin-top: 16px;
  }

}


@media screen and (min-width: 960px) {
  .p-sdgs_ex_items {
    width: 940px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 80px;
  }

  .p-sdgs_ex_item {
    width: 300px;
    margin-top: 0;
  }

  .p-sdgs_ex_item:nth-of-type(1) {
    grid-area: 1 / 1 / 3 / 3;
  }

  .p-sdgs_ex_item:nth-of-type(2) {
    grid-area: 1 / 3 / 3 / 5;
  }

  .p-sdgs_ex_item:nth-of-type(3) {
    grid-area: 1 / 5 / 3 / 7;
  }

  .p-sdgs_ex_item:nth-of-type(4) {
    grid-area: 3 / 2 / 5 / 4;
  }

  .p-sdgs_ex_item:nth-of-type(5) {
    grid-area: 3 / 4 / 5 / 6;
  }

  .p-sdgs_ex_item figure {
    height: 300px;
  }

  .p-sdgs_ex_item>div {
    padding: 26px 16px 24px;
  }

  .p-sdgs_ex_item_num::before {
    top: 0;
  }

  .p-sdgs_ex_item_text {
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 1200px) {
  .p-sdgs_ex_items {
    width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 80px;
  }

  .p-sdgs_ex_item {
    width: 380px;
  }

  .p-sdgs_ex_item h3 {
    margin-top: 16px;
  }

  .p-sdgs_ex_item_text {
    margin-top: 8px;
  }
}


@media screen and (min-width: 1700px) {}

/* sdgs ここまで
------------------------------------------------------------- */


/* 品質保証体制 quality ここから
------------------------------------------------------------- */

.page-id-4446 .l-wp_template .l-page_head,
.page-id-12799 .l-wp_template .l-page_head {
  background-image: url(./../images/quality_head_bg_sp.jpg);
}

.p-quality_intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-quality_intro_text p {
  margin-top: 16px;
}

.p-quality_intro_image {
  margin-top: 24px;
}

.p-quality_philosophy {
  background-image: url(./../images/quality_philosophy_bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  text-align: center;
  color: var(--font-color-sub);
}

.p-quality_philosophy h2 {
  font-weight: 700;
}

.p-quality_philosophy div p {
  margin-top: 16px;
}

.p-quality_philosophy div:nth-of-type(2) {
  margin-top: 40px;
}

.p-quality_philosophy div:nth-of-type(2) p {
  border: 1px solid var(--font-color-sub);
  padding: 10px 0;
  font-size: 1.8rem;
}

.p-quality_main {
  text-align: center;
}

.p-quality_main figure {
  margin-top: 24px;
}

.p-quality_main>div:nth-of-type(2),
.p-quality_main>div:nth-of-type(3) {
  margin-top: 40px;
}

.p-quality_main_global_text {
  margin-top: 24px;
}

.p-quality_main_global_text_catch {
  font-weight: 600;
}

.p-quality_main_global_text_mark {
  margin-top: 24px;
  background-color: var(--main-color);
  color: var(--font-color-sub);
}

.p-quality_main_global_text ul {
  margin-top: 24px;
  padding-left: 1em;
  text-align: left;
}

.p-quality_main_global_text ul li {
  list-style-type: disc;
  margin-top: 16px;
}

.p-quality_main_global_text ul li:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 768px) {

  .p-quality_intro h2 {
    font-size: 3.2rem;
    font-weight: 800;
  }

  .p-quality_intro_text p {
    margin-top: 32px;
  }

  .p-quality_intro_image {
    width: 80%;
    margin: 32px auto 0;
  }

  .p-quality_philosophy h2 {
    font-size: 32px;
  }

  .p-quality_philosophy div p {
    margin-top: 32px;
  }

  .p-quality_main>div:nth-of-type(2),
  .p-quality_main>div:nth-of-type(3) {
    margin-top: 50px;
  }

  .p-quality_philosophy div:nth-of-type(2) p {
    font-weight: 700;
    padding: 10px 20px;
  }

  .p-quality_philosophy div:nth-of-type(2) p:nth-of-type(2) {
    margin-top: 24px;
  }

  .p-quality_main h2 {
    font-size: 32px;
  }

  .p-quality_main figure {
    margin-top: 40px;
  }

  .p-quality_main>div:nth-of-type(2) {
    margin-top: 50px;
  }

  .p-quality_main_global_text,
  .p-quality_main_global_text_mark,
  .p-quality_main_global_text ul {
    margin-top: 32px;
  }
}


@media screen and (min-width: 960px) {

  .page-id-4446 .l-wp_template .l-page_head,
  .page-id-12799 .l-wp_template .l-page_head {
    background-image: url(./../images/quality_head_bg.jpg);
    background-position: center;
  }

  .p-quality_intro .l-main {
    margin: 0 0 0 auto;
    display: grid;
    grid-template-columns: 42% 50%;
    gap: 8%;
    align-items: top;
  }

  .p-quality_intro_image {
    margin-top: 0;
  }

  .p-quality_philosophy div:nth-of-type(2) {
    margin-top: 80px;
  }


  .p-quality_philosophy div:nth-of-type(2) p {
    padding: 16px 20px;
  }

  .p-quality_philosophy div p,
  .p-quality_philosophy div:nth-of-type(2) p:nth-of-type(2) {
    margin-top: 40px;
  }

  .p-quality_main figure {
    margin: 40px auto 0;
    width: 80%;
  }

  .p-quality_main>div:nth-of-type(2),
  .p-quality_main>div:nth-of-type(3) {
    margin-top: 100px;
  }

  .p-quality_main_global_text,
  .p-quality_main_global_text_mark,
  .p-quality_main_global_text ul {
    margin-top: 40px;
  }

  .p-quality_main_global_text_catch,
  .p-quality_main_global_text_mark {
    font-size: 24px;
  }

  .p-quality_main_global_text_mark {
    font-weight: 600;
  }

  .p-quality_main_global_text ul {
    text-align: center;
  }

  .p-quality_main_global_text ul li {
    width: fit-content;
    margin: 8px auto 0;
  }

}


@media screen and (min-width: 1200px) {
  .p-quality_intro_image {
    margin: 0;
  }
}


@media screen and (min-width: 1700px) {
  .p-quality_intro_image {
    width: 70%;
  }
}


/* 品質保証体制 quality ここまで
------------------------------------------------------------- */

/*  video ここから
------------------------------------------------------------- */

.l-video .l-page_head {
  background-image: none;
  background-color: rgb(44, 98, 174, .9);
}

.l-video .l-bottom_section {
  padding: 40px 0 80px;
}

.l-video .p-page_head_title {
  font-size: 2rem;
  line-height: 1.8;
  padding-top: 24px;
}

.l-video .p-page_head_subtitle {
  font-size: 1.6rem;
}

.p-video_content h2 {
  text-align: center;
  font-size: 2rem;
}

.p-video_content_item {
  text-align: center;
}

.p-video_content iframe {
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  margin-top: 2.4rem;
}

.p-video_content_item:first-of-type {
  margin-top: 0;
}

.p-video_content_item {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {

  .l-video .l-bottom_section {
    padding: 80px 0;
  }

  .l-video .p-page_head_title {
    font-size: 3.2rem;
    line-height: 2;
  }

  .l-video .p-page_head_subtitle {
    font-size: 2.4rem;
  }

  .p-video_content h2 {
    font-size: 3.2rem;
  }

  .p-video_content iframe {
    width: 100%;
    max-width: none;
    min-height: 400px;
    margin-top: 3.2rem;
  }

  .p-video_content_item {
    margin-top: 60px;
  }
}

@media screen and (min-width: 960px) {
  .l-video .l-bottom_section {
    padding: 100px 0 240px;
  }

  .l-video .p-page_head_title {
    font-size: 4rem;
    line-height: 2;
    padding-top: 80px;
  }

  .l-video .p-page_head_subtitle {
    font-size: 3.2rem;
  }

  .p-video_content iframe {
    width: 900px;
    min-height: 500px;
    margin-top: 3.2rem;
  }

  .p-video_content_item {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/* video ここまで
------------------------------------------------------------- */

/* csr ここから
------------------------------------------------------------- */

.page-id-4465 .l-wp_template .l-page_head,
.page-id-12814 .l-wp_template .l-page_head,
.page-id-12815 .l-wp_template .l-page_head,
.page-id-12816 .l-wp_template .l-page_head,
.page-id-12817 .l-wp_template .l-page_head {
  background-image: url(./../images/csr_title_bg.jpg);
  background-position: 50%;
}

.p-csr_intro h2 {
  font-size: 2.4rem;
  line-height: 1.8;
}

.p-csr_intro_text {
  margin-top: 16px;
}

.p-csr_intro_infographic {
  margin-top: 40px;
}

.p-csr_content {
  margin-top: 80px;
  display: grid;
}

.p-csr_content_item {
  margin-top: 40px;
  text-align: center;
}

.p-csr_content_item:first-of-type {
  margin-top: 0;
}

.p-csr_content_item>div {
  padding: 16px;
  background-color: var(--font-color-sub);
}

.p-csr_content_item>div h3 {
  color: var(--main-color);
}

.p-csr_content_item ul {
  margin-top: 8px;
}

.p-csr_content_item ul li::before {
  content: "";
  display: inline-block;
  background-color: var(--main-color);
  width: .5em;
  height: .5em;
  border-radius: 50%;
  margin-right: .5em;
  margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
  .p-csr_intro h2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .p-csr_intro_text {
    margin-top: 32px;
    text-align: center;
  }

  .p-csr_intro_infographic {
    margin: 56px auto 0;
    width: 60%;
  }

  .p-csr_content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 40px 10%;
  }

  .p-csr_content_item {
    margin-top: 0;
  }

}

@media screen and (min-width: 960px) {
  .p-csr_intro_infographic {
    width: 50%;
    margin: 64px auto 0;
  }

  .p-csr_content {
    margin: 160px auto 0;
    width: 80%;
  }
}

@media screen and (min-width: 1200px) {
  .p-csr_intro_infographic {
    margin: 80px auto 0;
    width: 40%;
  }

  .p-csr_content {
    margin: 160px auto 0;
    width: 70%;
    gap: 80px 10%;
  }
}


@media screen and (min-width: 1700px) {}

/* csr ここまで
------------------------------------------------------------- */


/* 事業紹介個別 ページ共通 ここから
------------------------------------------------------------- */

/* 基本レイアウト
SP：セクション間→上下余白80px セクションの中のコンテンツ間→上下余白40px
TB：セクション間→上下余白100px セクションの中のコンテンツ間→上下余白64or80px
PC：セクション間→上下余白160px セクションの中のコンテンツ間→上下余白80px */

/* top 以外の共通スタイルも併用 
l-bottom-section / l-bg_opacity_bottom  など*/

/* 全体レイアウト 左右余白 */
.l-main_business {
  padding: 0 16px;
}

@media screen and (min-width: 768px) {
  .l-main_business {
    padding: 0;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .l-main_business {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-main_business {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1700px) {
  .l-main_business {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}

.c-business_page h2 {
  font-weight: 600;
}

/* 事業ページ タイトル（帯）部分 */

.c-page_head_title_business {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  text-align: center;
  height: 100%;
}

.c-page_head_title_business h1 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--font-color-sub);
  background-color: rgb(44, 98, 174, .8);
  width: 72%;
  margin: 0 auto;
  padding: 8px 0;
}

.c-page_head_title_business h1 img {
  width: 64%;
  margin-top: 16px
}

/* 事業ページ イントロ（出だし）部分 */

.c-business_intro {
  padding-top: 0;
}

.c-business_intro_lead {
  background-color: var(--main-color);
  color: var(--font-color-sub);
  padding-top: 132px;
  padding-bottom: 80px;
  text-align: center;
}

.c-business_intro_lead p {
  text-align: center;
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 16px;
}

.c-business_intro_lead p::before {
  display: inline-block;
  content: "";
  width: 1px;
  height: 24px;
  background-color: var(--font-color-sub);
  position: absolute;
  top: -32px;
  left: calc(50% - .5px);
}

.c-business_intro_lead h2 {
  font-size: 1.8rem;
}

.c-business_intro_about {
  width: 90%;
  background-color: var(--font-color-sub);
  margin: -40px auto 0;
  padding: 40px 24px;
  position: relative;
}

.c-business_intro_about h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--main-color);
}

.c-business_intro_about p {
  margin-top: 16px;
}

.c-business_intro_about figure {
  margin: 32px auto 0;
  max-width: 400px;
}

.c-business_intro_about_deco {
  line-height: 1;
  font-size: 2.4rem;
  position: absolute;
  bottom: -.5em;
  right: -8px;
  color: var(--main-color);
}

.c-business_intro_infographic {
  margin: 40px auto 0;
  width: 80%;
}

@media screen and (min-width: 768px) {

  .c-page_head_title_business h1 {
    font-size: 3.2rem;
    padding: 24px 8px;
  }

  .c-page_head_title_business h1 img {
    width: 40%;
  }

  .c-business_intro_lead {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 116px;
    padding-bottom: 164px;
  }

  .c-business_intro_lead p {
    margin-bottom: 0;
  }

  .c-business_intro_lead p::before {
    height: 40px;
    top: -48px;
  }

  .c-business_intro_lead h2 {
    margin-left: 40px;
    text-align: left;
    font-size: 2.4rem;
  }

  .c-business_intro_about {
    margin-top: -100px;
    padding: 40px 40% 40px 32px;
    position: relative;
  }

  .c-business_intro_about h2 {
    font-size: 2.4rem;
  }

  .c-business_intro_about figure {
    position: absolute;
    bottom: calc(50% - 116px);
    right: -3%;
    width: 43%;
  }

  .c-business_intro_about_deco {
    position: absolute;
    bottom: -16px;
    right: -3%;
    font-size: 4rem;
  }

  .c-business_intro_infographic {
    margin-top: 88px;
    width: 60%;
  }
}


@media screen and (min-width: 960px) {
  .c-page_head_title_business h1 {
    font-size: 4rem;
    padding: 32px 16px;
  }

  .c-business_intro_lead {
    padding-top: 140px;
    padding-bottom: 180px;
  }

  .c-business_intro_lead h2 {
    margin-left: 80px;
    font-size: 3.2rem;
    line-height: 2;
    width: 50%;
  }

  .c-business_intro_lead p {
    font-size: 3rem;
  }

  .c-business_intro_about {
    margin-top: -116px;
    width: 70%;
    padding: 56px 24% 56px 40px;
  }

  .c-business_intro_about h2 {
    font-size: 3rem;
  }

  .c-business_intro_about p {
    line-height: 1.8;
  }

  .c-business_intro_about figure {
    width: 50%;
    right: -20%;
  }

  .c-business_intro_about_deco {
    font-size: 4.4rem;
    bottom: -32px;
    right: -8%;
  }

  .c-business_intro_infographic {
    margin-top: 108px;
  }
}


@media screen and (min-width: 1200px) {
  .c-page_head_title_business h1 {
    font-size: 4.4rem;
    padding: 40px 16px;
  }

  .c-page_head_title_business h1 img {
    margin-top: 32px;
  }

  .c-business_intro_about {
    margin-top: -100px;
    padding: 64px 400px 64px 40px;
    max-width: 900px;
  }

  .c-business_intro_about figure {
    width: 480px;
    bottom: calc(50% - 166.85px);
    right: -120px;
  }

  .c-business_intro_infographic {
    width: 40%;
    margin-top: 124px;
  }
}


@media screen and (min-width: 1700px) {}

/* 事業紹介個別ページ共通 ここまで
------------------------------------------------------------- */


/* FS ファクトリーソリューション ここから
------------------------------------------------------------- */

.page-id-4330 .c-business_page .l-page_head,
.page-id-12522 .c-business_page .l-page_head,
.page-id-12520 .c-business_page .l-page_head,
.page-id-12521 .c-business_page .l-page_head,
.page-id-12519 .c-business_page .l-page_head {
  background-image: url(./../images/fs-title_bg.jpg);
  background-position: 50%;
}

.page-id-4330 .c-business_intro_lead h2 {
  width: auto;
}

.p-fs_onestop {
  background-image: url(../../assets/images/fs-factoy_onestop_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.p-fs_onestop h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: var(--font-color-sub);
  font-weight: 500;
}

.p-fs_onestop h2 span:first-of-type {
  font-size: 1.6rem;
}

.p-fs_onestop p {
  color: var(--font-color-sub);
  margin-top: 8px;
}

.p-fs_onestop_icon {
  width: 80%;
  display: grid;
  grid-template-columns: 18.5% 18.5% 18.5% 18.5% 18.5%;
  gap: 1.875%;
  margin: 24px auto 0;
  align-items: center;
}

.p-fs_onestop_icon img {
  height: 40px !important;
}

.p-fs_onestop_icon figure:first-of-type img,
.p-fs_onestop_icon figure:nth-of-type(2) img,
.p-fs_onestop_icon figure:nth-of-type(5) img {
  height: 30px;
}

.p-fs_global {
  background-image: url(../images/fs-global_bg.jpg);
  background-size: cover;
  background-position: center;
  color: var(--font-color-sub);
}

.p-fs_global h2 {
  font-size: 2.4rem;
}

.p-fs_global_contain_text {
  margin-top: 16px;
}

.p-fs_global_contain_text h3 {
  font-size: 1.8rem;
}

.p-fs_global_contain_text_main {
  font-size: 1.4rem;
  margin-top: 8px;
}

.p-fs_global_contain_text_impact {
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 16px;
}

.p-fs_global_contain_text_impact span:first-of-type {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.p-fs_global_contain_text_impact span:nth-of-type(2) {
  font-size: 2.4rem;
}

.p-fs_konnna_text {
  text-align: center;
}

.p-fs_konnna_text h2 {
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-fs_konnna_text p {
  margin-top: 8px;
}

.p-fs_konna_contain_video {
  margin-top: 40px;
}

.p-fs_konna_contain_video_ctr {
  width: 84%;
  margin: 64px auto 0;
}

.p-fs_konna_contain_video_ctr div,
.p-fs_detail_item_ctr div,
.p-fs_detail_fa_ctr div,
.p-fs_detail_doc_ctr div,
.p-fs_detail_video_content_ctr div {
  width: 100%;
}

.p-fs_konna_contain_video_ctr div:nth-of-type(2) {
  margin-top: 40px;
}

.p-fs_detail {
  padding-top: 0;
}

.p-fs_detail_item h2 {
  font-size: 2.4rem;
  color: var(--main-color);
  text-align: center;
}

.p-fs_detail_item_category {
  margin-top: 40px;
}

.p-fs_detail_item_category h3 {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 500;
  border-top: 1px solid var(--main-color);
  padding: 16px 0;
  display: flex;
  align-items: center;
}

.p-fs_detail_item_category h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.2em;
  background-color: var(--main-color);
  margin-right: 8px;
}

.p-fs_detail_item_category h3 span {
  font-size: .7em;
  margin-top: 8px;
}

.p-fs_detail_item_category_lists {
  display: grid;
  grid-template-columns: 47% 47%;
  gap: 24px 6%;
}

.p-fs_detail_item_category_lists .c-fs_small {
  font-size: .75em;
}

.p-fs_detail_item_category_list {
  text-align: center;
  background-color: var(--font-color-sub);
  padding: 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 4px 4px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-fs_detail_item_category_list_photo img {
  object-fit: contain;
  height: 120px !important;
}

.p-fs_detail_item_category_list_logo img {
  object-fit: contain;
  max-height: 30px;
}

.p-fs_detail_item_category_list p {
  font-size: 1.4rem;
  line-height: 2;
}

.p-fs_detail_item_ctr {
  margin: 64px auto 0;
  width: 84%;
}

.p-fs_detail_item_ctr div:nth-of-type(2) {
  margin-top: 40px;
}

.p-fs_detail_fa,
.p-fs_detail_doc {
  padding-top: 80px;
}

.p-fs_detail_fa_text_title,
.p-fs_detail_doc_text_title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-fs_detail_fa_text_content,
.p-fs_detail_doc_text_content {
  margin-top: 16px;
}

.p-fs_detail_fa_infographic,
.p-fs_detail_doc_infographic {
  width: 80%;
  margin: 24px auto 0;
}

.p-fs_detail_fa_ctr,
.p-fs_detail_doc_ctr {
  margin: 64px auto 0;
  width: 84%;
}

.p-fs_detail_fa_ctr div:nth-of-type(2),
.p-fs_detail_doc_ctr div:nth-of-type(2) {
  margin-top: 40px;
}

.p-fs_detail_video {
  padding-top: 80px;
}

.p-fs_detail_video_content:nth-of-type(2) {
  margin-top: 80px;
}

.p-fs_detail_video_content h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-fs_detail_video_content iframe {
  padding-top: 40px;
}

.p-fs_detail_video_content_ctr {
  margin-top: 64px;
}

.p-fs_detail_video_content_ctr div:nth-of-type(2) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .p-fs_onestop h2 {
    font-size: 4rem;
    font-weight: 600;
  }

  .p-fs_onestop h2 span:first-of-type {
    font-size: 1.8rem;
  }

  .p-fs_onestop p {
    font-size: 2rem;
  }

  .p-fs_onestop_icon {
    width: 60%;
    margin-top: 40px;
  }

  .p-fs_onestop_icon img {
    height: 56px !important;
  }

  .p-fs_onestop_icon figure:first-of-type img,
  .p-fs_onestop_icon figure:nth-of-type(2) img,
  .p-fs_onestop_icon figure:nth-of-type(5) img {
    height: 40px;
  }

  .p-fs_global_contain {
    display: flex;
    justify-content: left;
    align-items: flex-start;
  }

  .p-fs_global_contain h2 {
    line-height: 1;
  }

  .p-fs .p-fs_global_contain_text {
    margin-top: 0;
    margin-left: 40px !important;
    padding-left: 40px;
    border-left: 1px solid var(--font-color-sub);
  }

  .p-fs_global_contain_text h3 {
    line-height: 1;
    font-size: 2.4rem;
  }

  .p-fs_global_contain_text_main {
    margin-top: 24px;
  }

  .p-fs_global_contain_text_impact {
    margin-top: 24px;
  }

  .p-fs_global_contain_text_impact span:first-of-type {
    font-size: 5.6rem;
  }

  .p-fs_konnna_text p {
    margin-top: 16px;
    font-size: 1.8rem;
  }

  .p-fs_konna_contain_video {
    margin-top: 56px;
    text-align: center;
  }

  .p-fs_konna_contain_video iframe {
    width: 90%;
    height: 460px;
  }

  .p-fs_konna_contain_video_ctr,
  .p-fs_detail_item_ctr {
    width: 100%;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    margin-top: 80px;
  }

  .p-fs_konna_contain_video_ctr_en,
  .p-fs_detail_item_ctr_en {
    grid-template-columns: auto;
    width: 50%;
  }

  .p-fs_konna_contain_video_ctr div:nth-of-type(2) {
    margin-top: 0;
  }

  .p-fs_detail_item_category {
    margin-top: 56px;
  }

  .p-fs_detail_item_category h3 {
    font-size: 2.4rem;
    padding: 32px 0;
  }

  .p-fs_detail_item_category_lists {
    grid-template-columns: 30% 30% 30%;
    gap: 32px 5%;
  }

  .p-fs_detail_item_category_list {
    padding: 32px 24px;
    gap: 16px;
  }

  .p-fs_detail_item_category_list_logo img {
    max-height: 40px;
  }

  .p-fs_detail_item_category_list p {
    font-size: 1.6rem;
  }

  .p-fs_detail_item_ctr div:nth-of-type(2) {
    margin-top: 0;
  }

  .p-fs_detail_fa,
  .p-fs_detail_doc {
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 6%;
    align-items: center;
    padding-top: 100px;
  }

  .p-fs_detail_fa_infographic,
  .p-fs_detail_doc_infographic {
    width: 100%;
    margin-top: 0;
  }

  .p-fs_detail_fa_ctr,
  .p-fs_detail_doc_ctr {
    margin-top: 40px;
  }

  .p-fs_detail_fa_ctr div:nth-of-type(2),
  .p-fs_detail_doc_ctr div:nth-of-type(2) {
    margin-top: 24px;
  }

  .p-fs_detail_video {
    padding-top: 100px;
  }

  .p-fs_detail_video_content {
    text-align: center;
  }

  .p-fs_detail_video_content:nth-of-type(2) {
    margin-top: 100px;
  }

  .p-fs_detail_video_content iframe {
    padding-top: 56px;
    height: 460px;
    width: 90%;
  }

  .p-fs_detail_video_content_ctr {
    width: 100%;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    margin-top: 64px;
  }

  .p-fs_detail_video_content_ctr div:nth-of-type(2) {
    margin-top: 0;
  }

  .p-fs_detail_video_content_ctr_en {
    grid-template-columns: auto;
    width: 50%;
  }
}

@media screen and (min-width: 960px) {
  .p-fs_onestop h2 {
    font-size: 4.8rem;
  }

  .p-fs_onestop h2 span:first-of-type {
    font-size: 2.4rem;
  }

  .p-fs_onestop p {
    font-size: 2.8rem;
  }

  .p-fs_onestop_icon img {
    height: 80px !important;
  }

  .p-fs_onestop_icon figure:first-of-type img,
  .p-fs_onestop_icon figure:nth-of-type(2) img,
  .p-fs_onestop_icon figure:nth-of-type(5) img {
    height: 56px;
  }

  .p-fs .p-fs_global_contain_text {
    margin-left: 64px !important;
    padding-left: 64px;
  }

  .p-fs_global h2,
  .p-fs_global_contain_text h3 {
    font-size: 3.2rem;
  }

  .p-fs_global_contain_text_main {
    margin-top: 32px;
    font-size: 1.6rem;
  }

  .p-fs_global_contain_text_impact {
    margin-top: 16px;
    font-size: 2.4rem;
  }

  .p-fs_global_contain_text_impact span:first-of-type {
    font-size: 6.4rem;
  }

  .p-fs_global_contain_text_impact span:nth-of-type(2) {
    font-size: 3.2rem;
  }

  .p-fs_konna_contain_video_ctr,
  .p-fs_detail_item_ctr {
    width: 80%;
  }

  .p-fs_konna_contain_video_ctr_en,
  .p-fs_detail_item_ctr_en {
    width: 50%;
  }

  .p-fs_konnna_text h2 {
    font-size: 3.2rem;
  }

  .p-fs_konnna_text p {
    margin-top: 24px;
  }

  .p-fs_konna_contain_video {
    margin-top: 80px;
  }

  .p-fs_konna_contain_video iframe {
    width: 80%;
  }

  .p-fs_detail_item h2 {
    font-size: 3.2rem;
  }

  .p-fs_detail_item_category h3 {
    font-size: 3rem;
  }

  .p-fs_detail_item_category_lists {
    grid-template-columns: 18.5% 18.5% 18.5% 18.5% 18.5%;
    gap: 1.875%;
  }

  .p-fs_detail_item_category_list {
    padding: 24px 16px;
    gap: 24px;
  }

  .p-fs_detail_item_category_list_photo img {
    height: 150px !important;
  }

  .p-fs_detail_item_category_list_logo img {
    max-height: 56px;
  }

  .p-fs_detail_fa,
  .p-fs_detail_doc {
    padding-top: 160px;
  }

  .p-fs_detail_fa_text_title,
  .p-fs_detail_doc_text_title {
    font-size: 3.2rem;
  }

  .p-fs_detail_fa_ctr,
  .p-fs_detail_doc_ctr {
    margin-top: 56px;
  }

  .p-fs_detail_video {
    padding-top: 160px;
  }

  .p-fs_detail_video_content h2 {
    font-size: 3.2rem;
  }

  .p-fs_detail_video_content iframe {
    width: 80%;
  }

  .p-fs_detail_video_content_ctr {
    width: 80%;
    margin: 80px auto 0;
  }

  .p-fs_detail_video_content:nth-of-type(2) {
    margin-top: 160px;
  }
}


@media screen and (min-width: 1200px) {
  .p-fs_global_contain_text_impact span:first-of-type {
    font-size: 9.6rem;
  }

  .p-fs_detail_item_category_lists {
    grid-template-columns: 19% 19% 19% 19% 19%;
    gap: 1.25%;
  }

  .p-fs_detail_item_category_list {
    padding: 32px 16px;
  }

  .p-fs_detail_fa_text_content,
  .p-fs_detail_doc_text_content {
    margin-top: 32px;
  }

  .p-fs_detail_video_content iframe {
    padding-top: 80px;
    height: 560px;
  }

  .p-fs_konna_contain_video_ctr,
  .p-fs_detail_item_ctr,
  .p-fs_detail_video_content_ctr {
    margin-top: 124px;
  }

}


@media screen and (min-width: 1700px) {
  .p-fs_detail_video_content iframe {
    width: 70%;
    height: 640px;
  }
}



/* FS ファクトリーソリューション ここまで
------------------------------------------------------------- */

/* FS ファクトリーソリューション 取扱メーカー一覧 ここから
------------------------------------------------------------- */

.p-manufacturer .l-bottom_section:last-of-type {
  padding-bottom: 0;
}

.p-manufacturer h2 {
  font-size: 2rem;
  color: var(--main-color);
  line-height: 1.4;
}

.p-manufacturer h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 16px;
}

.p-manufacturer_content>div {
  margin-top: 64px;
}

.p-manufacturer_content>div:first-of-type {
  margin-top: 0;
}

.p-manufacturer_content_lists {
  display: grid;
  gap: 40px;
  margin: 32px 0 40px;
}

.p-manufacturer_content_list {
  width: 80%;
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 16px;
}

.p-manufacturer_content_list h4 {
  font-weight: 600;
  font-size: 1.6rem;
  background-color: var(--main-color);
  color: var(--font-color-sub);
  width: 100%;
}

.p-manufacturer_content_list p {
  font-weight: 500;
}

.p-manufacturer_content_list figure {
  width: 100%;
}

.p-manufacturer_content_list figure img {
  width: 100%;
  object-fit: contain;
}

.p-manufacturer_content_list figure a {
  border: 1px solid var(--font-color-sub);
  width: 100%;
}

.p-manufacturer_content_list figure a:hover {
  border: 1px solid var(--font-color-main);
  opacity: 1;
}

@media screen and (min-width: 768px) {

  .p-manufacturer h3 {
    margin-top: 24px;
  }

  .p-manufacturer_content>div {
    margin-top: 80px;
  }

  .p-manufacturer_content_lists {
    grid-template-columns: 45% 45%;
    gap: 40px 10%;
    margin: 40px 0;
  }

  .p-manufacturer_content_list {
    width: 100%;
    gap: 24px;
  }
}


@media screen and (min-width: 960px) {

  .p-manufacturer h2 {
    font-size: 3.2rem;
  }

  .p-manufacturer h3 {
    font-size: 2.4rem;
    margin-top: 32px;
  }

  .p-manufacturer_content_lists {
    grid-template-columns: 30% 30% 30%;
    gap: 64px 5%;
    margin-top: 64px;
  }

  .p-manufacturer_content_list {
    gap: 32px;
  }

  .p-manufacturer_content>div {
    margin-top: 160px;
  }

}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/* FS ファクトリーソリューション 取扱メーカー一覧 ここまで
------------------------------------------------------------- */


/* WP 共通パーツ 記述　ここから
------------------------------------------------------------- */

/* 青いボタン */

.p-wp_button a {
  display: block;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: var(--font-color-sub) !important;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.p-wp_button a:hover {
  background-color: var(--font-color-sub);
  border: 1px solid var(--main-color);
  color: var(--main-color) !important;
  text-decoration: none;
  opacity: 1;
}

/* 各事業ページへのリンクエリア */

.p-wp_business_link {
  padding: 80px 16px 100px;
  background: var(--main-color-pale);
}

.p-wp_business_link h2 {
  font-size: 3.2rem;
  color: var(--font-color-sub);
  opacity: .8;
  text-align: center;
  line-height: 1;
}

.p-wp_business_link_lists {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.p-wp_business_link_list {
  background-color: var(--font-color-sub);
  border: 1px solid var(--font-color-sub);
  padding: 24px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 16px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
  transition: .5s;
}

.p-wp_business_link_list:hover {
  border: 1px solid var(--font-color-main);
}

.p-wp_business_link_list figure img {
  object-fit: cover;
}

.p-wp_business_link_list p {
  font-size: 1.8rem;
  font-weight: 500;
}

.p-wp_business_link_list .c-arrow_right {
  width: .6em;
  height: .6em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin-left: 1em;
  margin-bottom: .2em;
}

@media screen and (min-width: 768px) {

  .p-wp_business_link {
    padding: 80px 40px 100px;
  }

  .p-wp_business_link h2 {
    font-size: 4rem;
  }

  .p-wp_business_link_lists {
    grid-template-columns: 46% 46%;
    gap: 40px 8%;
    margin-top: 64px;
  }

  .p-wp_business_link_list {
    padding: 24px 16px;
  }
}


@media screen and (min-width: 960px) {

  .p-wp_business_link {
    padding: 100px 16px 160px;
  }

  .p-wp_business_link_lists {
    width: 70%;
    grid-template-columns: 32% 32% 32%;
    gap: 64px 2%;
    margin-top: 64px;
  }

  .p-wp_business_link_list {
    padding: 24px 16px;
  }

  .p-wp_business_link_list p {
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/* WP 共通パーツ 記述　ここまで
------------------------------------------------------------- */


/* WP 投稿一覧（お知らせ） 記述　ここから
------------------------------------------------------------- */

.p-news .l-page_head {
  background-image: url(./../images/common-title_bg.jpg);
  background-position: center 50%;
}

.p-news_grid {
  display: grid;
  grid-template-columns: 1fr;
  align-self: start;
}

.p-news_sidebar,
.p-news_content {
  align-self: start;
}

.p-news_content_card {
  margin-top: 32px;
}

.p-news_content_card:first-of-type {
  margin-top: 0;
}

.p-news_content a {
  display: block;
  border: 1px solid var(--font-color-sub);
  text-decoration: none;
}

.p-news_content a:hover {
  border: 1px solid var(--font-color-main);
}

.p-news_box {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 16px;
  color: var(--font-color-main);
}

.p-news_date {
  display: block;
  color: var(--main-color);
  font-weight: 600;
}

.p-news_tag {
  font-size: 1.4rem;
  background-color: #efeff0;
  padding: 2px 8px;
  display: inline-block;
  margin-top: 8px;
}

.p-news_title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 8px;
}

.p-news_box p:last-of-type {
  text-align: right;
}

.p-news_box .c-arrow_right {
  width: .8em;
  height: .8em;
}

.p-news_sidebar {
  background-color: var(--font-color-sub);
  padding: 24px 16px;
  border-radius: 16px;
  margin-top: 64px;
}

.p-news_sidebar_content h3 {
  font-size: 16px;
  border-bottom: 1px solid var(--font-color-main);
  padding-bottom: 8px;
}

.p-news_sidebar_content ul {
  font-size: 1.4rem;
  margin-top: 8px;
}

.p-news_sidebar_content ul li {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 4px;
}

.p-news_sidebar_content ul li:first-of-type {
  margin-top: 0;
}

.p-news_sidebar_content ul li::before {
  content: "";
  display: inline-block;
  background-color: var(--main-color);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  margin-top: 2px;
}

.p-news_sidebar_content ul li a {
  color: var(--main-color);
  text-decoration: none;
}

.p-news_sidebar_content ul li a:hover {
  text-decoration: underline;
  text-decoration-color: var(--main-color);
}

.p-news_index_category {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .p-news_box {
    padding: 32px;
  }

  .p-news_date {
    font-size: 1.8rem;
  }

  .p-news_tag {
    margin-top: 16px;
    font-size: 1.6rem;
  }

  .p-news_title {
    margin-top: 16px;
  }

  .p-news_sidebar {
    padding: 32px;
    margin-top: 80px;
  }

  .p-news_sidebar_content h3 {
    font-weight: 600;
    font-size: 1.8rem;
  }

  .p-news_index_category {
    margin-top: 32px;
  }

  .p-news_sidebar_content ul {
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 960px) {
  .p-news_grid {
    grid-template-columns: 30% 65%;
    gap: 5%;
  }

  .p-news_sidebar {
    order: 1;
    margin-top: 0;
  }

  .p-news_content {
    order: 2;
  }

  .p-news_sidebar_content h3 {
    font-size: 1.6rem;
  }

  .p-news_sidebar_content ul {
    font-size: 1.4rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* WP ページナビゲーション プラグイン wp pagenavi の記述 */

.p-pagenavi {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 40px 0 0;
  margin: 0 auto;
  flex-wrap: wrap;
}

.p-pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
}

.p-pagenavi .wp-pagenavi span,
.p-pagenavi .wp-pagenavi>a {
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--font-color-sub);
  border: 1px solid var(--font-color-main);
  border-radius: 5px;
  color: var(--main-color);
  margin: 2px;
  padding: 3px 5px;
}

.p-pagenavi .wp-pagenavi>a:hover {
  background-color: var(--main-color);
  color: var(--font-color-sub);
  border: 1px solid var(--font-color-main);
}

.p-pagenavi .wp-pagenavi .first {
  width: 60px;
}

.p-pagenavi .wp-pagenavi>span.current {
  background-color: var(--font-color-main);
  border: 1px solid var(--font-color-main);
  color: var(--font-color-sub);
  font-weight: 500;
}

.p-pagenavi .wp-pagenavi .pages,
.p-pagenavi .wp-pagenavi .last {
  width: 64px;
  height: 32px;
}


@media screen and (min-width: 768px) {

  .p-pagenavi .wp-pagenavi span,
  .p-pagenavi .wp-pagenavi>a {
    font-size: 1.6rem;
    margin: 4px;
  }

  .p-pagenavi {
    padding: 80px 0 0;
  }

  .p-pagenavi .wp-pagenavi span,
  .p-pagenavi .wp-pagenavi>a {
    width: 40px;
    height: 40px;
    font-weight: 500;
  }

  .p-pagenavi .wp-pagenavi .pages,
  .p-pagenavi .wp-pagenavi .last {
    width: 72px;
    height: 40px;
  }

}

@media screen and (min-width: 960px) {}

/* WP 投稿一覧ページ（お知らせ） 記述　ここまで
------------------------------------------------------------- */


/* WP 投稿ページ（お知らせ） 記述　ここから
------------------------------------------------------------- */

.p-article {
  margin-top: 80px;
}

.p-article_post {
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  border-radius: 20px;
}

.p-article_post_header h1 {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--font-color-main);
  padding-bottom: 8px;
  font-weight: 500;
}

.p-article_category {
  margin-top: 16px;
}

.p-article_category a {
  background-color: #efeff0;
  border: 1px solid #efeff0;
  display: inline-block;
  padding: 4px 16px;
  font-size: 1.4rem;
  color: var(--font-color-main);
  margin-right: 10px;
  margin-top: 16px;
  text-decoration: none;
}

.p-article_category a:last-of-type {
  margin-right: 0;
}

.p-article_category a:hover {
  border: 1px solid var(--font-color-main);
  background-color: var(--font-color-sub);
}

.p-article_post_content_date {
  display: inline-block;
  color: var(--main-color);
  margin-top: 16px;
  font-weight: 600;
}

.p-article_post_content_text {
  margin-top: 24px;
  text-align: left;
}

.p-article_post_content_text h2 {
  font-weight: 600;
}

.p-article_post_content_text a {
  color: var(--main-color);
  text-decoration: none;
}

.p-article_post_content_text a:hover {
  text-decoration: underline;
  text-decoration-color: var(--main-color);
}

.p-article_post_footer {
  margin-top: 40px;
}


@media screen and (min-width: 768px) {

  .p-article_category {
    margin-top: 32px;
  }

  .p-article_category a {
    margin-right: 16px;
    margin-top: 0;
  }

  .p-article_post {
    padding: 64px 32px;
  }

  .p-article_post_footer {
    margin-top: 64px;
  }

  .p-article_inner .c-btn {
    width: 60%;
    margin: 0 auto;
  }
}


@media screen and (min-width: 960px) {

  .p-article {
    margin-top: 100px;
  }

  .p-article_post_header h1 {
    font-size: 2.4rem;
  }

  .p-article_post {
    width: 80%;
    margin: 0 auto;
    padding: 80px;
  }

  .p-article_category {
    margin-top: 40px;
  }

  .p-article_category,
  .p-article_post_content_date {
    font-size: 1.8rem;
  }

  .p-article_post_footer {
    margin-top: 124px;
  }

  .p-article_inner .c-btn {
    width: 70%;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* WP 投稿ページ（お知らせ） 記述　ここまで
------------------------------------------------------------- */


/*  WP 製品一覧ページ 記述 ここから
------------------------------------------------------------- */

/* ベースは投稿個別ページと一緒 
一部レイアウトだけ変更 */

.p-product .p-article_post_content_text .vk_slider,
.vk_post_list_slider {
  padding-bottom: 100px;
}

.p-product .p-article_post_content_text .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
}

.p-product_grid {
  display: grid;
  grid-template-rows: auto;
}

.p-product_grid .p-news_content_card {
  display: grid;
}

.p-product_grid .p-product_link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  text-decoration: none;
}

.p-product_box {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 32px 32px 24px;
  color: var(--font-color-main);
  text-align: left;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.p-product_pic {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  margin: 0 auto;
  text-align: center;
}

.p-product_pic img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
}

.p-product_box .p-news_title {
  text-align: left;
}

.p-product_box p:last-of-type {
  text-align: right;
}

.p-product_box .c-arrow_circle_right {
  width: 24px;
  height: 24px;
  border: 2.25px solid currentColor;
}

.c-arrow_circle_right::before {
  border-width: 5.4px 9.3531px;
}

.p-product_sidebar ul li {
  display: block;
}

.p-product_sidebar ul li ul li::before {
  content: "";
  display: inline-block;
  background-color: var(--main-color-pale);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.p-product_sidebar ul li ul li {
  padding-left: 1em;
}

@media screen and (min-width: 768px) {

  .p-product .p-article_post_content_text .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -10px;
  }

  .p-product .p-article_post_content_text .vk_slider,
  .vk_post_list_slider {
    padding-bottom: 40px;
  }

  .p-product_grid {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 40px 4%;
  }

  .p-product_grid .p-news_content_card {
    margin-top: 0;
  }
}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  WP 製品一覧ページ 記述 ここまで
------------------------------------------------------------- */


/*  WP 製品ページ 記述 ここから
------------------------------------------------------------- */

.p-product .p-article_post_header h1 {
  font-weight: 600;
  color: var(--main-color);
  padding-bottom: 24px;
}

.p-product .p-article_post_content_text {
  margin-top: 40px;
}

.p-product .p-article_post_content_text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--font-color-main);
  background-color: #F4F7FD;
  padding-left: .5em;
  border-left: 10px solid var(--main-color);
}

.p-product .p-article_post_content_text h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 24px 0 0 !important;
  color: var(--main-color);
}

.p-product .p-article_post_content_text h4 {
  margin: 8px 0 0 !important;
  font-weight: 600;
}

.p-product .p-article_post_content_text p {
  margin-top: 16px;
}

.p-product .p-article_post_content_text p:first-of-type {
  margin-top: 0;
}

.p-product .p-article_post_content_text ul li {
  list-style-type: disc;
}

.p-product .p-article_post_content_text ul li ul li {
  list-style-type: circle;
  margin-left: 1em;
}

.p-product .p-article_post_content_text ol {
  padding-left: 0;
}

.p-product .p-article_post_content_text ol li {
  list-style-type: decimal;
  margin-top: 8px;
  color: var(--font-color-main);
}

.p-product .p-article_post_content_text ol li:first-of-type {
  margin-top: 0;
}

.p-product .p-article_post_content_text ol li ul li {
  list-style-type: circle;
  margin-left: 1em;
}

.p-product .p-article_post_content_text iframe {
  width: 100%;
  height: 240px;
}

.p-product .p-article_post_content_text th {
  background-color: #efeff0;
}

.p-product .p-article_post_content_text .p-wp_button {
  width: 100%;
}

.p-product .p-wp_button a {
  text-decoration: none;
  color: var(--font-color-sub);
  transition: .5s;
}

.p-product .p-wp_button a:hover {
  color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .p-product_slider {
    width: 80%;
    margin: 0 auto;
  }

  .p-product .p-article_post_content_text {
    margin-top: 80px;
  }

  .p-product .p-article_post_header h1 {
    font-size: 2rem;
    padding-bottom: 32px;
  }

  .p-product .p-article_post_content_text {
    margin-top: 56px;
  }

  .p-product .p-article_post_content_text h2 {
    margin: 64px 0 40px;
    font-size: 2rem;
    padding-left: 1em;
  }

  .p-product .p-article_post_content_text ul li ul li {
    margin-left: 2em;
  }

  .p-product .p-article_post_content_text ol li ul li {
    margin-left: 2em;
  }

  .p-product .p-article_post_content_text .p-wp_button {
    width: 50%;
  }

  .p-product_slider {
    margin-bottom: 80px;
  }

  .p-product .p-article_post_content_text iframe {
    height: 400px;
  }

  .p-product .p-article_post_content_text p {
    margin-top: 24px;
  }
}


@media screen and (min-width: 960px) {

  .p-product .p-article_post_header h1 {
    padding-bottom: 40px;
  }

  .p-product .p-article_post_content_text {
    margin-top: 80px;
  }

  .p-product .p-article_post_content_text h3 {
    font-size: 1.8rem;
  }

  .p-product .p-article_post_content_text iframe {
    height: 450px;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  WP 製品ページ 記述 ここまで
------------------------------------------------------------- */



/* WP ワードプレス 固定ページ テンプレート 共通記述 page.php ここから
------------------------------------------------------------- */

.l-wp_template h2,
.l-wp_template h3 {
  font-weight: 600;
}

.l-wp_template .l-page_head {
  background-image: url(./../images/common-title_bg.jpg);
  background-position: center 50%;
}

.p-wp_template_catch,
.p-wp_template_section_title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}

.l-wp_template .wp-block-media-text>.wp-block-media-text__content {
  padding: 0;
}

.l-wp_template a {
  color: var(--main-color);
  text-decoration: none;
}

.l-wp_template a:hover {
  opacity: .5;
  cursor: pointer;
}


@media screen and (min-width: 768px) {

  .p-wp_template_catch,
  .p-wp_template_section_title {
    font-size: 1.8rem;
  }

  .l-wp_template .wp-block-media-text>.wp-block-media-text__content {
    padding: 0 0 0 8%;
  }
}

@media screen and (min-width: 960px) {

  .p-wp_template_catch,
  .p-wp_template_section_title {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}



/* WP ワードプレス 固定ページ テンプレート記述 page.php ここまで
------------------------------------------------------------- */


/* WP 固定ページ 追加記述 ここから------------------------------------------------------------- */

/* 会社概要 */

.page-id-4427 .l-wp_template .l-page_head,
.page-id-12778 .l-wp_template .l-page_head,
.page-id-12779 .l-wp_template .l-page_head,
.page-id-12780 .l-wp_template .l-page_head,
.page-id-12781 .l-wp_template .l-page_head {
  background-image: url(./../images/overview-title_bg.jpg);
}

.p-company_table {
  width: 100%;
}

.l-wp_template .p-company_table td,
.l-wp_template .p-company_table th {
  border: 1px solid #afafb0;
  padding: 10px 16px;
}

.l-wp_template .p-company_table tr:first-of-type th {
  border-top-color: #afafb0 !important;
}

.l-wp_template .p-company_table tr:first-of-type td {
  border-top: none !important;
}

.l-wp_template .p-company_table td {
  padding: 24px 16px;
}

.l-wp_template .p-company_table th {
  background-color: #efeff0;
}

.l-wp_template .p-company_table td {
  background-color: var(--font-color-sub);
}

@media screen and (min-width: 768px) {
  .p-company_table {
    width: 90%;
    margin: 0 auto;
  }

  .l-wp_template .p-company_table td,
  .l-wp_template .p-company_table th {
    padding: 10px 14px;
  }

  .l-wp_template .p-company_table tr:first-of-type td {
    border-top: 1px solid #afafb0 !important;
  }

  .l-wp_template .p-company_table td {
    border-left: none;
  }

  .l-wp_template .p-company_table th {
    border-right: none;
  }
}


@media screen and (min-width: 960px) {
  .p-company_table {
    width: 80%;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* 沿革 */

.page-id-4434 .l-wp_template .l-page_head,
.page-id-12789 .l-wp_template .l-page_head,
.page-id-12790 .l-wp_template .l-page_head,
.page-id-12791 .l-wp_template .l-page_head,
.page-id-12792 .l-wp_template .l-page_head {
  background-image: url(./../images/history-title_bg.jpg);
  background-position: center top;
}

.p-history_table {
  width: 100%;
}

.l-wp_template .p-history_table tr:first-of-type th {
  border-top-color: #afafb0 !important;
}

.l-wp_template .p-history_table tr:first-of-type td {
  border-top: none !important;
}


.l-wp_template .p-history_table th {
  background-color: #efeff0;
}

.l-wp_template .p-history_table td {
  background-color: var(--font-color-sub);
}

.l-wp_template .p-history_table td,
.l-wp_template .p-history_table th {
  border: 1px solid #afafb0;
  padding: 10px 16px;
}

@media screen and (min-width: 768px) {

  .p-history_table {
    width: 90%;
    margin: 0 auto;
  }

  .l-wp_template .p-history_table td,
  .l-wp_template .p-history_table th {
    padding: 10px 14px;
  }

  .l-wp_template .p-history_table tr:first-of-type td {
    border-top: 1px solid #afafb0 !important;
  }

  .l-wp_template .p-history_table td {
    border-left: none;
  }

  .l-wp_template .p-history_table th {
    border-right: none;
  }
}

@media screen and (min-width: 960px) {
  .p-history_table {
    width: 80%;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}


/* 事業所案内 */

.page-id-4436 .l-wp_template .l-page_head,
.page-id-12841 .l-wp_template .l-page_head,
.page-id-12842 .l-wp_template .l-page_head,
.page-id-12843 .l-wp_template .l-page_head {
  background-image: url(./../images/office-title_bg.jpg);
  background-position: right bottom;
}

.p-office_catch {
  margin-bottom: 24px;
}

.p-office_index {
  font-weight: 600;
  margin-bottom: 16px;
}

.p-office_index_sub {
  font-weight: 600;
  margin-bottom: 16px;
}

.p-office_index:first-of-type {
  margin-top: 24px;
}

.l-wp_template .p-office_table {
  margin-top: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.l-wp_template .p-office_table tr:first-of-type th {
  border-top-color: #afafb0 !important;
}

.l-wp_template .p-office_table tr:first-of-type td {
  border-top: none !important;
}

.l-wp_template .p-office_table td,
.l-wp_template .p-office_table th {
  border: 1px solid #afafb0;
  padding: 10px 8px;
}

.l-wp_template .p-office_table tr th {
  background-color: #efeff0;
  font-weight: 600;
  width: 100%;
}

.l-wp_template .p-office_table tr td {
  background-color: var(--font-color-sub);
  width: 100%;
}

.p-office_table_detail {
  text-align: right;
  margin-top: 8px;
  margin-right: .5em;
}

.p-office_table_detail a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--main-color);
}

.p-office_table_detail .c-btn {
  margin: 24px 0;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-office_catch {
    font-size: 1.8rem;
  }

  .l-wp_template .p-office_table td {
    border-bottom: 1px solid #afafb0;
    padding: 10px 16px;
  }

  .l-wp_template .p-office_table tr th {
    background-color: #efeff0;
    font-weight: 600;
    width: 30%;
  }

  .l-wp_template .p-office_table tr td {
    width: 70%;
  }

  .l-wp_template .p-office_table tr:first-of-type td {
    border-top: 1px solid #afafb0 !important;
  }

  .l-wp_template .p-office_table td {
    border-left: none;
  }

  .l-wp_template .p-office_table th {
    border-right: none;
  }
}

@media screen and (min-width: 960px) {

  .p-office_catch {
    margin-bottom: 40px;
  }

  .p-office_index,
  .p-office_index_sub {
    width: 80%;
    font-size: 2.4rem;
  }

  .p-office_index {
    margin: 0 auto 24px;
  }

  .p-office_index_sub {
    margin: 0 auto 24px;
  }

  .p-office_index:first-of-type {
    margin-top: 40px;
  }


  .l-wp_template .p-office_table {
    width: 80%;
    margin: 0 auto 80px;
  }

  .l-wp_template .p-office_table tr td:first-of-type {
    width: 35%;
  }

  .l-wp_template .p-office_table tr td:nth-of-type(2) {
    width: 65%;
  }
}


@media screen and (min-width: 1200px) {
  .p-office_table_detail {
    margin-right: 1em;
  }

}

@media screen and (min-width: 1700px) {}


/* 事業所案内 個別 拠点 */

.p-office_label {
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.6rem;
  background-color: var(--main-color);
  color: var(--font-color-sub);
}

.p-office_each .p-office_table {
  width: 100%;
}

.p-office_each h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--font-color-main);
  margin: 56px 0 32px;
  background-color: #F4F7FD;
  border-left: 10px solid var(--main-color);
  padding-left: .5em;
}

.p-office_each_about h2 {
  margin-top: 40px;
}

.p-office_each h3 {
  margin-top: 32px;
  font-size: 1.6rem;
  color: var(--main-color);
  font-weight: 600;
}

.p-office_each ol li {
  list-style-type: decimal;
  margin: 16px 0;
}

.p-office_each ol li:first-of-type {
  margin-top: 0;
}

.p-office_each ol li::marker {
  color: var(--main-color);
  font-weight: 600;
}

.p-office_each ul li {
  list-style-type: disc;
  margin: 16px 0;
}

.p-office_each_access :where(.wp-block-columns.is-layout-flex) {
  gap: 16px;
}

.p-office_each_access a {
  font-weight: 600;
}

.p-office_each_access a:hover {
  text-decoration: underline;
  opacity: 1;
}

.p-office_each_access .c-btn {
  font-size: 1.4rem;
  width: 90%;
  text-align: center;
  line-height: 1.6;
}

.p-office_each_icon p {
  font-weight: 600;
}

.p-office_each_icon_lists {
  gap: 24px 10%;
}

.p-office_each_icon_list {
  background-color: var(--font-color-sub);
  padding: 32px 16px;
}

.p-office_each_icon_list img {
  object-fit: contain;
}

.p-office_each_icon_list p {
  margin-top: 16px;
}

.p-office_each_map iframe {
  width: 100%;
  height: 350px;
}

@media screen and (min-width: 768px) {
  .p-office_each {
    width: 90%;
    margin: 0 auto;
  }

  .p-office_each h2 {
    margin: 80px 0 56px;
  }

  .p-office_each h3 {
    font-size: 1.8rem;
  }

  .p-office_each_about h2 {
    margin-top: 40px;
  }

  .p-office_label {
    font-size: 1.8rem;
    padding: 8px;
  }

  .p-office_each_icon_lists {
    gap: 24px 6.25%;
  }

  .p-office_each_icon_list {
    padding: 24px 8px;
  }

  .p-office_each_icon_list p {
    margin-top: 24px;
  }
}

@media screen and (min-width: 960px) {
  .p-office_each {
    width: 80%;
    margin: 0 auto;
  }

  .p-office_each h2 {
    font-size: 2.4rem;
    margin: 100px 0 64px;
  }

  .p-office_each_about h2 {
    margin-top: 80px;
  }

  .p-office_label {
    font-size: 2rem;
    padding: 4px 24px;
  }

  .p-office_each_icon_list {
    padding: 32px 8px;
  }

  .p-office_each_map iframe {
    width: 100%;
    height: 560px;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}



/*  製品 サポート ここから
------------------------------------------------------------- */

.page-id-4420 .l-wp_template .l-page_head {
  background-image: url(./../images/support-title_bg.jpg);
  background-position: center bottom;
}

.p-support h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--main-color);
  margin: 40px 0 24px;
}

.p-support h3 {
  font-size: 1.8rem;
  margin: 24px 0;
}

.p-support h4 {
  font-weight: 600;
}

.p-support_notice h3 {
  font-size: 1.8rem;
}

.p-support .p-wp_button {
  width: 90%;
  margin: 0 auto;
}

.p-support_index {
  margin-top: 40px;
}

.p-support_grid {
  gap: 32px 5%;
}

.p-support_grid_item {
  padding: 32px 24px;
  display: grid;
}

.p-support_grid_item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  grid-template-rows: subgrid;
  grid-row: span 3 !important;
}

.p-support_grid_item figure {
  width: 64%;
  margin: 0 auto;
}

.p-support_catalogue p {
  margin-bottom: 24px;
}

.p-support_catalogue .p-wp_button {
  width: 100%;
  margin-top: 16px;
}

.p-support_catalogue .p-wp_button a {
  text-align: center;
  padding: 8px;
  border-radius: 0;
}

.p-support .p-wp_button a {
  color: var(--font-color-sub);
}

.p-support .p-wp_button a:hover {
  color: var(--main-color);
  opacity: 1;
}

.vk_borderBox:not([class*=vk_borderBox-color]):not(.has-text-color) {
  border-radius: 10px;
}

.p-support .p-support_grid_item .p-wp_button {
  display: block;
  align-self: stretch;
  flex-basis: 100%;
  position: static;
}

.p-support .p-support_grid_item .p-wp_button+.p-wp_button {
  margin-top: 65px !important;
}

.p-support .p-support_grid_item .p-wp_button a {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-support h2 {
    font-size: 3.2rem;
    margin: 64px 0 32px;
  }

  .p-support h3 {
    font-size: 2.4rem;
    margin: 56px 0;
  }

  .p-support_notice h3 {
    font-size: 2rem !important;
  }

  .p-support_catalogue p {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .p-support_catalogue .p-wp_button {
    width: 90%;
    margin-top: 24px;
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 960px) {
  .p-support_notice {
    width: 80%;
    margin: 0 auto;
  }

  .p-support h2 {
    margin: 80px 0 40px;
  }

  .p-support h3 {
    margin: 64px 0;
  }

  .p-support_catalogue .p-wp_button {
    width: 60%;
    margin-top: 32px;
  }

  .p-support .p-support_grid_item .p-wp_button+.p-wp_button {
    margin-top: 20px;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  製品 サポート ここまで
------------------------------------------------------------- */


/*  FAQ ここから
------------------------------------------------------------- */

.page-id-6003 .l-wp_template .l-page_head {
  background-image: url(./../images/support-title_bg.jpg);
  background-position: center bottom;
}

.p-faq h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--main-color);
  margin: 64px 0 24px;
}

.p-faq_ems h2 {
  margin-top: 0;
}

.p-faq h3 {
  font-size: 1.8rem;
  margin: 24px 0;
}

.p-faq h4 {
  font-weight: 600;
}

.p-faq .p-faq_box {
  margin-top: 40px;
}

.p-faq .p-faq_box:first-of-type {
  margin-top: 0;
}


@media screen and (min-width: 768px) {
  .p-faq h2 {
    font-size: 3.2rem;
    margin: 64px 0 32px;
  }

  .p-faq h3 {
    font-size: 2.4rem;
    margin: 56px 0;
  }
}


@media screen and (min-width: 960px) {

  .p-faq {
    width: 80%;
    margin: 0 auto;
  }

  .p-faq h2 {
    margin: 80px 0 40px;
  }

  .p-faq h3 {
    margin: 64px 0;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  FAQ ここまで
------------------------------------------------------------- */


/*  お問い合わせ ここから
------------------------------------------------------------- */

.page-id-4893 .l-wp_template .l-page_head,
.page-id-13109 .l-wp_template .l-page_head,
.page-id-13110 .l-wp_template .l-page_head,
.page-id-13111 .l-wp_template .l-page_head,
.page-id-13112 .l-wp_template .l-page_head {
  background-image: url(./../images/support-title_bg.jpg);
  background-position: center bottom;
}

.p-contact_intro h2 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.p-contact {
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  margin-top: 32px;
}

.p-contact_optional,
.p-contact_required {
  padding: 4px 8px;
  margin-right: 1em;
}

.p-contact_optional {
  background-color: #f5f6f7;
  color: var(--main-color);
}

.p-contact_required {
  background-color: #fdf2f2;
  color: #bf0000;
}

.p-contact .p-contact_box {
  margin: 0 0 40px 0;
}

.p-contact .p-contact_box h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.p-contact .p-contact_box input,
.p-contact .p-contact_box textarea {
  padding: .5em 1em;
}

.p-contact .radiobutton input:hover {
  cursor: pointer;
}

.p-contact input[type="text"],
.p-contact input[type="email"],
.p-contact input[type="tel"],
.p-contact textarea,
.p-contact select {
  background-color: #F6F6F6;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, .16) inset, 0 0.6rem 0.9rem rgba(255, 255, 255, .16);
}

.radiobutton input {
  margin-right: 2px;
}

input[type="submit"] {
  display: block;
  margin: 0 auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  font-weight: bold;
  width: 80%;
  padding: 4px 8px;
  border-radius: 50px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: var(--font-color-sub);
  cursor: pointer;
  transition: .5s;
}

span.wpcf7-spinner {
  display: none;
}

input[type="submit"]:hover {
  background-color: var(--font-color-sub);
  color: var(--main-color);
}

@media screen and (min-width: 768px) {

  .p-contact_intro p {
    text-align: center;
  }

  .p-contact {
    width: 90%;
    margin: 40px auto 0;
    padding: 64px 32px;
  }

  input[type="submit"] {
    width: 60%;
  }
}


@media screen and (min-width: 960px) {

  .p-contact_intro h2 {
    font-size: 2.4rem;
  }

  .p-contact_intro p {
    font-size: 1.8rem;
  }

  .p-contact {
    width: 90%;
    margin: 100px auto 0;
    padding: 64px 40px;
  }

  .p-contact_box {
    display: grid;
    grid-template-columns: 27% 72%;
    gap: 1%;
  }

  .p-contact .p-contact_box h2 {
    margin-bottom: 0;
  }

  .p-contact .wpcf7-list-item {
    margin-left: 0;
    margin-right: 1em;
  }

  .p-contact .p-contact_content {
    margin-bottom: 80px;
  }

}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  お問い合わせ ここまで
------------------------------------------------------------- */


/*  お問い合わせ完了 ここから
------------------------------------------------------------- */

.page-id-5648 .l-wp_template .l-page_head,
.page-id-13120 .l-wp_template .l-page_head,
.page-id-13121 .l-wp_template .l-page_head,
.page-id-13122 .l-wp_template .l-page_head,
.page-id-13123 .l-wp_template .l-page_head {
  background-image: url(./../images/support-title_bg.jpg);
  background-position: center bottom;
}

.p-thanks h2 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.p-thanks p {
  margin-bottom: 40px;
}

.p-thanks .p-wp_button {
  width: 90%;
  margin: 0 auto;
}


@media screen and (min-width: 768px) {
  .p-thanks .p-wp_button {
    width: 60%;
  }

  .p-thanks h2 {
    margin-bottom: 56px;
  }

  .p-thanks p {
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 960px) {
  .p-thanks {
    width: 80%;
    margin: 0 auto;
  }

  .p-thanks h2 {
    font-size: 2.4rem;
  }

  .p-thanks p {
    text-align: center;
    margin-bottom: 80px;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  お問い合わせ完了 ここまで
------------------------------------------------------------- */

/*  EMS事業 ここから
------------------------------------------------------------- */

.page-id-4251 .c-business_page .l-page_head,
.page-id-12498 .c-business_page .l-page_head,
.page-id-12587 .c-business_page .l-page_head,
.page-id-12586 .c-business_page .l-page_head,
.page-id-12585 .c-business_page .l-page_head {
  background-image: url(./../images/ems-title_bg.jpg);
  background-position: 50%;
}

.page-id-4251 .c-page_head_title_business img,
.page-id-12498 .c-page_head_title_business img,
.page-id-12587 .c-page_head_title_business img,
.page-id-12586 .c-page_head_title_business img,
.page-id-12585 .c-business_page .l-page_head img {
  display: none;
}

.page-id-4251 .c-page_head_title_business h1::after,
.page-id-12498 .c-page_head_title_business h1::after,
.page-id-12587 .c-page_head_title_business h1::after,
.page-id-12586 .c-page_head_title_business h1::after,
.page-id-12585 .c-page_head_title_business h1::after {
  content: "ELECTRONICS MANUFACTURING SERVICE";
  font-size: .4em;
  font-weight: 500;
}

.page-id-4251 .c-business_intro_lead h2 {
  width: auto;
}

.p-ems_feature,
.p-ems_about,
.p-ems_base,
.p-ems_achievement {
  padding-top: 0;
}

.p-ems_feature h2,
.p-ems_about h2,
.p-ems_base h2,
.p-ems_achievement h2 {
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-ems_feature p {
  margin-top: 8px;
}

.p-ems_feature_grid {
  display: grid;
}

.p-ems_feature_grid figure {
  order: 2;
  margin-top: 40px;
}

.p-ems_feature ul {
  margin-top: 24px;
}

.p-ems_feature ul li {
  list-style-type: disc;
}

.p-ems_about {
  padding-top: 0;
}

.p-ems_about figure,
.p-ems_base figure {
  margin-top: 24px;
}

.p-ems_achievement h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 8px;
}

.p-ems_achievement_table {
  margin-top: 32px;
}

.p-ems_achievement_table tr,
.p-ems_achievement_table th {
  font-size: 1.6rem;
  text-align: center;
}










/* 地図全幅表示 */
#ems-map {
  max-width: none !important;

  .alignwide,
  .alignfull {
    max-width: none !important;
  }

  .l-main_business {
    padding: 0;
  }

  .ems-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #fff;
  }

  .ems-container figure {
    position: relative;
    width: 100%;
    height: 350px;
    /* height: clamp(320px, 62.5vw, 640px); */
    overflow: hidden;
    margin: 0;

    @media screen and (min-width: 960px) {
      height: clamp(320px, 44vw, 450px);

    }

    @media screen and (min-width: 960px) {
      height: clamp(320px, 62.5vw, 640px);

    }
  }

  .ems-container figure img {


    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    --z: 1.2;
    --tx: 5%;
    --ty: 10%;
    transform-origin: 60% 50%;
    transform: translate(var(--tx), var(--ty)) scale(var(--z));
    will-change: transform;

    @media screen and (min-width: 768px) {
      --z: 1.3;
      --tx: 0%;
      --ty: 10%;
    }
  }

  .ems-content {
    position: absolute;
    top: 0;
    right: 0%;
    width: 50%;
    text-align: left;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 40px 0;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 960px) {

  #ems-map {
    .ems-container figure img {
      position: static;
      inset: auto;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;

      transform: none;
      transform-origin: 50% 50%;
      will-change: auto;

      --z: 1;
      --tx: 0%;
      --ty: 0%;
    }

    .ems-content {
      padding: 30px;
      width: 40%;

      @media screen and (min-width: 1200px) {
        padding: 80px 0;
      }

      /* タイトル */
      .ems-title {
        font-size: clamp(16px, 2.4vw, 24px);
        margin-bottom: 20px;
        line-height: 1.1;
      }

      .ems-subtitle {
        font-size: 0.7em;
        margin-top: 2px;
      }

      /* 国ごとのセクション */
      .ems-section {
        padding: 8px 0;
      }

      /* 国名 */
      .country-name {
        font-size: clamp(14px, 1.8vw, 16px);

        font-weight: bold;
        margin-bottom: 5px;
      }

      /* 拠点情報（アイコンとテキストの横並び） */
      .location-item {
        margin-bottom: 8px;
      }

      /* 番号アイコン（オレンジの丸） */
      .num-icon {
        font-size: 12px;
      }

      /* 都市名と詳細 */
      .city-name {
        font-size: clamp(12px, 1.6vw, 15px);
      }
    }




  }
}







/* カスタムHTMLの内容 */

/* --- 各パーツのデザイン（PC/タブレット） --- */
/* タイトル */
.ems-title {
  /* font-size: clamp(16px, 2.4vw, 24px); */
  font-size: clamp(14px, 1.8vw, 16px);
  /* font-size: clamp(12px, 1.8vw, 20px); */
  font-weight: bold;
  /* margin-bottom: 20px; */
  line-height: 1;
}

.ems-subtitle {
  display: block;
  /* font-size: 0.7em; */
  font-size: 0.6em;
  font-weight: normal;
  /* margin-top: 2px; */
}

/* 国ごとのセクション */
.ems-section {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  /* padding: 8px 0; */
  padding: 6px 0;
}

.ems-section:first-of-type {
  border-top: none;
}

/* 国名 */
.country-name {
  /* font-size: clamp(14px, 1.8vw, 16px); */
  font-size: clamp(10px, 1.4vw, 14px);
  /* font-size: clamp(8px, 1.2vw, 12px); */

  font-weight: bold;
  /* margin-bottom: 5px; */
  margin-bottom: 3px;
}

/* 拠点情報（アイコンとテキストの横並び） */
.location-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 8px; */
  margin-bottom: 5px;
}

/* 番号アイコン（オレンジの丸） */
.num-icon {
  background-color: #E65525;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transform: translateY(-1px);
  /* 1.0px上に動かしてベースラインのズレをより強力に補正 */
  /* font-size: 12px; */
  font-size: 10px;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 都市名と詳細 */
.city-name {
  /* font-size: clamp(12px, 1.6vw, 15px); */
  font-size: clamp(10px, 1.4vw, 14px);
  /* font-size: clamp(8px, 1.2vw, 12px); */
  font-weight: bold;
  color: #E65525;
  margin-bottom: 2px;
  line-height: 1.2;
}

.location-detail p {
  font-size: clamp(10px, 1.3vw, 12px);
  /* font-size: clamp(8px, 1.2vw, 12px); */

  margin: 0;
  line-height: 1.3;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}








/* 追加なし */

@media screen and (min-width: 768px) {

  .p-ems_feature h2,
  .p-ems_about h2,
  .p-ems_base h2,
  .p-ems_achievement h2 {
    text-align: center;
  }

  .p-ems_feature p {
    margin-top: 16px;
  }

  .p-ems_about figure,
  .p-ems_base figure {
    margin-top: 56px;
  }


  .p-ems_achievement_intro {
    margin-top: 16px;
    text-align: center;
  }

  .p-ems_achievement_table {
    margin-top: 40px;
  }
}

@media screen and (min-width: 960px) {

  .p-ems_feature h2,
  .p-ems_about h2,
  .p-ems_base h2,
  .p-ems_achievement h2 {
    font-size: 3.2rem;
  }

  .p-ems_feature_grid {
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: center;
  }

  .p-ems_feature h2 {
    text-align: left;
  }

  .p-ems_feature_grid figure {
    order: 0;
    margin-top: 0;
  }

  .p-ems_achievement_intro {
    margin-top: 24px;
  }

  .p-ems_achievement_table {
    margin-top: 64px;
  }
}


/* 追加分・要修正 */
@media screen and (min-width: 1200px) {
  #ems-map .ems-container figure {
    height: clamp(320px, 62.5vw, 640px);
  }
}










@media screen and (min-width: 1700px) {}

/*  EMS事業 ここまで
------------------------------------------------------------- */


/*  エレクトロニクス EL事業 ここから
------------------------------------------------------------- */

.page-id-4364 .c-business_page .l-page_head,
.page-id-12591 .c-business_page .l-page_head,
.page-id-12590 .c-business_page .l-page_head,
.page-id-12589 .c-business_page .l-page_head,
.page-id-12588 .c-business_page .l-page_head {
  background-image: url(./../images/el-title_bg.jpg);
  background-position: 50%;
}

.page-id-4364 .c-page_head_title_business img,
.page-id-12591 .c-page_head_title_business img,
.page-id-12590 .c-page_head_title_business img,
.page-id-12589 .c-page_head_title_business img,
.page-id-12588 .c-page_head_title_business img {
  display: none;
}

.page-id-4364 .c-page_head_title_business h1::after,
.page-id-12591 .c-page_head_title_business h1::after,
.page-id-12590 .c-page_head_title_business h1::after,
.page-id-12589 .c-page_head_title_business h1::after,
.page-id-12588 .c-page_head_title_business h1::after {
  content: "ELECTRONICS";
  font-size: .4em;
  font-weight: 500;
}

.page-id-4364 .c-business_intro_lead h2 {
  width: auto;
}

.p-el_feature,
.p-el_item,
.p-el_environment,
.p-el_logistics,
.p-el_export,
.p-el_veva,
.p-el_agency,
.p-el_quality {
  padding-top: 0;
}

.p-el_feature h2,
.p-el_item h2,
.p-el_environment h2,
.p-el_logistics h2,
.p-el_export h2,
.p-el_veva h2,
.p-el_agency h2,
.p-el_quality h2 {
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-el_item_content h3,
.p-el_environment_content h3,
.p-el_logistics h3 {
  font-size: 2rem;
  font-weight: 600;
}

.p-el_2column {
  display: grid;
}

.p-el_2column figure {
  order: 2;
  margin-top: 32px;
}

.p-el_2column p {
  margin-top: 8px;
}

.p-el_item a {
  display: block;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
  line-height: 2;
  font-size: 1.4rem;
}

.p-el_item a:hover {
  text-decoration: underline;
}

.p-el_item_content {
  margin-top: 40px;
}

.p-el_item_content:first-of-type {
  margin-top: 24px;
}

.p-el_item_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-el_item_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-el_item_content_grid>div:first-of-type {
  margin-top: 0;
}

.p-el_item_content_grid>div figure {
  width: 80%;
  margin: 0 auto 10px;
}

.p-el_item_content_grid>div h4 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
}

.p-el_item_content_grid>div ul li {
  text-align: center;
}

.p-el_environment_content {
  margin-top: 40px;
}

.p-el_environment_content>div:nth-of-type(2) {
  margin-top: 40px;
}

.p-el_logistics_content {
  margin-top: 40px;
}

.p-el_logistics_content:first-of-type {
  margin-top: 24px;
}

.p-el_logistics_content>p,
.p-el_export_content>p,
.p-el_veva_content>p,
.p-el_agency_content>p,
.p-el_quality_content>p {
  margin-top: 8px;
}

.p-el_logistics_content_2column {
  display: grid;
  margin-top: 24px;
  gap: 24px;
}

.p-el_logistics_content_2column h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.p-el_logistics_content_point,
.p-el_logistics_content_about {
  margin-top: 40px;
  background-color: var(--font-color-sub);
}

.p-el_logistics_content_point h4,
.p-el_logistics_content_feature h4,
.p-el_logistics_content_about h4 {
  background-color: var(--main-color);
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}

.p-el_logistics_content_point ul,
.p-el_logistics_content_about ul {
  padding: 24px 16px;
}

.p-el_logistics_content_point ul li,
.p-el_logistics_content_about ul li {
  padding-left: 1.5em;
  position: relative;
  margin-top: 8px;
  font-weight: 600;
  text-align: left;
}

.p-el_logistics_content_about ul li {
  list-style-type: disc;
  padding-left: 0;
}

.p-el_logistics_content_point ul li:first-of-type,
.p-el_logistics_content_about ul li:first-of-type {
  margin-top: 0;
}

.p-el_logistics_content_point ul li::before {
  content: "";
  background-image: url(./../images/check_icon.svg);
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  position: absolute;
  top: .6em;
  left: 0;
}

.p-el_logistics_content_feature {
  margin-top: 40px;
}

.p-el_logistics_content_feature>div {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.p-el_logistics_content_feature>div>div {
  background-color: var(--font-color-sub);
  padding: 24px 16px;
  width: 100%;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-el_logistics_content_feature>div>div h5 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
}

.p-el_logistics_content_feature>div>div p {
  margin-top: 10px;
}

.p-el_logistics_content_illustration,
.p-el_veva_content_illustration {
  margin-top: 24px;
}

.p-el_logistics_content_about {
  margin-top: 40px;
}

.p-el_export_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-el_export_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-el_export_content_grid>div h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
}

.p-el_export_content_grid>div figure {
  width: 80%;
  margin: 0 auto 10px;
  max-height: 250px;
}

.p-el_export_content_grid>div figure img {
  height: 100%;
  object-fit: cover;
}

.p-el_agency_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-el_agency_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-el_agency_content_grid>div h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
  text-align: center;
}

.p-el_agency_content_grid>div figure {
  width: 80%;
  margin: 0 auto 10px;
  max-height: 250px;
}

.p-el_agency_content_grid>div figure img {
  height: 100%;
  object-fit: cover;
}

.p-el_quality_content a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 600;
}

.p-el_quality_content a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {

  .p-el_feature h2,
  .p-el_item h2,
  .p-el_environment h2,
  .p-el_logistics h2,
  .p-el_export h2,
  .p-el_veva h2,
  .p-el_agency h2,
  .p-el_quality h2,
  .p-el_item_content h3,
  .p-el_environment_content h3,
  .p-el_logistics h3 {
    text-align: center;
  }

  .p-el_item_content,
  .p-el_environment_content,
  .p-el_logistics_content,
  .p-el_logistics_content:first-of-type {
    margin-top: 64px;
  }

  .p-el_2column figure {
    margin-top: 40px;
  }

  .p-el_item_content:first-of-type {
    margin-top: 24px;
  }

  .p-el_item_content_grid,
  .p-el_export_content_grid {
    grid-template-columns: 30% 30% 30%;
    gap: 32px 5%;
    margin-top: 40px;
  }

  .p-el_item_content_grid>div,
  .p-el_export_content_grid>div {
    padding: 32px 16px;
    gap: 10px;
  }

  .p-el_item_content_grid>div figure,
  .p-el_export_content_grid>div figure {
    width: 90%;
    margin: 0 auto;
    max-height: 120px;
  }

  .p-el_item_content_grid>div figure img,
  .p-el_export_content_grid>div figure img {
    height: 100%;
    object-fit: cover;
  }

  .p-el_2column p,
  .p-el_logistics_content>p,
  .p-el_export_content>p,
  .p-el_veva_content>p,
  .p-el_agency_content>p,
  .p-el_quality_content>p {
    margin-top: 16px;
  }

  .p-el_environment>div>p,
  .p-el_logistics_content>p,
  .p-el_logistics_content_feature>div>div p,
  .p-el_veva_content>p,
  .p-el_agency_content>p,
  .p-el_quality_content>p,
  .p-el_export_content>p {
    text-align: center;
  }

  .p-el_environment_content>div:nth-of-type(2) {
    margin-top: 56px;
  }

  .p-el_logistics_content_2column {
    margin-top: 40px;
    gap: 32px;
  }

  .p-el_logistics_content_2column h4 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .p-el_logistics_content_point,
  .p-el_logistics_content_about,
  .p-el_logistics_content_feature {
    margin-top: 56px;
  }

  .p-el_logistics_content_point h4,
  .p-el_logistics_content_feature h4,
  .p-el_logistics_content_about h4 {
    font-size: 2rem;
  }

  .p-el_logistics_content_point ul li,
  .p-el_logistics_content_about ul li {
    padding-left: 2em;
    margin-top: 16px;
  }

  .p-el_logistics_content_feature>div,
  .p-el_agency_content_grid {
    margin-top: 40px;
    grid-template-columns: 48% 48%;
    gap: 24px 4%;
  }

  .p-el_logistics_content_feature>div>div h5 {
    font-size: 2.4rem;
  }

  .p-el_logistics_content_illustration,
  .p-el_veva_content_illustration {
    margin-top: 40px;
  }

  .p-el_agency_content_grid>div figure {
    margin-bottom: 0;
  }

  .p-el_agency_content_grid>div h3 {
    font-size: 2rem;
  }

  .p-el_agency_content_grid>div p {
    font-size: 1.8rem;
  }

}

@media screen and (min-width: 960px) {

  .p-el_feature h2,
  .p-el_item h2,
  .p-el_environment h2,
  .p-el_logistics h2,
  .p-el_export h2,
  .p-el_veva h2,
  .p-el_agency h2,
  .p-el_quality h2 {
    font-size: 3.2rem;
  }

  .p-el_logistics h2,
  .p-el_environment_content h3 {
    line-height: 1.6;
  }

  .p-el_item_content h3,
  .p-el_environment_content h3,
  .p-el_logistics h3 {
    font-size: 2.4rem;
  }

  .p-el_feature h2,
  .p-el_environment h3 {
    text-align: left;
  }

  .p-el_environment>div>p,
  .p-el_logistics_content>p,
  .p-el_export_content>p,
  .p-el_veva_content>p,
  .p-el_agency_content>p,
  .p-el_quality_content>p {
    margin-top: 24px;
  }

  .p-el_item_content,
  .p-el_environment_content,
  .p-el_logistics_content,
  .p-el_logistics_content:first-of-type {
    margin-top: 80px;
  }

  .p-el_logistics_content:nth-of-type(2) {
    margin-top: 128px;
  }

  .p-el_item_content_grid,
  .p-el_export_content_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 56px;
    gap: 40px 5%;
  }

  .p-el_item_content_grid>div figure,
  .p-el_export_content_grid>div figure {
    margin-bottom: 16px;
    width: 100%;
  }

  .p-el_2column {
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: center;
  }

  .p-el_2column figure {
    order: 0;
    margin-top: 0;
  }

  .p-el_environment_content>div:nth-of-type(2) {
    margin-top: 80px;
  }

  .p-el_logistics_content_2column {
    grid-template-columns: 48% 48%;
    gap: 4%;
    margin-top: 56px;
  }

  .p-el_logistics_content_2column h4 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }

  .p-el_logistics_content_point,
  .p-el_logistics_content_about,
  .p-el_logistics_content_feature {
    margin-top: 80px;
  }

  .p-el_logistics_content_point h4,
  .p-el_logistics_content_feature h4,
  .p-el_logistics_content_about h4 {
    font-size: 2.4rem;
  }

  .p-el_logistics_content_feature>div,
  .p-el_agency_content_grid {
    margin-top: 56px;
    gap: 40px 4%;
  }

  .p-el_logistics_content_illustration,
  .p-el_veva_content_illustration {
    margin-top: 64px;
  }

  .p-el_logistics_content_feature>div>div {
    padding: 32px;
  }

  .p-el_quality_content>p {
    font-size: 1.8rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  エレクトロニクス EL事業 ここまで
------------------------------------------------------------- */


/*  コーティング CT事業 ここから
------------------------------------------------------------- */

.page-id-4387 .c-business_page .l-page_head,
.page-id-12639 .c-business_page .l-page_head,
.page-id-12638 .c-business_page .l-page_head,
.page-id-12637 .c-business_page .l-page_head,
.page-id-12636 .c-business_page .l-page_head {
  background-image: url(./../images/ct-title_bg.jpg);
  background-position: 50%;
}

.page-id-4387 .c-page_head_title_business img,
.page-id-12639 .c-page_head_title_business img,
.page-id-12638 .c-page_head_title_business img,
.page-id-12637 .c-page_head_title_business img,
.page-id-12636 .c-page_head_title_business img {
  display: none;
}

.page-id-4387 .c-page_head_title_business h1::after,
.page-id-12639 .c-page_head_title_business h1::after,
.page-id-12638 .c-page_head_title_business h1::after,
.page-id-12637 .c-page_head_title_business h1::after,
.page-id-12636 .c-page_head_title_business h1::after {
  content: "COATING TECHNOLOGY";
  font-size: .4em;
  font-weight: 500;
}

.page-id-4387 .c-business_intro_lead h2 {
  width: auto;
}

.p-ct_about,
.p-ct_feature,
.p-ct_industry,
.p-ct_flow,
.p-ct_achievement,
.p-ct_item,
.p-ct_history,
.p-el_quality {
  padding-top: 0;
}

.p-ct_about h2,
.p-ct_feature h2,
.p-ct_industry h2,
.p-ct_flow h2,
.p-ct_achievement h2,
.p-ct_item h2,
.p-ct_history h2,
.p-el_quality h2 {
  font-size: 2.4rem;
  color: var(--main-color);
  line-height: 1.6;
}

.p-ct_feature_content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.p-ct_2column p,
.p-ct_feature_content>p,
.p-ct_industry_content>p,
.p-ct_flow_content>p,
.p-ct_achievement_content>p,
.p-ct_item_content>p {
  margin-top: 8px;
}

.p-ct_2column {
  display: grid;
}

.p-ct_2column figure {
  order: 2;
  margin-top: 32px;
}

.p-ct_feature_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px 6%;
  grid-template-columns: 47% 47%;
}

.p-ct_feature_content_grid>div {
  width: 100%;
  background-image: linear-gradient(120deg, rgb(161, 196, 253, .5) 0%, rgb(194, 233, 251, .5) 100%);
  padding: 24px 8px;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
  text-align: center;
  border-radius: 10px;
  color: var(--main-color);
}

.p-ct_feature_content_grid>div>p,
.p-ct_industry_content_grid>div>p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--font-color-main);
  line-height: 1.6;
}

.p-ct_feature_content_grid>div h3 {
  line-height: 1.4;
  font-weight: 700;
}

.p-ct_feature_content_grid>div h3 span {
  font-size: .7em;
  font-weight: 500;
}

.p-ct_industry_content_grid,
.p-ct_item_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-ct_industry_content_grid>div,
.p-ct_item_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 8px;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 8px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-ct_industry_content_grid>div figure {
  width: 80%;
  height: 100%;
  margin: 0 auto 10px;
}

.p-ct_industry_content_grid>div figure img {
  height: 100%;
  object-fit: cover;
}

.p-ct_industry_content_grid>div h3,
.p-ct_item_content_grid>div h3 {
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-ct_industry_content_grid>div ul li,
.p-ct_item_content_grid>div ul li {
  text-align: center;
}

.p-ct_flow_content_illustration {
  margin-top: 24px;
}

.p-ct_achievement_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-ct_achievement_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 10px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
  text-align: center;
}

.p-ct_achievement_content_grid>div figure {
  width: 50%;
  margin: 0 auto 10px;
}

.p-ct_achievement_content_grid>div h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-color);
}

.p-ct_achievement_content_grid>div>p {
  font-size: 4rem;
  font-weight: 700;
}

.p-ct_item_content_grid>div>p {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-ct_item_content_grid>div ul li {
  font-size: 1.4rem;
}

.p-ct_history_content figure:last-of-type {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {

  .p-ct_about h2,
  .p-ct_feature h2,
  .p-ct_industry h2,
  .p-ct_flow h2,
  .p-ct_achievement h2,
  .p-ct_item h2,
  .p-ct_history h2 {
    text-align: center;
  }

  .p-ct_about_content,
  .p-ct_feature_content,
  .p-ct_industry_content,
  .p-ct_flow_content,
  .p-ct_achievement_content,
  .p-ct_item_content,
  .p-ct_history_content {
    margin-top: 24px;
  }

  .p-ct_2column p,
  .p-ct_feature_content>p,
  .p-ct_industry_content>p,
  .p-ct_flow_content>p,
  .p-ct_achievement_content>p,
  .p-ct_item_content>p {
    margin-top: 16px;
  }


  .p-ct_feature_content>p,
  .p-ct_industry_content>p,
  .p-ct_flow_content>p,
  .p-ct_achievement_content>p,
  .p-ct_item_content>p {
    text-align: center;
  }

  .p-ct_feature_content_grid {
    grid-template-columns: 22% 22% 22% 22%;
    gap: 32px 4%;
    margin-top: 40px;
  }

  .p-ct_industry_content_grid,
  .p-ct_item_content_grid,
  .p-ct_achievement_content_grid {
    grid-template-columns: 47% 47%;
    gap: 40px 6%;
    margin-top: 40px;
  }

  .p-ct_industry_content_grid>div,
  .p-ct_item_content_grid>div {
    padding: 32px 8px;
  }

  .p-ct_2column {
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: center;
  }

  .p-ct_2column figure {
    order: 0;
    margin-top: 0;
  }
}


@media screen and (min-width: 960px) {

  .p-ct_about h2,
  .p-ct_feature h2,
  .p-ct_industry h2,
  .p-ct_flow h2,
  .p-ct_achievement h2,
  .p-ct_item h2,
  .p-ct_history h2 {
    font-size: 3.2rem;
  }

  .p-ct_2column p,
  .p-ct_feature_content>p,
  .p-ct_industry_content>p,
  .p-ct_flow_content>p,
  .p-ct_achievement_content>p,
  .p-ct_item_content>p {
    margin-top: 24px;
  }

  .p-ct_feature_content h3,
  .p-ct_industry_content_grid>div h3,
  .p-ct_item_content_grid>div h3 {
    font-size: 2.4rem;
    line-height: 1.6;
  }

  .p-ct_about h2 {
    text-align: left;
  }

  .p-ct_industry_content_grid,
  .p-ct_item_content_grid,
  .p-ct_achievement_content_grid {
    margin-top: 56px;
  }

  .p-ct_item_content_grid>div,
  .p-ct_achievement_content_grid>div {
    padding: 40px 16px;
    gap: 10px;
  }

  .p-ct_item_content_grid>div figure {
    width: 90%;
    margin: 0 auto 16px;
  }

  .p-ct_item_content_grid>div {
    grid-template-rows: auto;
  }

  .p-ct_industry_content_grid>div,
  .p-ct_item_content_grid>div {
    padding: 32px 24px;
  }

  .p-ct_feature_content_grid>div>p,
  .p-ct_industry_content_grid>div>p {
    font-size: 2.4rem;
  }

  .p-ct_industry_content_grid>div ul,
  .p-ct_item_content_grid>div ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-ct_industry_content_grid>div ul li,
  .p-ct_item_content_grid>div ul li {
    position: relative;
    margin-right: 1em;
    white-space: wrap;
    font-size: .8em;
  }

  .p-ct_industry_content_grid>div ul li:after,
  .p-ct_item_content_grid>div ul li:after {
    content: "/";
    position: absolute;
    right: -.7em;
  }

  .p-ct_industry_content_grid>div ul li:last-of-type:after,
  .p-ct_item_content_grid>div ul li:last-of-type:after {
    display: none;
  }

  .p-ct_achievement_content_grid>div figure {
    width: 30%;
  }

  .p-ct_achievement_content_grid>div h3,
  .p-ct_achievement_content_grid>div>p {
    line-height: 1.8;
  }

  .p-ct_flow_content_illustration,
  .p-ct_history_content {
    margin-top: 56px;
  }

  .p-ct_history_content figure:last-of-type {
    margin-top: 40px;
  }

}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  コーティング CT事業 ここまで
------------------------------------------------------------- */


/* コンシューマーMD CM事業 ここから
------------------------------------------------------------- */

.page-id-4340 .c-business_page .l-page_head,
.page-id-12680 .c-business_page .l-page_head,
.page-id-12679 .c-business_page .l-page_head,
.page-id-12678 .c-business_page .l-page_head,
.page-id-12677 .c-business_page .l-page_head {
  background-image: url(./../images/cm-title_bg2.jpeg);
  background-position: 20% 13%;
}

.page-id-4340 .c-page_head_title_business img,
.page-id-12680 .c-page_head_title_business img,
.page-id-12679 .c-page_head_title_business img,
.page-id-12678 .c-page_head_title_business img,
.page-id-12677 .c-page_head_title_business img {
  display: none;
}

.page-id-4340 .c-page_head_title_business h1::after,
.page-id-12680 .c-page_head_title_business h1::after,
.page-id-12679 .c-page_head_title_business h1::after,
.page-id-12678 .c-page_head_title_business h1::after,
.page-id-12677 .c-page_head_title_business h1::after {
  content: "CONSUMER MD";
  font-size: .4em;
  font-weight: 500;
}

.page-id-4340 .c-business_intro_lead h2 {
  width: auto;
}

.p-cm_feature,
.p-cm_item,
.p-cm_laut {
  padding-top: 0;
}

.p-cm_feature h2,
.p-cm_item h2,
.p-cm_laut h2 {
  font-size: 2.4rem;
  color: var(--main-color);
  line-height: 1.6;
}

.p-cm_2column p,
.p_cm_item_content>p {
  margin-top: 8px;
}

.p-cm_2column {
  display: grid;
}

.p-cm_2column:nth-of-type(2) {
  margin-top: 64px;
}

.p-cm_2column figure {
  order: 2;
  margin-top: 32px;
}

.p-cm_item_content {
  margin-top: 40px;
}

.p-cm_item_content_grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.p-cm_item_content_grid>div {
  width: 100%;
  background-color: var(--font-color-sub);
  padding: 40px 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 16px;
  box-shadow: 2px 2px 6px 0px rgba(51, 51, 51, 0.2);
}

.p-cm_item_content_grid_en>div {
  grid-row: span 2;
}


.p-cm_item_content_grid>div:first-of-type {
  margin-top: 0;
}

.p-cm_item_content_grid>div figure {
  width: 80%;
  margin: 0 auto 10px;
}

.p-cm_item_content_grid>div h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 600;
}

.p-cm_item_content_grid>div .p-wp_button {
  width: 72%;
}

.p_cm_item_content>div:last-of-type {
  margin-top: 64px;
}

.p-cm_laut .p-wp_button {
  width: 80%;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {


  .p-cm_feature h2,
  .p-cm_item h2,
  .p-cm_laut h2 {
    text-align: center;
  }

  .p-cm_2column p,
  .p_cm_item_content>p {
    margin-top: 16px;
    text-align: center;
  }

  .p-cm_2column:nth-of-type(2) {
    margin-top: 80px;
  }

  .p-cm_2column figure {
    margin-top: 40px;
  }

  .p-cm_item_content_grid {
    grid-template-columns: 30% 30% 30%;
    gap: 32px 5%;
    margin-top: 40px;
  }

  .p-cm_item_content_grid>div {
    padding: 32px 16px;
    gap: 10px;
  }

  .p-cm_item_content_grid>div figure {
    width: 90%;
    margin: 0 auto;
  }

  .p-cm_item_content_grid>div .p-wp_button {
    width: 100%;
  }

  .p_cm_item_content>div:last-of-type {
    margin-top: 80px;
  }

  .p_cm_item_content>div:last-of-type .p-wp_button {
    width: 72%;
    margin: 0 auto;
  }

  .p-cm_laut .p-wp_button {
    width: 40%;
  }
}


@media screen and (min-width: 960px) {

  .p-cm_feature h2,
  .p-cm_item h2,
  .p-cm_laut h2 {
    font-size: 3.2rem;
  }

  .p-cm_2column p,
  .p_cm_item_content>p {
    margin-top: 24px;
  }

  .p-cm_2column {
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: center;
  }

  .p-cm_2column figure {
    order: 0;
    margin-top: 0;
  }

  .p-cm_2column p,
  .p-cm_2column h2 {
    text-align: left;
  }

  .p-cm_2column:nth-of-type(2) {
    margin-top: 100px;
  }

  .p-cm_item_content_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 56px;
    gap: 40px 5%;
  }

  .p_cm_item_content>div:last-of-type {
    margin-top: 100px;
  }

  .p_cm_item_content>div:last-of-type .p-wp_button {
    width: 50%;
  }

  .p_cm_item_content>div:last-of-type .p-wp_button a {
    padding: 8px;
  }

  .p-cm_laut .p-wp_button {
    width: 50%;
    margin: 40px 0 0 0 !important;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  コンシューマMD CM事業 ここまで
------------------------------------------------------------- */


/*  その他事業 ペット Eコマース ここから
------------------------------------------------------------- */

.page-id-4392 .c-business_page .l-page_head,
.page-id-12703 .c-business_page .l-page_head,
.page-id-12702 .c-business_page .l-page_head,
.page-id-12701 .c-business_page .l-page_head,
.page-id-12700 .c-business_page .l-page_head {
  background-image: url(./../images/others-tittle_bg.jpg);
  background-position: center 10%;
}

.page-id-4392 .c-page_head_title_business img,
.page-id-12703 .c-page_head_title_business img,
.page-id-12702 .c-page_head_title_business img,
.page-id-12701 .c-page_head_title_business img,
.page-id-12700 .c-page_head_title_business img {
  display: none;
}

.page-id-4392 .c-page_head_title_business h1::after,
.page-id-12703 .c-page_head_title_business h1::after,
.page-id-12702 .c-page_head_title_business h1::after,
.page-id-12701 .c-page_head_title_business h1::after,
.page-id-12700 .c-page_head_title_business h1::after {
  content: "PET & E-commerce";
  font-size: .4em;
  font-weight: 500;
}

.page-id-4392 .c-business_intro_lead h2 {
  width: auto;
}

.p-others_pet,
.p-others_ec {
  padding-top: 0;
}

.p-others_pet h2,
.p-others_pet_content_shop h2,
.p-others_ec h2 {
  font-size: 2.4rem;
  color: var(--main-color);
  line-height: 1.6;
}

.p-others_pet_content,
.p-others_pet_content_lineup,
.p-others_ec_content,
.p-others_ec_content_shop,
.p-others_ec_content_shop>div {
  margin-top: 32px;
}

.p-others_pet div>p,
.p-others_pet_content_shop div>p,
.p-others_ec div>p {
  margin-top: 8px;
}

.p-others_pet_content>div,
.p-others_ec_content>div {
  margin-top: 64px;
}

.p-others_pet_content>div:first-of-type,
.p-others_ec_content>div:first-of-type {
  margin-top: 0;
}

.p-others_pet h3,
.p-others_ec h3 {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 600;
}

.p-others_pet h4,
.p-others_ec h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-others_pet .p-wp_button {
  margin-top: 24px;
  width: 95%;
}

.p-others_2column {
  margin-top: 64px;
  display: grid;
  gap: 16px;
}

.p-others_2column div {
  width: 100%;
}


@media screen and (min-width: 768px) {

  .p-others_pet h2,
  .p-others_pet_content_shop h2,
  .p-others_ec h2 {
    text-align: center;
  }

  .p-others_pet_content,
  .p-others_pet_content_lineup,
  .p-others_ec_content,
  .p-others_ec_content_shop,
  .p-others_ec_content_shop>div {
    margin-top: 64px;
  }

  .p-others_pet div>p,
  .p-others_pet_content_shop div>p,
  .p-others_ec div>p {
    margin-top: 16px;
  }

  .p-others_pet div>p,
  .p-others_ec div>p,
  .p-others_pet h3,
  .p-others_ec h3 {
    text-align: center;
  }

  .p-others_pet_content>div,
  .p-others_ec_content>div {
    margin-top: 72px;
  }

  .p-others_2column {
    grid-template-columns: 45% 45%;
    gap: 10%;
    align-items: center;
  }

  .p-others_2column figure {
    margin-top: 0;
  }

  .p-others_2column div p:first-of-type {
    text-align: left;
  }

  .p-others_pet .p-wp_button {
    margin: 32px auto 0 0 !important;
  }

  .p-others_2column .p-wp_button a {
    width: 80%;
    font-size: 1.4rem;
    padding: 4px;
  }

  .p-others_ec_content_item>div {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
    margin-top: 40px;
    text-align: center;
    background-color: var(--font-color-sub);
    padding: 40px 24px;
  }

}


@media screen and (min-width: 960px) {

  .p-others_pet h2,
  .p-others_pet_content_shop h2,
  .p-others_ec h2 {
    font-size: 3.2rem;
  }

  .p-others_pet_content,
  .p-others_pet_content_lineup,
  .p-others_ec_content,
  .p-others_ec_content_shop,
  .p-others_ec_content_shop>div {
    margin-top: 80px;
  }

  .p-others_pet h3,
  .p-others_ec h3 {
    font-size: 2.4rem;
  }

  .p-others_pet h4,
  .p-others_ec h4 {
    font-size: 2rem;
    line-height: 1.6;
  }

  .p-others_pet div>p,
  .p-others_pet_content_shop div>p,
  .p-others_ec div>p {
    margin-top: 24px;
  }

  .p-others_pet_content>div,
  .p-others_ec_content>div {
    margin-top: 100px;
  }

  .p-others_2column {
    margin-top: 100px;
  }

  .p-others_pet div .p-others_2column p {
    margin-top: 16px;
  }

}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  その他事業 ペット Eコマース ここまで
------------------------------------------------------------- */


/*  事業紹介ページ ここから
------------------------------------------------------------- */

.page-id-12022 .l-wp_template .l-page_head,
.page-id-12503 .l-wp_template .l-page_head,
.page-id-12500 .l-wp_template .l-page_head,
.page-id-12501 .l-wp_template .l-page_head,
.page-id-12502 .l-wp_template .l-page_head {
  background-image: url(./../images/business-title_bg.jpg);
  background-position: center 80%;
}

.p-business_intro,
.p-business_content {
  padding-bottom: 0;
}

.p-business_intro h2 {
  color: var(--main-color);
}

.p-business_intro p {
  margin-top: 24px;
  text-align: center;
}

.p-business_content h2 {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  color: var(--main-color);
}

.p-business_content h2 span {
  font-size: .8em;
}

.p-business_content_lists {
  margin-top: 56px;
}

.p-business_content_lists h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  color: var(--main-color);
}

.p-business_content_list {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

.p-business_content_list:first-of-type {
  margin-top: 0;
}

.p-business_content .p-wp_button,
.p-business_cta .p-wp_button {
  margin-top: 24px;
  width: 85%;
}

.p-business_content .p-wp_button a,
.p-business_cta .p-wp_button a {
  color: var(--font-color-sub);
  font-size: 1.4rem;
  padding: 4px 8px;
}

.p-business_content .p-wp_button a:hover,
.p-business_cta .p-wp_button a:hover {
  color: var(--main-color);
  opacity: 1;
}

.p-business_cta h2 {
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 768px) {

  .p-business_content h2,
  .p-business_intro h2 {
    font-size: 2.4rem;
  }

  .p-business_intro p {
    margin-top: 32px;
  }

  .p-business_content_lists {
    margin-top: 64px;
  }

  .p-business_content_lists h3 {
    font-size: 2rem;
    text-align: left;
    border-left: 10px solid var(--main-color);
    padding-left: 1em;
    margin-bottom: 16px;
  }

  .p-business_content_list {
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
    margin-top: 80px;
  }

  .p-business_content_list:nth-of-type(2n) {
    grid-template-columns: 50% 45%;
  }

  .p-business_content_list:nth-of-type(2n) figure {
    order: 1;
  }

  .p-business_content .p-wp_button {
    margin: 40px auto 0 0 !important;
  }

  .p-business_cta .p-wp_button {
    width: 60%;
    margin-top: 40px;
  }
}


@media screen and (min-width: 960px) {

  .p-business_content h2,
  .p-business_intro h2 {
    font-size: 3.2rem;
    line-height: 1.8;
  }

  .p-business_intro p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 56px;
  }

  .p-business_content_lists {
    margin-top: 100px;
  }

  .p-business_content_list {
    margin-top: 140px;
    grid-template-columns: 42% 50%;
    gap: 8%;
  }

  .p-business_content_list:nth-of-type(2n) {
    grid-template-columns: 50% 42%;
  }

  .p-business_content_lists h3 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    padding-left: .8em;
  }

  .p-business_content .p-wp_button {
    width: 60%;
  }

  .p-business_content .p-wp_button a,
  .p-business_cta .p-wp_button a {
    font-size: 1.6rem;
  }

  .p-business_cta h2 {
    font-size: 2rem;
    line-height: 1.8;
  }

  .p-business_cta .p-wp_button {
    width: 50%;
    margin-top: 64px;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  事業紹介ページ ここまで
------------------------------------------------------------- */


/*  企業情報ページ ここから
------------------------------------------------------------- */

.p-company_intro,
.p-company_content {
  padding-bottom: 0;
}

.p-company_intro h2 {
  color: var(--main-color);
}

.p-company_intro p {
  margin-top: 24px;
  text-align: center;
}

.p-company_content h2 {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
  color: var(--main-color);
}

.p-company_content h2 span {
  font-size: .8em;
}

.p-company_content_lists {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}

.p-company_content_list {
  background-color: var(--font-color-sub);
  padding: 24px;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 16px;
  border: 1px solid var(--font-color-sub);
  transition: .5s;
}

.p-company_content_list a {
  display: block;
}

.p-company_content_list:hover {
  border: 1px solid var(--font-color-main);
}

.p-company_content_list p {
  font-weight: 500;
}

.p-company_content_list .c-arrow_right {
  width: .6em;
  height: .6em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin-left: 10px;
  margin-bottom: 4px;
}


@media screen and (min-width: 768px) {

  .p-company_content h2,
  .p-company_intro h2 {
    font-size: 2.4rem;
  }

  .p-company_intro p {
    margin-top: 32px;
  }

  .p-company_content_lists {
    margin-top: 64px;
    grid-template-columns: 32% 32% 32%;
    gap: 24px 2%;
  }

  .p-company_content_lists h3 {
    font-size: 2rem;
  }
}


@media screen and (min-width: 960px) {

  .p-company_content h2,
  .p-company_intro h2 {
    font-size: 3.2rem;
    line-height: 1.8;
  }

  .p-company_intro p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 56px;
  }

  .p-company_content_lists {
    margin-top: 100px;
    grid-template-columns: 30% 30% 30%;
    gap: 80px 5%;
  }

  .p-company_content_lists h3 {
    font-size: 2.4rem;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  企業情報ページ ここまで
------------------------------------------------------------- */


/*  404ページ ここから
------------------------------------------------------------- */
.p-error>p {
  text-align: center;
}

.p-error>p:first-of-type {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.p-error>p a {
  font-weight: 600;
}

.p-error>p a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .p-error>p:first-of-type {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 32px;
  }

  .p-error>p:nth-of-type(2) {
    font-size: 2rem;
  }
}

@media screen and (min-width: 960px) {
  .p-error>p:first-of-type {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .p-error>p:nth-of-type(2) {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  404ページ ここまで
------------------------------------------------------------- */

/*  サスティナビリティ ページ ここから
------------------------------------------------------------- */

.page-id-14635 .l-bg_fix,
.page-id-14670 .l-bg_fix,
.page-id-14671 .l-bg_fix,
.page-id-14672 .l-bg_fix,
.page-id-14673 .l-bg_fix {
  background-image: url(./../images/sdgs_bg_all.jpg) !important;
}

.page-id-14635 .l-wp_template .l-page_head,
.page-id-14670 .l-wp_template .l-page_head,
.page-id-14671 .l-wp_template .l-page_head,
.page-id-14672 .l-wp_template .l-page_head,
.page-id-14673 .l-wp_template .l-page_head {
  background-image: url(./../images/sdgs_head_bg_sp.jpg);
}

@media screen and (min-width: 960px) {

  .page-id-14635 .l-wp_template .l-page_head,
  .page-id-14670 .l-wp_template .l-page_head,
  .page-id-14671 .l-wp_template .l-page_head,
  .page-id-14672 .l-wp_template .l-page_head,
  .page-id-14673 .l-wp_template .l-page_head {
    background-image: url(./../images/sdgs_head_bg.jpg);
  }
}

.p-sustainability h2 {
  color: var(--sdgs-main-color);
}

.p-sustainability_content {
  margin-top: 40px;
  display: grid;
  gap: 80px;
}

.p-sustainability_content>div {
  background-color: var(--font-color-sub);
  border: 1px solid var(--font-color-sub);
  padding: 32px;
  transition: .5s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 16px;
}

.p-sustainability_content>div figure {
  margin: 0;
}

.p-sustainability_content>div:hover {
  border: 1px solid var(--font-color-main);
}

.p-sustainability_content>div p {
  font-weight: 500;
  text-align: center;
}

.p-sustainability_content>div .c-arrow_right {
  width: .6em;
  height: .6em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin-left: 10px;
  margin-bottom: 4px;
}

@media screen and (min-width: 768px) {
  .p-sustainability_content {
    margin-top: 80px;
    grid-template-columns: 45% 45%;
    gap: 10%;
  }
}

@media screen and (min-width: 960px) {
  .p-sustainability_content {
    width: 90%;
    margin: 100px auto 0;
    grid-template-columns: 45% 45%;
    gap: 10%;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  ここまで
------------------------------------------------------------- */


/*  csr活動実績 ページ ここから
------------------------------------------------------------- */

.p-activity .l-page_head {
  background-image: url(./../images/sdgs_head_bg_sp.jpg);
}

@media screen and (min-width: 960px) {

  .p-activity .l-page_head {
    background-image: url(./../images/sdgs_head_bg.jpg);
  }
}

.p-activity_catch {
  padding-bottom: 0;
}

.p-activity .p-wp_template_catch {
  text-align: center;
  color: var(--sdgs-main-color);
}

.p-activity .p-news_sidebar_content ul li a {
  color: var(--sdgs-main-color);
}

.p-activity .p-news_sidebar_content ul li::before {
  background-color: var(--sdgs-main-color);
}

.p-activity .p-product_grid .p-product_link {
  grid-row: span 4;
}

.p-activity .p-product_box {
  grid-row: span 4;
}

.p-activity .p-article_post_content_date,
.p-activity_inner .p-article_post_content_date {
  color: var(--sdgs-main-color);
}

.p-activity .c-arrow_circle_right {
  color: var(--sdgs-main-color);
}

.p-activity_inner .c-btn {
  background-color: var(--sdgs-main-color);
  border: 1px solid var(--sdgs-main-color);
}

.p-activity_inner .c-btn:hover {
  background-color: var(--main-color-pale);
  color: var(--sdgs-main-color) !important;
}

.p-product_sidebar ul li ul li::before {
  content: "";
  display: inline-block;
  background-color: var(--main-color-pale);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.p-product_sidebar ul li ul li {
  padding-left: 1em;
}

.p-csr_link {
  margin-top: 100px;
}

.p-csr_link p {
  width: 80%;
  margin: 0 auto;
}

.p-csr_link p a {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-csr_link p {
    width: 50%;
  }
}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  csr活動実績 ページ ここまで
------------------------------------------------------------- */


/*  プライバシーポリシー ページ ここから
------------------------------------------------------------- */

.p-privacy h2 {
  font-size: 2rem;
}

.p-privacy ul {
  padding-left: 1.5em;
}

.p-privacy ul li {
  list-style-type: decimal;
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  プライバシーポリシー ページ ここまで
------------------------------------------------------------- */


/*  サイトマップ ページ ここから
------------------------------------------------------------- */

.wsp-container {
  text-align: left;
}

.wsp-container li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.wsp-container>ul>li {
  margin-top: 16px;
}

.wsp-container>ul>li:first-of-type {
  margin-top: 0;
}

.p-sitemap ul li {
  list-style-type: disc;
}

.p-sitemap ul li ul {
  padding-left: 1.5em;
}

.p-sitemap ul li ul li {
  list-style-type: circle;
  margin-top: 8px;
}

.wsp-pages-list {
  margin-top: 40px;
  background-color: var(--font-color-sub);
  padding: 40px 0 40px calc(40px + 1em);
}

@media screen and (min-width: 768px) {
  .wsp-pages-list {
    margin-top: 80px;
    padding: 80px 0 80px calc(80px + 1em);
  }
}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  サイトマップ ページ ここまで
------------------------------------------------------------- */


/*  LP テンプレート ここから
------------------------------------------------------------- */

/* ヘッダー */

.p-lp_header {
  text-align: center;
}

.p-lp_header .c-btn {
  margin: 0 auto;
}

.p-lp_header .nav-items__item:nth-of-type(6) {
  margin-top: 40px;
}

.p-lp_header .nav-items__item:nth-of-type(6) .nav-items__item_link {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.p-lp_header .nav-items__item:nth-of-type(6) .nav-items__item_link:hover {
  background-color: var(--font-color-sub);
  border: 1px solid var(--main-color);
}

/* フッター */

.p-lp_footer {
  background-color: var(--main-color);
  color: var(--font-color-sub);
  font-size: 1.6rem;
  padding: 80px 16px;
  text-align: center;
}

.p-lp_footer div figure {
  width: 32%;
  margin: 0 auto 32px;
}

.p-lp_footer div p:first-of-type {
  margin-bottom: 24px;
}

/* 中身 */

.p-lp {
  margin: 80px 0;
  padding: 40px 16px;
  line-height: 1.8;
}

.p-lp figure {
  margin: 0;
}

/* ファーストビュー fv */

.p-lp_fv {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}

.p-lp_fv>div {
  margin: 0 !important;
}

.p-lp_fv h1 {
  font-size: 2.4rem;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--font-color-sub);
  display: inline-block;
  padding: 4px 1rem;
  background-color: var(--main-color);
}

.p-lp_fv_text p:first-of-type {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
}

.p-lp_fv_text p:last-of-type {
  font-size: 1.4rem;
}

.p-lp_fv_text figure {
  width: 40%;
  margin: 40px auto 32px;
}

.p-lp_fv_form p:last-of-type {
  margin-top: 32px;
}

.p-lp .lp-btn_gray {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.p-lp .lp-btn_gray:hover {
  background-color: var(--font-color-sub);
}


/* 共通記述 */

.lp-section {
  padding: 40px 0;
}

.lp-section h2 {
  font-size: 2rem;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 40px;
}

/* 課題 */

.p-lp_problem_ex {
  display: grid;
  gap: 40px;
}

.p-lp_problem_ex>div {
  text-align: center;
}

.p-lp_problem_ex>div p {
  margin-top: 16px;
}

.p-lp .p-lp_problem_answer {
  position: relative;
  margin: 40px calc(50% - 50vw) 0 calc(50% - 50vw) !important;
  width: 100vw;
  background-color: var(--main-color-pale);
  padding: 24px 16px 0;
  text-align: center;
  line-height: 2;
  font-weight: 600;
}

.p-lp .p-lp_problem_answer::after {
  content: "";
  position: absolute;
  top: 100%;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 50px solid var(--main-color-pale);
  left: 0;
}

/* 特徴 */

.p-lp_feature {
  padding-top: 50px;
}

.p-lp_feature_content {
  display: grid;
  gap: 40px;
}

.p-lp_feature_content>div div {
  margin-top: 16px;
}

.p-lp_feature_content>div p:first-of-type {
  font-size: 2.4rem;
  color: var(--main-color);
  font-weight: 600;
}

.p-lp_feature_content h3 {
  font-size: 2.4rem;
  margin-top: 4px;
}

.p-lp_feature_content>div p:last-of-type {
  margin-top: 10px;
}

/* サービス */

.p-lp_service_content {
  display: grid;
  gap: 40px;
}

.p-lp_service_content>div {
  display: grid;
  gap: 24px;
}

.p-lp_service_content>div figure {
  width: 60%;
  margin: 0 auto;
}

.p-lp_service_content>div h3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

.p-lp_service_content>div p {
  font-size: 1.4rem;
  margin-top: 8px;
}

/* 導入事例 */

.p-lp_case_content>div {
  margin-top: 20px;
}

.p-lp_case_content>div:first-of-type {
  margin-top: 0;
}

.p-lp_case_content>div h3 {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.p-lp_case_content>div:first-of-type p:nth-of-type(2) {
  margin-top: 8px;
  font-weight: 600;
}

.p-lp_case_content>div h4 {
  color: var(--main-color);
  font-size: 1.6rem;
  position: relative;
  padding-left: 30px;
}

.p-lp_case_content>div h4::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 0;

}

.p-lp_case_content div ul {
  margin-top: 8px;
}

.p-lp_case_content div ul li {
  list-style-type: disc;
  margin-left: 2rem;
}

.p-lp_case_content div:last-of-type p {
  margin-top: 8px;
}

/* 資料請求 */

.p-lp_download_content p {
  text-align: center;
}

.p-lp_download_content>figure {
  margin-top: 32px;
}

.p-lp_download_content h3 {
  margin-top: 24px;
}

.p-lp_download_content ul {
  margin-top: 16px;
}

.p-lp_download_content ul li {
  position: relative;
  padding-left: 1.5em;
  margin-top: 8px;
  font-size: 1.4rem;
}

.p-lp_download_content ul li:first-of-type {
  margin-top: 0;
}

.p-lp_download_content ul li:after {
  content: "";
  background-image: url(./../images/check_icon.svg);
  height: 1em;
  width: 1em;
  position: absolute;
  left: 0;
  top: .5em;
}

.p-lp_download_form {
  margin-top: 40px;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {

  .p-lp {
    padding: 80px 32px;
  }

  .p-lp_fv {
    gap: 64px;
    padding-bottom: 80px;
  }

  .p-lp_fv_text {
    text-align: center;
  }

  .p-lp_fv_text figure {
    width: 24%;
    margin: 64px auto;
  }

  .p-lp_fv_text p:first-of-type {
    font-size: 2.4rem;
  }

  .p-lp_fv_text p:last-of-type {
    font-size: 1.8rem;
  }

  .p-lp_fv h1 {
    font-size: 4rem;
    margin-top: 40px;
    padding: 8px 24px;
  }

  .p-lp_fv_form {
    display: flex;
    justify-content: center;
    gap: 5%;
  }

  .p-lp_fv_form>p {
    margin: 0 !important;
    width: 40%;
    font-size: 1.8rem;
  }

  .lp-section {
    padding: 80px 0;
  }

  .lp-section h2 {
    font-size: 3.2rem;
    margin-bottom: 80px;
  }

  .p-lp_problem_ex {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 2%;
  }

  .p-lp .p-lp_problem_answer {
    margin-top: 64px !important;
    font-size: 2rem;
    padding-top: 40px;
  }

  .p-lp .p-lp_problem_answer::after {
    border-top: 80px solid var(--main-color-pale);
    top: 99%;
  }

  .p-lp_feature_content {
    gap: 80px;
  }

  .p-lp_feature_content>div {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: center;
  }

  .p-lp_feature_content>div div {
    margin-top: 0;
  }

  .p-lp_feature_content>div p:first-of-type {
    font-size: 3.2rem;
  }

  .p-lp_service_content {
    grid-template-columns: 32% 32% 32%;
    gap: 2%;
  }

  .p-lp_service_content>div {
    gap: 40px;
  }

  .p-lp_service_content>div figure {
    width: 90%;
  }

  .p-lp_service_content>div>div {
    padding: 0 4px;
  }

  .p-lp_case_content>div h3 {
    font-size: 3rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .p-lp_case_content>div:first-of-type p {
    font-size: 2.4rem;
  }

  .p-lp_case_content>div {
    margin-top: 40px;
  }

  .p-lp_case_content>div h4 {
    font-size: 1.8rem;
  }

  .p-lp_download_content p {
    font-size: 2.4rem;
  }

  .p-lp_download_content>figure {
    margin: 64px auto 0;
    width: 80%;
  }

  .p-lp_download_content h3 {
    margin-top: 64px;
    text-align: center;
    font-size: 2rem;
  }

  .p-lp_download_content ul {
    text-align: center;
    margin-top: 32px;
  }

  .p-lp_download_content ul li {
    font-size: 1.8rem;
  }

  .p-lp_download_content ul li:after {
    left: calc(50% - 13em);
  }

  .p-lp_download_form {
    margin-top: 80px;
  }

  .p-lp_download_form .c-btn,
  .p-lp_cta .c-btn {
    width: 64%;
    margin: 0 auto;
  }

  .p-lp_footer div figure {
    width: 16%;
    margin: 0 auto 40px;
  }
}


@media screen and (min-width: 960px) {

  .lp-section {
    padding: 160px 0;
  }

  .lp-section h2 {
    margin-bottom: 160px;
    font-size: 4rem;
  }

  .p-lp {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    margin-top: 100px;
  }

  .p-lp_fv {
    padding-bottom: 100px;
  }

  .p-lp_fv h1 {
    font-size: 5.6rem;
  }

  .p-lp_fv_text p:first-of-type {
    font-size: 3.2rem;
  }

  .p-lp_fv_text figure {
    width: 14%;
  }

  .p-lp_fv .p-lp_fv_form {
    width: 80%;
    margin: 0 auto !important;
  }

  .p-lp_problem_ex {
    grid-template-columns: 30% 30% 30%;
    gap: 5%;
  }

  .p-lp_problem_ex>div p {
    margin-top: 32px;
  }

  .p-lp .p-lp_problem_answer {
    margin: 100px calc(50% - 50vw) 0 calc(50% - 50vw) !important;
    padding-top: 50px;
    font-size: 2.4rem;
  }

  .p-lp .p-lp_problem_answer::after {
    top: 100%;
  }

  .p-lp_feature_content {
    gap: 100px;
  }

  .p-lp_feature_content>div {
    grid-template-columns: 30% 65%;
  }

  .p-lp_case_content>div h3 {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .p-lp_case_content div ul li {
    margin-top: 8px;
  }

  .p-lp_download_content p {
    font-weight: 600;
  }

  .p-lp_download_content h3 {
    font-size: 2.4rem;
  }

  .p-lp_download_content ul li {
    font-size: 2rem;
    margin-top: 8px;
  }
}


@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  LP テンプレート ここまで
------------------------------------------------------------- */

/*  新規事業ページ ここから
------------------------------------------------------------- */
.page-id-15438 .c-page_head_title_business img {
  display: none;
}

.page-id-15438 .c-business_page .l-page_head {
  background-image: url(../images/el-title_bg.jpg);
  background-position: 50%;
}

.page-id-15438 .c-page_head_title_business img {
  display: none;
}

.page-id-15438 .c-page_head_title_business h1::after {
  content: "NEW ELECTROINCS";
  font-size: .4em;
  font-weight: 500;
}


@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  新規事業ページ ここまで
------------------------------------------------------------- */

/* WP 固定ページ 追加記述 ここまで------------------------------------------------------------- */


/*  ここから
------------------------------------------------------------- */

@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1700px) {}

/*  ここまで
------------------------------------------------------------- */

/* top 以外 ここまで
------------------------------------------------------------- */