@charset "UTF-8";

/*
Theme Name: itsuwaUSA-theme
Theme URI: https://itsuwausainc.com/
Description: ITSUWA USA.,Inc.のテーマです。
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;
  font-size: 62.5%; /* -> 10px */
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

.wrapper {
  width: 100%;
  font-family: "Roboto", 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: left;
}

img {
  width: 100%;
}

figure img {
  vertical-align: bottom;
}
 
a {
  transition: .5s;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
}

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 {
  color: var(--font-color-sub);
  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 {
  color: var(--main-color);
  background: var(--font-color-sub);
  cursor: pointer;
}

.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-contact_area {
  padding: 80px 0 100px;
}

.c-contact_area h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}


@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-contact_area {
    padding: 100px 0;
  }

  .c-contact_area h2 {
    margin-bottom: 40px;
  }

  .c-contact_area p {
    width: 40%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .c-sp_none {
    display: block;
  }

  .c-tb_none {
    display: block;
  }

  .c-pc_none {
    display: none;
  }

  .c-contact_area {
    padding: 124px 0;
  }

  .c-contact_area h2 {
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .c-contact_area {
    padding: 160px 0;
  }
}

/* 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 160px 0 0;
  }
}

/* ナビのリンク */

.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;
  color: var(--font-color-sub);
}

.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 40px;
  }
}

@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);
}

/* ヘッダー ここまで
---------------------------------- */


/* フッター ここから
---------------------------------- */

.l-footer {
  width: 100%;
  background-color: var(--main-color);
  color: var(--font-color-sub);
  display: grid;
  padding: 100px 0;
  gap: 80px;
}

.l-footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.l-footer ul li a {
  color: var(--font-color-sub);
  text-decoration: none;
  font-weight: 600;
}

.l-footer ul li a:hover {
  text-decoration: underline;
}

.l-footer div {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.l-footer div figure {
  width: 100px;
  margin: 0 auto;
}

.l-footer div p {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 160px 0;
  }
}

@media screen and (min-width: 960px) {

  .l-footer div figure {
    width: 124px;
  }
}

@media screen and (min-width: 1200px) {
}

/* フッター ここまで
---------------------------------- */


/* 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);
  position: relative;
}

@media screen and (min-width: 768px){
  .l-bg_opacity {
    margin: 0;
    width: 100%;
  }
}


/* メイン section レイアウト */

/* セクション間の上下余白80px　sp */

.l-top {
  margin-top: 80px; /* ヘッダー分 */
  padding: 0 16px;
}

.l-top_padding {
  padding: 80px 16px;
}

@media screen and (min-width: 768px)  {

  .l-top {
    padding: 0;
  }

  .l-top_padding {
    padding: 100px 0;
    width: 80%;
  }
}

