@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Unna:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@100;200;300;400;500;700;800&family=Kosugi&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/*サイトのメインカラー*/
/*@mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

@media all and (max-width: 769px) {
  .animated.delay-1s, .animated.delay-2s, .animated.delay-3s, .animated.delay-4s, .animated.delay-5s {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
  }
}

/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

@include base-text_2($size); 

@include base-text_en($size); 


in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.innerA .left_s {
  width: 30%;
  float: left;
}

.innerA .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left, .innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left, .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.innerC .left, .innerC .right {
  width: 48%;
  float: left;
}

.innerC .right {
  margin-left: 4%;
}

.innerC .left_s {
  width: 30%;
  float: left;
}

.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}

#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media all and (max-width: 769px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}

#entry .entry__cotent .data span {
  background: #faf7f4;
  padding: .3em .5em;
}

#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #d3d3d3;
}

@media all and (max-width: 769px) {
  #entry .entry__cotent .entry__cotent__text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  *font: x-small;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  *font-size: small;
  line-height: 1.8;
  color: #111;
  background: #fff;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  background: #fff;
}

#page {
  display: flex;
  flex-direction: column;
}

a:link, a:visited, a:hover {
  color: #4a6942;
  text-decoration: none;
}

.tbox {
  width: calc(100% - 34px);
  padding: 15px;
  border: 2px solid #4a6942;
}

.sign_ttl {
  max-width: 300px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #111;
}

.top_bg01 {
  padding-bottom: 50px;
  margin-bottom: 50px;
  background: url("../img/top_bg01.png") no-repeat center top;
}

.top_bg01 section {
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .top_bg01 {
    padding-bottom: 40px;
    margin-bottom: 0px;
  }
}

.infiniteslide1 {
  height: 200px !important;
  overflow: hidden;
  border-top: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
}

.infiniteslide1 li img {
  height: 200px !important;
}

@media screen and (max-width: 768px) {
  .infiniteslide1 {
    height: 100px;
  }
  .infiniteslide1 img {
    height: 100px;
  }
}

.nbl {
  overflow: hidden;
}

.nbl dt {
  float: left;
  width: 7em;
  padding: 3px 5px;
  margin: 0px 0;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: #4a6942;
}

.grid .nbl dt {
  width: 4em;
}

.grid .nbl dd {
  padding-left: 6em;
}

.nbl dd {
  padding-top: 0px;
  padding-bottom: 10px;
  padding-left: 9em;
  margin: 0px 0 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
}

.gallery {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  background: #f2f2f2;
}

.grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100% !important;
  height: auto;
  padding: 0 !important;
  margin: 0 0 30px !important;
}

.grid-item {
  width: calc(33% - 30px) !important;
  padding: 10px 10px 10px;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 12px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
  /* アニメーション */
  transition: .3s ease-in-out;
}

.grid-item a {
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  background-image: url(../img/pgb.png);
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
}

.grid-item * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.grid-item h5 {
  font-size: 1.6rem;
  color: #4a6942;
  text-align: center;
}

.grid-item p {
  font-size: 13px;
  line-height: 1.6em;
}

.grid-item img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  /* IE対策 */
  vertical-align: middle;
  object-fit: cover;
}

.grid-item a:hover img {
  opacity: .1;
  transform: scale(1.2);
}

.split_bx {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_top.png");
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
  background-size: cover;
}

.split_bx img {
  position: absolute;
  top: 35%;
  right: 0;
  bottom: auto;
  left: 0;
  display: block;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .split_bx {
    top: 0;
  }
}

.split {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3rem;
  font-weight: bold;
  color: #4a6942;
  text-shadow: 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  letter-spacing: .1em;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .split {
    font-size: 1.8rem;
  }
}

.scr2 {
  z-index: 999999999;
}

.blanket li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  height: auto;
  padding: 0px 0;
  margin-bottom: -150px;
}

.blanket li:nth-child(2n) {
  display: block;
}

.blanket li:nth-child(2n) .image {
  margin: 0 auto;
}

.blanket li:nth-child(2n) .blanket_ttl_top {
  color: #d3d3d3 !important;
  text-align: left;
}

.blanket li .image,
.blanket li .detailBox {
  box-sizing: border-box;
  width: 50%;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
}

.blanket li .image {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.blanket li .image img {
  box-shadow: rgba(74, 105, 66, 0.1) -50px 50px 0 0;
}

.blanket li .detailBox {
  position: relative;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blanket li .textBox {
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #4a6942;
}

.blanket li .blanket_ttl_top {
  position: relative;
  margin-bottom: 10px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 5rem;
  font-weight: normal;
  text-align: right;
  text-indent: 2rem;
  letter-spacing: .2rem;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.blanket li .blanket_ttl_top span {
  display: block;
  font-size: 1.8rem;
}

.blanket li .blanket_ttl {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #4a6942;
}

.blanket li .btn {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -30px);
  -ms-transform: translate(-50%, -30px);
  transform: translate(-50%, -30px);
}

.btn_slash {
  width: 270px;
  margin: 0 auto;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.btn_slash::before {
  z-index: 2;
  background: #d3d3d3;
  -webkit-transform: skew(-12deg);
  -ms-transform: skew(-12deg);
  transform: skew(-12deg);
}

.btn_slash::after {
  z-index: 1;
  border-color: #d3d3d3;
  -webkit-transform: skew(-12deg) translate(8px, 8px);
  -ms-transform: skew(-12deg) translate(8px, 8px);
  transform: skew(-12deg) translate(8px, 8px);
}

.btn_slash::before, .btn_slash::after {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  content: '';
  border: 1px solid #d3d3d3;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.btn_slash a {
  position: relative;
  z-index: 3;
  display: block;
  padding: 20px 0 21px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.btn_slash:hover::before {
  background-color: #02672c;
  border-color: #02672c;
  -webkit-transform: skew(-12deg) translate(4px, 4px);
  -ms-transform: skew(-12deg) translate(4px, 4px);
  transform: skew(-12deg) translate(4px, 4px);
}

.btn_slash:hover::after {
  border-color: #02672c;
  -webkit-transform: skew(-12deg) translate(4px, 4px);
  -ms-transform: skew(-12deg) translate(4px, 4px);
  transform: skew(-12deg) translate(4px, 4px);
}

.btn_slash:hover a {
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
}

@media screen and (max-width: 768px) {
  .blanket li {
    display: block;
    margin: 0;
  }
  .blanket li:nth-child(2n) {
    display: block;
  }
  .blanket li:nth-child(2n) .image {
    margin: 0 auto;
  }
  .blanket li:nth-child(2n) .blanket_ttl_top {
    text-align: left;
  }
  .blanket li .image,
  .blanket li .detailBox {
    width: 100%;
  }
  .blanket li .detailBox {
    position: static;
    padding: 20px 0;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .blanket li .image img {
    box-shadow: rgba(74, 105, 66, 0.1) -10px 10px 0 0;
  }
  .blanket li .textBox {
    width: calc(100% - 20px);
    padding: 15px 10px;
    background: white;
  }
  .blanket li .blanket_ttl_top {
    position: static;
    margin-bottom: 0;
    font-size: 3rem;
    text-align: left;
    text-indent: 1rem;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .blanket li .blanket_ttl_top span {
    font-size: 1.3rem;
  }
  .blanket li .blanket_ttl {
    font-size: 2rem;
    font-weight: normal;
  }
  .blanket li .btn {
    position: static;
    top: 0;
    left: 0;
    width: 90% !important;
    -webkit-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
  .blanket .btn_slash {
    margin: 25px auto 0;
    line-height: 1;
    color: #fff;
    text-align: center;
  }
}

.bg_text1 {
  background: url("../img/bg_text1.png") no-repeat top center;
}

.mtext1 {
  margin: 10px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #004c34;
}

@media screen and (max-width: 768px) {
  .mtext1 {
    font-size: 1.5rem !important;
  }
}

.mtext2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .mtext2 {
    font-size: 1.5rem !important;
  }
}

.mtext2 span {
  font-size: 1.5rem;
}

.border01 {
  max-width: 400px;
  padding: 0;
  margin: 0 auto;
  border-top: 2px solid #d3d3d3;
}

.mtext02 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.3rem;
}

.mtext_big {
  font-size: 3rem;
}

/* FLASH */
#flashA {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

#flash {
  position: relative;
  min-width: 950px;
  height: 414px;
  padding: 0px;
  margin: 0 auto;
  overflow: hidden;
}

/* wideslider */
.wideslider {
  position: relative;
  width: 100%;
  height: 414px;
  overflow: hidden;
  text-align: left;
}

.wideslider ul {
  display: inline;
  float: left;
}

.wideslider ul li {
  display: inline;
  float: left;
}

.wideslider ul li img {
  display: none;
  width: 100%;
}

.wideslider_base {
  position: absolute;
  top: 0;
}

.wideslider_wrap {
  position: absolute;
  top: 0;
  overflow: hidden;
}

.slider_prev, .slider_next {
  position: absolute;
  top: 0;
  z-index: 100;
  overflow: hidden;
  cursor: pointer;
}

.slider_prev {
  background: #fff url(../photo/prev.jpg) no-repeat right center;
}

.slider_next {
  background: #fff url(../photo/next.jpg) no-repeat left center;
}

.pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 15px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  overflow: hidden;
  background: #a6aaa9;
}

.pagination a.active {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}

/* wideslider */
@media screen and (max-width: 800px) {
  /* flash */
  #flash {
    width: 100%;
    height: auto;
  }
  #flashA {
    min-width: 100%;
  }
}

.mttl_top01 {
  margin-bottom: 20px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: .2rem;
}

@media screen and (max-width: 768px) {
  .mttl_top01 {
    font-size: 2.2rem;
  }
}

.mttl_02 {
  margin-bottom: 10px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .3rem;
}

@media screen and (max-width: 768px) {
  .mttl_02 {
    font-size: 2.2rem;
  }
}

.mttl_03 {
  margin-bottom: 10px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 4vw;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: .3rem;
}

.facebook {
  width: 500px;
  margin: 30px auto 0;
}

@media screen and (max-width: 768px) {
  .facebook {
    width: 100%;
  }
}

/* newsbox */
.newsbox {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.news-ttl {
  width: 300px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #4a6942;
  text-align: left;
  vertical-align: middle;
}

.news-ttl span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.2rem !important;
  color: #333;
}

.news-bx {
  flex: 1;
  width: calc(100% - 20px);
  padding: 0 10px;
}

.news {
  margin: 10px auto 0;
  overflow: hidden;
  line-height: 1.6;
}

.news dt {
  float: left;
  width: 8em;
  font-weight: bold;
  color: #4a6942;
}

.news dd {
  padding-bottom: 5px;
  padding-left: 8em;
  margin-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.message {
  display: table;
  max-width: 900px;
  margin: 30px auto;
  overflow: hidden;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
}

.message dt {
  display: table-cell;
  vertical-align: middle;
}

.message dd {
  display: table-cell;
  padding-left: 30px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .message {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
  }
  .message dt {
    display: block;
    margin-bottom: 20px;
  }
  .message dd {
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .newsbox {
    flex-direction: column;
  }
  .news-ttl {
    width: 100% !important;
    padding: 5px 0;
    text-align: center;
    border-right: 0px solid #4a6942;
    border-bottom: 1px solid #4a6942;
  }
  .news-ttl span {
    font-size: 1.2rem !important;
  }
  .news-bx {
    flex: 1;
    width: calc(100% - 0px);
    padding: 0 0px;
  }
  .scrbr {
    width: 100%;
    max-height: 100px;
    padding: 15px 0px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}

.f_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  line-height: 1.5;
}

.f_flex li {
  margin: 0 10px;
}

.f_flex04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
}

.f_flex04 li {
  width: calc(25% - 10px);
  margin: 0 5px;
}

@media screen and (max-width: 768px) {
  .f_flex04 li {
    width: calc(50% - 10px);
  }
}

.f_flex04 li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .f_flex04 {
    margin-bottom: 30px;
  }
}

.staff_bg1 {
  background-image: url(../img/staff_bg1.jpg);
  background-position: center right;
}

.staff_bg2 {
  background-image: url(../img/staff_bg2.jpg);
  background-position: center left;
}

.staff_bg3 {
  background-image: url(../img/staff_bg3.jpg);
  background-position: center right;
}

.staff_bg4 {
  background-image: url(../img/staff_bg4.jpg);
  background-position: center left;
}

.staff_bg1a {
  background-image: url(../img/interview2/staff_bg1.jpg);
  background-position: center right;
}

.staff_bg2a {
  background-image: url(../img/interview2/staff_bg2.jpg);
  background-position: center left;
}

.staff_bg3a {
  background-image: url(../img/interview2/staff_bg3.jpg);
  background-position: center right;
}

.staff_bg4a {
  background-image: url(../img/interview2/staff_bg4.jpg);
  background-position: center left;
}

.staff_bg5 {
  background-image: url(../img/staff_bg5.jpg);
}

.staff_bg1, .staff_bg2, .staff_bg3, .staff_bg4, .staff_bg5,
.staff_bg1a, .staff_bg2a, .staff_bg3a, .staff_bg4a, .staff_bg5a {
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .staff_bg1, .staff_bg2, .staff_bg3, .staff_bg4, .staff_bg5,
  .staff_bg1a, .staff_bg2a, .staff_bg3a, .staff_bg4a, .staff_bg5a {
    background-color: #fff;
    background-image: none;
  }
}

.business_bg1 {
  background-image: url(../img/business_bg1.jpg);
  background-position: center right;
}

.business_bg2 {
  background-image: url(../img/business_bg2.jpg);
  background-position: center left;
}

.business_bg3 {
  background-image: url(../img/business_bg3.jpg);
  background-position: center right;
}

.business_bg1, .business_bg2, .business_bg3 {
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
}

.int_ttl {
  position: relative;
  max-width: 1160px;
  height: 300px;
  margin: 0 auto;
}

.int_ttl img {
  position: absolute;
  top: -60px;
}

@media screen and (max-width: 768px) {
  .int_ttl {
    height: auto;
  }
  .int_ttl img {
    position: static;
    top: 0;
    z-index: 500;
    width: 90%;
    max-width: 558px;
  }
}

.int_ttl02 {
  position: relative;
  max-width: 1160px;
  height: 300px;
  margin: 0 auto;
}

.int_ttl02 img {
  position: absolute;
  top: -60px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .int_ttl02 {
    height: auto;
  }
  .int_ttl02 img {
    position: static;
    top: 0;
    z-index: 500;
    width: 90%;
    max-width: 558px;
  }
}

.bg-image1 {
  background-image: url(../img/bg-image1.png);
}

.bg-image1 {
  padding: 80px 0;
  margin: 80px 0;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .bg-image1 {
    padding: 0px 0;
    margin: 0px 0;
  }
}

.bg-image2 {
  background-image: url(../img/bg-image2.jpg);
}

.bg-image2 {
  background-repeat: no-repeat;
  background-position: top center;
  /*   background-size: contain;
    -moz-background-size: contain;
    */
}

/* produxt_listpage */
.produxt_listpage_image {
  position: relative;
  width: 100%;
  height: 350px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #eee;
}

.produxt_listpage_image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: 'object-fit: contain;';
  /* IE対策 */
  text-align: center;
  object-fit: contain;
}

