@charset "utf-8";

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

/*--------------------------------------------------------------

## 共通

--------------------------------------------------------------*/
/**** カラーの設定 ****/
:root {
  --color-base: #fff;
  --color-main: #54917f;
  --color-sub1: #8FB896;
  --color-sub2: #BDBDBD;
  --color-accent: #8FB896;
  --color-accent2: #acceb2;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans-serif: 'Noto Serif JP', serif;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*(=1rem)*/
  background-color: #ffffff;
  color: #333333;
  font-family: var(--font-sans-serif);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.8px;
  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: #333333;
}

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

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

a:hover,
a:focus {
  color: var(--color-sub1);
}

a:active,
a:visited {}

.link--color {
  color: #fff;
}

/**** 改行 ****/
.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;
}

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

/**** ボタン01 ****/
.btn01 {
  margin-top: 28px;
  font-family: var(--font-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: var(--color-main);
  line-height: 70px;
}

.btn01 a:hover {
  color: #ffffff;
  background-color: var(--color-sub1);
}

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

/**** 白いボタン01a ****/
.btn01a--white a {
  transition: background-color 300ms ease;
  color: var(--color-main);
  background-color: #ffffff;
  border: 2px solid var(--color-main);
}

.btn01a--white a:hover {
  color: #ffffff;
  background-color: var(--color-main);
}

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

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


/**** 白いボタン01b ****/
.btn01b--white a {
  transition: background-color 300ms ease;
  color: var(--color-main);
  background-color: #ffffff;
  border: 2px solid var(--color-sub1);
}

.btn01b--white a:hover {
  color: #ffffff;
  background-color: var(--color-sub1);
}

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

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


/***** ミニボタン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: -ms-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: 5rem;
}

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

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

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

.breadcrumb li a {
  color: var(--color-accent);
  -webkit-transition: .4s;
  transition: .4s;
}

.breadcrumb li a:hover {
  color: #d6f1ad;
  -webkit-transition: .4s;
  transition: .4s;
}

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

.page-numbers li {
  display: inline;
  margin: 0 .6rem 0;
}

.page-numbers.current {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding-bottom: .5rem;
  font-size: 1.5rem;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-sub1);
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}

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

#page_top a img {
  padding: 0 4rem;
}

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

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

/**** テーブル ****/
table {
  width: 100%;
  margin: 0 auto;
}

table th,
table td {
  padding: 1rem 2rem;
  border: 1px solid var(--color-sub2);
  vertical-align: middle;
  background: var(--color-base);
}

table th {
  background-color: var(--color-main);
  color: var(--color-base);
  white-space: nowrap;
}

/**** サブページ関係 ****/
.sec01 {
  margin-bottom: 70px;
}

.section_ttl {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px;
  letter-spacing: 0.1em;
  font-size: 40px;
  text-align: center;
}

.section_ttl::before,
.section_ttl::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  /* 線の太さを変えたいときはここを変える */
  background: var(--color-main);
  /* 線の色を変えたいときはここを変える */
}

.section_ttl::before {
  margin-right: 0.7em;
}

.section_ttl::after {
  margin-left: 0.7em;
}

/* .section_ttl:before,
.section_ttl:after {
  position: absolute;
  content: '';
}

.section_ttl:after {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #888;
  border-left: 2px solid #888;
}
.section_ttl:before {
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
} */

/* フォーム */
[type='text'],
[type='email'],
[type='tel'],
select,
textarea {
  padding: 0 0.4em;
  border: 1px solid #888;
  text-align: left !important;
}


/*--------------------------------------------------------------

## main

--------------------------------------------------------------*/
.contents {
  margin: 0 auto 12vw;
}

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

.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 -200px;
}

.contact-btn {
  width: 100%;
  height: 260px;
  color: #fff;
  background-color: var(--color-main);
  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: var(--color-sub1);
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s;
}

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

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

.contact-btn p {
  text-align: center;
}

.contact-btn--en {
  z-index: 1000;
  font-size: 2.8rem;
  line-height: 1.8;
  font-family: var(--font-sans-serif);
}

.contact-btn--ja {
  z-index: 1000;
  font-size: 1.4rem;
}


/********************   フッターアクセス    **********************/
.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 {
  background-image: url("../img/index/slider1.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 0;
  min-height: 964px;
  width: 100%;
}

.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 10rem;
}

.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 span {
  display: inline-block;
}

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

.access-container__sns a:hover {
  color: var(--color-main);
  transition: .4s;
}

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



