@charset "utf-8";

/*
Theme Name: nousan-info
Version: 1.1
Author: Owndmedia
*/

/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;/*(=1rem)*/
  background-color: #fff;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .2rem;
  font-feature-settings: "palt";
}

html, body, #page #scroll__contents {
  margin: 0 auto;
}

.wrapper {
  width: 100%;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem
}

h4 {
  font-size: 2.2rem;
}

p {
  font-size: 1.6rem;
}

a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #222;
}

ul, ol, li {
  list-style: none;
}

li, th, td {
  font-size: 1.6rem;
}

a:hover,
a:focus {
  color: #362724;
}

/**** 改行 ****/
.br_pc {display: block;} /*PCだけ改行 */
.br_1024 {display: none;} /*幅1024以下で改行 */
.br_960 {display: none;} /*幅960以下で改行 */
.br_560 {display: none;} /*幅560以下で改行 */

/**** 画像 ****/
img {
  max-width: 100%;
  height: auto;
}

.p-footer_sns {
  max-width: 20px;
}

/*** サムネイル画像 ***/
.post_thum_images {
  position: relative;
  overflow: hidden;
  height: 360px;
  margin-bottom: 1rem;
}

.post_thum_images img.wp-post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: .8s all;
}

.post_thum_images:hover img.wp-post-image {
  transform: scale(1.1, 1.1);
  transition: .8s all;
  opacity: .7;
}

/**** ボタン01 ****/
.btn01 {
  margin-top: 28px;
  font-family: 'Hind', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.btn01 a {
  display: block;
  transition: background-color 300ms ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  box-sizing: border-box;
  width: 260px;
  height: 70px;
  padding-left: 42px;
  color: #fff;
  background-color: #125A44;
  line-height: 75px;
}

.btn01 a:hover {
  color: #fff;
  background-color: #362724;
}

.btn01 a span {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 62px;
  height: 10px;
  overflow: hidden;
}
.webp .btn01 a span {
  background-image: url("../img/common/yajirushi01.png.webp");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}
.no-webp .btn01 a span {
  background-image: url("../img/common/yajirushi01.png");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}

/**** 白いボタン01 ****/
.btn01--white a {
  transition: background-color 300ms ease;
  color: #125A44;
  background-color: #ffffff;
  border: 2px solid #125A44;
}

.btn01--white a:hover {
  color: #ffffff;
  background-color: #125A44;
}

.webp .btn01--white a span {
  background-image: url("../img/common/yajirushi02.png.webp");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}
.no-webp .btn01--white a span {
  background-image: url("../img/common/yajirushi02.png");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}

.webp .btn01--white a:hover span {
  background-image: url("../img/common/yajirushi01.png.webp");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}
.no-webp .btn01--white a:hover span {
  background-image: url("../img/common/yajirushi01.png");
  background-size: 62px 10px;
  background-repeat: no-repeat;
}

/***** ミニボタン01 *****/
.btn01--mini a {
  width: 200px;
  height: 60px;
  padding-left: 32px;
  line-height: 65px;
}

.btn01--mini a span {
  top: 25px;
}

/**** その他共通 ****/
.flex {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.flex--space-between {
  justify-content: space-between;
}

.flex--space-around {
  justify-content: space-around;
}

.flex--center {
  justify-content: center;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/**** パンくずリスト ****/
.breadcrumb {
  margin-bottom: 8rem;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
  margin-right: 3rem;
}

.breadcrumb li::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #bababa;
  border-right: 2px solid #bababa;
  transform: rotate(45deg);
  right: -1.8rem;
  bottom: 1.2rem;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb li a {
  color: #125A44;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

.breadcrumb li a:hover {
  color: #362724;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

/**** ページャー ****/
.archive_pagination {
  text-align: center;
  margin-top: 5rem;
}

.page-numbers li {
  background-color: #fff;
  display: inline;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 .5rem;
}

.page-numbers li a {
  border: 1px solid #362724;
  color: #125A44;
  background-color: #fff;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 2.7;
  transition: color .2s ease-in-out;
}

.page-numbers li a:hover {
  border: 1px solid #362724;
  background-color: #125A44;
  color: #fff;
  transition: color .2s ease-in-out, background-color .2s ease-in-out;
}

.page-numbers.current {
  background-color: #125A44;
  color: #fff;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 2.7;
}

.page-numbers.prev,
.page-numbers.next {
  color: #362724;
}

/**** スクロールバーデザイン ****/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
  border-left: solid 1px #eee;
}

::-webkit-scrollbar-thumb {
  background-color: #4EA699;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}

/**** ページトップに戻るボタン ****/
#page_top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 97;
}

#page_top a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(18, 90, 68, .8);
  display: grid;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease-out, opacity .3s ease-out;
}

#page_top a:hover {
  opacity: .7;
  transition: transform .3s ease-out, opacity .3s ease-out;
}

#page_top a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: .3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 3px;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

/**** マウスドラッグした時の文字色 ****/
::selection {
  background-color: #362724;
  color: #fff;
}

/**** ページ全体の余白など ****/
#page {
  overflow: hidden;
  width: 100%;
}

/**** 404 not found ****/
.page-not-found {
  margin: 10vw auto 0;
}

.page-not-found p {
  text-align: center;
}

.page-not-found > p {
  margin-bottom: 1.5rem;
}

.page-not-found p a {
  color: #125A44;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 .5rem;
  position: relative;
}

.page-not-found a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #125A44;
  transition: width .4s ease-in-out;
}

.page-not-found a:hover::after {
  width: 100%;
}


/*--------------------------------------------------------------
## main
--------------------------------------------------------------*/
.contents {
  margin: 0 auto 20vh;
}

.contents--small {
  margin: 0 auto 5vw;
}

.contents--type01 {
  width: 1180px;
  padding: 0 3rem;
}

.contents--type01.flex {
  align-items: center;
}

.contents--type02 {
  max-width: 1800px;
}

.contents--type03 {
  max-width: 1800px;
}


/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
/**** コンタクトボタン ****/
.index-contact__btn {
  margin: 0 auto -175px;
}

.contact-btn {
  width: 100%;
  height: 260px;
  color: #fff;
  background-color: #125A44;
  position: relative;
  z-index: 90;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  font-weight: 700;
  line-height: 0.9;
  overflow: hidden;
}

.contact-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-color: #362724;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s ease-out;
}