@media screen and (min-width: 960px) {
  .l-top {
    margin-top: 100px;
  }

  .l-top_padding {
    padding: 160px 0;
    max-width: 940px;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .l-top_padding {
    max-width: 1000px;
  }
}

/* intro */

.p-top_intro {
  height: 40vh;
  padding-top: 40px;
}

.p-top_intro h1 {
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .4rem;
}

.p-top_intro h1 span span {
  font-size: 2rem;
  font-weight: 500;
}

.p-top_intro p {
  color: var(--accent-color-pale);
  letter-spacing: normal;
  padding-left: 4px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .p-top_intro {
    height: 36vh;
    padding-top: 80px;
    max-width: 700px;
    width: 100%;
    margin: 0 0 0 auto;
  }

  .p-top_intro h1 {
    font-size: 4.4rem;
  }

  .p-top_intro h1 span span {
    font-size: 2.4rem;
  }

  .p-top_intro p {
    font-size: 2rem;
    margin-top: 16px;
  }
}

@media screen and (min-width: 960px) {

  .p-top_intro {
    height: 50vh;
    max-width: 940px;
    margin-top: 100px;
    padding-top: 100px;
  }

  .p-top_intro h1 {
    font-size: 7.2rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: .4rem;
  }

  .p-top_intro h1 span span {
    font-size: 3.2rem;
  }

  .p-top_intro p {
    font-size: 2rem;
    padding-left: 8px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .p-top_intro {
    height: 64vh;
    max-width: 1200px;
  }
}

@media screen and (min-width: 1700px) {
  .p-top_intro {
    max-width: 1500px;
  }
}

/* about */

.p-top_about {
  margin-top: 0;
  background-color: var(--main-color);
  color: var(--font-color-sub);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 80px 16px;
}

.p-top_about .c-section_title {
  text-align: left;
}

.p-top_about_exp {
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.p-top_about_exp .c-btn {
  background-color: var(--font-color-sub);
  border: 1px solid var(--font-color-sub);
  color: var(--main-color);
}

.p-top_about_exp .c-btn:hover {
  background-color: var(--main-color);
  color: var(--font-color-sub);
}

.p-top_about_exp .c-btn .c-arrow_right {
  color: var(--main-color);
}

.p-top_about_exp .c-btn:hover .c-arrow_right {
  color: var(--font-color-sub);
}

.p-top_about_exp p {
  margin-top: 30px;
}

.p-top_about_exp a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top_about_exp a .c-arrow_right:hover {
  color: var(--main-color);
}


@media screen and (min-width: 768px) {

  .p-top_about {
    margin-top: 0;
    padding: 100px 0;
  }

  .p-top_about .p-top_about_exp {
     max-width: 700px;
     width: 100%;
     margin: 0 0 0 auto !important;
     padding-right: 32px;
     grid-template-columns: 55% 40%;
      gap: 5%;
      align-items: center;
  }

  .p-top_about_exp p {
    margin-top: 40px;
  }

  .p-top_about_exp .c-btn {
    width: 300px;
    margin: 64px auto 0;
  }
}

@media screen and (min-width: 960px) {

  .p-top_about {
    padding: 160px 0;
  }

  .p-top_about .p-top_about_exp {
    max-width: 940px;
    grid-template-columns: 58% 34%;
    gap: 8%;
  }

  .p-top_about_exp p {
    font-size: 1.8rem;
    margin: 40px 0 0;
  }

  .p-top_about_exp a {
    width: 400px;
    margin: 0;
  }

  .p-top_about_exp_image {
    width: 100%;
    margin: -20px auto 0;
  }
}

@media screen and (min-width: 1200px) {
  .p-top_about .p-top_about_exp {
    max-width: 1200px;
    grid-template-columns: 60% 32%;
    padding-right: 80px;
  }

  .p-top_about_exp p {
    margin: 80px 0 0
  }

  .p-top_about_exp .c-btn {
    margin:  80px 0 0;
  }
}

@media screen and (min-width: 1700px) {
  .p-top_about .p-top_about_exp {
    max-width: 1500px;
    padding-right: 200px;
  }
}


/* products */

.p-top_products {
  background-color: rgb(235, 239, 245, .8);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.p-top_products .c-section_title {
  color: var(--main-color);
}

.p-top_products_contents {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.p-top_products_content {
  background-color: var(--font-color-sub);
  text-align: center;
  width: 90%;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 40px;
  padding: 0 0 40px;
}

.p-top_products_content figure {
  width: 100%;
  margin: 0 auto;
}

.p-top_products_content figure img {
  object-fit: contain;
}

.p-top_products_content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}

.p-top_products_content p:last-of-type {
  width: 80%;
  margin: 0 auto;
}

.p-top_products_content .c-btn {
  position: relative;
  width: 100%;
  display: block;
}

.p-top_products_content .c-btn .c-arrow_right {
  color: var(--font-color-sub);
  width: .6em;
  height: .6em;
  position: absolute;
  top: calc(50% - .3em);
  right: 3.2rem;
}

.p-top_products_content .c-btn:hover .c-arrow_right {
  color: var(--main-color);
}

.p-top_products_link {
  margin-top: 72px;
}

@media screen and (min-width: 768px) {

  .p-top_products_contents {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 46% 46%;
    gap: 64px 8%;
  }

  .p-top_products_content {
    width: 100%;
  }

  .p-top_products_content h3 {
    font-weight: 800;
  }

  .p-top_products_link {
    margin: 80px auto 0;
    width: 60%;
  }
}

@media screen and (min-width: 960px) {

  .p-top_products_contents {
    margin-top: 100px;
    grid-template-columns: 30% 30% 30%;
    gap: 64px 5%;
  }

  .p-top_products_content p {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .p-top_products_link {
    margin: 100px auto 0;
    width: 40%;
  }
}

@media screen and (min-width: 1200px) {

  .p-top_products_contents {
    gap: 80px 5%;
  }
}

@media screen and (min-width: 1700px) {}


/* download */

.p-top_download .c-section_title {
  color: var(--main-color);
}

.p-top_download ul {
  margin-top: 40px;
}

.p-top_download ul li {
  margin-top: 24px;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 16px 0;
}

.p-top_download ul li .c-arrow_circle_right {
  margin-right: 1em;
}

.p-top_download ul li a {
  text-decoration: none;
  color: var(--main-color);
}

.p-top_download ul li a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 960px) {
  .p-top_download ul {
    width: 80%;
    margin: 80px auto 0;
  }
}

@media screen and (min-width: 1200px) {
  .p-top_download ul {
    width: 70%;
    margin: 100px auto 0;
  }
}

@media screen and (min-width: 1700px) {
  .p-top_download ul {
    width: 65%;
  }
}


/* メイン ここまで
---------------------------------- */

/* 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;
}

/* フッターの上だけ余白多く */

.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;
  }

  
.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;
  }

  
.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-color: rgb(44, 98, 174, .8);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80%;
}

.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_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-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-86 .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 figure {
  margin-bottom: 0;
}

.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.6;
  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;
  }

  .p-about_next_ex_item {
    margin-top: 0;
    width: 220px;
  }

  .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: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 ここまで