/* produxt_listpage */
/* product_list */
.product_list_info {
  font-size: 13px;
}

.product_list_info dt {
  float: left;
  width: 6em;
  padding: 5px 0px;
  margin: 2px 0 0;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: #4a6942;
}

.product_list_info dd {
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 7em;
  margin: 5px 0;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
}

.product_list_info dd:last-child {
  border-bottom: 0px;
}

.product_list {
  width: 100%;
  margin: 10px auto 0;
}

.product_list * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product_list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.product_list figcaption {
  position: relative;
  width: 95%;
  height: 250px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
}

.product_list figcaption img {
  display: block;
  width: 250px;
  height: 100%;
  margin: 0 auto;
  font-family: 'object-fit: contain;';
  /* IE対策 */
  text-align: center;
  object-fit: contain;
}

.product_list li {
  position: relative;
  width: calc(33.33% - 30px);
  padding: 10px 5px;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
}

.product_list li:hover {
  background: rgba(242, 242, 242, 0.2);
}

.product_list li:hover img {
  opacity: .8;
}

.product_list li:hover .btn {
  color: #FFF;
  background: #4a6942;
}

.product_list li .btn {
  display: block;
  width: 160px;
  padding: 2px 0px;
  margin: 5px auto;
  font-size: 1.2rem;
  color: #4a6942;
  text-align: center;
  border: 1px solid #4a6942;
}

.product_list li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.product_list li h3 {
  margin: 10px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.6rem;
  color: #4a6942;
  text-align: center;
}

.product_list li .catch {
  position: relative;
  top: -20px;
  left: -10px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  margin-bottom: -10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background: #4a6942;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0px 0px;
}

.product_list li .product_list_ttl {
  margin: 10px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #4a6942;
  text-align: center;
}

.product_list li .text {
  font-size: 13px;
  text-align: left;
}

.product_list li .text::before {
  margin-right: 3px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4a6942;
  content: '\f0a9';
}

@media screen and (max-width: 768px) {
  .product_list ul {
    display: block;
  }
  .product_list figcaption {
    width: 95%;
    height: auto;
    background: #fff;
  }
  .product_list li {
    width: 93%;
    padding: 0 5px 5px;
    margin-right: 0px;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 1px 1px 0px 1px;
  }
  .product_list_btn {
    position: relative;
  }
}

/* Tiny Carousel */
.slider1 {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  background-repeat: repeat;
}

.slider1 h3 {
  margin: 10px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 1.2rem;
  color: #000000;
}

.slider1 .viewport {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 0 auto;
}

.slider1 .buttons {
  position: absolute;
  top: 85%;
  bottom: 0;
  left: -10px;
  z-index: 5;
  width: 50px;
  height: 100%;
  margin: 0 auto;
  font-family: 'Font Awesome 5 Free';
  font-size: 1.5em;
  font-weight: normal;
  color: #4a6942;
  text-align: center;
  text-decoration: none;
  vertical-align: bottom;
  cursor: pointer;
}

.slider1 .next {
  top: 85%;
  right: -10px;
  bottom: 0;
  left: auto;
}

.slider1 .buttons:hover {
  opacity: .6;
}

.slider1 .disable {
  visibility: hidden;
}

.slider1 .overview {
  position: absolute;
  top: -1px;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slider1 .overview li {
  z-index: 99999;
  display: table;
  float: left;
  width: 200px;
  height: 230px;
  padding: 2px 0 0;
  margin: 0px 10px;
  overflow: hidden;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.slider1 .overview li p {
  font-size: 13px !important;
  font-weight: normal;
  text-align: center;
  background: #F1E7CD;
}

.slider1 .overview li a {
  z-index: 100;
  display: block;
  width: 190px;
  height: 190px;
  overflow: hidden;
  border: 1px solid #4a6942;
  border-radius: 50%;
}

.slider1 img {
  width: 190px;
  height: 190px;
  font-family: 'object-fit: contain;';
  /* IE対策 */
  text-align: center;
  vertical-align: middle;
  object-fit: contain;
}

.contact {
  width: 1160px;
  padding: 20px 0 10px;
  margin: 0 auto;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.mttl_contact {
  position: relative;
  float: left;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.4;
  color: #4a6942;
  text-align: center;
  letter-spacing: .1rem;
}

.mttl_contact span {
  padding-left: 10px;
  margin-left: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  color: #333;
  border-left: 2px solid #ccc;
}

.contactbx {
  margin: 10px 0;
  text-align: center;
}

.contactbx li {
  display: inline-block;
  margin: 0 5px 10px;
}

.contactbx a {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}

.contactbx li a:link, .contactbx li a:visited, .contactbx li a:hover {
  color: #111;
}

.contactbx li:hover {
  opacity: .8;
}

.contactbx .tl a {
  width: 300px;
  padding: 5px 0px;
  font-weight: normal;
  letter-spacing: 2px;
  background: #fff;
  border-radius: 0px;
}

.contactbx .ml a {
  width: 300px;
  padding: 5px 0px;
  font-weight: normal;
  letter-spacing: 2px;
  background: #fff;
  background: #d3d3d3;
  border-radius: 0px;
}

.contactbx .tl a::before {
  margin-right: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f095';
}

.contactbx .ml a::before {
  margin-right: 15px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0e0';
}

.contactbx .ml a:link, .contactbx .ml a:visited {
  color: #fff;
}

.contactbx .ml a:hover {
  color: #333;
  color: #fff;
  background: #333;
}

.contactbx .tl a:link, .contactbx .tl a:visited {
  color: #333;
}

.contactbx .tl a:hover {
  color: #333;
  color: #fff;
  background: #333;
}

@media screen and (max-width: 768px) {
  .contact {
    width: 100%;
  }
  .mttl_contact {
    float: none;
    font-size: 2.3rem;
    text-align: center;
    letter-spacing: 1px;
  }
  .mttl_contact span {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .contactbx li {
    display: block;
  }
  .contactbx .tl a {
    display: block;
  }
  .contactbx .ml a {
    display: block;
  }
}

.list-bnr_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5;
}

.list-bnr_02 li {
  position: relative;
  width: calc(33.33% - 10px);
  margin-bottom: 15px;
  background: #4a6942;
  box-shadow: rgba(0, 0, 0, 0.3) 4px 4px 0 0;
}

.list-bnr_02 li::before {
  position: absolute;
  bottom: 35%;
  left: 90%;
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  content: '\f105';
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.list-bnr_02 li:hover::before {
  left: 92%;
}

.list-bnr_02 li a {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 1.5em 13px;
}

.list-bnr_02 li a:link, .list-bnr_02 li a:visited, .list-bnr_02 li a:hover {
  color: #fff;
}

.list-bnr_02 li:hover {
  opacity: .6;
}

.list-bnr_02 li:nth-child(3n+2):last-child {
  margin-right: 33.4%;
}

.pbox {
  max-width: 700px;
  margin: 10px auto;
}

/* dropdownmenu */
#navi ul li ul {
  position: absolute;
  top: 140px;
  right: 0;
  display: block !important;
}

#navi ul li ul li {
  display: block !important;
  width: 100%;
  width: 250px;
  height: 0;
  padding: 0 0 !important;
  margin: 0 1px 1px !important;
  overflow: hidden;
  visibility: hidden;
  background: #fff;
  border-right: 0px solid #ddd;
  border-left: 0px solid #ddd;
}

#navi ul li ul li a {
  display: block;
  width: 100%;
  padding: 10px 0 !important;
  margin: 0 0px !important;
  font-size: 13px;
  text-align: left;
  text-indent: 10px;
}

#navi ul li ul li a::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0da';
}

#navi ul li ul li a:link, #navi ul li ul li a:visited {
  font-weight: normal;
  color: #333;
}

#navi ul li ul li a:hover {
  font-weight: normal;
  color: #333;
}

#navi ul li:hover ul li {
  height: auto;
  overflow: visible;
  visibility: visible;
}

#navi ul li:hover ul li:hover {
  background: #d3d3d3;
}

/* /dropdownmenu */
.pbx {
  width: 400px;
  padding: 20px 30px 20px;
  color: #fff;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0) !important;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .pbx {
    width: 100%;
    color: #111;
  }
}

.pbx_c {
  width: 300px;
  padding: 300px 0 0;
  margin: 0 auto;
  vertical-align: middle;
}

.pbx_l {
  width: 400px;
  padding: 0px 0 0;
  margin-top: 450px;
}

@media screen and (max-width: 768px) {
  .pbx_l {
    width: 100%;
    padding: 0px 0 0;
    margin-top: 0;
    text-align: center;
  }
}

.pbx_img {
  flex: 1;
  width: 100%;
}

.bg_l {
  padding: 100px 0 0;
  margin-top: 200px;
  background-image: url(../img/bg_l.png);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: 100%;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .bg_l {
    padding: 0px 0 0;
    margin-top: 0px;
    background-image: none;
  }
}