.contact-btn:hover {
  color: #fff;
}

.contact-btn:hover::before {
  transform: scale(1, 1);
}

.contact-btn__txt {
  text-align: center;
}

.contact-btn--ja {
  z-index: 1000;
  font-size: 3rem;
  line-height: 1.8;
}

.contact-btn--en {
  z-index: 1000;
  font-size: 1.4rem;
  font-family: 'Hind', sans-serif;
  text-transform: uppercase;
  line-height: 1.8;
}

/**** フッターアクセス ****/
.access-container {
  padding: 0 10rem 5rem;
  position: relative;
}

.access-container__bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.access__images {
  min-height: 964px;
  width: 100%;
}
.webp .access__images {
  background-image: url("../img/common/access_bg.jpg.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 0;
}
.no-webp .access__images {
  background-image: url("../img/common/access_bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 0;
}

.access-container__bg::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.access-container__box {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  margin: 0 auto;
  padding: 20rem 0 5rem;
}

.access-container__map {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.access-container__txt {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.access-container__txt:first-child {
  font-size: 2.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.access-container__sns a {
  font-size: 2.6rem;
  padding-right: 0.5rem;
  position: relative;
  z-index: 1;
  color: #fff;
  transition: color .2s ease-in-out;
}

.access-container__sns a:hover {
  color: #125A44;
  transition: color .2s ease-in-out;
}

.access-container__copyright {
  text-align: center;
  font-size: 1rem;
  margin-top:2rem;
  position: relative;
  z-index: 1;
  color: #fff;
}


/*--------------------------------------------------------------
## index.php
--------------------------------------------------------------*/
/***** index-contents1 *****/
.index-contents1 .contents {
  position: relative;
}

.index-contents1 .contents::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  opacity: .1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.webp .index-contents1 .contents::after {
  background-image: url(../img/index/index_logo-brw.png.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.no-webp .index-contents1 .contents::after {
  background-image: url(../img/index/index_logo-brw.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.contents1__ttl {
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contents1__txt {
  line-height: 2.6;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contents1__txt--shop a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.contents1__txt--shop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #362724;
  transition: width .4s ease-in-out; 
}

.contents1__txt--shop a:hover::after {
  width: 100%;
}

.contents1__txt--shop a::first-letter {
  color: #d90029;
}

.contents1__txt--attention {
  display: block;
  margin-top: 2rem;
}

/***** index-contents-list *****/
.index-contents-list {
  display: block;
}

.index-contents-list__box {
  margin-bottom: 15rem;
}

.index-contents-list__img {
  box-sizing: border-box;
  display: inline-block;
  width: 64%;
  margin-bottom: 0;
  padding-top: 0;
  opacity: 1;
  line-height: 0;
}

.index-contents-list li:nth-child(odd) .index-contents-list__img {
  margin: 0 0 0 36%;
}

.index-contents-list li:nth-child(even) .index-contents-list__img {
  margin: 0 36% 0 0;
}

.index-contents-list__txt {
  position: relative;
  width: 30%;
  margin-top: -25%;
  padding: 8% 11% 5%;
  background: linear-gradient(20deg, rgba(78, 166, 153, 1) 0%, rgba(255, 255, 255, 1) 40%);
  opacity: 1;
}

.index-contents-list li:nth-child(even) .index-contents-list__txt {
  position: relative;
  width: 30%;
  margin: -25% 0 0 53%;
  padding: 8% 11% 5%;
  background: linear-gradient(20deg, rgba(78, 166, 153, 1) 0%, rgba(255, 255, 255, 1) 40%);
}

.index-contents-list__ttl {
  margin-bottom: 20px;
  position: relative;
}

.index-contents-list__ttl__h2 {
  display: inline-block;
  border-left: 4px solid #362724;
  border-right: 4px solid #362724;
  padding: 0 5rem;
  position: relative;
}

.index-contents-list__ttl__h2::after {
  content: "";
  width: 120px;
  height: 55px;
  display: inline-block;
  opacity: .1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.webp .index-contents-list__ttl__h2::after {
  background-image: url(../img/common/pig--b.png.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.no-webp .index-contents-list__ttl__h2::after {
  background-image: url(../img/common/pig--b.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.index-contents-list__ttl__h2--ja {
  text-align: left;
  display: block;
  line-height: 1.8;
}

.index-contents-list__ttl__h2--en {
  font-size: 1.4rem;
  text-align: left;
  display: block;
  line-height: 1.8;
  text-transform: uppercase;
}

.index-contents-list__lead {
  font-size: 1.5rem;
  line-height: 2;
}

.index-contents-list__lead .btn01 {
  margin-top: 5rem;
}

/***** index-contents3 *****/
.index-contents3 {
  background-color: #362724;
  padding: 10rem 0 1.5rem;
  text-align: center;
}

.index-contents3__ttl {
  color: #fff;
  text-align: center;
  display: inline-block;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  padding: 0 5rem;
  position: relative;
  margin: 0 auto 2rem;
  z-index: 1;
}

.index-contents3__ttl::after {
  content: "";
  width: 120px;
  height: 55px;
  display: inline-block;
  opacity: .2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.webp .index-contents3__ttl::after {
  background-image: url(../img/common/pig--w.png.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.no-webp .index-contents3__ttl::after {
  background-image: url(../img/common/pig--w.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.index-contents3__ttl--ja,
.index-contents3__ttl--en {
  color: #fff;
  text-align: center;
  display: block;
  line-height: 1.8;
}

.index-contents3__ttl--en {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.index-contents3__lead {
  text-align: center;
  color:#fff;
  margin: 2rem auto 8rem;
}

.index-contents3__lead--shop a {
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

.index-contents3__lead--shop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width .4s ease-in-out; 
}

.index-contents3__lead--shop a::first-letter {
  color: #d90029;
}

.index-contents3__lead--shop a:hover::after {
  width: 100%;
}

.index-contents3__box__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.index-contents3__box__list__item {
  background-color: #fff;
  padding: 3rem 3rem 3rem 6rem;
  width: calc(40% - 1rem);
  position: relative;
}

.index-contents3__box__list__item:hover {
  transform: rotate(2deg);
  transition: transform .4s ease-in-out;
}

.index-contents3__box__list__item h3 {
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: left;
}

.index-contents3__box__list__item h3 span.--en {
  background-color: #fff;
  border-radius: 50%;
  border: 3px dotted #362724;
  color: #362724;
  font-size: 10px;
  line-height: 1;
  width: 80px;
  height: 80px;
  display: grid;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
}

.index-contents3__box__list__item h3 span.--num {
  color: #362724;
  display: block;
  font-size: 32px;
}

.index-contents3__box__list__item p {
  text-align: left;
}

.index-contents3__btn {
  margin: 0 auto;
}

.index-contents3__btn .btn01 a {
  margin: 8rem auto 0;
  text-align: left;
}

/***** index-contents4 *****/
.index-contents4 {
  padding: 15rem 0 10rem;
  text-align: center;
}
.webp .index-contents4 {
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(54, 39, 36, .8)), url(../img/index/contents4_bg.jpg.webp) no-repeat center center / cover;
}
.no-webp .index-contents4 {
  background: linear-gradient(rgba(0, 0, 0, .3), rgba(54, 39, 36, .8)), url(../img/index/contents4_bg.jpg) no-repeat center center / cover;
}

.index-contents4__ttl {
  color: #fff;
  text-align: center;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  padding: 0 5rem;
  position: relative;
  margin: 0 auto 2rem;
  display: inline-block;
  z-index: 1;
}

.index-contents4__ttl::after {
  content: "";
  width: 120px;
  height: 55px;
  display: inline-block;
  opacity: .2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.webp .index-contents4__ttl::after {
  background: url(../img/common/pig--w.png.webp) no-repeat center center / contain;
}
.no-webp .index-contents4__ttl::after {
  background: url(../img/common/pig--w.png) no-repeat center center / contain;
}

.index-contents4__ttl--ja,
.index-contents4__ttl--en {
  color: #fff;
  text-align: center;
  display: block;
  line-height: 1.8;
}

.index-contents4__ttl--en {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.index-contents4__lead {
  text-align: center;
  color:#fff;
  margin: 2rem auto 8rem;
}

.index-contents4__btn {
  margin: 0 auto;
}

.index-contents4__btn .btn01 a {
  margin: 8rem auto 0;
  text-align: left;
}

/***** index-news *****/
.index-news {
  padding: 15rem 0 6rem;
}

.index-news__head {
  margin: 0 auto 10rem;
  width: 85%;
}

.index-news__ttl {
  display: inline-block;
  border-left: 4px solid #362724;
  border-right: 4px solid #362724;
  padding: 0 5rem;
  position: relative;
}

.index-news__ttl::after {
  content: "";
  width: 120px;
  height: 55px;
  display: inline-block;
  opacity: .1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 0;
}
.webp .index-news__ttl::after {
  background: url(../img/common/pig--b.png.webp) no-repeat center center / contain;
}
.no-webp .index-news__ttl::after {
  background: url(../img/common/pig--b.png) no-repeat center center / contain;
}

.index-news__ttl--ja,
.index-news__ttl--en {
  text-align: center;
  display: block;
  line-height: 1.8;
}

.index-news__ttl--en {
  font-size: 1.4rem;
  text-align: left;
  text-transform: uppercase;
}

.index-news__head .btn01 {
  margin-top: 1rem;
}

.index-news__item {
  margin:0 auto;
}

.index-news-list {
  width: 80%;
  margin: 0 auto;
}

.index-news-list__box {
  margin-bottom: 3rem;
  text-align: left;
}

.index-news-list__box:last-child {
  margin-bottom: 0;
}

.index-news-list__box a {
  transition: opacity .3s ease-out;
}

.index-news-list__box a:hover {
  opacity: .7;
  transition: opacity .3s ease-out;
}

.index-news-list__date {
  position: relative;
  left: 0;
  top: 0;
  color: #888;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875;
  margin-bottom: 0;
}

.index-news-list__date::after {
  position: absolute;
  top: 1rem;
  left: 15rem;
  width: 10rem;
  height: 1px;
  background-color: #125A44;
  content: '';
}

.index-news-list__ttl {
  padding-left: 20rem;
}

.not-found__txt {
  color: #d90029;
  text-align: center;
}


/*--------------------------------------------------------------
## production.php
--------------------------------------------------------------*/
.production {
  margin: 8rem 0 0;
}

.production-system {
  text-align: center;
  margin-bottom: 15rem;
}

.production-system--inner {
  background: linear-gradient(315deg, rgba(78, 166, 153, 1) 0%, rgba(255, 255, 255, 1) 40%);
  border: 1px solid #362724;
  margin-top: -3%;
  padding: 7rem 5rem;
}

.production-system_ttl {
  background-color: #fff;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5rem;
}

.production-system_img {
  margin: 2.5rem auto;
}

.production-system_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-system_txt {
  font-size: 18px;
  text-align: left;
}

.production-map {
  margin-bottom: 15rem;
}

.production-map_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
}

.production-map_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.production-map_img_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 5rem;
}

.production-map_img_list_item {
  width: calc(32.5% - 1.5rem);
  height: auto;
  position: relative;
}

.production-map_img_list_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-map_img_list_item p {
  font-weight: 600;
  text-align: center;
  background-color: rgb(54 39 36 / 80%);
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  padding: .5rem 0;
}

.production-site {
  background: linear-gradient(to bottom, rgb(54 39 36 / 15%), rgba(255, 255, 255, 0));
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 15rem 0 5rem;
  text-align: center;
}

.production-site--inner {
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - 8rem);
}

.production-site_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1rem;
  position: relative;
}

.production-site_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.production-site_list_item {
  position: relative;
  margin-bottom: 5rem;
}

.production-site_list_item--img {
  box-sizing: border-box;
  line-height: 0;
}

.production-site_list_item--overlay {
  background-color: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.production-site_list_item--img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.production-site_list_item--txt {
  color: #fff;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: calc(100% - 5rem);
  z-index: 1;
}

.production-site_list_item--txt h4 {
  border-bottom: 1px solid #bababa;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.production-site_list_item--txt p {
  font-size: 1.85rem;
}

.production-map_iframe {
  text-align: center;
}


/*--------------------------------------------------------------
## environment.php
--------------------------------------------------------------*/
.environment {
  margin: 8rem 0 0;
}

.environment-menu {
  margin-bottom: 15rem;
}

.environment-menu_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.environment-menu_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.environment-menu_txt {
  margin-bottom: 2.5rem;
}

.environment-menu_list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.environment-menu_list_item {
  text-align: center;
}

.environment-menu_list_item_img {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  line-height: 0;
  position: relative;
}

.environment-menu_list_item_img--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  transition: opacity .3s ease-out;
  opacity: 0;
}

.environment-menu_list_item_img:hover .environment-menu_list_item_img--overlay {
  opacity: 1;
}

.environment-menu_list_item_img img {
  height: auto;
  transition: transform .3s ease-out;
  box-sizing: border-box;
  line-height: 0;
  position: relative;
  z-index: -1;
}

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

.environment-menu_list_item a {
  display: block;
}

.environment-menu_list_item p {
  color: #222;
  font-weight: 600;
  position: relative;
  margin: 1rem 0 0;
  transition: color .3s ease-in-out;
}

.environment-menu_list_item p:hover {
  color: #125A44;
  transition: color .3s ease-in-out;
}

.environment-menu_list_item p::after {
  content: "";
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  border-radius: 2px;
  display: block;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: -50%;
  left: 50%;
}

.environment-menu_list_item p:hover::after {
  border-top: 3px solid #125A44;
  border-right: 3px solid #125A44;
  transition: all .3s ease-in-out;
  bottom: -55%;
}

.environment-contents {
  margin-bottom: 20rem;
}

.environment-contents_list_item {
  margin-bottom: 10rem;
}

.environment-contents_list_item h4 {
  border-left: 5px solid #362724;
  border-bottom: 1px solid #362724;
  font-weight: 600;
  padding-left: 1rem;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
}

.environment-contents_list_item--inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.environment-contents_list_item--img {
  box-sizing: border-box;
  line-height: 0;
  width: 35%;
  z-index: 1;
}

.environment-contents_list_item--txt {
  width: 75%;
}

.environment-contents_list_item--txt > p {
  margin-bottom: 2rem;
}

.environment-contents_list_item--cycle {
  display: flex;
  justify-content: flex-start;
}

.environment-contents_list_item--cycle img {
  width: 100%;
}

.environment-contents_list_item--cycle ol {
  margin: 0 1rem;
  width: 100%;
}

.environment-contents_list_item--cycle ol li {
  font-size: 1.25rem;
  padding: .5rem 0;
}

.environment-contents_list_item--cycle ol li:first-child {
  background-color: #4EA699;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: .5rem;
}

.environment-contents_list_item--cycle ol li:first-child::after {
  display: none;
}

.environment-contents_list_item--cycle ol li:last-child::after {
  display: none;
}

.environment-contents_list_item--cycle ol li::after {
  content: "";
  display: block;
  color: #362724;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  border: .2em solid #362724;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(135deg);
  margin: 0 auto;
}


/*--------------------------------------------------------------
## feature.php
--------------------------------------------------------------*/
.feature {
  margin: 8rem 0 0;
}

.feature-contents {
  margin-bottom: 15rem;
}

.feature-contents_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 8rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
}

.feature-contents_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.feature-contents_list_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 8rem;
}

.feature-contents_list_item--img {
  width: 40%;
  box-sizing: border-box;
  line-height: 0;
}

.feature-contents_list_item--txt {
  width: calc(58% - 2rem);
}

.feature-contents_list_item--txt h3 {
  font-weight: 600;
  margin-bottom: 2rem;
}

.feature-contents_list_item--txt h3 span.--en {
  background-color: #fff;
  border-radius: 50%;
  border: 3px dotted #362724;
  color: #362724;
  font-size: 10px;
  line-height: 3;
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  margin-right: 2rem;
  position: relative;
  vertical-align: middle;
  line-height: 4.5;
  text-transform: uppercase;
}

.feature-contents_list_item--txt h3 span.--num {
  color: #362724;
  font-size: 32px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-product {
  margin-bottom: 15rem;
}

.feature-product_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
}

.feature-product_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.feature-product_txt {
  margin-bottom: 4rem;
}

.feature-product_txt--shop a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

.feature-product_txt--shop a::first-letter {
  color: #d90029;
}

.feature-product_txt--shop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #362724;
  transition: width .4s ease-in-out;
}

.feature-product_txt--shop a:hover::after {
  width: 100%;
}

.feature-product--inner {
  position: relative;
}

.feature-product_gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-product_gallery picture:nth-child(1) {
	grid-row: 1;
}

.feature-product_gallery picture:nth-child(2) {
	grid-row: 1;
	grid-column: 2;
}

.feature-product_gallery picture:nth-child(3) {
	grid-row: 1 / 3;
	grid-column: 3;
}

.feature-product_gallery picture:nth-child(4) {
	grid-row: 2 / 4;
	grid-column: 1 / 3;
  height: 100%;
}

.feature-product_gallery picture:nth-child(5) {
  grid-row: 3;
  grid-column: 3 / 4;
}

.feature-product_gallery picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-product_desc {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: linear-gradient(20deg, rgba(78, 166, 153, 1) 0%, rgba(255, 255, 255, .9) 40%);
  padding: 2.5rem;
}


/*--------------------------------------------------------------
## company.php
--------------------------------------------------------------*/
.company {
  margin: 8rem 0 0;
}

.company-img {
  margin-bottom: 15rem;
}

.company-img_ttl {
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5rem;
  margin-right: auto;
  margin-left: auto;
}

.company-img_bg {
  height: 575px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.webp .company-img_bg {
  background: url(../img/company/company_bg.jpg.webp) no-repeat center center / cover;
  background-attachment: fixed;
}
.no-webp .company-img_bg {
  background: url(../img/company/company_bg.jpg) no-repeat center center / cover;
  background-attachment: fixed;
}

.company-outline {
  margin-bottom: 15rem;
  text-align: center;
}

.company-outline--inner {
  padding: 4rem 2.5rem 0;
}

.company-outline_ttl {
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
}

.company-outline_table {
  width: calc(80% - 1.5rem);
  height: auto;
  margin: 0 auto;
}

.company-outline_table th {
  width: 30%;
  border-bottom: 2px solid #125A44;
  padding: 1.5rem;
  vertical-align: middle;
}

.company-outline_table td {
  width: 70%;
  border-bottom: 2px solid #bababa;
  padding: 1.5rem;
  text-align: left;
}

.company-history {
  margin-bottom: 15rem;
  text-align: center;
}

.company-history--inner {
  background: linear-gradient(315deg, rgba(78, 166, 153, 1) 0%, rgba(255, 255, 255, 1) 40%);
  margin-top: -3%;
  padding: 10rem 2.5rem;
  border: 1px solid #362724;
}

.company-history_ttl {
  background-color: #fff;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5rem;
}

.company-history_list_item {
  display: flex;
  line-height: 1.5;
  font-size: 16px;
}

.company-history_list_item .--date {
  width: 20%;
  padding: 0 20px;
  color: #888888;
  font-weight: bold;
}
          
.company-history_list_item .--content {
  position: relative;
  width: 80%;
  padding: 0 20px 60px 30px;
  border-left: 1px solid #bababa;
  text-align: left;
}

.company-history_list_item .--content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #125A44;
  border-radius: 10px;
}

.company-athlete {
  background: linear-gradient(to bottom, rgb(54 39 36 / 15%), rgba(255, 255, 255, 0));
  margin: 0 calc(50% - 50vw) 15rem;
  width: 100vw;
  padding: 15rem 0 0;
  text-align: center;
}

.company-athlete--inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
}

.company-athlete_ttl {
  border-bottom: 5px solid #bababa;
  color: #362724;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
}

.company-athlete_ttl::after {
  content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #4EA699;
}

.row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.image {
  width: 30.5%;
}

.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
}

.img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 0;
}

.img-overlay {
  background-color: rgba(0,0,0,.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}

.img-overlay i {
  color: #fff;
  font-size: 5em;
}

#overlay {
  background-color: rgba(0,0,0,.9);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
}

#overlay img {
  margin: 0;
  width: 35%;
  height: auto;
  object-fit: contain;
  padding: 5%;
}

#nextButton {
  color: #fff;
  font-size: 5em;
  transition: opacity .3s ease-out;
  cursor: pointer;
}

#nextButton:hover {
  opacity: .7;
}

#prevButton {
  color: #fff;
  font-size: 5em;
  transition: opacity .3s ease-out;
  cursor: pointer;
}

#prevButton:hover {
  opacity: .7;
}

#exitButton {
  color: #fff;
  font-size: 5em;
  transition: opacity .3s ease-out;
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer;
}

#exitButton:hover {
  opacity: .7;
}


/*--------------------------------------------------------------
## お問い合わせ page-contact.php
--------------------------------------------------------------*/
.page-contact {
  padding: 8rem 0;
}

.page-contact_info {
  text-align: center;
}

.page-contact_info a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
  position: relative;
}

.page-contact_info a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #362724;
  transition: width .4s ease-in-out; 
}

.page-contact_info a:hover::after {
  width: 100%;
}

.page-contact_form {
  margin: 7rem auto;
  width: 90%;
}

.page-contact_form p {
  margin: 2rem 2rem 2.5rem 0;
}

.required {
  background-color: #d90029;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: .5rem 1rem;
  margin: 0 .5rem;
  vertical-align: middle;
}

.page-contact_form input.wpcf7-form-control.wpcf7-text {
  width: -webkit-fill-available;
  height: 2rem;
  padding: 1.2rem;
  border: 2px solid #362724;
}

.page-contact_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: -webkit-fill-available;
  padding: 1.2rem;
  border: 2px solid #362724;
}

.page-contact_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1.2rem;
  border: 2px solid #362724;
  position: relative;
}

.page-contact_form_table table {
  width: 100%;
  table-layout: fixed;
  word-break: break-word;
}

.page-contact_form_table th {
  width: 30%;
  text-align: right;
  vertical-align: middle;
}

.page-contact_form_table td {
  width: 70%;
}

.page-contact_form_policy {
  border: 2px solid #362724;
  background-color: #fff;
  max-width: 915px;
  width: auto;
  height: 30rem;
  overflow: auto;
  margin: 0 auto;
}

.page-contact_form_policy--inner {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}

.page-contact_form_policy h4 {
  margin: 0 auto 2rem;
  font-weight: 600;
}

.page-contact_form_policy h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

.page-contact_form_policy p {
  margin: 0 0 3rem;
}

.page-contact_form_checkbox {
  text-align: center;
  padding: 1rem 0 0;
}

input[type="checkbox"] {
  margin-right: .5rem;
  margin-bottom: .5rem;
}

.wpcf7-submit {
  width: 260px;
  height: 70px;
  text-align: center;
  display: block;
  margin: 4rem auto 0;
  background-color: #125A44;
  color: #fff;
  transition: background-color .2s ease-in-out;
  font-size: 2rem;
}

.wpcf7-submit:hover {
  background-color: #362724;
  transition: background-color .2s ease-in-out;
}

.wpcf7-spinner {
  display: none;
}

.screen-reader-response {
  display: none;
}


/*--------------------------------------------------------------
## archive-news.php
--------------------------------------------------------------*/
/***** news *****/
.news {
  padding: 10rem 0 6rem;
}

.news__item {
  margin:0 auto;
}

.news__box {
  max-width: 750px;
  margin: 8rem auto;
}

.news-list__box {
  margin-bottom: 3rem;
  text-align: left;
}

.news-list__box a {
  transition: opacity .3s ease-out;
}

.news-list__box a:hover {
  opacity: .7;
  transition: opacity .3s ease-out;
}

.news-list__date {
  position: relative;
  left: 0;
  top: 0;
  color: #888;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875;
  margin-bottom: 0;
}

.news-list__date::after {
  position: absolute;
  top: 1rem;
  left: 11rem;
  width: 6rem;
  height: 1px;
  background-color: #125A44;
  content: "";
}

.news-list__ttl {
  padding-left: 10rem;
}


/*--------------------------------------------------------------
## single-news.php
--------------------------------------------------------------*/
/***** .news-single *****/
.news-single {
  padding: 10rem 0 6rem;
}

.news-single__item {
  text-align: center;
}

.news-single__ttl {
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 70%;
}

.news-single__date {
  text-align: center;
  color: #4EA699;
  font-weight: 700;
  margin: 0 auto 7rem;
}

.news-single .wp-post-image {
  max-width: 100%;
  margin: 0 auto 3rem;
  width: 70%;
}

.news-single__txt {
  text-align: left;
  margin: 0 auto;
  max-width: 70%;
}

.news-btn {
  margin: 10rem auto 0;
}

.news-btn a {
  margin: 0 auto;
}


/*--------------------------------------------------------------
## front-page.php / archive.php *デフォルト投稿用 / 使用無し
--------------------------------------------------------------*/
/***** products *****/
.products {
  padding: 10rem 0 6rem;
}

.products__item {
  text-align: center;
  margin-top: 4rem;
  width: 47%;
}

.products__txt h3 {
  color: #222;
  font-size: 2.2rem;
  text-align: left;
  margin: 1rem 0 2rem;
}

.products__txt h3:hover {
  color: #d6f1ad;
  transition: all .3s ease-in-out;
}

.products__txt--category {
  margin: 1.5rem 0 0;
}

.category-btn02 a{
  color: #fff;
  background-color: #4EA699;
  font-size: 1.4rem;
  border: 2px solid #4EA699;
  padding: .5rem 1.3rem;
}

.category-btn02 a:hover{
  color: #4EA699;
  background-color: #fff;
  border: 2px solid #4EA699;
  transition: all .3s ease-in-out;
}

.products__btn {
  margin: 0 auto;
}

.products__btn .btn01 a {
  margin: 8rem auto 0;
}


/*--------------------------------------------------------------
## single.php *デフォルト投稿用 / 使用無し
--------------------------------------------------------------*/
/***** .products-single *****/
.products-single__item {
  margin-bottom: 3rem;
  width: calc(70% - 4rem);
  padding-right: 4rem;
}

.products-single__ttl {
  text-align: left;
  margin: 0rem 0 3rem;
}

.products-single__info {
  margin: 2rem auto 0
}

.products-single__date {
  color: #4EA699;
}

.products-single__txt {
  margin: 4rem 0 0rem;
}

.widget-container {
  width: calc(340px - 4rem);
  margin-left: 4rem;
  margin-bottom: 3rem;
}

label.screen-reader-text {
  display: none;
}

.widget-container_title {
  background-color: #4EA699;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 1rem;
  padding: 0.5rem 2rem;
}

.searchform {
  position: relative;
}

.searchfield {
  font-size: 14px;
  width: 90%;
  margin: 1rem auto;
  padding: 1.2rem 1rem;
  border: solid 1px #bbb;
  background-color: #efefef;
}

.searchsubmit {
  font-family: 'FontAwesome';
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: 8%;
  margin-top: 2rem;
  padding: 0;
  cursor: pointer;
  color: #4EA699;
  border: none;
  background-color: transparent;
}

.searchsubmit:hover {
  opacity: .7;
}


/*--------------------------------------------------------------
## search.php *デフォルト投稿用 / 使用無し
--------------------------------------------------------------*/
.search_ttl {
  margin: 7rem 0 0;
}

.search_none {
  margin: 4rem 0 0;
}


/*--------------------------------------------------------------
## 1441px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:1440px) {
  /* フッター */
  .webp .access__images {
    background-image: url("../img/common/access_bg.jpg.webp");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: 0 0;
  }
  .no-webp .access__images {
    background-image: url("../img/common/access_bg.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: 0 0;
  }

  /* company.php */
  .webp .company-img_bg {
    background: url(../img/company/company_bg.jpg.webp) no-repeat center center / cover;
    background-attachment: scroll;
  }
  .no-webp .company-img_bg {
    background: url(../img/company/company_bg.jpg) no-repeat center center / cover;
    background-attachment: scroll;
  }
}


/*--------------------------------------------------------------
## 1260px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:1259px) {
  .contents--type01 {width: calc(100% - 165px);}

  /* フッター */
  .index-contact__btn {margin: 0 auto -160px;}
  .contact-btn {width: 90%; margin:0 auto;}
  .contact-btn--en {font-size: 2.4rem; line-height: 1.6;}

  /* index.php */
  .index-contents3__box__list__item {width: auto;}
  .index-contents3__box__list__item h3 span.--en {left: -4%;}

  /* feature.php */
  .feature-product_gallery {grid-template-columns: repeat(2, minmax(0, 1fr));}
  .feature-product_gallery picture:nth-child(3) {grid-row: 2; grid-column: 1; max-height: 359.64px; object-fit: cover;}
  .feature-product_gallery picture:nth-child(4) {grid-row: 3 / 4; grid-column: 1 / 3;}
  .feature-product_gallery picture:nth-child(5) {grid-row: 2; grid-column: 2 / 3;}

  /* company.php */
  .row {gap: 20px;}

  /* page-contact.php */
  .page-contact_form {width: 100%; margin: 5rem auto 0;}
}


