@charset "UTF-8";
/* Reset Style */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.25;
  word-break: break-all;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  width: 100%;
}
img[src$=".svg"] {
  width: 100%;
}
ol, ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/* ----------------------------------------------------------------
    link
  ----------------------------------------------------------------- */
a {
  color: #333;
  outline: none;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a.disable {
  cursor: default;
}
a:visited {
  text-decoration: none;
}
a.disable:hover {
  text-decoration: none;
}
a.default:link {
  color: #0000ff;
  text-decoration: underline;
}
a.default:link:hover {
  text-decoration: none;
}
a.default:visited {
  color: #800080;
}
a.default:active {
  color: #ff8000;
}
a.default:hover {
  color: #b80120;
}
a:hover {
  transition: 0.5s;
}
.no-link {
  opacity: 0.5;
  pointer-events: none; /*リンクを非リンクに変える*/
  cursor: default; /*マウスカーソルを矢印のまま変えない*/
  text-decoration: none; /*下線を消す*/
}
/* ----------------------------------------------------------------
    common
  ----------------------------------------------------------------- */
html {
  overflow-x: hidden;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}
body {
  background-color: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased;
}
.txt-link a {
  text-decoration: underline;
}
.txt-link a:hover {
  text-decoration: none;
}
.btn-link {
  text-align: center
}
.btn-link a {
  background-color: #44af35;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 18px;
  margin: 5% auto 0;
  padding: 15px;
  width: 300px;
}
.btn-link a:hover {
  background-color: #f0f9ef;
  color: #44af35;
  transition: 0.5s;
}
/* ----------------------------------------------------------------
    PageTop
  ----------------------------------------------------------------- */
#PageTopBtn {
  position: fixed; /*ボタンの配置場所を固定*/
  bottom: 66px; /*下からのボタンの配置場所を指定*/
  right: 0px; /*右からのボタンの配置場所を指定*/
}
#PageTopBtn a {
  display: block; /*配置の調整*/
  text-decoration: none; /*文字の下線を消す*/
  color: #fff; /*文字の色*/
  background: #333;
  text-align: center; /*文字を中央に配置*/
  outline: none; /*クリックしたときの黒い枠を消す*/
}
#PageTopBtn a:hover {
  text-decoration: none;
  background: #000; /*マウスオーバー時の背景色*/
}
/*パソコンで表示する場合のCSS*/
@media (min-width: 768px) {
  #PageTopBtn {
    font-size: 25px; /*文字のサイズ*/
  }
  #PageTopBtn a {
    width: 66px; /*ボタンの幅*/
    padding: 23px 0px; /*文字の配置場所の調整*/
  }
}
/*スマホで表示する場合のCSS*/
@media (max-width: 767px) {
  #PageTopBtn {
    font-size: 20px;
  }
  #PageTopBtn a {
    width: 45px;
    height: 25px; /*ボタンの高さ*/
    padding: 11px 0px 9px; /*文字の配置場所の調整*/
  }
}
/* ----------------------------------------------------------------
    youtubeレスポンシブ
  ----------------------------------------------------------------- */