.bg_c {
  background-image: url(../img/bg_c.png);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

.bg_r {
  background-image: url("../img/bg_r.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .bg_r {
    background-image: none;
  }
}

.photobx-r {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  width: 1160px;
  padding: 25px 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .photobx-r {
    width: 100%;
    padding: 0;
  }
}

.photobx-l {
  width: 1160px;
  padding: 25px 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pbx {
    z-index: 999;
    width: calc(95% - 0px);
    padding: 0px;
    margin: 0 auto;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.9) !important;
  }
  .pbx_c {
    width: 100%;
    padding: 15% 5% 15%;
    margin: 0 auto;
    vertical-align: middle;
  }
  .photobx-l {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}

.news-lb {
  margin: 15px 0;
  line-height: 1.8;
}

.news-lb dt {
  float: left;
  width: 8em;
  padding: 5px 0px;
  font-weight: bold;
  text-align: center;
  border-right: #4a6942 3px solid;
}

.news-lb dd {
  padding-top: 7px;
  padding-bottom: 15px;
  padding-left: 10em;
  margin: 0px 0 15px;
  border-bottom: 1px solid #ccc;
}

.news-lb dd:last-child {
  border-bottom: 0px;
}

.lh-2 {
  line-height: 2;
}

.flink {
  text-align: center;
}

.flink li {
  display: inline-block;
  margin: 5px;
}

.flink li img {
  width: 356px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .flink li img {
    width: 100%;
  }
}

.bg_in01 {
  margin-top: 50px;
  background-color: #e8e8e8;
  background-size: 100% 430px;
}

@media screen and (max-width: 768px) {
  .bg_in01 {
    height: auto;
    margin-top: 0;
    background: none;
  }
}

.youtube_vd {
  width: 800px;
  margin: 0 auto;
}

.ttl_n {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.ttl_n span {
  padding: 5px 15px;
  border-bottom: 2px solid #111;
}

.ttl_m {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}

.ttl_m span {
  font-size: 2rem;
}

.bx_in01 h4 {
  font-size: 2.2rem;
}

.bx_in01 h4::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0c8';
}

.bx_in01 p {
  padding: 0px 0 30px 22px;
}

@media screen and (max-width: 768px) {
  .bx_in01 h4 {
    font-size: 1.8rem;
  }
}

#title_bg1 {
  padding: 20px 0;
  background-color: #f7f6f0;
  background-image: url("../img/title_bg1.png");
  background-repeat: no-repeat;
  background-position: top center;
}

@media screen and (max-width: 768px) {
  #title_bg1 {
    padding: 10px 0;
  }
}

#title_bg2 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg2.png");
  background-repeat: no-repeat;
  background-position: top right;
}

#title_bg3 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg3.png");
  background-repeat: no-repeat;
  background-position: top left;
}

#title_bg4 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg4.png");
  background-repeat: no-repeat;
  background-position: top right;
}

#title_bg5 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg5.png");
  background-repeat: no-repeat;
  background-position: top left;
}

#title_bg6 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg6.png");
  background-repeat: no-repeat;
  background-position: top right;
}

#title_bg7 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg7.png");
  background-repeat: no-repeat;
  background-position: top left;
}

#title_bg8 {
  padding: 135px 0 65px;
  background-image: url("../img/title_bg8.png");
  background-repeat: no-repeat;
  background-position: top center;
}

#title {
  max-width: 600px;
  padding: 10px 0;
  margin: 0px auto 0;
}

#title h2 {
  position: relative;
  margin: 0 auto;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.0;
  text-align: center;
  letter-spacing: .3rem;
}

#title h2 span {
  display: block;
  padding: 10px 15px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #4a6942;
}

@media screen and (max-width: 768px) {
  #title {
    display: block;
    width: 80% !important;
    max-width: 80% !important;
    padding: 0px 0 !important;
    margin: 0 auto !important;
  }
  #title h2 {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.0;
    text-align: center;
  }
  #title span {
    padding: 10px 15px 0;
  }
}

.bnr_nml li {
  width: calc(50% - 20px);
}

.bnr_nml figure:hover .transform01 {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.bnr_nml figure h3 {
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  text-align: left;
}

.bnr_nml figure h3::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0a9';
}

.bnr_nml figure p {
  font-size: 14px;
  font-weight: 400;
  color: #1b1b19;
  text-align: left;
}

.bnr_nml figure * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.bnr_nml figcaption {
  width: 100%;
  padding: 10px 0;
  background: rgba(74, 105, 66, 0.8);
  -webkit-transition: .3s;
  transition: .3s;
}

.bnr_nml figcaption h3 {
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: normal;
}

.bnr_nml figcaption p {
  margin-left: 40px;
  color: #fff;
}

.bnr_nml figcaption:hover {
  background: rgba(74, 105, 66, 0.6);
}

@media screen and (max-width: 768px) {
  .bnr_nml li {
    width: 100%;
  }
  .bnr_nml figcaption h3 {
    font-size: 1.3em;
  }
}

#pankuzuA {
  width: 100%;
  padding: 5px 0;
  background: #f2f2f2;
}

#pankuzu {
  max-width: 1160px;
  margin: 0px auto 0px;
  font-size: 1.1rem;
}

#pankuzu li {
  display: inline;
}

#pankuzu li a {
  display: inline;
  padding: 0;
}

#pankuzu li + li::before {
  margin: 0 10px;
  content: '>';
}

@media screen and (max-width: 768px) {
  #title {
    /* border:1px solid #443402; */
    padding: 120px 0 60px;
    margin: 0;
  }
}

/* newsbox */
.newsbox {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin: 0 auto;
  color: #fff !important;
  background: #d3d3d3;
}

.news-ttl {
  width: 230px;
  padding: 20px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.2rem;
  font-weight: normal;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  text-align: center;
  letter-spacing: 2px;
  vertical-align: middle;
}

.news-ttl span {
  display: block;
  margin-top: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.2rem !important;
  font-weight: normal;
  color: #fff;
}

.news-ttl span a {
  padding: 2px 10px;
  background: #fff;
  border-radius: 20px;
}

.news-bx {
  flex: 1;
  width: calc(100% - 40px);
  padding: 20px 20px;
  background: #e0e0e0;
}

.news-bx .news {
  margin: 10px auto 0;
  overflow: hidden;
  line-height: 1.6;
}

.news-bx .news dt {
  float: left;
  width: 8em;
  font-weight: bold;
}

.news-bx .news dd {
  padding-bottom: 5px;
  padding-left: 8em;
  margin-bottom: 8px;
  color: #333;
  border-bottom: 1px solid #fff;
}

.news-bx .news dd:last-child {
  border-bottom: 0px solid #fff;
}

.news {
  margin: 10px auto 0;
  overflow: hidden;
  line-height: 1.6;
}

.news dt {
  float: left;
  width: 8em;
  font-weight: bold;
  color: #4a6942;
}

.news dd {
  padding-bottom: 5px;
  padding-left: 8em;
  margin-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.news dd:last-child {
  border-bottom: 0px solid #fff;
}

/* flex_bx */
.flex_bx_2, .flex_bx_3, .flex_bx_4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_bx_2 .bx h3, .flex_bx_3 .bx h3, .flex_bx_4 .bx h3 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  background: #4a6942;
}

.flex_bx_2 .bx {
  width: 48%;
}

.flex_bx_3 .bx {
  width: calc(33% - 10px);
}

.flex_bx_3 .bx:last-child {
  border-right: 0px solid #aaa;
}

.flex_bx_4 .bx {
  width: calc(25% - 10px);
}

.flex_bx_4 .bx:last-child {
  border-right: 0px solid #aaa;
}

.flex_bx_4 .bx p {
  padding: 10px 10px 0;
}

.flex_bx_2 .bx, .flex_bx_3 .bx, .flex_bx_4 .bx {
  position: relative;
  padding: 0 0px;
  margin-bottom: 20px;
  background: #f2f2f2;
}

.flex_bx_2 .bx img, .flex_bx_3 .bx img, .flex_bx_4 .bx img {
  display: block;
  max-width: calc(100% - 4px);
  margin: 0 auto;
  border: 2px solid #4a6942;
}

/* flex用btn */
/* flex */
.flex_2, .flex_3, .flex_4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_2 .bx h3, .flex_3 .bx h3, .flex_4 .bx h3 {
  padding: 0 15px;
  font-size: 18px;
  color: #4a6942;
  letter-spacing: 2px;
}

.flex_2 .bx h3::before, .flex_3 .bx h3::before, .flex_4 .bx h3::before {
  margin-right: 2px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f06c';
}

.flex_2 .bx {
  width: calc(49%);
}

.flex_3 .bx {
  width: calc(33.33% - 11px);
  margin: 5px;
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 2px;
}

.flex_4 .bx {
  width: calc(23%);
}

.flex_2 .bx, .flex_3 .bx, .flex_4 .bx {
  position: relative;
  margin-bottom: 40px;
  background: #fff;
}

.flex_2 .bx img, .flex_3 .bx img, .flex_4 .bx img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .flex_2, .flex_3 {
    display: block;
    flex-wrap: nowrap;
  }
  .flex_2 .bx h3, .flex_3 .bx h3, .flex_4 .bx h3 {
    font-size: 15px;
  }
  .flex_2 .bx, .flex_3 .bx {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .flex_4 .bx {
    width: calc(45%);
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .flex_3 .bx:last-child {
    width: calc(100% - 0px);
  }
}

.bxbtn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  font-weight: bold;
}

.bxbtn * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.bxbtn a {
  display: block;
  width: 200px;
  padding: 10px 0px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  background: #4a6942;
  border: 1px solid #4a6942;
  border-radius: 30px;
}

.bxbtn a:link {
  color: #fff;
  text-decoration: none;
}

.bxbtn a:visited {
  color: #fff;
}

.bxbtn a:hover {
  color: #4a6942;
  text-decoration: none;
  background: #fff;
  border: 1px solid base_color;
}

.bxbtn a::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0da';
}

/* /flex用btn */
/* スマートフォン */
@media screen and (max-width: 800px) {
  .flex_bx_2, .flex_bx_3 {
    display: block;
    flex-wrap: nowrap;
  }
  .flex_bx_2 .bx h3, .flex_bx_3 .bx h3, .flex_bx_4 .bx h3 {
    font-size: 15px;
  }
  .flex_bx_2 .bx, .flex_bx_3 .bx {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .flex_bx_4 .bx {
    width: calc(45%);
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .bxbtn {
    position: static;
    width: 200px !important;
    margin: 10px auto 0;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
  margin: 0 auto;
}

.map {
  width: 100%;
  height: 450px;
}

/*  scrollbar  */
.scrollbar-y {
  width: 100%;
  height: 450px;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .scrollbar-y {
    height: 200px;
  }
}

.scrollbar-y::-webkit-scrollbar {
  width: 5px;
}

.scrollbar-y::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.scrollbar-y::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mbox_white {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.4);
}

/* mttl */
.mttl_bg {
  font-size: 4rem;
  color: #111;
  text-align: center;
}

.mttl_bl {
  padding: 5px 0;
  margin: 20px 0;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: bold;
  color: #4a6942;
  text-indent: .8em;
  background: #f1f1f1;
  border-left: 2px solid #4a6942;
}

.mttl_check {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #4a6942;
  border-bottom: dotted 1px #4a6942;
}

.mttl_check::before {
  margin-right: 6px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0a9';
}

.mttl_check_bg {
  padding: 5px 0;
  margin: 15px 0;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  background: #d3d3d3;
  border-radius: 5px;
}

.mttl_check_bg::before {
  margin-right: 6px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f30b';
}

.mttl_movie {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.mttl_movie::before {
  margin-right: 6px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f03d';
}

.mt01 {
  padding-top: 30px !important;
}

@media screen and (max-width: 768px) {
  .mt01 {
    padding-top: 0px !important;
  }
}

.mtitle-ll {
  margin-bottom: 20px;
  font-size: 3rem;
  color: #555;
  text-align: center;
}

.mttl_cl {
  position: relative;
  margin-bottom: 45px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #111;
  text-align: center;
  letter-spacing: 4px;
}

.mttl_cl::after {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  content: '';
  background: #4a6942;
}

.mttl_cl span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #4a6942;
}

.mttl_cla {
  position: relative;
  margin-bottom: 45px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.4;
  color: #333;
  text-align: center;
  letter-spacing: 5px;
}

.mttl_cla::after {
  position: absolute;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin: auto;
  content: '';
  background: #aaa;
}

.mttl_cla span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #4a6942;
}

.mttl_cl02 {
  position: relative;
  margin-bottom: 30px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.6;
  color: #111;
  text-align: center;
  letter-spacing: 4px;
}

.mttl_cl02 span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  color: #4a6942;
}