------------------------------------------------------------- */


/* partner ここから
------------------------------------------------------------- */

.page-id-187 .l-page_head {
  background-image: url(./../images/partner_title_bg.png);
}

.p-partner_content {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--accent-color-pale);
}

.p-partner_content:last-of-type {
  border: none;
  padding-bottom: 0;
}

.p-partner_content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--main-color);
}

.p-partner_content_items {
  margin-top: 32px;
  display: grid;
  gap: 40px;
}

.p-partner_content {
  margin-top: 80px;
}

.p-partner_content:first-of-type {
  margin-top: 0;
}

.p-partner_content_item {
  background-color: var(--font-color-sub);
  padding: 40px 32px;
  margin: 0 !important;
  width: 100%;
  box-shadow: 2px 3px rgb(51, 51, 51, .2);
}

.p-partner_content_item > figure {
  height: 200px;
  text-align: center;
}

.p-partner_content_item > figure img,
.p-partner_content_item div figure img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.p-partner_content_item div {
  text-align: center;
}

.p-partner_content_item div figure {
  height: 56px;
  width: 160px;
  margin: 24px 0 0;
}

.p-partner_content_item div p {
  margin-top: 16px;
}

.p-partner_content_item div p:first-of-type {
  font-weight: 600;
}

.p-partner_content_item div p:nth-of-type(2) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--accent-color-pale);
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {

  .p-partner_content h2 {
    font-size: 3.2rem;
  }

  .p-partner_content_items {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 40px 10%;
  }

  .p-partner_content_item div p:first-of-type {
    font-size: 1.8rem;
  }

  .p-partner_content_item div p:nth-of-type(2) {
    font-size: 1.6rem;
  }
}