.movie-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ----------------------------------------------------------------
    display: none
  ----------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .display-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .hidden-tb {
    display: none !important;
  }
}
/* ----------------------------------------
* header
---------------------------------------- */
body {
  background-color: #f5f5ef;
}
.header {
  align-self: center;
  background-color: #fff;
  box-shadow: 0 3px 3px 0px rgba(53, 47, 47, 0.1);
  display: flex;
  height: 70px;
  justify-content: space-between;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.is-animation {
  height: 60px;
  transition: 0.5s;
}
.header .header_tit {
  margin: 15px 0 15px 0;
  width: 484px;
}
.is-animation .header_tit {
  margin: 10px 0 10px 0;
  transition: 0.5s;
  width: 484px;
}
.header .header_tit a {
  transition: .5s ease;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  -o-transition: .5s ease;
  border-bottom: none;
}
.header .header_title a:hover {
  opacity: .5;
}
.header .right_area {
  padding-top: 10px;
}
.is-animation .right_area {
  padding-top: 5px;
  transition: 0.5s;
}
.header .right_area .contact {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: bold;
  margin-left: 20px;
}
.header .contact a {
  color: #fff;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 9px;
  padding-left: 0px;
  display: table-cell;
  background-color: #ef2e22;
  border-radius: 5px;
  text-align: center;
  width: 200px;
}
.header .contact .icon {
  background: url(../img/common/icon_navi01.svg) no-repeat center;
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  vertical-align: -9px;
  width: 30px;
}
.header .contact a:hover {
  background: #fcd5d3;
  color: #ef2e22;
  transition: 0.5s;
}
.header .contact a:hover .icon {
  background: url(../img/common/icon_navi01_on.svg) no-repeat center;
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  transition: 0.5s;
  vertical-align: -9px;
  width: 30px;
}
nav {
  background: #44af35;
  height: 70px;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 10;
}
.nav-animation {
  height: 60px;
  top: 60px;
  transition: 0.5s;
}
.g-nav {
  align-items: center;
  display: flex;
  color: #333;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1094px;
  width: 90%;
}
.g-nav .menu-main {
  color: #fff;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.g-nav .menu-main a {
  color: #fff;
  display: block;
  padding: 23px 30px 22px;
  text-align: center;
  width: 100%;
}
.nav-animation .g-nav .menu-main .main-main-btn {
  padding: 17px 30px 18px;
}
.g-nav .menu-main-on {
  background-color: rgba(255, 255, 255, 0.50);
  border-radius: 5px;
  color: #f39800;
  color: #fff;
  display: block;
  margin: 15px 0;
  padding: 15px 30px;
  text-align: center;
}
.g-nav .menu-main-off a:hover {
  background-color: rgba(255, 255, 255, 0.50);
  opacity: 1;
}
.dropdown {
  padding: 20px 0;
}
.dropdown:hover {
  color: #00b4ed;
}
nav ul ul {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  margin-left: -135px;
  border-radius: 5px;
  width: 270px;
}
nav ul ul li {
  font-size: 16px;
}
nav ul ul {
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  transform: translateY(-20px);
}
nav ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
nav ul ul li a {
  display: inline-block;
  line-height: 1;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  width: 90%;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  margin: 0 auto;
}
.g-nav .menu-main ul li a {
  color: #333;
}
.g-nav .menu-main ul li a:hover {
  opacity: 0.7;
}
nav ul ul li .last-child {
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 0;
  }
  .header .header_tit {
    margin: 22px 0 22px 15px;
    width: 223px;
  }
  .is-animation .header_tit {
    margin: 17px 0 17px 15px;
    transition: 0.5s;
    width: 223px;
  }
}
/* ----------------------------------------------------------------
    sp-ナビ
  ----------------------------------------------------------------- */