.mttl_ic {
  padding-bottom: 10px;
  margin: 0px 0 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: .9;
  color: #4a6942;
  letter-spacing: 1px;
  border-bottom: 2px solid #4a6942;
}

.mttl_ic::before {
  position: relative;
  top: 5px;
  content: url(../img/mttl_ic.png);
}

.mttl_ic span {
  margin-left: 5px;
  font-size: 1.5rem;
}

.mttl-bg {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  background: #4a6942;
}

.mttl-rs {
  margin-bottom: 5px;
}

.mttl-rs span {
  padding: 2px 10px;
  margin-right: 5px;
  font-size: 1.8rem;
  color: #fff;
  background: #111;
}

.mttl-rs_c01 span {
  padding: 2px 20px;
  font-size: 1.8rem;
  color: #fff;
  background: #E5954C;
}

.mttl-rs_c01 span {
  background: #E5954C;
  display: inline-block;
  padding: 2px 30px;
  font-size: 1.8rem;
  color: #fff;
}

.mttl-rs_c01.center {
  text-align: center;
}

.mttl-rs_c02 span {
  background: #CF6FD7;
  display: inline-block;
  padding: 2px 30px;
  font-size: 1.8rem;
  color: #fff;
}

.mttl-rs_c02.center {
  text-align: center;
}

.mttl-rs_c03 span {
  margin: 0 auto;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center;
  background: #70A666;
  display: inline-block;
  padding: 2px 30px;
  font-size: 1.8rem;
  color: #fff;
}

.mttl-rs_c03.center {
  text-align: center;
}

.tbx_c01 {
  background: #ffe8d3;
  border: 3px solid #E5954C;
  width: calc(100% - 146px);
  padding: 25px 70px;
}

@media screen and (max-width: 768px) {
  .tbx_c01 {
    width: calc(100% - 36px);
    padding: 25px 15px;
  }
}

.tbx_c02 {
  background: #ffddf2;
  border: 3px solid #CF6FD7;
  width: calc(100% - 146px);
  padding: 25px 70px;
}

@media screen and (max-width: 768px) {
  .tbx_c02 {
    width: calc(100% - 36px);
    padding: 25px 15px;
  }
}

.tbx_c03 {
  background: #efffec;
  border: 3px solid #70A666;
  width: calc(100% - 146px);
  padding: 25px 70px;
}

@media screen and (max-width: 768px) {
  .tbx_c03 {
    width: calc(100% - 36px);
    padding: 25px 15px;
  }
}

.mttl-rs2 {
  margin: 0;
}

.mttl-rs2 span {
  padding: 8px 10px;
  font-size: 1.8rem;
  color: #fff;
  background: #4a6942;
}

.mttl-rs2 span::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
  content: '\f27a';
}

.list_pdf {
  padding: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #448aca;
  background: #bed9ec;
}

.list_pdf li {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  border-bottom: dotted 1px #aaa;
}

.list_pdf li::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #f84453;
  content: '\f1c1';
}

.list_pdf li:last-child {
  border-bottom: dotted 0px #aaa;
}

.faq_accordion dt {
  padding: 20px 0;
  padding-left: 2.2em;
  font-size: 1.8rem;
  font-weight: normal;
  font-weight: bold;
  color: #4a6942;
  text-indent: -1.7em;
  background: #f2f2f2;
  border-top: #aaa 2px solid;
  border-right: #aaa 2px solid;
  border-left: #aaa 2px solid;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .faq_accordion dt {
    font-size: 1.4rem;
  }
}

.faq_accordion dt::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-size: 3rem;
  font-size: 1.7rem;
  font-weight: 900;
  color: #4a6942;
  content: '\f00c';
}

.faq_accordion dd {
  padding: 10px 20px;
  margin-bottom: 25px;
  background: #fff;
  border: #aaa 2px solid;
  /*     &:before {
              content: "A";
              margin-right: 5px;
              color: $base_color;
              font-weight: bold;
              font-size: 18px;
            }
        */
}

.faq_accordion dd b {
  margin-right: 3px;
  font-size: 2rem;
  color: #4a6942;
}

.faq_accordion dd span {
  display: block;
  font-weight: bold;
  color: #4a6942;
  border-bottom: 1px dotted #aaa;
}

.faq dt {
  padding: 5px 5px 3px 2px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #d3d3d3;
}

.faq dt::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-size: 20px;
  font-weight: 900;
  content: '\f059';
}

.faq dd {
  padding: 10px 10px;
  margin-bottom: 20px;
  background: #f2f2f2;
}

.faq dd::before {
  padding: 7px 10px;
  margin-right: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #d3d3d3;
  content: 'A';
  border-radius: 50%;
}

.faq b {
  padding: 3px 5px;
  margin: 10px 0;
  font-size: 11px;
  line-height: 40px;
  background: #dad2b9;
}

.list-bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.5;
}

.list-bnr li {
  position: relative;
  width: calc(33.33% - 10px);
  margin-bottom: 15px;
  background: #4a6942;
}

.list-bnr li::before {
  position: absolute;
  bottom: 25%;
  left: 90%;
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  content: '\f105';
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.list-bnr li:hover::before {
  left: 92%;
}

.list-bnr li a {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 10px 13px;
}

.list-bnr li a:link, .list-bnr li a:visited, .list-bnr li a:hover {
  color: #fff;
}

.list-bnr li:hover {
  background: #79a46d;
}

.list-bnr li:nth-child(3n+2):last-child {
  margin-right: 33.4%;
}

@media screen and (max-width: 768px) {
  .list-bnr li {
    width: calc(100%);
    margin: 0 0 10px;
  }
}

.list-bnr01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.5;
}

.list-bnr01 li {
  position: relative;
  width: calc(100% - 0px);
  margin-bottom: 15px;
  background: #4a6942;
}

.list-bnr01 li::before {
  position: absolute;
  bottom: 24%;
  left: 97%;
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  content: '\f105';
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.list-bnr01 li:hover::before {
  left: 99%;
}

.list-bnr01 li a {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 10px 13px;
}

.list-bnr01 li a:link, .list-bnr01 li a:visited, .list-bnr01 li a:hover {
  color: #fff;
}

.list-bnr01 li:hover {
  background: #79a46d;
}

@media screen and (max-width: 768px) {
  .list-bnr li {
    width: calc(100%);
    margin: 0 0 10px;
  }
}

.timeline > li {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.timeline-date {
  float: left;
  width: 130px;
  margin-top: 10px;
  font-weight: bold;
  color: #4a6942;
  text-align: left;
}

.timeline-content {
  float: left;
  width: 75%;
  padding: 10px 0 10px 30px;
  border-left: 3px #ccc solid;
}

.timeline-content::before {
  position: absolute;
  top: 17px;
  left: 126px;
  width: 12px;
  height: 12px;
  content: '';
  background: #4a6942;
  border-radius: 100%;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .timeline > li {
    position: relative;
    margin: 0;
    overflow: hidden;
  }
  .timeline-date {
    float: left;
    width: 7em;
    margin-top: 10px;
    text-align: left;
  }
  .timeline-content {
    float: left;
    width: 50%;
    padding: 10px 0 20px 20px;
    border-left: 3px #ccc solid;
  }
  .timeline-content::before {
    position: absolute;
    top: 17px;
    left: 6.7em;
    width: 12px;
    height: 12px;
    content: '';
    background: #4a6942;
    border-radius: 100%;
  }
}

.ol-list {
  display: block;
  /* Remove default numbering */
  margin: 10px 0;
  /* Initiate a counter */
  list-style: none;
  counter-reset: li;
}

.ol-list li {
  padding: 5px 0px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  background: #f2f2f2;
  border-radius: .3em;
}

.ol-list li:last-child {
  margin-bottom: 0px;
}

.ol-list span {
  position: relative;
  display: table-cell;
  padding-left: 10px;
  color: #555;
  text-decoration: none;
  transition: all .3s ease-out;
}

.ol-list span::before {
  position: absolute;
  top: 50%;
  width: 2em;
  height: 2em;
  margin-top: -1.3em;
  margin-left: -3em;
  font-weight: bold;
  line-height: 2em;
  color: #fff;
  text-align: center;
  content: counter(li);
  counter-increment: li;
  background-color: #79a46d;
  border: .3em solid #fff;
  border-radius: 2em;
  transition: all .3s ease-out;
}

.mttl_slash {
  position: relative;
  margin: 0 0px 15px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.2rem;
  color: #4a6942;
  letter-spacing: 2px;
  border-bottom: 2px solid #eee;
}

.mttl_slash::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #79a46d;
  content: '\f068';
}

.mttl_slash::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  width: 20%;
  height: 3px;
  content: '';
  background-color: #79a46d;
}

.mttl_slash span {
  margin-bottom: .2em;
  margin-left: 10px;
  font-size: .6em;
  font-size: 12px;
  font-weight: bold;
  color: #448cc9;
  text-transform: uppercase;
}

/* news */
.news {
  margin: 10px auto 0;
  overflow: hidden;
  line-height: 1.6;
}

.news dt {
  float: left;
  width: 8em;
  font-weight: bold;
  color: #4a6942;
}

.news dd {
  padding-bottom: 5px;
  padding-left: 8em;
  margin-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.news-bl dt {
  float: left;
  width: 7em;
  padding: 5px 0px;
  margin: 2px 0 0;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  background: #4a6942;
}

.news-bl dd {
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 8em;
  margin: 5px 0;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
}

.news-bl dd:last-child {
  border-bottom: 0px;
}

.list-check {
  padding: 5px 0;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
}

.list-check li {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  border-bottom: dotted 1px #aaa;
}

.list-check li::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4a6942;
  content: '\f14a';
}

.list-check li:last-child {
  border-bottom: dotted 0px #aaa;
}

.list_check {
  padding: 5px 0;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.5;
}

.list_check li {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  border-bottom: dotted 1px #aaa;
}

.list_check li::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4a6942;
  content: '\f14a';
}

.list_check li:last-child {
  border-bottom: dotted 0px #aaa;
}

.mttl_bubble {
  position: relative;
  padding: 0px 0px 5px 0px;
  padding-left: 2em;
  margin-top: 5px;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #4a6942;
  border-bottom: 2px solid #79a46d;
}

.mttl_bubble::before {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 5rem;
  color: #4a6942;
  content: '●';
}

.mttl_bubble::after {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.3rem;
  color: #79a46d;
  content: '〇';
}

.btn_blue a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 200px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  background: #4a6942;
  border: 2px solid #4a6942;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_blue a:link, .btn_blue a:visited {
  color: #fff;
  text-decoration: none;
}

.btn_blue a:hover {
  color: #4a6942;
  text-decoration: none;
  background-color: #fff;
  border-color: #4a6942;
}

.btn_blue a::before, .btn_blue a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #4a6942;
}

.btn_blue a::before {
  right: 0;
}

.btn_blue a::after {
  left: 0;
}

.btn_blue a:hover::before, .btn_blue a:hover::after {
  width: 0;
  background: #4a6942;
}

.btn_blue a::before, .btn_blue a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn_blue a::before, .btn_blue a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_l {
  margin-right: auto !important;
  margin-left: 0px !important;
}

.btn_r {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: right;
}

.btn_s a {
  display: block;
  width: 160px;
  padding: 5px 0px;
  font-size: 1.3rem;
  text-align: center;
  background: #4a6942;
  border: 2px solid #4a6942;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn_s a:link, .btn_s a:visited {
  color: #fff;
}

.btn_s a:hover {
  color: #fff;
  color: #4a6942;
  background: #fff;
  border: 2px solid #4a6942;
}