/*--------------------------------------------------------------
## 1025px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:1024px) {
  /* 改行 */
  .br_pc {display: none;}
  .br_1024 {display: block;}

  /* 共通 */
  .contents {margin-bottom: 20vw;}
  .contents--small {margin-bottom: 10vw;}
  .contents--type03 {width: 100%;}

  /* フッター */
  .access-container {padding: 0 5rem 5rem;}

  /* production.php */
  .production-map_img_list {gap: 40px;}
  .production-map_img_list_item {width: calc(48% - 1.5rem);}

  /* environment.php */
  .environment-contents_list_item--cycle {display: block;}
  .environment-contents_list_item--cycle ol li::after {margin-left: 12rem;}

  /* feature.php */
  .feature-product_desc {max-width: 70%;}

  /* company.php */
  .company-outline_table {width: 100%;}

  /* page-contact.php */
  .page-contact_form_table th {width: 40%;}

  /* single.php *デフォルト投稿用 / 使用無し */
  .products {padding: 7rem 0 6rem;}
  .products-single__box {display: block;}
  .products-single__item {margin-bottom: 3rem; width: 100%; padding-right: 0;}
  .widget-container {width: 100%; margin-left: 0rem;}
  .products-single__ttl {margin: 4rem 0 2rem;}
  .products-single__txt {margin: 4rem 0 7rem;}
}