@media screen and (min-width: 960px) {

  .p-partner_content {
    margin-top: 100px;
    padding-bottom: 100px;
  }

  .p-partner_content h2 {
    font-size: 4rem;
  }

  .p-partner_content_items {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 40px 5%;
  }

  .p-partner_content_item div figure {
    height: 64px;
    width: 200px;
  }

  .p-partner_content_item > figure {
    height: 160px;
  }

  .p-partner_content_item div figure {
    margin: 32px 0 0;
  }

  .p-partner_content_item div p:first-of-type {
    margin-top: 32px;
  }
}


@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1700px) {}

/* partner ここまで
------------------------------------------------------------- */


/* WP 共通パーツ 記述　ここから
------------------------------------------------------------- */

/* 青いボタン */

.p-wp_button a {
  display: block;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: var(--font-color-sub);
  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);
  text-decoration: none;
  opacity: 1;
}


@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1700px) {}

/* WP 共通パーツ 記述　ここまで
------------------------------------------------------------- */


/* WP 固定ページ 記述 ここから------------------------------------------------------------- */


/*  Service ここから
------------------------------------------------------------- */

.page-id-130 .l-page_head {
  background-image: url(./../images/services_title_bg.png);
}

.p-service_intro {
  background-color: rgb(44, 98, 174, .8);
  color: var(--font-color-sub);
}

.p-service_intro h2 {
  font-size: 1.8rem;
}

.p-service_intro p {
  margin-top: 24px;
}

.p-service_details_title {
  margin-bottom: 32px;
  font-size: 3rem;
}

.p-service_details {
  display: grid;
  gap: 80px;
}

.p-service_detail {
  display: grid;
  gap: 40px;
}

.p-service_detail_intro {
  display: grid;
  gap: 24px;
}

.p-service_detail_intro_text h3 {
  font-size: 2.4rem;
  color: var(--main-color);
}

.p-service_detail_intro_text p:first-of-type {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 16px;
}

.p-service_detail_intro_text p:last-of-type {
  margin-top: 16px;
}

.p-service_detail_intro figure {
  margin: 0;
}

.p-service_detail .p-service_detail_products {
  width: 100%;
  display: grid;
  gap: 24px;
  margin: 0 !important;
}

.p-service_detail_products div {
  margin: 0 !important;
  background-color: rgb(175, 185, 197, .3);
  padding: 16px;
}

.p-service_detail_products div h4 {
  color: var(--main-color);
  font-size: 1.8rem;
}

.p-service_detail_products div p {
  margin-top: 8px;
}

.p-service_detail_other {
  display: grid;
  gap: 24px;
}

.p-service_detail_other figure {
  margin-bottom: 0;
}

.p-service_detail_other h4 {
  font-size: 1.8rem;
}

.p-service_detail_other div p {
  margin-top: 8px;
}

.p-service_detail_partner {
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 40px 0;
}

.p-service_detail_partner h4 {
  font-size: 1.6rem;
  color: var(--main-color);
}

.p-service_detail_partner p:first-of-type {
  margin-top: 24px;
}

.p-service_detail_partner p:nth-of-type(2) {
  margin-top: 16px;
}

.p-service_detail_partner p span {
  background-color: var(--main-color);
  color: var(--font-color-sub);
  padding: 0 8px;
  display: inline-block;
}

.p-service_detail_advantage {
  border-top: 1px solid var(--main-color);
  padding: 40px 0 0;
  display: grid;
  gap: 16px;
}

.p-service_detail_advantage h4 {
  color: var(--main-color);
  font-size: 1.8rem;
  margin: 0 !important;
}

.p-service_detail_advantage p {
  font-size: 1.4rem;
}

#custom-parts,
#drawing,
#automation,
#grinding,
#diamond {
  scroll-margin-top: 200px;
}