@media screen and (max-width: 768px) {
  .btn_s a {
    width: 100px;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

.btn_s.center a {
  margin-right: auto !important;
  margin-left: auto !important;
}

.btn_s.right a {
  margin-left: auto !important;
}

@media screen and (max-width: 768px) {
  .btn_s.right a {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

.btn1 a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 200px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #4a6942;
  border: 2px solid #4a6942;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn1 a:link, .btn1 a:visited {
  color: #fff;
  text-decoration: none;
}

.btn1 a:hover {
  color: #4a6942;
  text-decoration: none;
  background-color: #fff;
  border-color: #4a6942;
}

.btn1 a::before, .btn1 a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #4a6942;
}

.btn1 a::before {
  right: 0;
}

.btn1 a::after {
  left: 0;
}

.btn1 a:hover::before, .btn1 a:hover::after {
  width: 0;
  background: #4a6942;
}

.btn1 a::before, .btn1 a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn1 a::before, .btn1 a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn1a a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 280px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #4a6942;
  border: 2px solid #4a6942;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn1a a:link, .btn1a a:visited {
  color: #fff;
  text-decoration: none;
}

.btn1a a:hover {
  color: #4a6942;
  text-decoration: none;
  background-color: #fff;
  border-color: #4a6942;
}

.btn1a a::before, .btn1a a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #4a6942;
}

.btn1a a::before {
  right: 0;
}

.btn1a a::after {
  left: 0;
}

.btn1a a:hover::before, .btn1a a:hover::after {
  width: 0;
  background: #4a6942;
}

.btn1a a::before, .btn1a a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn1a a::before, .btn1a a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_bk a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 180px;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  background: #111;
  border: 2px solid #111;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_bk a:link, .btn_bk a:visited {
  color: #fff;
  text-decoration: none;
}

.btn_bk a:hover {
  color: #111;
  text-decoration: none;
  background-color: #fff;
  border-color: #111;
}

.btn_bk a::before, .btn_bk a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #111;
}

.btn_bk a::before {
  right: 0;
}

.btn_bk a::after {
  left: 0;
}

.btn_bk a:hover::before, .btn_bk a:hover::after {
  width: 0;
  background: #111;
}

.btn_bk a::before, .btn_bk a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn_bk a::before, .btn_bk a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_wt a {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 180px;
  padding: 3px 0;
  margin: 0 auto;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 2px solid #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn_wt a:link, .btn_wt a:visited {
  color: #111;
  text-decoration: none;
}

.btn_wt a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #111;
  border-color: #fff;
}

.btn_wt a::before, .btn_wt a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff;
}

.btn_wt a::before {
  right: 0;
}

.btn_wt a::after {
  left: 0;
}

.btn_wt a:hover::before, .btn_wt a:hover::after {
  width: 0;
  background: #fff;
}

.btn_wt a::before, .btn_wt a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn_wt a::before, .btn_wt a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* btn */
.btn2 a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 305px;
  padding: 10px 0;
  margin: 0 auto;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  background: none;
  border: 1px solid #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn2 a:link, .btn2 a:visited {
  color: #fff;
  text-decoration: none;
}

.btn2 a:hover {
  color: #111 !important;
  text-decoration: none;
  background-color: #fff;
  border-color: #fff;
}

.btn2 a::before, .btn2 a::after {
  top: 0;
  width: 50%;
  height: 100%;
}

.btn2 a::before {
  right: 0;
}

.btn2 a::after {
  left: 0;
}

.btn2 a:hover {
  color: #111;
}

.btn2 a:hover::before, .btn2 a:hover::after {
  width: 0;
  background-color: #fff;
}

.btn2 a::before, .btn2 a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn2 a::before, .btn2 a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-r {
  padding: 20px 0;
  background: #f2f2f2;
}

.btn-r a {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 265px;
  padding: 15px 0;
  margin: 0 auto;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #d3d3d3;
  border: 2px solid #d3d3d3;
  border-radius: 35px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-r a:hover {
  color: #d3d3d3;
  background-color: #fff;
  border-color: #d3d3d3;
}

.btn-r a::before, .btn-r a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #d3d3d3;
}

.btn-r a::before {
  right: 0;
}

.btn-r a::after {
  left: 0;
}

.btn-r a:hover::before, .btn-r a:hover::after {
  width: 0;
  background-color: #d3d3d3;
  border-radius: 20px;
}

.btn-r a::before, .btn-r a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  border-radius: 20px;
}

.btn-r a::before, .btn-r a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* telbtn */
.telbtn {
  padding: 20px 0;
  font-size: 45px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  letter-spacing: 2px;
}

.telbtn::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4a6942;
  content: '\f098';
}

.telbtn a:link, .telbtn a:visited {
  color: #4a6942;
  text-decoration: none;
}

.telbtn a:hover {
  color: #4a6942;
  text-decoration: none;
  opacity: .6;
}

.mailbtn {
  margin: 10px 0 5px;
  font-size: 15px;
  font-weight: bold;
}

.mailbtn * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.mailbtn a {
  display: block;
  width: 250px;
  padding: 5px 5px;
  margin: 0 auto;
  font-weight: normal;
  text-align: center;
  border: 2px solid #4a6942;
}

.mailbtn a:link {
  color: #4a6942;
  text-decoration: none;
}

.mailbtn a:visited {
  color: #4a6942;
}

.mailbtn a:hover {
  color: #fff;
  text-decoration: none;
  background: #4a6942;
}

.mailbtn a::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f003';
}

.snslink {
  float: right;
  padding-top: 10px;
  font-family: 'Font Awesome 5 Free';
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.snslink li {
  display: inline-block;
  padding: 10px 13px;
  line-height: 30px;
  color: #111;
}

.snslink li:hover {
  opacity: .5;
}

.snslink a:link, .snslink a:visited, .snslink a:hover {
  color: #4a6942;
  text-decoration: none;
}

.list-bnr_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  margin-bottom: 0px;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
}

.list-bnr_02 li {
  position: relative;
  width: calc(25% - 20px);
  margin: 0 10px 15px;
  background: #d3d3d3;
  box-shadow: rgba(0, 0, 0, 0.3) 4px 4px 0 0;
}

.list-bnr_02 li::before {
  position: absolute;
  bottom: 30%;
  left: 90%;
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  content: '\f105';
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.list-bnr_02 li:hover::before {
  left: 92%;
}

.list-bnr_02 li a {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 1em 13px;
}

.list-bnr_02 li a:link, .list-bnr_02 li a:visited, .list-bnr_02 li a:hover {
  color: #fff;
}

.list-bnr_02 li:hover {
  background: #f9f9f9;
}

.tbox_bg {
  padding: 10px;
  background: #f2f2f2;
}

.top_text01 {
  min-width: 1160px;
  max-width: 1300px;
  padding-top: 80px;
  margin: 0 auto;
}

.top_text01 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top_text01 {
    min-width: 100%;
    padding-top: 30px;
  }
}

.img_g01 {
  position: relative;
  width: 960px;
  height: 300px;
  margin: 0 auto;
  text-align: center;
}

.img_g01 img {
  position: absolute;
  top: -150px;
  right: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .img_g01 {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .img_g01 img {
    position: static;
    top: 0;
    right: 0;
    left: 0;
  }
}

.img_g02 {
  position: relative;
  width: 457px;
  height: 410px;
  text-align: center;
}

.img_g02 img {
  position: absolute;
  top: -130px;
  right: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .img_g02 {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .img_g02 img {
    position: static;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 0px;
  }
}

.img_g03 {
  position: relative;
  width: 445px;
  height: 80px;
  text-align: center;
}

.img_g03 img {
  position: absolute;
  top: -150px;
  right: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .img_g03 {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .img_g03 img {
    position: static;
    top: 0;
    right: 0;
    left: 0;
  }
}

/* link */
/* containar */
#contentwrap {
  z-index: 99;
  flex: 1 1 auto;
  width: 100%;
}

#contentwrap.page_kasou {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  background-size: 120px;
}

.single {
  position: relative;
  width: 1160px;
  padding: 80px 0;
  margin: 0 auto;
}

.single .tbox p {
  margin-bottom: 0px;
}

.single2 {
  position: relative;
  width: 1160px;
  padding: 20px 0 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .single2 {
    width: 100%;
    padding: 20px 0 0px;
  }
}

.single_none {
  width: 100%;
  width: 95%;
  padding: 55px 0;
  padding: 25px 0;
  margin: 0 auto;
}

.lsingle {
  float: left;
  width: 49%;
}

.rsingle {
  float: right;
  width: 49%;
}

/* footer */
footer {
  z-index: 100;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

footer ._sp_only {
  display: none;
}

@media all and (max-width: 639px) {
  footer ._sp_only {
    position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    background: #333;
  }
}

footer ._sp_only ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer ._sp_only ul li {
  box-sizing: border-box;
  width: 33.333333%;
  background: #faf7f4;
  border-top: 1px solid #aaa;
}

footer ._sp_only ul li:nth-child(2), footer ._sp_only ul li:nth-child(5) {
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
}

footer ._sp_only ul li a {
  display: block;
  padding: 8px 10px;
  font-size: 20px;
  color: #666;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

address span {
  display: inline-block;
}

#page-top {
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 9999;
  font-size: 12px;
  font-weight: bold;
}

#page-top a {
  display: block;
  padding: 5px 15px;
  font-family: 'Font Awesome 5 Free';
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  /* background: #eb6100; */
  text-decoration: none;
  background: #4a6942;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}

#page-top a:hover {
  text-decoration: none;
  background: #79a46d;
}

table.cmp {
  width: 100%;
  margin: 0 auto;
  font-size: 13px;
  border-spacing: 0px 8px;
  border-collapse: separate;
}

table.cmp th, table.cmp td {
  padding: 15px 15px;
}

table.cmp th {
  position: relative;
  width: 100px;
  overflow: visible;
  font-weight: normal;
  color: #fff;
  text-align: left;
  vertical-align: middle;
  background: #4a6942;
}

table.cmp th::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  margin-top: -10px;
  pointer-events: none;
  content: ' ';
  border: solid transparent;
  border-width: 10px;
  border-left-color: #4a6942;
}

table.cmp td {
  width: 360px;
  padding-left: 20px;
  background: #f8f8f8;
}

/* firefox */
@-moz-document url-prefix() {
  table.cmp th::after {
    position: relative;
    top: 10px;
    left: 30px;
    float: right;
    width: 0;
    height: 0;
    padding: 0;
    margin-top: -10px;
    pointer-events: none;
    content: ' ';
    border: 10px solid transparent;
    border-left: #888 10px solid;
  }
}

.list_ol_01 {
  display: block;
  /* Remove default numbering */
  margin: 10px 0;
  /* Initiate a counter */
  list-style: none;
  counter-reset: li;
}

.list_ol_01 li {
  padding: 5px 0px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  background: #f2f2f2;
  border-radius: .3em;
}

.list_ol_01 li:last-child {
  margin-bottom: 0px;
}

.list_ol_01 span {
  position: relative;
  display: table-cell;
  padding-left: 10px;
  color: #555;
  text-decoration: none;
  transition: all .3s ease-out;
}

.list_ol_01 span::before {
  position: absolute;
  top: 50%;
  width: 2em;
  height: 2em;
  margin-top: -1.3em;
  margin-left: -3em;
  font-weight: bold;
  line-height: 2em;
  color: #fff;
  text-align: center;
  content: counter(li);
  counter-increment: li;
  background-color: #0069b7;
  border: .3em solid #fff;
  border-radius: 2em;
  transition: all .3s ease-out;
}

.top_box01 {
  max-width: 800px;
  margin: 0 auto;
}

.top_box01 img {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .top_box01 {
    max-width: 100%;
  }
}

/* footer */
footer {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

#page-top {
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 9999;
  font-size: 12px;
  font-weight: bold;
}

#page-top a {
  display: block;
  padding: 5px 15px;
  font-family: 'Font Awesome 5 Free';
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  /* background: #eb6100; */
  text-decoration: none;
  background: #4a6942;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}

#page-top a:hover {
  text-decoration: none;
  background: #79a46d;
}

/* footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
}

#footer {
  width: 1160px;
  padding: 60px 0 40px;
  margin: 0 auto 0;
}

#footer address {
  margin-top: 10px;
}

.bnr01 {
  height: 300px;
}

/* fnavi */
#fnavi_bg {
  width: 100%;
  background: #4a6942;
}

#fnavi {
  width: 1160px;
  margin: 0 auto 40px;
}

#fnavi li {
  display: inline-block;
  padding: 0 20px 0;
  margin: 0;
  text-align: center;
  list-style: none;
  border-right: 1px solid #aaa;
}

#fnavi li:last-child {
  border-right: 0px solid #aaa;
}

#fnavi li span {
  display: block;
  font-size: .8rem;
}