/*--------------------------------------------------------------

## index.php

--------------------------------------------------------------*/
/***** index-contents1 *****/
.contents1__ttl {
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.contents1__txt {
  letter-spacing: 1.4px;
}

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

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

.index-contents-list__img {
  display: inline-block;
  width: 64%;
  margin-bottom: 0;
  padding-top: 0;
  opacity: 1;
  transition: all .6s;
}

.index-contents-list__img {
  object-fit: cover;
}

.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: 39%;
  margin-top: -25%;
  padding: 8% 7% 5%;
  box-sizing: border-box;
  background-color: var(--color-main);
  opacity: 1;
  transition: .2s;
  color: var(--color-base);
  border-top: 8px solid var(--color-accent);
  border-left: 6px solid var(--color-accent);
}

.index-contents-list li:nth-child(even) .index-contents-list__txt {
  position: relative;
  margin: -25% 0 0 53%;
  border-left: none;
  border-right: 6px solid var(--color-accent);
}

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

.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: var(--color-sub1);
  padding: 10rem 0 6rem;
}

.index-contents3__ttl {
  text-align: center;
}

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

.index-contents3__ttl--en {
  font-size: 1.4rem;
}

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

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

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

.index-contents3__txt h3:hover {
  color: #d6f1ad;
  transition: .3s;
}

.index-contents3__txt--category {
  margin: 1.5rem 0 0;
}

.category-btn01 a {
  color: var(--color-main);
  background: #fff;
  font-size: 1.4rem;
  border: 2px solid var(--color-main);
  padding: 0.5rem 1.3rem;
}

.category-btn01 a:hover {
  color: #fff;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  transition: .3s;
}

.index-contents3__btn {
  margin: 0 auto;
}

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

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

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

.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;
}

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

.index-news__item {
  margin: 0 auto;
}

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

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

.index-news-list__box a:hover {
  color: #8cceb9;
}

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

.index-news-list__date::after {
  position: absolute;
  top: 1rem;
  left: 12rem;
  width: 8rem;
  height: 1px;
  background-color: var(--color-main);
  content: '';
}

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

/* 投稿が見つからない */
.not-found__txt {
  color: #f72503;
  text-align: center;
}


/*--------------------------------------------------------------

## archive.php / front-page.php

--------------------------------------------------------------*/
/***** products *****/
.products {
  padding: 10rem 0 6rem;
}

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

.products_unit:nth-child(even) {
  flex-direction: row-reverse;
}

.products_unit+.products_unit {
  margin-top: 100px;
}

.products_txt {
  width: 48%;
}

.products_img {
  display: block;
  width: 48%;
  object-fit: cover;
}


/*--------------------------------------------------------------

## process.php

--------------------------------------------------------------*/

.process {
  padding: 10rem 0 6rem;
}

.process_wrapper {
  position: relative;
}

.process_wrapper::before {
  content: '';
  position: absolute;
  right: 50%;
  z-index: 1;
  transform: translateX(50%);
  width: 2px;
  height: 100%;
  background-color: var(--color-sub2);

}

.process_unit {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.process_unit+.process_unit {
  margin-top: 100px;
}

.process_txt {
  width: 45%;
}

.process_ttl {
  position: relative;
  padding: 30px 0 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-main);
}

.process_ttl span {
  position: relative;
  z-index: 2;
}

.process_ttl::before {
  content: attr(data-en);
  position: absolute;
  top: -0.5em;
  left: 0;
  color: rgba(41, 77, 71, 0.1);
  font-size: 250%;
  text-transform: uppercase;
  z-index: 1;
}

.process_dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-main);
  margin-top: 30px;
  transition: 0.3s;
}

.process_img {
  display: block;
  width: 45%;
  object-fit: cover;
}

/* アニメーション関係 */
.process_unit {
  transition: 0.5s;
}

.process_unit:hover {
  transform: translateY(-10px);
}

.process_unit:hover .process_dot {
  transform: scale(1.5);
}

.process_unit:nth-child(even) {
  flex-direction: row-reverse;
}

.process_unit:nth-child(odd) .process_txt,
.process_unit:nth-child(even) .process_img {
  transform: translateX(-50px);
  transition: all 1000ms;
}

.process_unit:nth-child(even) .process_txt,
.process_unit:nth-child(odd) .process_img {
  transform: translateX(50px);
  transition: all 1000ms;
}

.process_unit:nth-child(odd) .process_txt.scrollin,
.process_unit:nth-child(even) .process_img.scrollin,
.process_unit:nth-child(even) .process_txt.scrollin,
.process_unit:nth-child(odd) .process_img.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}


/*--------------------------------------------------------------

## recruit.php

--------------------------------------------------------------*/