@media screen and (min-width: 768px) {
  .p-service_intro {
    width: 100%;
    padding-left: 40px;
  }

  .p-service_intro .p-service_intro_content {
    margin: 0 !important;
  }

  .p-service_details_title {
    text-align: center;
    margin-bottom: 80px;
  }

  .p-service_details {
    gap: 100px;
  }

  .p-service_detail_intro {
    grid-template-columns: 55% 40%;
    gap: 5%;
  }

  .p-service_detail .p-service_detail_products {
    grid-template-columns: 48% 48%;
    gap: 4%;
  }

  .p-service_detail .p-service_detail_products_single {
    grid-template-columns: 100%;
  }

  .p-service_detail_other {
    grid-template-columns: 40% 55%;
    gap: 5%;
  }

  .p-service_detail .p-service_detail_partner {
    margin: 0 !important;
  }
}


@media screen and (min-width: 960px) {

  .p-service_intro {
    padding-left: 0;
  }

  .p-service_intro h2 {
    font-size: 2.4rem;
    line-height: 1.8;
  }

  .p-service_intro p {
    margin-top: 40px;
  }

  .p-service_intro .p-service_intro_content {
    max-width: 960px;
    margin: 0 0 0 auto !important;
    padding: 0 40px 0 0;
  }

  .p-service_details_title {
    font-size: 4rem;
    margin-bottom: 100px;
  }

  .p-service_details {
    gap: 160px;
  }

  .p-service_detail {
    gap: 80px;
  }

  .p-service_detail_intro_text h3 {
    font-size: 3.2rem;
  }

  .p-service_detail_intro_text p:first-of-type {
    font-size: 2rem;
    margin-top: 32px;
    line-height: 1.8;
  }

  .p-service_detail_intro_text p:last-of-type {
    margin-top: 32px;
  }

  .p-service_detail_partner h4,
  .p-service_detail_advantage h4 {
    font-size: 2rem;
  }

  .p-service_detail_products div h4,
  .p-service_detail_other h4 {
    font-size: 2rem;
  }

  .p-service_detail_other div p {
    margin-top: 16px;
  }

  .p-service_detail_partner p:first-of-type {
    margin-top: 32px;
  }

  .p-service_detail_partner p:nth-of-type(2) {
    margin-top: 24px;
  }
}


@media screen and (min-width: 1200px) {

  .p-service_details_title {
    font-size: 4.4rem;
  }

  .p-service_details {
    gap: 240px;
  }

  .p-service_intro .p-service_intro_content {
    max-width: 1200px;
    padding: 0 80px 0 0;
  }

  .p-service_detail_intro {
    grid-template-columns: 65% 30%;
  }

  .p-service_detail_other {
    grid-template-columns: 30% 65%;
  }

  .p-service_detail .p-service_detail_other,
  .p-service_detail .p-service_detail_other figure {
    margin: 0 !important;
  }

  .p-service_detail_intro_text h3 {
    font-size: 4rem;
  }

  .p-service_detail_intro_text p:first-of-type {
    font-size: 2.4rem;
  }

  .p-service_detail_products div h4,
  .p-service_detail_other h4,
  .p-service_detail_partner h4,
  .p-service_detail_advantage h4 {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}


@media screen and (min-width: 1700px) {
  .p-service_intro .p-service_intro_content {
    max-width: 1500px;
    padding: 0 96px 0 0;
  }
}



/*  Service ここまで
------------------------------------------------------------- */



/*  Company ここから
------------------------------------------------------------- */

.p-company > div {
  margin-top: 80px;
}

.p-company > div:first-of-type {
  margin-top: 0;
}

.p-company h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--main-color);

}

.p-company_basic_intro {
  display: grid;
  gap: 32px;
}

.p-company_basic_intro div p {
  margin-top: 8px;
}

.p-company_basic_detail {
  margin-top: 40px;
}

.p-company .p-company_basic_detail td,
.p-company .p-company_history_detail td {
  padding: 16px 8px;
}

.p-company .p-company_basic_detail td strong,
.p-company .p-company_history_detail td strong {
  color: var(--main-color);
}