#fnavi li a {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.3;
  color: #333 !important;
  text-align: center;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#fnavi li a span {
  font-size: 10px;
  color: #333 !important;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#fnavi li a:link, #fnavi li a:visited, #fnavi li a:hover {
  color: #333 !important;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #fnavi_bg {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #fnavi {
    display: none;
  }
}

.bg1 {
  background: url(../img/sl1.jpg);
}

.mttl_point {
  padding: 3px 0;
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  color: #4a6942;
}

.mttl_point span {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 10px;
  margin-right: 15px;
  color: #fff;
  text-align: center;
  background: #4a6942;
  border-radius: 100px;
}

.copyright {
  display: table;
  width: 100%;
  padding: 30px 0;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  background: none;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

.fixd_link {
  position: fixed;
  top: 0;
  right: 30px;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  height: 363px;
  margin: auto;
  line-height: 1em;
  transform: rotate(-90deg);
  transform-origin: right top;
  -ms-flex-pack: start;
}

.fixd_link li {
  position: relative;
  height: 1em;
  margin-left: 40px;
  line-height: 1em;
}

@media all and (max-width: 639px) {
  .fixd_link li {
    width: 100px;
  }
}

.fixd_link li a span {
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  letter-spacing: .3em;
}

@media screen and (max-width: 768px) {
  #fmenu-lg {
    display: none;
  }
  .logo_f {
    width: 100%;
    margin: 0 auto 15px;
    text-align: center;
  }
  address {
    margin-top: 10px;
  }
  #footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: 1160px;
    padding: 80px 0 0;
    margin: 10px auto 0;
    font-size: 12px;
    border-radius: 20px;
  }
}

/* table */
table {
  margin: 10px 0;
}

table th {
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  vertical-align: middle;
  background: #4a6942;
  border: #ddd 1px solid;
}

table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}

table td b {
  font-size: 12px;
  color: #4a6942;
}

@media screen and (max-width: 800px) {
  table.rstable {
    width: 100%;
  }
  table.rstable td {
    display: block;
    width: calc( 100% - 2px) !important;
    padding: 5px 0;
    text-align: center;
  }
  table.rstable th {
    display: block;
    width: calc( 100% - 2px) !important;
    padding: 5px 0;
    overflow: hidden;
  }
}

table.tbl-2l {
  margin: 15px 0;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
}

table.tbl-2l th {
  padding: 15px 10px;
  font-weight: bold;
  line-height: 1.5;
  color: #555;
  background: none !important;
  border: #ddd 0px solid;
}

table.tbl-2l tr:nth-child(odd) {
  background: #f2f2f2 !important;
}

table.tbl-2l td {
  padding: 15px 10px;
  border: #eee 0px solid !important;
}

@media screen and (max-width: 800px) {
  table.tbl-2l {
    margin: 15px 0;
  }
  table.tbl-2l th {
    padding: 5px 0px;
  }
  table.tbl-2l td {
    width: calc(100% - 10px) !important;
    padding: 5px 5px;
    text-align: left;
  }
}

/* mailform */
.form {
  margin: 10px 0 10px;
}

.form dt span {
  position: relative;
  top: -2px;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  color: #fff;
  background: #ff4f4f;
  border-radius: 2px;
}

.form dl {
  margin: 10px 0;
  font-size: 1.6rem;
}

.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}

.form dd {
  padding-top: 23px;
  padding-bottom: 20px;
  padding-left: 280px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}

.form dd p {
  padding-top: 5px;
  color: #888;
}

.form dd:last-child {
  margin-bottom: 0px;
  border-bottom: 0px;
}

.textarea, textarea, .dropdown {
  border: 1px solid #ddd;
  border-radius: 2px;
}

.textarea {
  height: 30px;
  padding: 0 5px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.form-button {
  padding: 5px;
  margin: 10px 0;
  text-align: center;
  border-radius: 5px;
}

#mailform button {
  display: block;
  width: 250px;
  padding: 10px 0 10px;
  margin: 0 auto 5px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #4a6942;
  border: 2px solid #4a6942;
  border-radius: 30px;
}

#mailform button::before {
  margin-right: 6px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0e0';
}

#mailform button:hover {
  color: #4a6942;
  background: #fff;
}

#mailform button * {
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.form-button * {
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

/* Radio Text */
label.radio_text {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  cursor: pointer;
}

label.radio_text::before {
  position: absolute;
  top: 2px;
  left: 0px;
  z-index: 3;
  width: 15px;
  height: 15px;
  content: '';
  border: 1px solid #ccc;
  border-radius: 50%;
}

label.radio_text::after {
  position: absolute;
  top: 5px;
  left: 3px;
  z-index: 1;
  width: 11px;
  height: 11px;
  content: '';
  background-color: #64bcff;
  border-radius: 100%;
}

label.radio_text input[type='radio'] {
  position: absolute;
  top: 0px;
  left: -23px;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
}

label.radio_text input[type='radio']:checked {
  box-shadow: none;
}

label.radio_text input[type='radio']:focus {
  box-shadow: 20px -1px #fff;
  opacity: .2;
}

label.checkbox_text {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  cursor: pointer;
}

label.checkbox_text::before {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 3;
  width: 18px;
  height: 18px;
  content: '';
  border: 1px solid #ccc;
}

label.checkbox_text::after {
  position: absolute;
  top: 40%;
  left: 5px;
  z-index: 1;
  display: block;
  width: 8px;
  height: 12px;
  margin-top: -9px;
  content: '';
  border-right: 3px solid #4a6942;
  border-bottom: 3px solid #4a6942;
  transform: rotate(45deg);
}

label.checkbox_text input[type='checkbox'] {
  position: absolute;
  left: -40px;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0px;
  margin: 0px;
  box-shadow: 41px 0px #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
}

label.checkbox_text input[type='checkbox']:checked {
  box-shadow: none;
}

label.checkbox_text input[type='checkbox']:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: .1;
}

label.checkbox_text input[type='checkbox']:focus {
  box-shadow: 41px 0px #eee;
}

.fm-text {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}

.section_box_text_r {
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background: #4a6942;
  box-shadow: #aaa 0 0 0 1px;
}

.section_box_text_l {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background: #4a6942;
  box-shadow: #aaa 0 0 0 1px;
}

.section_box_text_box {
  width: 360px;
  padding: 20px 35px;
  vertical-align: middle;
}

.section_box_text_box .btn1 {
  margin-top: 30px;
}

.section_box_img {
  flex: 1;
}

.section_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /* IE対策 */
}

.conts-ttl {
  margin-bottom: 15px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .conts-ttl {
    font-size: 2rem;
  }
}

.conts-ttlB {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: normal;
  color: #4a6942;
}

.pvc strong {
  display: block;
  margin: 8px 0;
  color: #4a6942;
  border-bottom: 1px dotted #aaa;
}

.pvc strong::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0a9';
}

.pvc h4 {
  display: block;
  margin: 8px 0;
  color: #4a6942;
  border-bottom: 1px dotted #aaa;
}

.pvc h4::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0a9';
}

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

.photo li {
  width: calc(33.33% - 21px);
  margin: 10px;
}

.photo li * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.photo li a {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 250px;
  overflow: hidden;
  text-align: center;
  background: #f2f2f2;
}

.photo li img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: contain;';
  /* IE対策 */
  vertical-align: middle;
  object-fit: contain;
}

.photo li p {
  height: 30px;
  margin: 5px 0 10px;
  text-align: center;
  text-overflow: ellipsis;
}

.photo li a:hover img {
  opacity: .6;
  transform: scale(1.2);
}

@media screen and (max-width: 480px) {
  .photo li {
    width: calc(50% - 21px);
    margin: 10px;
  }
  .photo li a {
    width: 100%;
    height: 100px;
    max-height: 100px;
  }
}

/* blog_bx */
.bloglist {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100% !important;
  height: auto;
  padding: 0 !important;
  margin: 0 0 30px !important;
}

.bloglist .bloglist_sd {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100% !important;
  height: auto;
  padding: 0 !important;
  margin: 0 0 0px !important;
}

.bloglist .blog_bx_sd {
  position: relative;
  width: calc(33% - 30px) !important;
  padding: 10px 10px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #ccc;
  /* アニメーション */
  transition: .3s ease-in-out;
}

.bloglist .blog_bx_sd a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bloglist .blog_bx_sd .flex_sd {
  display: block;
  flex-wrap: nowrap;
}

.bloglist .blog_bx_sd .flex_sd div {
  width: calc(100% + 0px) !important;
}

.bloglist .blog_bx_sd:hover {
  background: #f2f2f2;
}

.bloglist .blog_bx_sd figcaption {
  display: block;
  width: 100%;
  height: 230px;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
}

.bloglist .blog_bx_sd * {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.bloglist .blog_bx_sd p {
  font-size: 13px;
  line-height: 1.6em;
}

.bloglist .blog_bx_sd img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  /* IE対策 */
  vertical-align: middle;
  object-fit: cover;
}

.bloglist .blog_bx_sd:hover img {
  opacity: 1 !important;
  transform: scale(1.1);
}

.bloglist .ttl_sd {
  float: left;
  padding: 0 15px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #111;
  background: #4a6942;
}

.bloglist .ttm_sd {
  float: right;
  padding-top: 0px;
  font-size: 13px;
  font-weight: normal;
  text-align: right;
}

.bloglist .ttm_sd::before {
  margin-right: 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-weight: normal;
  content: '\f017';
}

@media screen and (max-width: 768px) {
  .bloglist .blog_bx_sd {
    width: calc(100% - 0px) !important;
  }
}

/* top_bnr_parent */
.top_bnr_parent .top_bnr {
  position: relative;
  margin-bottom: 20px;
}

.top_bnr_parent .top_bnr:last-child {
  margin-bottom: 0;
}

.top_bnr_parent .top_bnr:nth-child(3n) .top_bnr_detail {
  right: 0;
}

.top_bnr_parent .top_bnr:nth-child(3n) .top_bnr_detail .top_bnr_detail_sub::after {
  margin-right: 0;
  margin-left: auto;
}

.top_bnr_parent .top_bnr:nth-child(3n) .top_bnr_image {
  margin-right: auto;
  margin-left: 0;
}

.top_bnr_parent .top_bnr:nth-child(1) .top_bnr_detail {
  right: 0;
}

.top_bnr_parent .top_bnr:nth-child(1) .top_bnr_detail .top_bnr_detail_sub::after {
  margin-right: 0;
  margin-left: auto;
}

.top_bnr_parent .top_bnr:nth-child(1) .top_bnr_image {
  margin-right: auto;
  margin-left: 0;
}

.top_bnr_parent .top_bnr a {
  display: block;
}

.top_bnr_parent .top_bnr a:hover .top_bnr_detail .top_bnr_detail_sub::after {
  width: 100px;
  animation: a 0.5s cubic-bezier(0.05, 0.75, 0.35, 0.93);
}

.top_bnr_parent .top_bnr a:hover .top_bnr_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.top_bnr_parent .top_bnr .top_bnr_detail {
  position: absolute;
  top: 30%;
  z-index: 2;
  width: 35%;
  padding: 30px 40px;
  color: #fff;
  background: rgba(74, 105, 66, 0.9);
}

.top_bnr_parent .top_bnr .top_bnr_detail._sub_color {
  background-color: rgba(211, 211, 211, 0.9);
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
}

