@charset "UTF-8";
/*
Theme Name: ニシガキ工業株式会社グローバルサイト
Theme URI: https://www.nishigakicorporation.jp/
Description: ニシガキ工業株式会社グローバルサイト
Version: 1.0
*/

/* css reset
---------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* グーテンベルクの設定
---------------------------------------------*/



/* end グーテンベルクの設定
---------------------------------------------*/



/* 基本設定
---------------------------------------------*/

html {
  /*font-size: 62.5%;*/ /* ≒10px */
  /*font-family: var(--fontgothic);*/
  /*font-family: "BIZ UDPGothic", sans-serif;*/
  /*font-weight: 400;*/
  font-style: normal;
}


body {
  line-height: 1.3;
}


/* コンテンツ量が少ない時だけフッターを下部に固定 */
.wrapper--all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}


p {
  color: #333;
  font-size: var(--f5);
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: var(--mainfont);
}

a {
  color: #000;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .9;
  text-decoration: none;
}

.txt--center {
  text-align: center;
}

/*画像が縦長になるのを回避*/
img {
  height: auto;
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* 変数 */
:root {
    /*フォントサイズに関する参考サイト：https://type-scale.com*/
  --f1: 2.8125em; /* 45px */
  --f2: 2.25em; /* 36px */
  --f3: 1.875em; /* 30px */
  /*--f4: 1.625em; /* 26px */
  --f4: 1.5em; /* 24px */
  --f5: 1em;    /* 16px */
  --f6: 0.875em;  /* 14px */

  --basecolor: #000; /* 基本色 */
  --secondcolor: #fffdf5;
  --thirdcolor: #3a302b;
  --gradient: linear-gradient( to right, ); /* 参考サイト：https://gradienthunt.com */

  /* フォントの指定 */
  --mainfont: "Inter", sans-serif;
  --homefont: "Poppins", sans-serif;
  --about-serif: "Libre Caslon Display", serif;
  --product-name: "Lexend", sans-serif;
}
/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fadeIn */
.show-fade-in {
  opacity: 0;
}

.fadeIn {
  animation-name: anim-fadein;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* fadeUp */
.fadeInUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.scroll-fade {
  opacity: 0;
}

.delay-fade {
  opacity: 0;
}




/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/
.toggle-btn {
  display: none;
}

.header--wrap {
  width: 96vw;
  height: 100px;
  padding: 10px 2vw;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 200;
  position: fixed;
  top: 0;
  transition: .5s;
}

.home .header--wrap {
  /*position: absolute;*/
  background: transparent;
}

.site-ttl {
  width: 400px;
  padding: 0;
}

.site-ttl a,
.sp__site-ttl a {
  text-decoration: none;
}

.global-nav {
  min-width: 300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
}

.global-nav li {
  font-weight: bold;
  padding: 0 10px;
  text-align: center;
}

.global-nav li:last-child {
  border-right: none;
}

.global-nav li a {
  font-family: var(--mainfont);
  font-size: var(--f5);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
}

.home .global-nav li a {
  color: #fff;
}

.global-nav li a:hover {
  opacity: .8;
}

.global-nav a::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--basecolor);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  }

.home .global-nav a::after {
    background: #fff;
  }

.global-nav a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  }

  .has-sub {
    position: relative;
  }

  .sub-nav {
  background-color: #F3E8DE;
  display: none;
  position: absolute;
  overflow: hidden;
  font-family: var(--en-lang);
  left: 0;
  top: 2.1em;
  width: 6.5em;
  z-index: 10000;
}
.sub-nav > li > a {
  border-bottom: solid 1px #fff;
  display: block;
  line-height: 1.5;
  background-color: #F3E8DE;
  padding: .1em .2em;
  text-align: left;
  width: 100%;
}

.sub-nav > li > a:hover {
  opacity: .7;
}

/* トップのスクロール用の背景 */
.home .header--wrap--scroll {
  background: #fff;
}

.home .header--wrap--scroll .global-nav li a {
  color: #000;
}

.home .header--wrap--scroll .global-nav a::after {
  background: #000;
}

.home .header--wrap--scroll .site-ttl a {
  background: url(./img/logo.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  display: block;
  width: 100%;
}


/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  width: 1100px;
  padding: 0 0 30px 0;
  margin:  0 auto;
}

.container__middle {
  width: 950px;
  margin:  40px auto 100px;
}

.product__container {
  width: 100%;
  background-color: var(--secondcolor);
  padding: 0;
  margin:  120px auto 30px;
}

.product__category--wrap {
  max-width: 1700px;
  margin: 120px auto 40px;
  padding: 0 3vw;
}

.container__small {
  width: 808px;
  margin:  40px auto 100px;
}

.container__blog {
  max-width: 1100px;
  padding: 0 2vw;
  margin:  50px auto 100px;
  display: flex;
  justify-content: space-between;
}

.blog__article {
  width: 67%;
  max-width: 820px;
}

.blog__sidebar {
  width: 25%;
  max-width: 320px;
}

.bg-color001 { /* 色付き背景 */
  background-color: var(--secondcolor);
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  margin: 20px auto 60px;
  text-align: center;
  padding-top: 50px;
  margin-top: 120px;
}

.page__ttl {
  font-size: 3.5em;
  font-family: var(--mainfont);
  font-weight: 800;
}

/* / ページタイトル */


/* ボタンのホバーアニメーション */
.btn01 {
    position: relative;
    display: block;
    width: 240px;
    height: 35px;
    line-height: 35px;
    /*margin: 40px auto;*/
    margin-top: 20px;
    margin-bottom: 20px;
    text-align:  center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: 1px solid var(--basecolor);
    border-radius: 50px;
    overflow: hidden;
    transition: .3s;
    /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
    background-color: var(--basecolor);
    z-index: 1;
}

.btn01:hover {
    color: var(--basecolor);
    background: #fff;
}