.p-company_map iframe {
  margin-top: 32px;
  width: 100%;
  height: 300px;
}

.p-company .p-company_history_detail {
  margin-top: 32px;
}

.p-company_link_button {
  background-image: url(./../images/company_link_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: .5s;
}

.p-company_link_button a {
  color: var(--font-color-sub);
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 40px 0;
  font-size: 1.8rem;
  text-align: center;
}

.p-company_link_button:hover {
  opacity: .7;
}

.p-company_link_button .c-arrow_right {
  color: var(--font-color-sub);
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin-left: 1em;
}

@media screen and (min-width: 768px) {

  .p-company > div {
    margin-top: 100px;
  }

  .p-company_basic_intro {
    grid-template-columns: 60% 35%;
    gap: 5%;
  }

  .p-company_basic_detail {
    margin-top: 80px;
  }

  .p-company .p-company_basic_detail td,
  .p-company .p-company_history_detail td {
    padding: 24px 16px;
  }

  .p-company_map iframe {
    margin-top: 40px;
    width: 100%;
    height: 500px;
  }

  .p-company .p-company_history_detail {
    margin-top: 40px;
  }

  .p-company_link_button a {
    padding: 80px 0;
    font-size: 2rem;
  }
}

@media screen and (min-width: 960px) {

  .p-company {
    width: 64%;
    margin: 0 auto;
  }

  .p-company > div {
    margin-top: 160px;
  }

  .p-company h2 {
    font-size: 3.2rem;
  }

  .p-company_map iframe {
    height: 600px;
  }

  .p-company_link_button a {
    padding: 100px 0;
    font-size: 3.2rem;
  }
}


@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1700px) {}


/*  Company ここまで
------------------------------------------------------------- */


/*  contact ここから
------------------------------------------------------------- */

.page-id-4893 .l-wp_template .l-page_head {
  background-image: url(./../images/tentative_image.png);
}

.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 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.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) {}

/*  contact ここまで
------------------------------------------------------------- */


/*  contact thanks ここから
------------------------------------------------------------- */

.page-id-5648 .l-wp_template .l-page_head {
  background-image: url(./../images/tentative_image.png);
}

.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) {}

/*  contact thanks ここまで
------------------------------------------------------------- */


/*  privacy policy ここから
------------------------------------------------------------- */

.p-policy_content {
  margin-top: 40px;
}

.p-policy_content h2 {
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 24px;
}

.p-policy_content ul {
  padding-left: 1.5em;
  margin: 16px 0;
}

.p-policy_content ul li {
  list-style-type: decimal;
  padding-left: .25em;
}

.p-policy_content_box {
  border: 1px solid var(--font-color-main);
  padding: 16px;
  margin-top: 16px;
}

.p-policy_content_box > div {
  margin-top: 16px;
}

.p-policy_content_box > div p:first-of-type {
  font-weight: 600;
}

.p-policy_content_box p {
  margin-top: 8px;
}

.p-policy_content_box p:first-of-type {
  margin-top: 0;
}

.p-policy_date {
  text-align: right;
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .p-policy_content {
    margin-top: 80px;
  }

  .p-policy_content h2 {
    margin-bottom: 32px;
  }

  .p-policy_content ul {
    margin: 40px 0;
  }

  .p-policy_content_box {
    margin-top: 32px;
    padding: 32px;
  }

  .p-policy_date {
    margin-top: 100px;
  }
}


@media screen and (min-width: 960px) {
  .p-policy_content {
    margin-top: 100px;
  }

  .p-policy_content h2 {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }

  .p-policy_content_box {
    margin-top: 40px;
    padding: 32px;
  }

  .p-policy_date {
    margin-top: 120px;
  }
}


@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1700px) {}

/*  privacy policy ここまで
------------------------------------------------------------- */


/*  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ページ ここまで
------------------------------------------------------------- */





/* 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 以外 ここまで
------------------------------------------------------------- */