/*----------ハンバーガーアイコン----------*/
header_inner {
  position: fixed;
}
@media only screen and (max-width: 1024px) {
  .hamburger {
    position: fixed;
    display: block;
    width: 32px;
    height: 20px;
    top: 25px;
    right: 25px;
    margin-top: 0px;
    z-index: 99999;
    transition: all .4s;
    box-sizing: border-box;
    background: none;
  }
  .is-animation .hamburger {
    top: 20px;
  }
  .hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
  }
  .active span {
    background-color: #000;
  }
  .hamburger span:nth-of-type(1) {
    top: 0;
  }
  .hamburger span:nth-of-type(2) {
    top: 9px;
  }
  .hamburger span:nth-of-type(3) {
    bottom: 0;
  }
  .hamburger span:nth-of-type(1) {
    -webkit-animation: menu-ber01 .75s forwards;
    animation: menu-ber01 .75s forwards;
  }
  .hamburger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .hamburger span:nth-of-type(3) {
    -webkit-animation: menu-ber02 .75s forwards;
    animation: menu-ber02 .75s forwards;
  }
  .active span:nth-of-type(1) {
    -webkit-animation: active-menu-ber01 .75s forwards;
    animation: active-menu-ber01 .75s forwards;
  }
  .active span:nth-of-type(2) {
    opacity: 0;
  }
  .active span:nth-of-type(3) {
    -webkit-animation: active-menu-ber03 .75s forwards;
    animation: active-menu-ber03 .75s forwards;
  }
  @-webkit-keyframes menu-ber01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-ber02 {
    0% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-ber02 {
    0% {
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-ber01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(10px) rotate(45deg);
    }
  }
  @keyframes active-menu-ber01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-ber03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
    }
  }
  @keyframes active-menu-ber03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  /*----------ナビゲーション----------*/
  #navigation {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99998;
  }
  #navigation .navigation_inner {
    display: table;
    width: 100%;
    height: 100%;
  }
  #navigation .navigation_inner .navigation_menu {
    display: table-cell;
    vertical-align: middle;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item {
    width: 300px;
    height: 20px;
    margin: 16px auto 0 auto;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item {
    width: 90%;
    height: 30px;
    margin: 15px;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item:first-child {
    margin-top: 0;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item a {
    display: block;
    position: relative;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 2;
    text-align: center;
  }
  #navigation .navigation_inner .navigation_menu .off {
    display: block;
    position: relative;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    color: #ccc;
    line-height: 2;
    text-align: center;
  }
  #navigation .navigation_inner .navigation_menu .sns-icon {
    font-size: 30px;
  }
}
/* ----------------------------------------------------------------
    footer
  ----------------------------------------------------------------- */
#footer {
  background-color: #338428;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0px 0 68px;
  width: 100%;
}
#footer .foot-wrap {
  margin: 0 auto;
  max-width: 1094px;
  padding-top: 68px;
  width: 90%;
}
.foot-area {
  max-width: 678px;
  width: 100%;
}
.logo-area {
  align-items: center;
  display: flex;
  margin: 0 auto 5px;
  justify-content: space-between;
  width: 100%;
}
.foot-logo {
  max-width: 400px;
  width: 100%;
}
.foot-adress {
  line-height: 1.5;
}
.contact-area {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#footer .contact {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: bold;
}
#footer .contact a {
  background-color: #338428;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  display: table-cell;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 9px;
  padding-left: 0px;
  text-align: center;
  width: 238px;
}
#footer .contact .icon {
  background: url(../img/common/icon_foot01.svg) no-repeat center;
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  vertical-align: -9px;
  width: 30px;
}
#footer .contact a:hover {
  background: #ffff;
  color: #29853f;
  color: #338428;
  transition: 0.5s;
}
#footer .contact a:hover .icon {
  background: url(../img/common/icon_foot01_on.svg) no-repeat center;
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  transition: 0.5s;
  vertical-align: -9px;
  width: 30px;
}
.copyright {
  font-size: 14px;
}
#footer .policy {
  margin-top: 10px;
  text-align: center;
}
#footer .policy a {
  color: #fff;
  text-decoration: underline;
}
.foot-nav {
  border-left: 2px solid #eee;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: 50px;
  padding-left: 50px;
  width: calc(100% - 728px);
}
.foot-nav a {
  color: #fff;
}
.foot-nav a:hover {
  color: #44af3;
}

@media only screen and (max-width: 768px) {
  #footer {
    padding: 0px 0 34px;
  }
  #footer .foot-wrap {
    padding-top: 34px;
  }
  .foot-area {
    margin: 0 auto;
    width: 90%;
  }
  .logo-area {
    display: block;
  }
  .foot-adress {
    text-align: center;
  }
  .contact-area {
    display: block;
    width: 100%;
  }
  #footer .contact a {
    display: block;
    margin: 34px auto 0;
  }
  .copyright {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
  }
}
/* ----------------------------------------------------------------
    第二階層
  ----------------------------------------------------------------- */