.top_bnr_parent .top_bnr .top_bnr_detail .top_bnr_detail_ttl {
  font-size: 3.8rem;
  /* font-family: $font_mincho; */
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.top_bnr_parent .top_bnr .top_bnr_detail .top_bnr_detail_sub {
  font-size: 2rem;
  /* font-family: $font_mincho; */
  font-weight: 500;
  font-weight: bold;
  color: #fff;
}

.top_bnr_parent .top_bnr .top_bnr_image {
  position: relative;
  width: 70%;
  height: 330px;
  margin-left: auto;
  overflow: hidden;
}

.top_bnr_parent .top_bnr .top_bnr_image::before {
  display: block;
  padding-top: 63.41%;
  content: '';
}

.top_bnr_parent .top_bnr .top_bnr_image mask {
  position: absolute;
  top: -5%;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.top_bnr_parent .top_bnr .top_bnr_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .4s ease;
}

@media screen and (max-width: 768px) {
  /* top_bnr */
  .top_bnr_parent {
    width: 100%;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .top_bnr_parent .top_bnr {
    width: 100%;
  }
  .top_bnr_parent .top_bnr a .top_bnr_detail {
    position: static;
    top: 0px;
    width: calc(100% - 30px);
    padding: 15px;
  }
  .top_bnr_parent .top_bnr a .top_bnr_detail .top_bnr_detail_ttl {
    font-size: 2.4rem;
  }
  .top_bnr_parent .top_bnr a .top_bnr_detail .top_bnr_detail_sub {
    font-size: 1.4rem;
  }
  .top_bnr_parent .top_bnr a .top_bnr_detail .top_bnr_detail_sub::after {
    margin-top: 10px;
  }
  .top_bnr_parent .top_bnr a .top_bnr_detail .top_bnr_detail_note {
    margin-top: 20px;
  }
  .top_bnr_parent .top_bnr a .top_bnr_image {
    top: 0px;
    width: 100%;
    height: 20%;
    padding: 0;
  }
  .top_bnr_parent .top_bnr a .top_bnr_image::before {
    padding-top: auto;
  }
  .top_bnr_parent .top_bnr a .top_bnr_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* 共通ルール */
.single_new {
  width: 90%;
  /* IE8以下とAndroid4.3以下用フォールバック */
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  margin: auto;
}

@media all and (max-width: 639px) {
  .single_new {
    width: 95%;
    margin: auto;
  }
}

div, section {
  box-sizing: border-box;
}

header {
  position: absolute;
  top: 0;
  z-index: 2222;
  width: 100%;
  padding-bottom: 15px;
  transition: all .4s ease-out;
}

header #head {
  position: relative;
  z-index: 999999;
  padding: 15px 0 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* nav */
}

@media screen and (max-width: 768px) {
  header #head {
    width: 100%;
    height: 60px !important;
    padding: 10px 0;
  }
}

header #head .logo {
  margin-top: 0px;
  line-height: 3em;
  vertical-align: middle;
}

header #head .logo a {
  position: relative;
  display: block;
  width: 186px;
  margin-top: 2px;
}

@media all and (max-width: 639px) {
  header #head .logo a {
    width: auto;
    margin-top: 0;
  }
}

header #head .logo a:link, header #head .logo a:visited, header #head .logo a:hover {
  color: #fff;
  text-decoration: none;
}

header #head .logo img {
  width: 100%;
}

@media all and (max-width: 1280px) {
  header #head .logo img {
    position: absolute;
    width: 73%;
  }
}

@media all and (max-width: 639px) {
  header #head .logo img {
    position: relative;
    top: 0;
    left: 15px;
    width: 65px;
  }
}

header #head #navi {
  width: 930px;
  margin-left: auto;
}

header #head #navi .hed_info {
  width: 611px;
  margin-top: -15px;
  margin-left: auto;
}

header #head #navi .hed_info .head_right_top {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

header #head #navi .hed_info ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 25px;
}

header #head #navi .hed_info ul li {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #000;
}

header #head #navi .hed_info ul li:first-child {
  padding-left: 0;
}

header #head #navi .hed_info ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

header #head #navi .hed_info ul li p {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
  padding: .8em 1em;
  line-height: 1em;
  color: #fff;
  background: #004c34;
}

header #head #navi .hed_info ul li i {
  font-size: 80%;
}

header #head #navi ul.main_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 19px;
}

header #head #navi li {
  padding: 0 15px 0;
  margin: 0;
  text-align: center;
  letter-spacing: .2rem;
  list-style: none;
}

header #head #navi li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.3;
  line-height: 1em;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  letter-spacing: .25em;
  cursor: pointer;
  border: none;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

header #head #navi li a span {
  display: block;
  margin-bottom: 13px;
  letter-spacing: 0;
  font-family: "Encode Sans SC", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
}

#nvisalign_2 .single {
  padding: 80px 50px;
}

@media all and (max-width: 639px) {
  #nvisalign_2 .single {
    padding: 30px 15px;
  }
}

#nvisalign_2 .top_1_read {
  color: #4a6942;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#nvisalign_2 .main {
  margin-top: 15px;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#nvisalign_2 .innerB {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #nvisalign_2 .innerB {
    display: block;
  }
}

#nvisalign_2 .left, #nvisalign_2 .right {
  box-sizing: border-box;
  float: none;
  width: 48%;
  padding: 20px;
  margin: 0;
  background: #d3d3d3;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  #nvisalign_2 .left, #nvisalign_2 .right {
    width: 100%;
    margin-top: 20px;
  }
}

#nvisalign_2 .left .item_main, #nvisalign_2 .right .item_main {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#nvisalign_2 .left .item_main span, #nvisalign_2 .right .item_main span {
  display: block;
  border-bottom: 2px dotted #ccc;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#nvisalign_2 .right {
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #nvisalign_2 .right {
    margin: 15px 0 0;
  }
}

#nvisalign_2 .bottom {
  margin-top: 30px;
}

#nvisalign_2 .bottom .bottom_read {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  border-bottom: 2px dotted #ccc;
}

#nvisalign_2 .bottom .bottom_maib {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_main {
  position: relative;
  width: 100%;
}

@media all and (max-width: 639px) {
  #top_main {
    height: 50vh;
    margin-top: 0;
  }
}

#top_main .top_main_vis {
  height: 79vh;
}

@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    width: 100%;
    height: 50vh;
  }
}

@media all and (max-width: 639px) {
  #top_main ul.slider {
    width: 100%;
    margin-left: auto;
  }
}

#top_main ul.slider li {
  width: 100%;
  height: 79vh;
  background-image: url(../img/slider-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 639px) {
  #top_main ul.slider li {
    width: 100%;
    height: 50vh;
    background-attachment: initial;
  }
}

#top_main ul.slider li:nth-child(2) {
  background-image: url(../img/slider-2.jpg);
}

#top_main ul.slider li:nth-child(3) {
  background-image: url(../img/slider-2.jpg);
}

#top_main .top_main_box {
  position: absolute;
  bottom: 14px;
  left: 40px;
  display: block;
  width: auto;
  height: 29vh;
  margin: auto;
}

@media all and (max-width: 1280px) {
  #top_main .top_main_box {
    height: 18vh;
  }
}

@media all and (max-width: 639px) {
  #top_main .top_main_box {
    top: auto;
    left: 10px;
    z-index: 222;
    width: auto;
    height: 13.3vh;
  }
}

#top_main .top_main_box img {
  display: block;
  width: auto;
  height: 100%;
  margin: auto;
}

#top_main.unnder {
  position: relative;
  height: auto;
  padding: 140px 0 90px;
  margin-top: 0;
  background-image: url(../img/wasi-2.png);
  background-size: 32px;
  background-size: 260px;
}

@media all and (max-width: 639px) {
  #top_main.unnder {
    padding: 50px 0 40px;
  }
}

#top_main.unnder header {
  position: initial;
}

#top_main.unnder .read {
  width: 100%;
  margin: auto;
  text-align: center;
}

@media all and (max-width: 1280px) {
  #top_main.unnder .read {
    position: initial;
    bottom: auto;
    height: auto;
  }
}

#top_main.unnder .read span {
  display: block;
}

#top_main.unnder .read span.en {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 58px;
  /*font-size: ($size / $base) + rem;*/
  line-height: 1em;
  color: #fff;
}

@media all and (max-width: 639px) {
  #top_main.unnder .read span.en {
    font-family: "Encode Sans SC", sans-serif;
    font-size: 38px;
    /*font-size: ($size / $base) + rem;*/
    margin-top: 0;
    margin-left: 0px;
    line-height: 1em;
  }
}

#top_main.unnder .read span.cooo {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  font-weight: bold;
  color: #fff;
}

@media all and (max-width: 639px) {
  #top_main.unnder .read span.cooo {
    margin-top: 0;
    margin-left: 0px;
    font-family: "Kosugi", sans-serif;
    font-weight: 500;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: .1em;
  }
}

#top_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#top_1 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_1 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_1 .main {
  color: #231815;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_2 {
  background: #a7b5a1;
  background-image: url(../img/back-2.png);
  background-size: 10%;
}

#top_2 .read {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_2 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_2 ul {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_2 ul {
    width: 100%;
  }
}

#top_2 ul li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#top_2 ul li:nth-child(4n) {
  margin-right: 0;
}

#top_2 ul li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #top_2 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #top_2 ul li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#top_2 ul li a {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #top_2 ul li a {
    width: 90%;
    margin: auto;
  }
}

#top_2 ul li a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#top_03 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#top_03 .sub_read {
  margin-bottom: 15px;
  font-weight: bold;
  color: #b4965c;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #top_03 .sub_read {
    font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    font-size: 19px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: .1em;
  }
}

#top_03 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_03 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_03 ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_03 ul {
    display: block;
  }
}

#top_03 ul li {
  position: relative;
  width: 32%;
  margin-right: 2%;
}

#top_03 ul li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #top_03 ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

#top_03 ul li .no {
  position: absolute;
  top: -50px;
  left: -20px;
  margin: auto;
  font-weight: 500;
  color: #004c34;
  text-align: center;
  opacity: .7;
  font-family: "Encode Sans SC", sans-serif;
  font-size: 53px;
  /*font-size: ($size / $base) + rem;*/
}

@media all and (max-width: 639px) {
  #top_03 ul li .no {
    font-family: "Encode Sans SC", sans-serif;
    font-size: 30px;
    /*font-size: ($size / $base) + rem;*/
    top: 15px;
    left: 15px;
    font-weight: 500;
  }
}

#top_03 ul li img {
  display: block;
  width: 100%;
}

#top_03 ul li .item_read {
  position: relative;
  z-index: 3;
  display: table;
  padding: 0 .8em;
  margin-top: 10px;
  margin-top: -11px;
  color: #fff;
  background: #4a6942;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_03 ul li .item_main {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  position: relative;
  z-index: 2;
  margin-top: 7px;
}

#top_03 .main {
  margin-top: 40px;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_3-2 {
  background: #faf7f4;
  background-image: url(../img/top_3-2_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#top_3-2 .read {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_3-2 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_3-2 img {
  display: block;
  width: 100%;
}

#top_3-2 .sub_read {
  color: #fff;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  text-align: center;
}

#top_3-2 .main {
  margin-top: 30px;
  color: #fff;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  text-align: center;
}

#top_4 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#top_4 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_4 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_4 ul {
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_4 ul {
    display: block;
  }
}

#top_4 ul li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

@media all and (max-width: 639px) {
  #top_4 ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

#top_4 ul li:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #top_4 ul li:nth-child(4n) {
    margin-bottom: 0;
  }
}

#top_4 ul li img {
  display: block;
  width: 100%;
}

#top_4 ul li .no {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  font-weight: 500;
  color: #4a6942;
  text-align: center;
  font-family: "Encode Sans SC", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
}

#top_4 ul li .item_main {
  margin-top: 8px;
  font-weight: bold;
  color: #666;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_5 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_5 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_5 ul {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_5 ul {
    width: 100%;
  }
}

#top_5 ul li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#top_5 ul li:nth-child(4n) {
  margin-right: 0;
}

#top_5 ul li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #top_5 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #top_5 ul li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#top_5 ul li .thams {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #top_5 ul li .thams {
    width: 90%;
    margin: auto;
  }
}

#top_5 ul li .thams img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#top_5 ul li .data {
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: table;
  margin-top: 10px;
  color: #004c34;
}

#top_5 ul li .data span {
  padding: .2em .8em;
  margin-left: 5px;
  line-height: 1em;
  color: #fff;
  background: #004c34;
  border-radius: 100px;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 10px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #top_5 ul li .data {
    margin-left: 5%;
  }
}

#top_5 ul li .title {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.6em;
  color: #666;
}

@media all and (max-width: 639px) {
  #top_5 ul li .title {
    width: 90%;
    margin: auto;
  }
}

#top_5-2 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#top_5-2 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#top_5-2 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_5-2 ul {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_5-2 ul {
    width: 100%;
  }
}

#top_5-2 ul li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#top_5-2 ul li:nth-child(4n) {
  margin-right: 0;
}

#top_5-2 ul li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #top_5-2 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #top_5-2 ul li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#top_5-2 ul li .thams {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #top_5-2 ul li .thams {
    width: 90%;
    margin: auto;
  }
}