.btn01 a {
  font-family: var(--jp-lang);
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn01 a:hover {
  color: var(--basecolor);
  background: #fff;
}

.btn02 {
    position: relative;
    display: block;
    width: 240px;
    height: 50px;
    line-height: 50px;
    /*margin: 40px auto;*/
    margin-top: 20px;
    margin-bottom: 20px;
    text-align:  center;
    text-decoration: none;
    color: var(--basecolor);
    font-weight: bold;
    border: 1px solid var(--basecolor);
    border-radius: 50px;
    overflow: hidden;
    transition: .3s;
    /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
    background-color: #fff;
    z-index: 1;
}

.btn02:hover {
    color: #fff;
    background: var(--basecolor);
}

.btn02 a {
  font-family: var(--jp-lang);
  color: var(--basecolor);
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn02 a:hover {
  color: #fff;
  background: var(--basecolor);
}

.btn03 {
  position: relative;
  display: block;
  width: 315px;
  height: 45px;
  line-height: 45px;
  /*margin: 40px auto;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align:  center;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #6E7658;
  border-radius: 50px;
  overflow: hidden;
  transition: .3s;
  /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
  background-color: #6E7658;
  z-index: 1;
}

.btn03:hover {
    color: #6E7658;
    background: #fff;
}

.btn03 a {
  font-family: var(--jp-lang);
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn03 a:hover {
  color: #6E7658;
  background: #fff;
}

.btn04 {
  position: relative;
  display: block;
  width: 400px;
  height: 60px;
  line-height: 60px;
  /*margin: 40px auto;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align:  center;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  border: 1px solid #6E7658;
  overflow: hidden;
  transition: .3s;
  /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
  background: #6E7658;
  background: linear-gradient(108deg,rgba(110, 118, 88, 1) 17%, rgba(158, 172, 123, 1) 68%, rgba(110, 118, 88, 1) 100%);
  z-index: 1;
}

.btn04:hover {
    color: #6E7658;
    background: #fff;
}

.btn04 a {
  font-family: var(--jp-lang);
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
  transition: .3s;
}

.btn04 a:hover {
  color: #6E7658;
  background: #fff;
}

/*ボタンのホバーアニメーション*/

.btn--center {
  margin: 40px auto;
}

.btn--right {
  margin: 20px 0 20px auto;
}

.btn-wide {
  width: 350px;
}


.btn001--small {
  font-size: var(--f4);
  width: 396px;
  margin-top: 10px;
}

.btn001--small a {
  width: 190px;
  font-size: .93em;
  margin: 30px auto;
  width: 11em;
  padding: 0;
  border-radius: 10px;
  padding: 1em 0;
}

.btn001--big {
}

.btn001--big a {
  margin: 30px auto;
  width: 20em;
  padding: 1.5em 0;
  border-radius: 15px;
  font-size: var(--f4);
}

.post p.btn__reservation--big {
  font-size: var(--f3) !important;
  margin: 10px auto !important;
}

/* / ボタンの設定 */

/* 文字の設定 */
.main__container p {
  font-family: var(--mainfont);
}

.main__container strong {
  font-family: var(--mainfont);
  font-weight: 700;
}

/* / 文字の設定 */

.w50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.w60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.w70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.table-style01,
.table-style02,
.table-style03 {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  margin-top: 30px;
  margin-bottom: 30px;
}

.table-style01 table,
.table-style02 table,
.table-style03 table {
  width: 100%;
  border-top: none;
  border-left: none;
}

.table-style01 th,
.table-style01 td,
.table-style03 th,
.table-style03 td {
  font-family: var(--jp-lang);
  border: solid 1px #000 !important;
  padding: 1em 0;
}

.table-style01 th {
  background-color: #FBF8F7;
}

.table-style01 tr td:first-child {
  width: 28%;
  /*font-weight: bold;*/
  background-color: #FBF8F7;
}

.table-style03 tr td:first-child {
  font-weight: bold;
}

.table-style01 th,
.table-style03 th {
  font-weight: normal;
  text-align: left;
}

.table-style02 table {
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 100%;
}

.table-style02 th,
.table-style02 td {
  font-family: var(--m-plus-1);
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  padding: 1em;
  /*text-align: center;*/
}

.table-style02 th {
  background-color: #ECECEC;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.is-style-stripes tr:nth-child(odd) {
  background-color: #f4f4f4;
}

/* パンくずリスト */
.breadcrumbs {
 width: 94vw;
 margin: 0 auto;
 padding-top: 20px;
 font-family: var(--mainfont);
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* / パンくずリスト */


/* / ページ設定
--------------------------------------*/


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

/* メインビジュアル */
.main-img--wrap {
  background: url(./img/top_mainimage.jpg) center/cover no-repeat;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/*.main-img--wrap img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}*/

.main-img--wrap .ban-area {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 5vw;
  bottom: 5vh;
}

/* / メインビジュアル */


/* Videos */
.top__movie--wrap {
  width: 100vw;
  margin: 0 auto;
  background-color: var(--basecolor);
  padding: 80px 0;
}

.top__movie--wrap div {
  width: 70%;
  max-width: 1333px;
  margin: 0 auto;
}

.top__movie--wrap iframe {
  width: 100%;
  height: 700px;
}

/* / Videos */


/* About */
.top__about--wrap {
  width: 100%;
  height: 750px;
  background: url(./img/top_img002@1.5x.jpg) center/cover no-repeat;
  margin: 0 auto;
  padding: 80px 0 70px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.top__about--info {
  width: 46%;
  max-width: 888px;
  margin-right: 5%;
}

.top__about--h {
  font-family: var(--homefont);
  font-size: 4em;
  color: var(--thirdcolor);
  font-weight: 300;
  margin-bottom: 30px;
}

.top__about--info p {
  font-family: var(--homefont);
  font-size: 1.25em;
  color: var(--thirdcolor);
  margin-bottom: 15vw;
  font-weight: 200;
}

/* / About */


/* Garden & Industrial Tools */
.top__product--wrap {
  background-color: var(--secondcolor);
  width: 96vw;
  padding: 2.5vw 2vw 2vw 2vw;
}

.top__product--h--box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
  position: relative;
  padding: 0 10px;
}

.top__product--h {
  font-family: var(--homefont);
  font-size: 3.75em;
  font-weight: 300;
}

.top__product--img--box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 60px 0 40px;
}

.top__product--img {
  height: 786px;
  position: relative;
  overflow: hidden;
}

.top__product--img img {
  width: 100%;
  height: 786px;
  object-fit: cover;
  transition: .3s;
  z-index: 1;
}

.top__product--img img:hover {
  transform: scale(1.1);
}

.top__product--img1 {
  width: 42%;
}

.top__product--img2 {
  width: 24%;
}

.top__product--img3 {
  width: 32%;
}

.top__product--img--name {
  font-size: 4.375em;
  font-family: var(--homefont);
  font-weight: 700;
  font-style: normal;
  color: #fff;
  opacity: .8;
}

.top__product--img1 .top__product--img--name,
.top__product--img2 .top__product--img--name {
  position: absolute;
  left: 15px;
  top: 10px;
  z-index: 5;
}

.top__product--img3 .top__product--img--name {
  position: absolute;
  left: 15px;
  bottom: 20px;
  z-index: 5;
}


/* / Garden & Industrial Tools */


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


/* About
--------------------------------------*/
.about__main--wrap {
  width: 100vw;
  height: 50vw;
  position: relative;
  background: url(./img/about_img001@1.5x.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 120px;
}

h2.about__main--h {
  font-family: var(--mainfont);
  font-size: 18vw;
  font-weight: 600;
  color: #fff;
  position: absolute;
  right: 2vw;
  bottom: 1vw;
  opacity: .4;
  line-height: 1;
}

.about__intro--wrap {
  width: 100vw;
  /*height: 45vw;*/
  position: relative;
  background: url(./img/about_img002@1.5x.jpg) no-repeat center center;
  background-size: cover;
  padding-bottom: 100px;
}

.about__intro--h {
  font-family: var(--about-serif);
  color: #fff;
  font-size: 4.0625em;
  text-align: center;
  padding: 150px 0 0 0;
}

.about__intro--sub-h {
  font-family: var(--about-serif);
  color: #fff;
  font-size: 3.125em;
  text-align: center;
  font-weight: 400;
}

.about__intro--info--box {
  text-align: center;
  margin: 5vw auto 0;
  width: 800px;
}

.about__intro--info--h {
  font-family: var(--about-serif);
  color: #fff;
  font-size: 1.875em;
}

.about__intro--info--box p {
  font-family: var(--about-serif);
  color: #fff;
  font-size: 1.25em;
  font-weight: 100;
}

.about__miki--wrap {
  width: 100vw;
  /*height: 59vw;*/
  position: relative;
  background: url(./img/about_img009@1.5x.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.about__miki--info--box {
  width: 45vw;
  max-width: 860px;
  margin-right: 2vw;
}

.about__miki--h {
  font-family: var(--about-serif);
  color: var(--thirdcolor);
  font-size: 2.1875em;
  color: #fff;
  padding: 100px 0 20px 0;
}

.about__miki--info--box p {
  font-family: var(--about-serif);
  color: var(--thirdcolor);
  color: #fff;
  font-size: 1.125em;
}

.about__miki--map {
  width: 70%;
  margin: 20px auto 40px;
}

.about__quality--wrap {
  width: 90vw;
  padding: 100px 5vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about__quality--box {
  width: 100%;
  height: 55vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}

.about__quality--box--reverse {
  flex-direction: row-reverse;
}

.about__quality--info {
  width: 48%;
  padding: 30px 0 0 0;
  height: 300px;
  position: sticky;
  top: 0;
}

.about__quality--photo {
  width: 31vw;
  /*height: 47vw;*/
}

.about__quality--h {
  font-family: var(--mainfont);
  font-size: 2.1875em;
  margin-bottom: 20px;
}

.about__quality--txt {
  font-family: var(--mainfont);
  font-size: 1.125em;
}

.about__profile--wrap {
  width: 100%;
  background-image: url(./img/about_img008@1.5x.png);
  background-size: 60%;
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center right;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 70px 0;
}

.about__profile--box {
  margin-left: 5vw;
}

.about__profile--h {
  font-family: var(--mainfont);
  font-size: 1.75em;
  margin-bottom: 20px;
  display: inline-block;
  color: #fff;
  background: #000;
  padding: .3em;
}

.about__profile--data {
  font-family: var(--mainfont);
  font-size: 1em;
}

.about__profile--data div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.about__profile--data div dt {
  width: 200px;
}

.about__profile--data div dd {
  width: 550px;
  padding-left: .5em;
  text-indent: -1em
}

.about__profile--data div dd::before {
  content: "：";
}

.about__profile--data img.e-mail {
  width: 250px;
}

/* / About
--------------------------------------*/


/* 製品ページトップ - Category
--------------------------------------*/
.category__wrap {
  max-width: 1920px;
  min-width: 1100px;
  max-height: 1150px;
  min-height: 900px;
  background-color: var(--secondcolor);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.category__tit {
  color: #cab3b3;
  font-family: var(--homefont);
  font-size: 9.375em;
  text-align: right;
  opacity: .35;
  padding-right: 2%;
  line-height: 1.1;
}

.category__items--name {
  font-family: var(--product-name);
  font-size: 1.5em;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 20px;
}

.category__item001 {
  width: 15%;
  position: absolute;
  left: 8%;
  top: 12%;
}

.category__item001 .category__items--photo {
  width: 50%;
  margin-left: 20px;
}

.category__item002 {
  width: 67%;
  position: absolute;
  right: 7%;
  top: 18%;
}

.category__item002 .category__items--name {
  margin: 0 0 20px 30%;
}

.category__item003 {
  width: 67.8%;
  position: absolute;
  right: 7%;
  top: 35%;
}
.category__item003 .category__items--name {
  margin: 0 0 10px 31%;
}

.category__item004 {
  width: 28%;
  position: absolute;
  right: 10%;
  top: 55%;
}

.category__item004 .category__items--name {
  margin: 0 0 20px 35%;
}

.category__item005 {
  width: 20%;
  position: absolute;
  right: 43%;
  top: 55%;
}

.category__item005 .category__items--name {
  margin: 0 0 20px 30%;
}

.category__item006 {
  width: 17.8%;
  position: absolute;
  right: 45%;
  top: 77%;
}

.category__item006 .category__items--name {
  margin: 0 0 20px 30%;
}

.category__item007 {
  width: 8%;
  position: absolute;
  right: 18%;
  top: 77%;
}

.category__item007 .category__items--name {
  margin: 0 0 20px 25%;
}



/* / 製品ページトップ - Category
--------------------------------------*/


/* 製品詳細ページ
--------------------------------------*/
.product__tag--name {
  font-family: var(--product-name);
  font-size: 2.8em;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #f00;
  text-align: center;
  margin-bottom: -20px;
}

.product__name--wrap {
  width: 90%;
  margin: 20px auto 0;
}

.product__name {
  font-family: var(--product-name);
  font-size: 9.375em;
  font-optical-sizing: auto;
  font-weight: 900;
  line-height: 1.1;
  font-style: normal;
  text-align: center;
}

.product_sub-h {
  font-family: var(--mainfont);
  font-size: 2.5em;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 0 auto 40px;
}

.product__photos,
.product__lineup--list {
  width: 100vw;
  margin: 40px auto 100px;
}

.product__photos .swiper-wrapper .vk_slider_item {
    /*width: 58vw;
    height: auto;*/
    object-fit: cover;
    margin-right: 10px;
    padding: 0;
}

/* VKスライダーのページネーションを丸にする */
.vk_slider .swiper-pagination-bullet {
    width: 12px !important;  /* 丸のサイズ */
    height: 12px !important; /* 丸のサイズ */
    border-radius: 50% !important; /* 角丸を50%にして丸にする */
    background: #cdcdcd !important; /* 通常時の色（白） */
    opacity: 0.5 !important; /* 通常時の透過率 */
}

/* アクティブ（現在表示中）のページネーション */
.vk_slider .swiper-pagination-bullet-active {
    opacity: 1 !important; /* アクティブ時の透過率（不透明） */
    background: #000000 !important; /* アクティブ時の色（黒） */
}

.product__h3 {
  font-family: var(--mainfont);
  font-size: 1.875em;
  font-style: normal;
  text-align: center;
  margin: 0 auto 40px;
  color: #fff;
  background-color: #000;
  padding: .1em 1em;
  display: inline-block;
}

.product__align-center {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  display: block;
}

.product__movie--wrap {
  width: 1100px;
  margin: 100px auto;
}

.product__movie--wrap iframe {
  width: 100%;
  height: 600px;
}

.product__contents--box {
  max-width: 1500px;
  min-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.parts-list {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.manual-list {
  width: 500px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 200px;
}

.parts-list li {
  width: 50px;
  margin-right: 50px;
  font-family: var(--mainfont);
}

.parts-list li:last-child {
  margin-right: 0;
}

.parts-list li img {
  width: 100%;
}

.manual-list li {
  margin: 10px 50px 10px 0;
}

.manual-list li::before {
  content: "＞";
  padding-right: .5em;
}


/* / 製品詳細ページ
--------------------------------------*/


/* カテゴリー
--------------------------------------*/
.category--name {
  font-family: var(--product-name);
  font-size: 6.25em;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 20px;
}

.item-list--wap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3em 0;
}

.item-list--wap::after {
  display: block;
  content: "";
  width: 30%;
}

.item-list__item {
  width: 30%;
  padding-bottom: .7em;
  margin-bottom: 2em;
}

.item-list__item--img {
  width: 100%;
  box-shadow: 6px 6px 8px 0px rgba(26, 44, 84, .25);
  vertical-align: bottom;
  overflow: hidden;
  margin-bottom: 10px;
}

.item-list__item--img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  object-position: center center;
}

.item-list__item--day {
  font-size: var(--f6);
  line-height: 1;
  margin: .5em 0 0;
}

.item-list__item--category {
  font-size: var(--f6);
  font-family: var(--honbun);
  display: inline-block;
  line-height: 1;
  margin: .5em 0;
  padding: .2em 0;
  color: #58380C;
  border: solid 1px #58380C;
  border-radius: 3px;
}

.item-list__item--category a {
  /*display: block;*/
  width: 100%;
  padding: .1em .5em;
  text-decoration: none;
}

.item-list__item--title {
  font-size: 1.15em;
  font-family: var(--mainfont);
  text-align: center;
}

.item-list__item--title a {
  text-decoration: none;
}


/* / カテゴリー
--------------------------------------*/



/* お問い合わせ
--------------------------------------*/
.contact__main--wrap {
  width: 100vw;
  height: 50vw;
  position: relative;
  background: url(./img/contact_img002@1.5x.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 120px;
}

h2.contact__main--h {
  font-family: var(--mainfont);
  font-size: 18vw;
  color: #fff;
  position: absolute;
  left: 2vw;
  top: 1vw;
  opacity: .4;
  line-height: 1;
}

.column-two--wrap {
  max-width: 1500px;
  width: 80%;
  margin: auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.colum-two--left {
  max-width: 950px;
  width: 63%;
}

.column-two--right {
  max-width: 420px;
  width: 28%;
}

.contact__to-countries {
  background-image: url(./img/contact_img001@2x.png);
  background-size: 20%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top left;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
  margin-top: 100px;
}

.contact__to-countries .wp-block-list {
  width: 300px;
  margin: auto;
}

.contact__to-countries li {
  width: 300px;
  margin-bottom: 20px;
}

.contact__to-countries li img {
  width: 100%;
}

.contact__to-countries--txt {
  font-family: var(--mainfont);
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  line-height: 1.2;
}

.must {
  color: red;
}

.contact-form {
  width: 100%;
  margin: 40px auto 20px;
  padding: 0;
}

.contact-form table {
  width: 100%;
}

.contact-form th {
  text-align: left;
  font-weight: normal;
  font-family: var(--mainfont);
  font-size: 1.125em;
  font-weight: normal;
  vertical-align: middle;
  padding-right: 2em;
  width: 30%;
}

.contact-form th,
.contact-form td {
  padding-bottom: 20px;
}


input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  background: #fff;
  border: solid 2px #9F9F9F;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 97%;
}

.text-danger {
  color: red;
}

select {
  width: 104%;
}

.contact__name--area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact__name--area div:first-child {
  width: 38%;
}

.contact__name--area div:last-child {
  width: 53%;
}

.contact__name--area div:first-child input[type=text] {
  width: 97%;
}

.contact__name--area div:last-child input[type=text] {
  width: 63.5%;
  margin-left: 10px;
}

input[type=date] {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 50%;
}

.btn--contact-form {
  background: #363636;
  color: #fff;
  border-radius: 5px;
  height: 50px;
  margin: 0;
  width: 130px;
  box-shadow: 3px 3px 0px 0px rgb(233, 223, 223);
  transition: .2s;
  overflow: hidden;
}

.btn--contact-form > p {
  margin: 0 !important;
}

.btn--contact-form:hover {
  background: #5b5b5b;
  box-shadow: 0px 0px 0px 0px rgba(233, 223, 223, 1);
  transform: translate(1px, 2px);
}

.btn--contact-form .wpcf7-submit,
.btn--contact-form .wpcf7-confirm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  font-family: var(--jp-lang);
  font-size: var(--f5);
  line-height: 50px;
  width: 130px;
}

.btn--contact-form .confirm {
  margin: 20px 0 0 0;
  text-align: center;
}

/* ラジオボタンカスタマイズ */
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-radio span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-radio span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / ラジオボタンカスタマイズ */

/* チェックボックスカスタマイズ */
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-checkbox .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-checkbox span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-checkbox span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 2px;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-checkbox span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  /*border-bottom: solid 3px #606060;
  border-left: solid 3px #606060;
  transform: rotate(-45deg);*/
  display: none;
}

input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / チェックボックスカスタマイズ */


/* / お問い合わせ
--------------------------------------*/

/* 規約関係
--------------------------------------*/
.policy__wrap {

}

.policy__wrap h2 {
  font-family: var(--mainfont);
  font-size: var(--f3);
  margin: 1.5em 0 .5em;
}

.policy__wrap h3 {
  font-family: var(--mainfont);
  font-size: var(--f4);
  margin: 1em 0 .5em;
}

.policy__wrap p {
  font-family: var(--mainfont);
  font-size: var(--f5);
  margin: .5em 0 。５em;
}

.policy__wrap ul {
  margin: .5em 0 。５em;
}

.policy__wrap ul li {
  font-family: var(--mainfont);
  font-size: var(--f5);
  margin-bottom: .5em;
  list-style: disc;
  list-style-position: inside;
}

/* / 規約関係
--------------------------------------*/



/* 検索結果 */
.search__title {
  width: auto;
  color: var(--basecolor);
  font-size: var(--f2);
  margin-bottom: 30px;
}

.search__list {
  margin: 30px 0;
}

.search__list li {
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.search__list--heading {
  font-size: var(--f4);
}

.search-no-results p.title {
  text-align: left;
  margin-bottom: 50px;
}

.search__list--txt {

}

.search-no-results #content {
  text-align: center;
  line-height: 2;
  border: solid 1px #333333;
  padding-bottom: 40px;
}

/* / 検索結果 */



/* プライバシーポリシー -------*/

  .nallow-box {
    margin: 60px auto 0;
    width: 80%;
  }

  .nallow-box h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .nallow-box h3 {
    margin: 30px 0 5px;
  }


/* / プライバシーポリシー --------*/




/* 投稿ページ -------*/
.post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: 3px 0;
  text-align: right;
}

h2.blog-ttl + .post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: -2.3em 0 20px 0;
  text-align: right;
}

.event--day {
  font-size: 1.25em;
  font-family: var(--jp-lang);
  font-weight: bold;
  margin: 3px 0;
}

.post--category {
  display: inline-block;
  margin: 3px 0;
}

.post--category a {
  display: block;
  font-size: var(--f6);
  font-family: var(--jp-lang);
  color: #000;
  border: solid 1px #000;
  background-color: rgba(255, 255, 255, .5);
  padding: 0 .65em .2em;
  text-decoration: none;
}

.blog-ttl {
  font-family: var(--jp-lang);
  font-size: var(--f4) !important;
  font-weight: 700;
  /*border-bottom: solid 1px #474747;
  background-color: rgba(255, 255, 255, .6);*/
  padding: .5em .8em .5em 0;
  margin-bottom: .5em;
}

.blog__main--photo {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1em;
}

.blog__main--photo img {
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}

.widget_block h4 {
  background: #FDEAE5;
  font-family: var(--jp-lang);
  margin-top: 3em;
  border-radius: 5px;
  padding: 1em;
}

.wp-block-latest-posts__list li,
.wp-block-categories-list li,
.widget_recent_entries li {
  border-bottom: dotted 1px #bebebe;
}

.wp-block-latest-posts__list li a,
.wp-block-categories-list li a {
  display: block;
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1em .5em;
  transition: .7s;
}

.widget_recent_entries li {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1em .5em;
  transition: .7s;
}

.wp-block-latest-posts__list li a:hover,
.wp-block-categories-list li a:hover,
.widget_recent_entries li:hover {
  background-color: var(--secondcolor);
}

.wp-block-latest-posts__list li a::before,
.widget_recent_entries li a::before {
  content: "◯";
}

.widget_recent_entries .post-date {
  display: block;
  text-align: right;
  font-size: small;
  padding-top: 5px;
}

.widget_recent_entries .post-date::after {
  content: "update";
}

.widget_recent_entries .widgettitle{
  display: none;
}



/*ブロックエディタ設定*/
figcaption {
  margin-top: .5em;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--mainfont);
}

.post h1 {
  font-size: 2em;
}

.post h2 {
  font-size: 1.75em;
}

.post h3 {
  font-size: 1.5em;
}

.post h4 {
  font-size: 1.25em;
}

.post h5 {
  font-size: var(--f5);
}

.post h6 {
  font-size: var(--f6);
}

.post p {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  margin: 1em 0;
}

.post .aligncenter,
.post .aligncenter img,
.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}

.post .alignleft,
.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.post .alignright,
.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.post .has-text-align-center,
.has-text-align-center {
  text-align: center;
}

/* / ブロックエディタ設定*/




/* / アーカイブへのリンク */

/* 表の基本スタイル */
/*.wp-block-table {
  margin: 20px 0;
}

.wp-block-table table {
  border: solid 1px #A3A12F;
}

.wp-block-table table thead {
  border-bottom: solid 1px #A3A12F;
}

.wp-block-table table th,
.wp-block-table table td {
  border: solid 1px #A3A12F;
  padding: 1em;
}

.wp-block-table table th {
  background: #F0EE7E;
}

.table--middle {
  width: 845px;
  margin-left: auto;
  margin-right: auto;
}*/


/* / 表の基本スタイル */


/*ページネーション*/
p.pagenation {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
}

span.oldpage {
  float: left;
}

span.newpage {
  float: right;
}

/* ページ番号リンク */
p.pagenum {
  text-align: center;
}

p.pagenum a {
  /*background-color: #e6e6e6;*/
  text-decoration: none;
  color: #8C78AA;
}

.page-numbers {
  background-color: #fff;
  border: solid 1px #8C78AA;
  border-radius: 50%;
  display: inline-block;
  font-size: var(--f6);
  line-height: 30px;
  margin: 5px;
  padding: 1em;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: .5s;
}

.page-numbers:hover {
  background-color: #8C78AA;
  color: #fff;
}

.current {
  background-color: #8C78AA;
  border: solid 1px #8C78AA;
  color: #fff;
}

/*p.pagenum span {
  background-color: #fff;
  border: solid 1px #999;
  color: #333;
}

p.pagenum a, p.pagenum span {
  padding: 3px 6px;
  color: #333;
}*/

/* end ページネーション*/




/* 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/

.footer__wrap {
  width: 96vw;
  background-color: #fff;
  margin-bottom: 0;
  padding: 0 2vw 35px;
}

.footer {
  text-align: center;
  padding-top: 30px;
}

.footer__box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__ttl {
  width: 350px;
  line-height: 0;
  margin: 0 0 0 0;
  padding: 0;
}

.footer__ttl img {
  vertical-align: bottom;
  width: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

.footer__nav {
  width: 500px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer__nav li {
  margin-right: 20px;
  margin-bottom: .3em;
  position: relative;
}

.footer__nav li:last-child {
  margin-right: 0;
}

.footer__nav a {
  font-size: var(--f5);
  font-family: var(--mainfont);
  text-decoration: none;
}

.footer__sns {
  width: 180px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer__sns li {
  width: 36px;
}

.footer__copyright {
  font-family: var(--mainfont);
  font-size: var(--f5);
  margin-top: 20px;
  padding-bottom: 10px;
  text-align: left;
}


/* トップに戻るボタン */
  .to-top {
    position: fixed;
    cursor: pointer;
    border: solid 1px #aaaaaa;
    border-radius: 5px;
    bottom: 50px;
    right: 80px;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, .5);
  }

  .to-top::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 1px #212121;
    border-right: solid 1px #212121;
    transform: rotate(-45deg);
    left: calc(50% - 6px);
    top: calc(50% - 3px);
  }

  .to-top:hover {
    opacity: .6;
  }

/* / トップに戻るボタン */

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/



/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 1000px){

  /* iPhone safariの右側余白対策 */
  html, body {
    overflow-x: hidden;
  }


  /* ページ設定
--------------------------------------*/
.btn04 {
  width: 90%;
}

.product__container {
  width: 100%;
  padding: 0;
  margin:  60px auto 30px;
}


/* ヘッダー
--------------------------------------*/

.header--wrap {
  width: 96vw;
  height: 50px;
  margin: 0 auto 20px;
  padding: 10px 2vw;
  position: fixed;
  background: #fff;
  z-index: 50;
}

.home .header--wrap {
  background: rgba(0, 0, 0, .3);
  top: 0;
  left: 0;
}

.site-ttl {
  width: 50vw;
  /*position: fixed;*/
  z-index: 100;
  top: 10px;
  left: 0;
}

/* トップのスクロール用の背景 */
.home .header--wrap--scroll {
  background: #fff;
}

.home .header--wrap--scroll .global-nav li a {
  color: #000;
}

.home .header--wrap--scroll .global-nav a::after {
  background: #000;
}

.home .header--wrap--scroll .site-ttl a {
  background: url(./img/logo.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  display: block;
  width: 100%;
}



/* / メニュー */


/* ハンバーガーメニュー */
.toggle-btn {
  display: flex;
  position: absolute;
  z-index: 3;
  right: 2vw;
  top: 10px;
  width : 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
  z-index: 50;
}

.toggle-btn p {
  font-family: var(--jp-lang);
  font-size: .8em;
  margin-top: 7px;
}

.toggle-btn a {
  display: block;
  width: 28px;
  position: relative;
}

.toggle-btn span {
  display : block;
  position: absolute;
  width   : 23px;
  height  : 2px ;
  right    : 10px;
  background : var(--basecolor);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  z-index: 15;
}

.home .toggle-btn span {
  background : #fff;
}

.toggle-btn span:nth-child(1) {
  top: 16px;
}

.toggle-btn span:nth-child(2) {
  top: 24px;
}

.toggle-btn span:nth-child(3) {
  top: 32px;
}

.home .header--wrap--scroll .toggle-btn span,
.home .header--wrap--scroll .toggle-btn span.toggle-btn_line {
  background-color: #000;
}

/* スマホメニューを開いてる時のボタン */
.toggle-btn.active span:nth-child(1) {
  top: 23px;
  right: 10px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.toggle-btn.active span:nth-child(2),
.toggle-btn.active span:nth-child(3) {
  top: 23px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景 */
.global-nav-wrap {
  position: fixed;
  z-index : 25;
  top : 0;
  right : 0;
  color: #fff;
  background: rgba(0, 0, 0, .8);
  text-align: center;
  width: 100vw;
  padding: 2vh 3vw 10vh;
  height: 88vh;
  overflow-y: auto;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease .7s;
}

.home .header--wrap--scroll .global-nav-wrap {
  background: rgba(255, 255, 255, .8);
}

.global-nav {
  min-width: 90%;
  width: 90%;
  margin: 60px auto 0;
  display: block;
  position: relative;
  z-index: 5;
  opacity: 1;
}

.global-nav li {
  margin: .5em 0;
  text-align: center;
  width: 100%;
}

.nav-txt--en {
  font-size: .73em;
  display: block;
}

.global-nav li a {
  color: #fff;
  font-size: var(--mainfont);
  font-size: 2.5em;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding: .5em 0;
  display: block;
}

.global-nav li.has-sub > a {
  padding: 0;
}

.sub-nav {
  background-color: transparent;
  display: block;
  position: relative;
  width: 100%;
}

.sub-nav li {
  margin: 0 0 .5em;
}

.sub-nav > li > a {
  border-bottom: none;
  display: block;
  line-height: 1.5;
  background-color: transparent;
  padding: 0 0 .3em;
  text-align: center;
  width: 100%;
}

/* クリックでjQueryで追加・削除 */
.global-nav-wrap.panel-open {
  opacity: 1;
  visibility: visible;
}

/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  max-width: 90vw;
  min-width: 90vw;
  padding: 20px 0 0;
  margin:  0 auto 70px;
}


.container__large,
.container__middle,
.container__small,
.container__blog,
.blog__article,
.blog__sidebar {
  width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
}

.container__blog {
  display: block;
}

.container__column {
  min-width: 96%;
  max-width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
  display: block;
  justify-content: space-between;
}

.container__mainContent {
  width: 100%;
}

.container__sidebar {
  width: 100%;
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  margin: 90px auto 30px;
  text-align: center;
  padding-top: 50px;
  margin-top: 10px;
}

.page__ttl {
  font-size: 2.5em;
}

/* / ページタイトル */


/* ボタンの設定 */
.btn-wide {
  width: 80%;
}

/* / ボタンの設定 */


/* 文字の設定 */
.main__container p {
  font-family: var(--mainfont);
}

.page__heading {
  font-size: 1.25em;
  margin-bottom: 30px;
}

/* / 文字の設定 */


/* 見出し */
.heading {
  color: #fff;
  background: #11740C;
  font-size: var(--f3);
  font-weight: normal;
}

.heading--large,
.heading--middle {
  width: 96%;
  padding: .5em 2%;
  margin: 40px auto 30px;
}

/* / 見出し */

.w50,
.w60,
.w70 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.table-style03 th,
.table-style03 td {
  display: block;
  width: 100%;
}

.table-style03 tr td:first-child {
  width: 100%;
  border-bottom: none !important;
}



/* / ページ設定
--------------------------------------*/


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

/* メインビジュアル */
.main-img--wrap {
  width: 100vw;
  height: 50vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-img--wrap img {
  width: 100vw;
  height: 50vh;
  object-fit: cover;
}

.main-img--wrap .ban-area {
  width: 20vw;
  height: 20vw;
  position: absolute;
  left: 3vw;
  bottom: 3vh;
}

.main-img--wrap .ban-area img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* / メインビジュアル */

.top__heading {
  font-size: var(--f2);
  font-weight: 400;
}

/* Videos */
.top__movie--wrap div {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* / Videos */



/* About */
.top__about--wrap {
  width: 100%;
  height: 100vh;
  background: url(./img/top_img002-sp@1.5x.jpg) no-repeat center bottom;
  background-size: cover;
  margin: 0 auto 60px;
  padding: 40px 0 30px;
  display: block;
  position: relative;
}

.top__about--info {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}

.top__about--h {
  font-size: 2.8em;
}

.top__about--info p {
  font-size: 1.2em;
}

.top__about--wrap .btn--right {
  position: absolute;
  bottom: 0;
  right: 2vw;
}

/* / About */



/* Garden & Industrial Tools */
.top__product--h--box {
  width: 90%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding: 0 10px;
}

.top__product--h {
  font-family: var(--homefont);
  font-size: 2.8125em;
  font-weight: 400;
}

.top__product--img--box {
  display: block;
}

.top__product--img {
  height: auto;
}

.top__product--img img {
  position: absolute;
}

.top__product--img1 {
  width: 100%;
  height: 100vw;
}

.top__product--img1 img {

}

.top__product--img2 {
  width: 100%;
  height: 70vw;
}

.top__product--img2 img {
  transform: rotate(-90deg);
  top: -75%;
}

.top__product--img2 img:active,
.top__product--img2 img:hover {
  transform: rotate(-90deg) !important;
  transform: scale(1.1);
}

.top__product--img3 {
  width: 100%;
  height: 80vw;
}

.top__product--img3 img {
  top: -60%;
  left: 0;
}
 

.top__product--img--name {
  font-size: 3.125;
}


/* / Garden & Industrial Tools */


/* アカデミー */
.top__academy--wrap {
  width: 90%;
  display: block;
  margin: 50px auto;
  padding: 60px 0;
}

.top__academy--img {
  width: 300px;
  height: 376px;
  margin: 0 auto 0;
}

.top__academy--info {
  width: 85%;
  margin: 65px auto 0;
}

.top__academy--ttl,
.top__academy--ttl--jp {
  text-align: center;
}


/* / アカデミー */




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


/* About
--------------------------------------*/
.about__main--wrap {
  width: 100vw;
  height: 100vw;
  position: relative;
  background: url(./img/about_img001@1.5x.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 50px;
}

.about__intro--wrap {
  width: 100vw;
  height: auto;
  padding: 0 3vw;
  position: relative;
  background: url(./img/about_img002@1.5x.jpg) no-repeat center center;
  background-size: cover;
}

.about__intro--h {
  font-size: 2em;
  padding: 30px 0 0 0;
}

.about__intro--sub-h {
  font-size: 1.5em;
}

.about__intro--info--box {
  text-align: center;
  margin: 5vw auto 0;
  width: 80%;
  padding-bottom: 30px;
}

.about__intro--info--h {
  color: #fff;
  font-size: 1.25em;
}

.about__intro--info--box p {
  font-size: 1em;
}

.about__miki--wrap {
  display: block;
  background-size: cover;
}

.about__miki--info--box {
  width: 90vw;
  max-width: 90vw;
  margin: 85vw auto 0;
}

.about__miki--h {
  font-size: 1.5em;
}

.about__intro--info--box p {
  font-size: 1em;
}

.about__miki--wrap {
  width: 100vw;
  /*height: 59vw;*/
  position: relative;
  background: url(./img/about_img009@1.5x.jpg) no-repeat top -8% left 40%;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.about__quality--wrap {
  width: 94vw;
  padding: 100px 5vw 20px;
  margin: 0 auto;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about__quality--box {
  height: auto;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.about__quality--info {
  width: 100%;
  padding: 10vw 0 12vw 0;
  height: auto;
  position: relative;
}

.about__quality--photo {
  width: 80vw;
  margin: 0 auto;
}

.about__profile--wrap {
  width: 100%;
  background-image: url(./img/about_img008@1.5x.png);
  background-size: 100%;
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  padding: 50px 0 30px;
}

.about__profile--box {
  margin-left: 5vw;
  width: 90vw;
}

.about__profile--data div {
  display: block;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.about__profile--data div dt {
  width: 100%;
  font-weight: bold;
}

.about__profile--data div dd {
  width: 100%;
  padding-left: .5em;
  text-indent: -1em;
  margin-bottom: 15px;
}


/* / About
--------------------------------------*/




/* 製品ページトップ - Category
--------------------------------------*/
.category__wrap {
  max-width: 100vw;
  min-width: 100vw;
  max-height: 2000px;
  min-height: auto;
  background-color: var(--secondcolor);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.category__tit {
  color: #cab3b3;
  font-family: var(--homefont);
  font-size: 4em;
  text-align: left;
  opacity: .35;
  padding-right: 0;
  padding-left: 2%;
  padding-top: 60px;
  line-height: 1.1;
}

.category__items--name {
  text-align: center;
}

.category__item001 {
  width: 90vw;
  position: relative;
  margin: 30px auto;
  left: 0;
  top: 0;
}

.category__item001 .category__items--photo {
  width: 15vw;
  height: 20vw;
  margin-left: 73vw;
  transform: rotate(90deg);
}

.category__item001 img {
  width: 100%;
}

.category__item002 {
  width: 90%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item002 .category__items--name {
  margin: 0 0 20px 0;
}

.category__item003 {
  width: 90%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item003 .category__items--name {
  margin: 0 0 20px 0;
}

.category__item004 {
  width: 60%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item004 .category__items--name {
  margin: 0 0 20px 0;
}

.category__item005 {
  width: 55%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item005 .category__items--name {
  margin: 0 0 20px 0;
}

.category__item006 {
  width: 50%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item006 .category__items--name {
  margin: 0 0 20px 0;
}

.category__item007 {
  width: 30%;
  position: relative;
  margin: 30px auto;
  left: 0;
}

.category__item007 .category__items--name {
  margin: 0 0 20px 0;
}


/* / 製品ページトップ - Category
--------------------------------------*/



/* 製品詳細ページ
--------------------------------------*/
.product__tag--name {
  font-size: 1.4em;
  margin-bottom: -10px;
}

.product__name--wrap {
  width: 90%;
  margin: 20px auto 0;
}

.product__name {
  font-size: 3.5em;
}

.product_sub-h {
  font-size: 1.2em;
  line-height: 1.2;
}

.product__photos .swiper-wrapper .vk_slider_item {
    margin-right: 0;
    padding: 0;
}

.product__h3 {
  font-size: 1.5em;
}

.product__movie--wrap {
  width: 100%;
  margin: 60px auto;
}

.product__movie--wrap iframe {
  width: 100%;
  height: 60vw;
}

.product__contents--box {
  max-width: 100%;
  min-width: 100%;
  margin: 60px auto;
  padding: 0 20px;
}

.manual-list {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.manual-list li {
  width: 48%;
  margin: 10px 0 10px 0;
}

/* VKスライダー関係の調整 */
.vk_slider, .vk_post_list_slider {
  margin-bottom: 30px;
}

.swiper-button-next.swiper-button-mobile-bottom,
.swiper-button-prev.swiper-button-mobile-bottom {
  bottom: 40% !important;
}

.parts-list li {
  width: 50px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.parts-list li:nth-child(4n),
.parts-list li:last-child {
  margin-right: 0;
}


/* / 製品詳細ページ
--------------------------------------*/



/* カテゴリー
--------------------------------------*/
.category--name {
  font-size: 2.5em;
  line-height: 1.2;
  padding: .5em 0;
}

.item-list--wap {
  width: 100%;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3em 0;
}

.item-list__item {
  width: 65%;
  padding-bottom: .7em;
  margin: .5em auto 2em;
}


/* / カテゴリー
--------------------------------------*/



/* お問い合わせ
--------------------------------------*/
.contact__main--wrap {
  width: 100vw;
  height: 100vw;
  position: relative;
  background: url(./img/contact_img002@1.5x.jpg) no-repeat center center;
  background-size: cover;
}

.column-two--wrap {
  width: 100%;
  margin: auto;
  padding: 40px 0;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

.colum-two--left {
  width: 95%;
  margin: 0 auto;
}

.column-two--right {
  width: 60%;
  margin:  auto;
}

.contact__to-countries {
  background-image: url(./img/contact_img001@2x.png);
  background-size: 20%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top left;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
  margin-top: 30px;
}

.contact__to-countries .wp-block-list {
  width: 95%;
  margin: auto;
}

.contact__to-countries li {
  width: 100%;
  margin-bottom: 20px;
}

.contact-form {
  width: 90%;
  margin: 40px auto 20px;
}

.contact-form th,
.contact-form td {
  display: block;
  width: 100%;
}

.contact-form th {
  padding-bottom: 5px;
}

.contact-form td {
  padding-bottom: 30px;
}

.contact__name--area {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact__name--area div:first-child,
.contact__name--area div:last-child {
  width: 100%;
}

.contact__name--area div:first-child input[type=text] {
  width: 97%;
  margin-bottom: 10px;
}

.contact__name--area div:last-child input[type=text] {
  width: 97%;
  margin-left: 0;
}




/* / お問い合わせ
--------------------------------------*/


/* 規約関係
--------------------------------------*/
.policy__wrap {

}

/* / 規約関係
--------------------------------------*/



/* ブログ一覧 ------------*/
.blog-list__item {
  width: 45%;
}

.blog-list__item--img {
  width: 100%;
  height: 26vw;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

/* / ブログ一覧 ------------*/


/* / 下層ページ全体-------*/



/* 投稿ページ -------*/
.post figure img,
.post img {
  max-width: 100%;
}


/* / 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/

  

/* フッター
--------------------------------------*/

.footer {
  text-align: left;
  padding-top: 20px;
}

.footer__box {
  display: block;
}

.footer__ttl {
  width: 70%;
}

.footer__nav {
  width: 85%;
  display: block;
  padding-bottom: 10px;
  padding: 0 0 10px 3%;
}

.footer__nav li {
  margin-right: 0;
  margin-bottom: .5em;
  position: relative;
  font-size: 1.2em;
}

.footer__sns {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer__sns li {
  width: 36px;
  margin-right: 15px;
}

.footer__sns li:last-child {
  margin-right: 0;
}

  /* トップへ戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    right: 3%;
    height: 40px;
    width: 40px;
  }


/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/