.contents {
  background-color: #fff;
  border-radius: 18px;
  margin: 34px auto 68px;
  max-width: 1366px;
  width: 90%;
}
.page-tit-area {
  background-image: url(../img/company/bkg_tit.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  margin: 174px auto 0;
  max-width: 1366px;
  padding: 68px 0;
  width: 90%
}
.page-tit {
  color: #ef2e22;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 48px;
  letter-spacing: 0.2em;
  line-height: 1.0;
  text-align: center;
}
.page-tit-sub {
  color: #333;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin: 10px auto;
  text-align-last: center;
}
.tit-area {
  height: 412px;
  margin: 0 auto;
  max-width: 1366px;
  position: relative;
  width: 90%;
}
.tit-area-wrap {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(-0%);
  -webkit- transform: translateY(-50%) translateX(-0%);
}
.sec-wrap {
  padding: 68px 0;
  max-width: 1366px;
  margin: 0 auto;
  width: 90%;
}
.local-nav {
  padding-top: 68px;
}
.local-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  width: 90%;
}
.local-nav ul li {
  align-items: center;
  background-color: #f7f7f2;
  border-radius: 35px;
  display: table-cell;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 16px;
  font-weight: bold;
  justify-content: space-between;
  text-align: center;
  width: 19%;
  vertical-align: middle;
}
.local-nav ul li a {
  border-radius: 35px;
  display: block;
  padding: 15px 0;
  height: 100%;
  width: 100%;
}
.local-nav ul li a.one-line {
  padding: 25px 0;
}
.local-nav ul li a:hover {
  background-color: #44af35;
  color: #fff;
  text-decoration: none;
}
.local-nav ul li .on {
  background-color: #44af35;
  border-radius: 35px;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .local-nav {
    padding-top: 0px;
  }
  .local-nav ul li {
    font-size: 16px;
    margin: 1% 0;
    width: 49%;
  }
}