#top_5-2 ul li .thams img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#top_5-2 ul li .data {
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: table;
  margin-top: 10px;
  color: #004c34;
}

#top_5-2 ul li .data span {
  padding: .2em .8em;
  margin-left: 5px;
  line-height: 1em;
  color: #fff;
  background: #004c34;
  border-radius: 100px;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 10px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #top_5-2 ul li .data {
    margin-left: 5%;
  }
}

#top_5-2 ul li .title {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.6em;
  color: #666;
}

@media all and (max-width: 639px) {
  #top_5-2 ul li .title {
    width: 90%;
    margin: auto;
  }
}

#top_6 {
  background-image: url(../img/wasi-2.png);
  background-size: 260px;
}

@media all and (max-width: 639px) {
  #top_6 {
    padding: 40px 0;
  }
}

#top_6 .read {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #top_6 .read {
    margin-bottom: 10px;
  }
}

#top_6 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#top_6 a {
  display: block;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
}

@media all and (max-width: 639px) {
  #top_6 a {
    font-family: "Encode Sans SC", sans-serif;
    font-size: 30px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}

#top_6 a i {
  font-size: 40px;
}

@media all and (max-width: 639px) {
  #top_6 a i {
    font-size: 27px;
  }
}

#top_6 .main {
  color: #fff;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

footer .copy {
  padding: 15px 0;
  color: #fff;
  text-align: center;
  background: #4a6942;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

/* --------------------------------------------------
バンビ酒場について(about.php)
---------------------------------------------------- */
#about_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#about_1 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#about_1 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#about_1 ul {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #about_1 ul {
    width: 100%;
  }
}

#about_1 ul li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#about_1 ul li:nth-child(4n) {
  margin-right: 0;
}

#about_1 ul li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #about_1 ul li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #about_1 ul li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#about_1 ul li a {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #about_1 ul li a {
    width: 90%;
    margin: auto;
  }
}

#about_1 ul li a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#about_1 .about_1_mid {
  margin-top: 80px;
}

#about_1 .about_1_mid img {
  display: block;
  width: 100%;
}

#about_1 .about_1_mid .item_main {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#about_1 .about_1_mid .item_main.sec {
  margin-top: 20px;
}

#about_1 .about_1_mid .item_main span {
  display: block;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #004c34;
}

#about_1 .bottom {
  margin-top: 80px;
}

#about_1 .bottom .table_cont {
  width: 80%;
  padding: 50px;
  margin: auto;
  background: #fff;
}

@media all and (max-width: 639px) {
  #about_1 .bottom .table_cont {
    width: 100%;
    padding: 30px 15px;
  }
}

#about_1 .bottom .table_cont table {
  width: 80%;
  margin: auto;
  border-top: 1px solid #eee;
}

@media all and (max-width: 639px) {
  #about_1 .bottom .table_cont table {
    width: 100%;
  }
}

#about_1 .bottom .table_cont table th, #about_1 .bottom .table_cont table td {
  padding: .8em;
  color: #333;
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #about_1 .bottom .table_cont table th {
    white-space: nowrap;
  }
}

/* --------------------------------------------------
お品書き(food.php)
---------------------------------------------------- */
#food_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#food_1 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#food_1 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#food_1 ul.gyara {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #food_1 ul.gyara {
    width: 100%;
  }
}

#food_1 ul.gyara li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#food_1 ul.gyara li:nth-child(4n) {
  margin-right: 0;
}

#food_1 ul.gyara li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #food_1 ul.gyara li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #food_1 ul.gyara li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#food_1 ul.gyara li a {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #food_1 ul.gyara li a {
    width: 90%;
    margin: auto;
  }
}

#food_1 ul.gyara li a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#food_1 .about_1_mid {
  margin-top: 80px;
}

#food_1 .about_1_mid .item_read {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #4a6942;
}

#food_1 .about_1_mid ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #food_1 .about_1_mid ul {
    display: block;
  }
}

#food_1 .about_1_mid ul li {
  width: 48%;
}

#food_1 .about_1_mid ul li:nth-child(even) {
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #food_1 .about_1_mid ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  #food_1 .about_1_mid ul li:last-child {
    margin-bottom: 0;
  }
}

#food_1 .about_1_mid ul li table {
  width: 100%;
}

#food_1 .about_1_mid ul li table th, #food_1 .about_1_mid ul li table td {
  padding: .8em;
  color: #333;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#food_1 .about_1_mid ul li table th span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
}

#food_1 .about_1_mid ul li table td {
  white-space: nowrap;
}

@media all and (max-width: 639px) {
  #food_1 .about_1_mid ul li table td {
    text-align: right;
  }
}

#food_1 .about_1_mid ul li table td span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

/* --------------------------------------------------
お酒(drink.php)
---------------------------------------------------- */
#drink_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#drink_1 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#drink_1 .read.sec {
  padding-top: 50px;
  margin-top: 80px;
  border-top: 1px dashed #4a6942;
}

#drink_1 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#drink_1 .sub_read {
  margin-bottom: 15px;
  color: #4a6942;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#drink_1 .main {
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#drink_1 .main.sec {
  padding-bottom: 50px;
  border-bottom: 1px dashed #4a6942;
}

#drink_1 ul.gyara {
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #drink_1 ul.gyara {
    width: 100%;
  }
}

#drink_1 ul.gyara li {
  position: relative;
  width: 23.5%;
  margin-right: 2%;
}

#drink_1 ul.gyara li:nth-child(4n) {
  margin-right: 0;
}

#drink_1 ul.gyara li:nth-child(n+5) {
  margin-top: 40px;
}

@media all and (max-width: 639px) {
  #drink_1 ul.gyara li:nth-child(n+5) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  #drink_1 ul.gyara li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

#drink_1 ul.gyara li a {
  display: block;
  width: 100%;
  height: 168px;
  overflow: hidden;
  line-height: 168px;
  background: #eee;
  border: 2px solid #d3d3d3;
}

@media all and (max-width: 639px) {
  #drink_1 ul.gyara li a {
    width: 90%;
    margin: auto;
  }
}

#drink_1 ul.gyara li a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  font-family: 'object-fit: contain;';
  vertical-align: middle;
  object-fit: cover;
}

#drink_1 .about_1_mid {
  margin-top: 80px;
}

#drink_1 .about_1_mid .item_read {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #4a6942;
}

#drink_1 .about_1_mid ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #drink_1 .about_1_mid ul {
    display: block;
  }
}

#drink_1 .about_1_mid ul li {
  width: 48%;
}

#drink_1 .about_1_mid ul li:nth-child(even) {
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #drink_1 .about_1_mid ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  #drink_1 .about_1_mid ul li:last-child {
    margin-bottom: 0;
  }
}

#drink_1 .about_1_mid ul li table {
  width: 100%;
}

#drink_1 .about_1_mid ul li table th, #drink_1 .about_1_mid ul li table td {
  padding: .8em;
  color: #333;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#drink_1 .about_1_mid ul li table th span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
}

#drink_1 .about_1_mid ul li table td {
  white-space: nowrap;
}

@media all and (max-width: 639px) {
  #drink_1 .about_1_mid ul li table td {
    text-align: right;
  }
}

#drink_1 .about_1_mid ul li table td span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#drink_1 .about_1_mid .bottom {
  margin-top: 20px;
  color: #004c34;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

/* --------------------------------------------------
テイクアウト(takeout.php)
---------------------------------------------------- */
#takeout_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#takeout_1 .read {
  margin-bottom: 40px;
  color: #004c34;
  text-align: center;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#takeout_1 .read span {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 48px;
  /*font-size: ($size / $base) + rem;*/
  display: block;
  font-weight: 500;
  line-height: 1em;
}

#takeout_1 img {
  display: block;
  width: 100%;
}

#takeout_1 .list_read {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 23px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  margin-bottom: 20px;
  line-height: 1.4em;
}

#takeout_1 .list_read span {
  display: block;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#takeout_1 .main {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#takeout_1 .take_bottom {
  padding: 30px;
  margin-top: 30px;
  border-top: 2px solid #4a6942;
  border-bottom: 2px solid #4a6942;
}

#takeout_1 .take_bottom p {
  color: #4a6942;
  text-align: center;
}

#takeout_1 .about_1_mid {
  margin-top: 80px;
}

#takeout_1 .about_1_mid .item_read {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #4a6942;
}

#takeout_1 .about_1_mid ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #takeout_1 .about_1_mid ul {
    display: block;
  }
}

#takeout_1 .about_1_mid ul li {
  width: 48%;
}

#takeout_1 .about_1_mid ul li:nth-child(even) {
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #takeout_1 .about_1_mid ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 639px) {
  #takeout_1 .about_1_mid ul li:last-child {
    margin-bottom: 0;
  }
}

#takeout_1 .about_1_mid ul li table {
  width: 100%;
}

#takeout_1 .about_1_mid ul li table th, #takeout_1 .about_1_mid ul li table td {
  padding: .8em;
  color: #333;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#takeout_1 .about_1_mid ul li table th span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
}

#takeout_1 .about_1_mid ul li table td {
  white-space: nowrap;
}

@media all and (max-width: 639px) {
  #takeout_1 .about_1_mid ul li table td {
    text-align: right;
  }
}

#takeout_1 .about_1_mid ul li table td span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#takeout_1 .about_1_mid .bottom {
  margin-top: 20px;
  color: #004c34;
  text-align: center;
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

/* --------------------------------------------------
新着情報(entry.php)
---------------------------------------------------- */
#topics_1 {
  background-image: url(../img/wasi.png);
  background-size: 260px;
}

#topics_1 .inner {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #topics_1 .inner {
    display: block;
  }
}

#topics_1 .inner .left {
  width: 70%;
}

@media all and (max-width: 639px) {
  #topics_1 .inner .left {
    width: 100%;
  }
}

#topics_1 .inner .right {
  width: 27%;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #topics_1 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}

#topics_1 .inner .right .side_titem {
  font-family: "Encode Sans SC", sans-serif;
  font-size: 25px;
  /*font-size: ($size / $base) + rem;*/
}

#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}

#topics_1 .inner .right .side_titem span {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
}

#topics_1 .inner .right ul.cat_list li {
  border-bottom: 1px solid #eee;
}

#topics_1 .inner .right ul.cat_list li a {
  position: relative;
  display: block;
  padding: .8em;
  color: #111;
  transition: .4s;
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#topics_1 .inner .right ul.cat_list li a span::after {
  position: absolute;
  top: 0;
  right: .81em;
  bottom: 0;
  display: block;
  height: 25px;
  margin: auto;
  margin-left: 5px;
  font-family: 'Font Awesome 5 Free';
  font-size: 80%;
  font-weight: 900;
  content: '\f105';
}

#topics_1 .inner .right ul.cat_list li a:hover {
  background: #faf7f4;
  transition: .4s;
}

#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid #eee;
}

#topics_1 .inner .right ul.post_list li a {
  position: relative;
  display: block;
  padding: .8em;
  transition: .4s;
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  position: relative;
  color: #666;
}

#topics_1 .inner .right ul.post_list li a .data span {
  position: absolute;
  top: 2px;
  left: 80px;
  display: inline-block;
  padding: 0 1.8em;
  color: #fff;
  background: #ccc;
  border-radius: 100px;
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 9px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
}

#topics_1 .inner .right ul.post_list li a .title {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  display: block;
  margin-top: 4px;
  color: #111;
  letter-spacing: .2em;
}

#topics_1 .inner .right ul.post_list li a::after {
  position: absolute;
  top: 0;
  right: .81em;
  bottom: 0;
  display: block;
  height: 25px;
  margin: auto;
  margin-left: 5px;
  font-family: 'Font Awesome 5 Free';
  font-size: 80%;
  font-weight: 900;
  color: #111;
  content: '\f105';
}

#topics_1 .inner .right ul.post_list li a:hover {
  background: #faf7f4;
  transition: .4s;
}

#topics_1 .entry .data {
  font-family: "Century Gothic", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #666;
}

#topics_1 .entry .title {
  font-family: "Kosugi", sans-serif;
  font-weight: 500;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  color: #4a6942;
}

#topics_1 .entry .main_cont {
  font-family: "YakuHanJP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: .1em;
  margin-top: 30px;
}

#topics_1 .entry .main_cont img {
  display: block;
  max-width: 100%;
}

/*# sourceMappingURL=style.css.map */