.recruit {
  padding: 10rem 0 6rem;
}

.catchcopy {
  text-align: center;
}

.catchcopy h2 {
  font-size: 30px;
  color: var(--color-main);
}

.video_youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video_brightcove {
  width: 100%;
  margin-top: clamp(2.5rem, 1.903rem + 2.58vw, 5rem);
}

video-js.video-js.vjs-fluid:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.btn_txt {
  margin-top: 28px;
  text-align: center;
}

.btn01.center a {
  margin: 0 auto;
}

/*--------------------------------------------------------------

## contact

--------------------------------------------------------------*/
.form_policy {
  margin: 20px 0 0;
}

.form_policy a {
  color: var(--color-main);
}

.form_policy a:hover {
  color: var(--color-sub1);
}

.required {
  color: rgb(241, 142, 142);
}

[type='checkbox'] {
  width: auto;
}

/*--------------------------------------------------------------

## privacypolicy

--------------------------------------------------------------*/
.policy_h3 {
  padding: 0em 0.7em;
  margin: 1em 0;
  border-left: solid 7px var(--color-sub1);
}


/*--------------------------------------------------------------

## 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: var(--color-sub1);
}

.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: var(--color-sub1);
  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: var(--color-sub1);
  border: none;
  background: transparent;
}

.searchsubmit:hover {
  opacity: .6;
}


/*--------------------------------------------------------------

## search.php

--------------------------------------------------------------*/
.search_ttl {
  margin: 7rem 0 0;
}

.search_none {
  margin: 4rem 0 0;
}


/*--------------------------------------------------------------

## archive-news.php

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

.news__item {
  margin: 0 auto;
}

.news__box {
  max-width: 600px;
  margin: 4rem auto 0;
}

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

.news-list__box a:hover {
  color: var(--color-sub1);
}

.news-list__date {
  position: relative;
  left: 0;
  top: 0;
  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: var(--color-main);
  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 {
  text-align: center;
  margin: 0 auto 1rem;
}

.news-single__date {
  text-align: center;
  color: var(--color-sub1);
  margin: 0 auto 7rem;
}

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

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

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

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


/*--------------------------------------------------------------

## その他の下層ページ page.php

--------------------------------------------------------------*/
.page-sub {
  padding: 10rem 0 7rem;
}


/*--------------------------------------------------------------

## お問い合わせ page-contact.php

--------------------------------------------------------------*/
.blk-iframe {
  border: 2px solid var(--color-sub1);
  background-color: #fff;
  width: 800px;
  max-width: 100%;
  height: 30rem;
  margin: 2em auto;
  overflow: auto;
}

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

.require {
  color: #f72503;
}

.contact__form {
  margin: 7rem auto;
  width: 80%;
}

.contact__form p {
  margin: 2rem 0 2.5rem;
}

.contact__form input.wpcf7-form-control.wpcf7-text,
.wpcf7-select {
  height: 3.5rem;
  padding: 0 1.2rem;
  border: 1px solid var(--color-sub1);
}

.contact__form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1.2rem;
  border: 1px solid var(--color-sub1);
}

.wpcf7-submit {
  width: 160px;
  height: 50px;
  text-align: center;
  display: block;
  margin: 4rem auto 0;
  background: var(--color-sub1);
  color: #fff;
  border: 1px solid var(--color-sub1);
  transition: .3s;
}

.wpcf7-submit:hover {
  color: var(--color-sub1);
  background: #fff;
  border: 1px solid var(--color-sub1);
  transition: .3s;
}

.privacy h4 {
  margin: 0 auto 2rem;
  font-weight: 600;
  color: var(--color-main);
}

.privacy h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

.privacy-check {
  text-align: center;
  padding: 2rem 0 0;
}

.contact__info {
  text-align: center;
}

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

.wpcf7-response-output {
  font-size: 14px;
}

/*--------------------------------------------------------------

## company.php

--------------------------------------------------------------*/

.company {
  padding: 10rem 0 6rem;
}

.header-sub__bg_company img {
  object-position: center 60%;
}

.company .policy {
  letter-spacing: 0.1rem;
  line-height: 2.5;
}

.company .branch-list .flex_cd {
  flex: 0 1 32%;
  margin-right: 2%;
  font-size: 14px;
  letter-spacing: .1rem;
}

.company .branch-list .flex_cd:last-child {
  margin: 0;
}

.company .facility-list .flex_cd {
  flex: 0 1 23%;
  margin-right: 2%;
  margin-bottom: 3rem;
  text-align: center;
}

.company .facility-list img {
  width: 100%;
}