.sec-tit {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 auto;
  padding-bottom: 25px;
  text-align: center;
}
.under {
  border-bottom: 5px solid #44af35;
  padding-bottom: 20px;
  padding-left: 0.2em;
}
.sec-lead {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 68px auto 0;
  text-align: center;
  width: 90%;
}
.area-wrap {
  margin: 68px auto 0;
}
.flex-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 68px auto 0;
  max-width: 1094px;
}
.flex-wrap-reverse {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 68px auto 0;
  max-width: 1094px;
}
.copy-txt {
  color: #333;
  font-size: 36px;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: bold;
  line-height: 1.7;
}
.img-col {
  margin: 0 auto;
  max-width: 1094px;
  width: 50%;
}
.txt-col {
  margin: 0 auto;
  max-width: 1094px;
}
.sec-txt {
  font-size: 18px;
  line-height: 2;
  margin: 40px auto 0;
}
.area-tit {
  border-left: 5px solid #44af35;
  color: #333;
  display: block;
  font-size: 24px;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 20px;
}
.area-txt {
  font-size: 18px;
  margin-top: 20px;
  line-height: 2;
  text-align: justify;
}
.thum-txt {
  text-align: center;
}
table {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  margin: 0 auto;
  width: 100%;
}
tr {
  border-top: 1px solid #333;
}
tr:last-child {
  border-bottom: 1px solid #333;
}
th {
  background-color: #f7f7f2;
  border-right: 1px solid #333;
  padding: 22px;
  vertical-align: middle;
}
td {
  padding: 21px;
}
@media only screen and (max-width: 768px) {
  .contents {
    margin: 34px auto;
    padding: 34px 0;
  }
  .page-tit-area {
    margin: 104px auto 0;
    padding: 34px 0 23px;
  }
  .page-tit {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
  .page-tit-sub {
    font-size: 12px;
    line-height: 1;
  }
  .sec-wrap {
    padding: 34px 0;
  }
  .sec-tit {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .under {
    border-bottom: 3px solid #44af35;
    padding-bottom: 13px;
    padding-left: 0.2em;
  }
  .sec-lead {
    font-size: 16px;
    line-height: 2;
    margin: 34px auto 0;
    text-align: justify;
  }
  .sec-txt {
    font-size: 16px;
    line-height: 2;
    margin: 20px auto 0;
  }
  .area-wrap {
    margin: 0 auto;
  }
  .flex-wrap {
    display: block;
    margin: 34px auto 0;
  }
  .flex-wrap-reverse {
    display: block;
    margin: 34px auto 0;
  }
  .img-col {
    width: 100%;
  }
  .txt-col {
    margin-top: 5%;
    width: 100%;
  }
  .area-tit {
    font-size: 20px;
  }
  .area-txt {
    font-size: 14px;
    margin-top: 20px;
    line-height: 2;
    text-align: justify;
  }
  .thum-txt {
    text-align: center;
  }
  table {
    font-size: 12px;
  }
  th {
    padding: 11px;
  }
  td {
    font-size: 14px;
    padding: 11px;
  }
}
/* ----------------------------------------------------------------
    CSSアニメーション
  ----------------------------------------------------------------- */
.fade-in-first {
  opacity: 0; /* 透明 */
  animation-delay: 0.5s;
  animation-duration: 1s; /* アニメーション時間 */
  animation-name: fadein; /* アニメーション名 */
  animation-fill-mode: forwards;
}
.fade-in {
  opacity: 0; /* 透明 */
}
.fade-in.active {
  animation-delay: 0.5s;
  animation-duration: 1s; /* アニメーション時間 */
  animation-name: fadein; /* アニメーション名 */
  animation-fill-mode: forwards;
}
@keyframes fadein {
  0% {
    opacity: 0; /* 透明 */
  }
  100% {
    opacity: 1; /* 透明 */
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0; /* 透明 */
  }
  100% {
    opacity: 1; /* 透明 */
  }
}
.fade-out {
  opacity: 1; /* 透明 */
}
.fade-out.active {
  animation-delay: 0.5s;
  animation-duration: 1s; /* アニメーション時間 */
  animation-name: fadeout; /* アニメーション名 */
  animation-fill-mode: forwards;
}
@keyframes fadeout {
  0% {
    opacity: 1; /* 透明 */
  }
  100% {
    opacity: 0; /* 透明 */
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1; /* 透明 */
  }
  100% {
    opacity: 0; /* 透明 */
  }
}
.slide-in-first {
  display: inline-block;
  position: relative;
}
.slide-in-first::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #000;
  animation-name: slidein, slideout;
  animation-duration: .5s;
  animation-delay: 0s, .5s;
  animation-timing-function: cubic-bezier(.75, 0, .2, 1);
  animation-fill-mode: backwards, forwards;
}
.slide-in {
  display: inline-block;
  position: relative;
}
.slide-in.active::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #000;
  animation-name: slidein, slideout;
  animation-duration: .5s;
  animation-delay: 0s, .5s;
  animation-timing-function: cubic-bezier(.75, 0, .2, 1);
  animation-fill-mode: backwards, forwards;
}
body.food .slide-in.active::before {
  background-color: #fff;
}
@keyframes slidein {
  0% {
    transform-origin: 0 0;
    transform: scale3d(0, 1, 1);
  }
  100% {
    transform-origin: 0 0;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes slideout {
  0% {
    transform-origin: 100% 0;
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform-origin: 100% 0;
    transform: scale3d(0, 1, 1);
  }
}
.slide-in-inr-first {
  visibility: hidden;
  animation-name: show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.slide-in-inr {
  visibility: hidden;
}
.slide-in-inr.active {
  animation-name: show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes show {
  0%, 50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.focus-in-first {
  opacity: 0; /* 透明 */
  -webkit-animation: focusin 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: focusin 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation-fill-mode: forwards;
}
.focus-in {
  opacity: 0; /* 透明 */
}
.focus-in.active {
  -webkit-animation: focusin 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: focusin 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation-fill-mode: forwards;
}
@-webkit-keyframes focusin {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focusin {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* IE対応 */
@media screen\0 {
  .fade-in {
    opacity: 1;
  }
  .slide-in-inr-first {
    visibility: visible;
  }
  .slide-in-inr {
    visibility: visible;
  }
  .focus-in {
    opacity: 1;
  }
  .focus-in-first {
    opacity: 1;
  }
}