/*--------------------------------------------------------------
## 960px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /* 改行 */
  .br_960 {display: block;}

  /* 共通 */
  .contents--type01 {width: calc(100% - 10vw); margin-right: auto;}

  /* フッター */
  .access-container__box {padding: 15rem 0 5rem;}

  /* サムネイル画像*/
  .post_thum_images {height:60vw;}

  /* index.php*/
  .index-contents-list__img {position: relative; display: inline-block; width: 84%; margin-bottom: 40px; padding-top: 0; opacity: 1;}
  .index-contents-list li:nth-child(odd) .index-contents-list__img {margin: 0 0 0 0%;}
  .index-contents-list li:nth-child(even) .index-contents-list__img {margin-left: 16%;}
  .index-contents-list__txt {width: auto; margin-top: 8%; padding: 0 16% 12% 120px;}
  .index-contents-list li:nth-child(even) .index-contents-list__txt {width: auto; margin: 8% 0 0 0; padding: 0 16% 12% 120px;}
  .index-contents3__item {width: 100%;}
  .index-contents3__box__list__item h3 span.--en {width: 65px; height: 65px;}
  .index-contents3__box__list__item h3 span.--num {font-size: 28px; text-align: center;}
  .index-news__head {width: 100%; margin: 0 auto 7rem;}
  .index-news-list {width: auto; margin: 0 auto;}
  .index-news-list__ttl {padding-left: 6rem;}
  .index-news-list__date::after {width: 4rem; left: 10rem;}

  /* environment.php */
  .environment-menu_list {flex-wrap: wrap; gap: 50px;}
  .environment-menu_list_item {width: calc(48% - 1.5rem);}
  .environment-contents_list_item--inner {display: block;}
  .environment-contents_list_item--img {width: 70%; margin-bottom: 5rem;}
  .environment-contents_list_item--txt {width: 100%;}

  /* company.php */
  .company-outline--inner {padding: 2rem 2.5rem 0;}
  .company-outline_table {width: 100%;}
  #overlay img {width: 65%;}

  /* news-single.php */
  .news-single__txt {max-width: 90%;}

  /* front-page.php / archive.php *デフォルト投稿用 / 使用無し */
  .products__item {width: 100%;}
  .products__item:first-child {margin-top: 0;}
}