.company .facility-list figcaption {
  letter-spacing: .1rem;
}

.company .facility-list .flex_cd:nth-child(4n) {
  margin-right: 0%;
}

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

.company_txt {
  width: 48%;
}

.company_img {
  display: block;
  width: 48%;
  object-fit: cover;
}


/*--------------------------------------------------------------

## manual.php

--------------------------------------------------------------*/
pre {
  background: #100303;
  font-family: "Courier 10 Pitch", courier, monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 3rem 0;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1.6rem;
  color: #fff;
}

.manual {
  padding: 10rem 0 6rem;
}

.manual-toc {
  margin: 0 auto 7rem;
}

.manual-toc__list {
  margin: 3rem auto;
}

.manual-toc__list li {
  padding: 1rem 4rem 0 0;
}

.manual__item {
  margin: 0 auto 7rem;
}

.manual__ttl {
  margin: 0 auto 5rem;
  color: #333;
  text-align: left;
  display: block;
  line-height: 1.6;
  border-bottom: 6px double var(--color-sub1);
  padding: 0 0.4rem 1rem;
}

.manual_tbl {
  width: 100%;
  margin: 0 auto;
}

.manual_tbl th,
.manual_tbl td {
  border: 1px solid #ddd;
  padding: 2rem 1.3rem;
}

.manual_tbl--color th,
.manual_tbl--color td {
  background-color: var(--color-sub1);
  color: #fff;
}

.manual_tbl a {
  color: var(--color-sub1);
}

.manual_tbl a:hover {
  color: #d6f1ad;
}

.manual_tbl--size th,
.manual_tbl--size td {
  font-size: 1.4rem;
}

.manual__txt {
  margin: 4rem auto 0;
}

a.manual__txt--color {
  color: var(--color-main);
}

a.manual__txt--color:hover {
  color: #d6f1ad;
}

.manual__images {
  margin: 4rem auto 2rem;
}

.manual_loader {
  display: -ms-grid;
  display: grid;
  place-items: center;
  top: 0;
  height: 200px;
  background-color: #100303;
  margin: 1rem 0 3rem;
}

.manual_loader .loader:after {
  background: #100303 !important;
}

.manual-btn_test .btn01 a {
  width: 320px;
  padding-left: 32px;
}

.manual__txt_box.flex {
  align-items: baseline;
  font-weight: 600;
  margin: 0 2rem 4rem 0;
}

.manual__txt .btn01 {
  margin-left: 2rem;
}

.manual__txt .btn01,
.manual__txt .category-btn01,
.manual__txt .category-btn02 {
  margin-left: 2rem;
}


/*--------------------------------------------------------------

## メディアクエリ

--------------------------------------------------------------*/
@media screen and (max-width: 1440px) {

  /* フッター */
  .access__images {
    background-attachment: scroll;
  }
}


@media screen and (max-width: 1259px) {
  .contents--type01 {
    width: calc(100% - 165px);
  }

  /* フッター */
  .index-contact__btn {
    margin: 0 auto -160px;
  }

  .contact-btn {
    width: 90%;
    height: 160px;
    margin: 0 auto;
  }

  .contact-btn--en {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}



/*--------------------------------------------------------------

## 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%;
  }

  /* .products-single */
  .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;
  }

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


}


/*--------------------------------------------------------------

## 960px

--------------------------------------------------------------*/
@media screen and (max-width: 959px) {

  /* 改行 */
  .br_960 {
    display: block;
  }

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

  .section_ttl {
    font-size: 40px;
  }

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

  /* フッター */
  footer {
    margin-top: calc(300px - 35vw);
  }

  .access__images {
    background-image: url("../img/index/slider1.jpg ");
  }

  /* index.php @960px */
  .index-contents-list__img {
    position: relative;
    display: inline-block;
    width: 84%;
    margin-bottom: 40px;
    padding-top: 0;
    opacity: 1;
    transition: all .6s;
  }

  .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: 5%;
    padding: 10% 16% 10% 120px;
  }

  .index-contents-list li:nth-child(even) .index-contents-list__txt {
    width: auto;
    margin: 5% 0 0 0;
    padding: 10% 16% 10% 120px;
  }

  .index-contents3__item {
    width: 100%;
  }

  .index-news__head {
    width: 100%;
    margin: 0 auto 7rem;
  }

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

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

  .index-news-list__date::after {
    width: 5rem;
    left: 12.3rem;
  }

  /* archive.php */
  .products__item {
    width: 100%;
  }

  .products__item:first-child {
    margin-top: 0;
  }

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


}