/*--------------------------------------------------------------
## 768px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:767px) {
  /* フッター */
  .index-contact__btn {margin: 0 auto -140px;}
  .contact-btn {width: 100%; height: 175px; margin: 0 auto;}
  .contact-btn--ja {font-size: 2rem;}
  .contact-btn--en {font-size: 1.2rem; line-height: 1.4;}
  .access-container__box {display: block; text-align: center; padding: 10rem 0 5rem;}
  .access-container__item {line-height: 2.4;}
  .access-container__sns {margin-top: 4rem;}

  /* index.php */
  .index-news {padding: 7rem 0 0rem;}
  .index-news-list__ttl {font-size: 1.4rem; padding-left: 0rem;}
  .index-news-list__date {display: block; color: #4EA699;}
  .index-news-list__date::after {display:none;}

  /* production.php */
  .production-system_ttl {font-size: 2.75rem; padding: 0 2.5rem;}
  .production-system--inner {margin-top: -5%;}
  .production-map_ttl {font-size: 2.75rem;}
  .production-site_ttl {font-size: 2.75rem;}
  .production-site_list_item--txt h4 {font-size: 2.4rem;}
  .production-site_list_item--txt p {font-size: 1.6rem;}

  /* environment.php */
  .environment-menu_ttl {font-size: 2.75rem;}
  .environment-contents_list_item--img {width: 80%;}
  
  /* feature.php */
  .feature-contents_ttl {font-size: 2.75rem; margin-bottom: 4rem;}
  .feature-contents_list_item {display: block;}
  .feature-contents_list_item--img {width: 100%; margin-bottom: 3rem;}
  .feature-contents_list_item--txt {width: 100%;}
  .feature-product_ttl {font-size: 2.75rem;}
  .feature-product_gallery picture:nth-child(3) {max-height: 226.77px;}
  .feature-product_desc {bottom: 3%; left: 3%; max-width: 80%;}

  /* company.php */
  .company-outline_ttl {font-size: 2.75rem;}
  .company-history_ttl {font-size: 2.75rem; padding: 0 2.5rem;}
  .company-athlete_ttl {font-size: 2.75rem;}
  .image {width: 47.5%;}
  .company-img_bg {height: 425px;}

  /* page-contact.php */
  .page-contact_info > p {text-align: left;}
  .page-contact_form_table th {display: block; width: auto;}
  .page-contact_form_table td {display: block; width: auto;}
  .page-contact_form p {margin: 1.5rem 0; text-align: left;}
  .page-contact_form_policy {height: 25rem;}
  .page-contact_form_policy h4 {margin-bottom: 1.5rem;}
  .page-contact_form_policy p {margin: 0 0 2rem; font-size: 1.4rem;}
  .page-contact_form_checkbox > p {text-align: center;}

  /* archive-news.php */
  .news {padding: 7rem 0 6rem;}
  .news-list__ttl {padding-left: 0rem;}
  .news-list__date {display: block; color: #4EA699;}
  .news-list__date::after {display:none;}

  /* news-single.php */
  .news-single {padding: 7rem 0 6rem;}
  .news-single__ttl {margin: 4rem auto 0rem;}
  .news-single__date {margin: 0 auto 4rem;}
  .news-single__txt {max-width: 100%;}
  .news-btn {margin: 7rem auto 0;}
}


/*--------------------------------------------------------------
## 560px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:559px) {
  /* 改行 */
  .br_560 {display: block;}
  .br_560_none {display: none;}

  /* 共通 */
  h1 {font-size: 3rem;}
  h2 {font-size: 2.5rem;}
  h3 {font-size: 2rem;}
  h4 {font-size: 1.8rem;}
  p {font-size: 1.4rem;}
  a {font-size: 1.4rem;}
  li, th, td {font-size: 1.4rem;}
  .contents--type01,.contents--type02 {width: calc(100% - 6rem);}

  /***** ボタン01 *****/
  .btn01 a {width: 200px; height: 60px; padding-left: 22px; line-height: 65px;}
  .btn01 a span {top: 25px; right: 0px; width: 40%;}

  /***** ミニボタン01 *****/
  .btn01--mini a {width: 150px; height: 50px; padding-left: 20px; line-height: 55px;}
  .btn01--mini a span {top: 20px; right: 0px; width: 50%;}

  /* トップに戻るボタン */
  #page_top {bottom: 1rem; right: 1rem;}
  #page_top a {width: 50px; height: 50px;}
  #page_top a::after {border: .2em solid #fff; border-left: 0; border-bottom: 0;}

  /* パンくずリスト */
  .breadcrumb {margin-bottom: 4rem;}
  .breadcrumb li {margin-right: 2rem;}
  .breadcrumb li::after {right: -1.3rem; bottom: .9rem;}

  /* フッター*/
  .access-container {padding: 0 3rem 6rem;}
  .access-container__txt:first-child {font-size: 2.25rem;}
  .access-container__box {padding: 6rem 0 3rem;}
  .access-container__sns {margin-top: 2rem;}
  .index-contact__btn {margin: 0 auto -75px;}
  .contact-btn {height: 120px;}

  /* index.php*/
  .contents1__ttl {font-size: 2rem;}
  .contents1__txt--shop a {font-size: 1.5rem;}
  .index-contents-list__ttl__h2--ja {font-size: 2rem;}
  .index-contents-list__ttl__h2--en {font-size: 1rem;}
  .index-contents-list__txt {position: relative; margin-top: 3%; padding: 2rem 4rem 5rem 6rem; opacity: 0;}
  .index-contents-list li:nth-child(even) .index-contents-list__txt {margin-top: 3%; padding: 2rem 4rem 5rem 6rem;}
  .index-contents-list__box {margin-bottom: 10rem;}
  .index-contents3__box__list {gap: 60px}
  .index-contents3 {padding: 6rem 0;}
  .index-contents3__ttl--ja {font-size: 2rem;}
  .index-contents3__ttl--en {font-size: 1rem;}
  .index-contents3__lead {margin: 2rem auto 4rem;}
  .index-contents3__lead--shop a {font-size: 1.5rem;}
  .index-contents-list__lead .btn01 {margin-top: 2.5rem;}
  .index-contents3__box__list__item {padding: 3rem;}
  .index-contents3__box__list__item h3 span.--en {top: 0; font-size: 9px;}
  .index-contents3__btn .btn01 a {margin: 4rem auto 0;}
  .index-contents4 {padding: 10rem 0 5rem;}
  .index-contents4__ttl--ja {font-size: 2rem;}
  .index-contents4__ttl--en {font-size: 1rem;}
  .index-contents4__lead {margin: 2rem auto 4rem;}
  .index-contents4__btn .btn01 a {margin: 4rem auto 0;}
  .index-news {padding: 7rem 0 3.5rem;}
  .index-news__head {margin: 0 auto 5rem;}
  .index-news__ttl--ja {font-size: 2rem;}
  .index-news__ttl--en {font-size: 1rem;}
  .index-news__head .btn01 {margin-top: 28px;}

  /* production.php */
  .production-system {margin-bottom: 10rem;}
  .production-system--inner {padding: 3rem;}
  .production-system_ttl {font-size: 2.25rem;}
  .production-system_txt {font-size: 16px;}
  .production-map {margin-bottom: 10rem;}
  .production-map_ttl {font-size: 2.25rem; margin-bottom: 3rem;}
  .production-map_img_list {gap: 20px;}
  .production-map_img_list_item {width: 100%;}
  .production-map_iframe iframe {width: 100%; height: 325px;}
  .production-site {padding: 7rem 0 5rem;}
  .production-site_ttl {font-size: 2.25rem; margin-bottom: 3rem;}
  .production-site_list_item {margin-bottom: 2rem;}

  /* environment.php */
  .environment-menu_ttl {font-size: 2.25rem; margin-bottom: 3rem;}
  .environment-menu_list_item {width: 100%;}
  .environment-contents {margin-bottom: 10rem;}
  .environment-contents_list_item {margin-bottom: 5rem;}
  .environment-contents_list_item--img {width: 100%; margin-bottom: 2.5rem;}
  .environment-contents_list_item--txt h4 {font-size: 1.5rem; padding: .5rem 1rem;}

  /* feature.php */
  .feature-contents {margin-bottom: 10rem;}
  .feature-contents_ttl {font-size: 2.25rem;}
  .feature-contents_list_item--txt h3 span.--en {width: 65px; height: 65px; line-height: 3.5; margin-right: 1rem; font-size: 9px;}
  .feature-contents_list_item--img {margin-bottom: 1.5rem;}
  .feature-contents_list_item--txt h3 span.--num {font-size: 28px;}
  .feature-product {margin-bottom: 10rem;}
  .feature-product_ttl {font-size: 2.25rem;}
  .feature-product_gallery picture:nth-child(3) {max-height: 163px;}
  .feature-product_desc {position: static; max-width: 90%;}
  .feature-product_desc p {font-size: 1.2rem;}

  /* company.php */
  .company-outline_ttl {font-size: 2.25rem;}
  .company-outline--inner {padding: 2rem 0 0; margin-top: -4%;}
  .company-outline {margin-bottom: 10rem;}
  .company-img {margin-bottom: 10rem;}
  .company-history {margin-bottom: 10rem;}
  .company-history_ttl {font-size: 2.25rem;}
  .company-history--inner {padding: 5rem 0;}
  .company-history_list_item .--date {font-size: 14px; padding: 0 10px;}
  .company-history_list_item .--content {padding: 0 10px 40px 20px;}
  .company-athlete {padding: 8rem 0 0;}
  .company-athlete_ttl {font-size: 2.25rem; margin-bottom: 3rem;}
  #exitButton {top: 0; right: 4%;}

  /* page-contact.php */
  .page-contact_info a {font-size: 1.6rem;}
  .contact__form {width:100%;}
  .privacy h5 {font-size: 1.6rem;}
  .wpcf7-submit {width: 200px; height: 50px; font-size: 1.5rem;}

  /* archive-news.php */
  .news {padding: 7rem 0 0rem;}
  .news__box {margin: 4rem auto;}
  
  /* single-news.php */
  .news-single__ttl {max-width: 100%;}
  .news-single .wp-post-image {width: 100%; margin: 0 auto 1.5rem;}
  .news-btn {margin: 5rem auto 0;}

  /* front-page.php / archive.php *デフォルト投稿用 / 使用無し */
  .products {padding: 6rem 0 0;}
  .products__lead {margin: 4rem auto 4rem;}
  .products__txt h3 {font-size:1.6rem;}
  .category-btn02 a {font-size: 1.2rem; padding: 0.5rem 1rem;}
  .widget-container_title {font-size: 1.6rem;}
}

/*--------------------------------------------------------------
## 425px / レスポンシブ調整
--------------------------------------------------------------*/
@media screen and (max-width:425px) {
  /* index.php */
  .index-contents1 .contents::after {width: 325px; height: 325px;}

  /* company.php */
  .image {width: auto;}

  /* page-contact.php */
  .page-contact_form input.wpcf7-form-control.wpcf7-text {box-sizing: border-box; height: 3em;max-width: 100%; width: auto;}
  .page-contact_form textarea {box-sizing: border-box; max-width: 100%; width: auto;}
}