/*--------------------------------------------------------------

## 768px

--------------------------------------------------------------*/
@media screen and (max-width: 767px) {

  /* 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: var(--color-sub1);
  }

  .index-news-list__date::after {
    display: none;
  }

  /* フッター */
  .index-contact__btn {
    margin: 0 auto -120px;
  }

  .contact-btn {
    width: 100%;
    height: 130px;
    margin: 0 auto;
  }

  .contact-btn--en {
    font-size: 2rem;
    line-height: 1.4;
  }

  .contact-btn--ja {
    font-size: 1.2rem;
  }

  .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;
  }

  /***** .archive-news *****/
  .news {
    padding: 7rem 0 6rem;
  }

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

  .news-list__date {
    display: block;
    color: var(--color-sub1);
  }

  .news-list__date::after {
    display: none;
  }

  /***** .news-single *****/
  .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;
  }

  /***** page.php *****/
  .page-sub {
    padding: 7rem 0 6rem;
  }

  /***** company.php *****/
  .company_unit {
    flex-direction: column;
  }

  .company_txt {
    width: 100%;
    margin-bottom: 1em;
  }

  .company_img {
    width: 100%;
  }

  /***** process.php *****/
  .process_wrapper::before {
    left: 0;
    right: auto;
  }

  .process_unit:nth-child(odd),
  .process_unit:nth-child(even) {
    position: relative;
    flex-direction: column;
    padding-left: 50px;
  }

  .process_ttl {
    width: 100%;
    margin-bottom: 20px;
  }

  .process_txt {
    width: 100%;
    margin-bottom: 20px;
  }

  .process_img {
    width: 100%;
  }

  .process_dot {
    position: absolute;
    left: 0;
    transform: translateX(calc(2px - 50%));
  }

  .process_unit:hover .process_dot {
    transform: translateX(calc(2px - 50%)) scale(1.5);
  }

}


/*--------------------------------------------------------------

## 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;
  }

  .section_ttl {
    font-size: 32px;
  }

  .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%;
  }

  /* テーブル */

  table th,
  table td {
    display: block;
    text-align: center;
  }

  /* トップに戻るボタン */
  #page_top {
    bottom: 1rem;
  }

  #page_top a img {
    padding: 0 1rem 0 0;
  }

  /* パンくずリスト */
  .breadcrumb li {
    margin-right: 1rem;
  }

  .breadcrumb li::after {
    right: -1rem;
    bottom: 1.1rem;
  }

  /* index.php @560px */
  .index-contents-list__txt {
    position: relative;
    padding: 10% 4rem 10% 6rem;
    opacity: 0;
    transition: all .6s;
  }

  .index-contents-list li:nth-child(even) .index-contents-list__txt {
    padding: 10% 4rem 10% 6rem;
  }

  .index-contents3 {
    padding: 6rem 0 6rem;
  }

  .index-contents3__lead {
    margin: 4rem auto 4rem;
  }

  .index-contents3__txt h3 {
    font-size: 1.6rem;
  }

  .category-btn01 a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  /* フッター @560px */
  .access-container {
    padding: 0 3rem 3rem;
  }

  .contact-btn {
    height: 100px;
  }

  .contact-btn--en {
    font-size: 1.8rem;
  }

  .contact-btn--ja {
    font-size: 1rem;
  }

  /* archive.php */
  .products {
    padding: 6rem 0 0rem;
  }

  .products__lead {
    margin: 4rem auto 4rem;
  }

  .products__txt h3 {
    font-size: 1.6rem;
  }

  .category-btn02 a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .header-sub__bg--pc {
    display: none;
  }

  .header-sub__bg--sp {
    display: block;
  }

  .widget-container_title {
    font-size: 1.6rem;
  }

  /* archive-news.php */
  .news {
    padding: 7rem 0 0rem;
  }

  /* page-contact.php */
  .contact__form {
    width: 100%;
  }

  .privacy h5 {
    font-size: 1.6rem;
  }

  /* products.php */
  .products_unit:nth-child(odd),
  .products_unit:nth-child(even) {
    flex-direction: column;
  }

  .products_txt {
    width: 100%;
  }

  .products_txt p {
    margin-bottom: 1em;
  }

  .products_img {
    width: 100%;
  }

  /* contact @560px */
  .contact__form input.wpcf7-form-control.wpcf7-text,
  .wpcf7-select {
    padding: 0 1rem;
  }

  .contact__form textarea {
    padding: 1rem;
  }


}


/*--------------------------------------------------------------

## 350px

--------------------------------------------------------------*/
@media screen and (max-width: 350px) {}