@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
  background: #fff;
}

#nav-toggle,
#sp-nav {
  display: none;
}

.b-p0 {
  padding-bottom: 0 !important;
}

.t-p30 {
  padding: 30px 0 0 0 !important;
}

a {
  color: rgb(0, 5, 1.4953271028);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: bold;
}

h2,
h3 {
  line-height: 1.4;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.mincho {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

#wrapper {
  overflow: hidden;
}

.pcbr {
  display: block;
}

.sbbr {
  display: none;
}

/* animation
----------------------------------*/
[data-aos=rotate-zoom] {
  -webkit-transform: scale(0) rotate(-45deg);
          transform: scale(0) rotate(-45deg);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
[data-aos=rotate-zoom].aos-animate {
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
  opacity: 1;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

@-webkit-keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #006b20;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 107, 32, 0.2);
  border-top: 1px solid rgba(0, 107, 32, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  /*position: relative;*/
  position: absolute;
  z-index: 200;
  margin-bottom: 10px;
}
#l-header .tel {
  display: block;
}
@media screen and (max-width: 1100px) {
  #l-header #logo {
    width: 360px;
  }
}
#l-header.scrolled {
  position: fixed;
}
@media print {
  #l-header.scrolled {
    position: absolute;
  }
}
#l-header.scrolled {
  top: 0;
  left: 0;
  -webkit-animation: hd-scrolled 0.3s forwards;
          animation: hd-scrolled 0.3s forwards;
  z-index: 20;
  background: #fefefe;
  padding: 18px 0;
}
#l-header.scrolled .tel {
  display: none;
}
#l-header.scrolled #logo {
  width: 340px;
  -webkit-filter: none;
          filter: none;
}
#l-header .inner {
  max-width: 1300px;
  width: 96%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 16px 0;
}
@media all and (max-width: 800px) {
  #l-header .inner {
    min-width: initial;
  }
}

.header-right_txt {
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4332;
}

.header-right_contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1100px) {
  .header-right_contact {
    display: none;
  }
}

.header-right_tel a,
.header-right_mail a,
.header-right_reserve a {
  display: block;
  padding: 5px 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  max-width: 350px;
  font-weight: 600;
}
.header-right_tel a span,
.header-right_mail a span,
.header-right_reserve a span {
  padding-right: 5px;
}
.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_reserve a:hover {
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.header-right_tel {
  margin: 0 auto;
  text-align: center;
}
.header-right_tel a {
  width: 100%;
  color: #fefefe;
  font-size: 2.5rem;
}
.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
.header-right_tel a:hover {
  background: rgb(107.8396226415, 83.5377358491, 53.1603773585);
}

.header-right_mail a {
  background: #fefefe;
  color: rgb(107.8396226415, 83.5377358491, 53.1603773585);
}
.header-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 5px;
}
.header-right_mail a:hover {
  background: rgb(45.0873362445, 121.4192139738, 234.9126637555);
}

.header-right_reserve {
  margin-left: 10px;
}
.header-right_reserve a {
  background: #ffe53b;
  color: #222;
}
.header-right_reserve a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
}

.header-right_fax {
  display: block;
  padding: 6px 15px;
  border-radius: 40px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  max-width: 350px;
  font-weight: 600;
  background: #635f2c;
}
.header-right_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: bold;
  margin-right: 5px;
}

#header_nav {
  position: relative;
  margin: 0 auto;
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 735px;
  margin: 0 auto;
}
#header_nav ul > li:first-child {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  border-right: 1px solid #ccc;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.3;
  font-size: 1.7rem;
  color: #333;
  text-align: center;
  font-weight: 900;
  padding: 8px 8px 12px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.2rem;
  color: #006b20;
  letter-spacing: 0.1rem;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
#header_nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #006b20;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #006b20;
}
#header_nav ul li a.nav-contact:after {
  display: none;
}
#header_nav ul li a.nav-contact:hover, #header_nav ul li a.nav-contact.active {
  background: #006b20;
  color: #fff;
}
#header_nav ul li a.nav-contact:hover span, #header_nav ul li a.nav-contact.active span {
  color: #fff;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: -23px;
  top: 46px;
  z-index: 310;
  background: #008f2a;
  border-radius: 16px;
  width: 150px;
}
#header_nav .dropdown .dropdown-li {
  position: relative;
  z-index: 1;
  padding: 5px 5px;
  margin: 0;
  border: none;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 140px;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  border-right: 0;
  color: #555;
  border-radius: 30px;
  background: #fff;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  color: #8e6e46;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  #page-top {
    bottom: 90px;
  }
}
@media screen and (max-width: 639px) {
  #page-top {
    bottom: 80px;
  }
}
#page-top a {
  display: block;
  background: rgb(0, 158, 47.2523364486);
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-out 10s linear 0s 1 normal both;
          animation: zoom-out 10s linear 0s 1 normal both;
}

.slide-img {
  overflow: hidden;
  height: 100vh;
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 55vh;
  }
}
.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

#slideshow {
  position: relative;
  overflow: hidden;
  height: 87vh;
  width: 100%;
}
@media all and (max-width: 639px) {
  #slideshow {
    height: 55vh;
  }
}
#slideshow:after {
  content: "";
  width: 100%;
  height: 140px;
  display: block;
  /*background-image: url(../img/top_main_after-2.png);*/
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1100px) {
  #slideshow {
    height: 55vh;
  }
  #slideshow:after {
    background-image: none;
    display: none;
  }
}

#flashA {
  margin-top: 110px;
}
@media all and (max-width: 800px) {
  #flashA {
    margin-top: 100px;
  }
}

#catch {
  z-index: 15;
  position: absolute;
  left: 6%;
  /*left: 10%;*/
  top: 46%;
  /*top: 50%;*/
  opacity: 0;
  width: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}
@media all and (max-width: 800px) {
  #catch {
    left: 2%;
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 60%;
    -webkit-transform: initial;
            transform: initial;
    top: 50%;
    /*  bottom: -2%;*/
  }
}
@media screen and (max-width: 1100px) {
  #catch {
    width: 90%;
    left: 0%;
    right: 0%;
    margin: 0 auto;
  }
}

#catch2 {
  z-index: 15;
  position: absolute;
  right: 10%;
  top: 70%;
  opacity: 0;
  width: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
#catch2.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}
@media all and (max-width: 800px) {
  #catch2 {
    left: 2%;
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  #catch2 {
    width: 60%;
    -webkit-transform: initial;
            transform: initial;
    top: 50%;
    /*  bottom: -2%;*/
  }
}
@media screen and (max-width: 1100px) {
  #catch2 {
    width: 90%;
    left: 0%;
    right: 0%;
    margin: 0 auto;
  }
}

/* ブログcms
----------------------------------*/
#top-blog .pages {
  display: none;
}

.blog-content * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-content > li {
  position: relative;
  padding: 10px 0;
  border-bottom: 0.9px solid #dee0e6;
}
.blog-content > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.blog-content > li > a {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-content > li > a:hover .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-content > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}
.blog-img {
  width: 140px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-img {
    width: 90px;
    height: 60px;
  }
  .product-img {
    height: 120px;
  }
}
.blog-detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 25px;
}

@media all and (max-width: 639px) {
  .blog-detail {
    margin-left: 20px;
  }
}
.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date time {
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #3ebef0;
  font-size: 13px;
  border: 1px solid #3ebef0;
  border-radius: 30px;
}

.blog-date2 {
  color: #042211;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  color: #4d2c2b;
}

.blog-txt {
  line-height: 1.5;
  color: #0C6733;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}
.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next, .pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a, .pages .page_prev a {
  color: #1f62ce;
  padding: 4px 5px;
  font-size: 14px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f2f4f5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #3ebef0;
  border-radius: 10px;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 13px;
}

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, .anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* top_v2
----------------------------------*/
.top_v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 20px;
}
.top_v2 li {
  width: 30.5%;
  margin-bottom: 1.6%;
}
.top_v2 li a {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 40px;
  background-color: #fdfcf4;
  border-radius: 2.3em;
  border: 4px solid;
  font-weight: 600;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .top_v2 li a {
    padding: 20px;
  }
}
.top_v2 li a:hover::after {
  right: 8px;
}
.top_v2 li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.top_v2 li a::after {
  content: "》";
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #006b20;
  color: #fff;
  font-weight: 600;
  font-size: 0.5em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-indent: 2px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#catch3 {
  z-index: 15;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media all and (max-width: 800px) {
  #catch3 {
    width: 71%;
  }
}
@media all and (max-width: 639px) {
  #catch3 {
    width: 65%;
  }
}

.contact_bnr {
  margin: 15px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 800px) {
  .contact_bnr {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact_bnr > li {
  margin-bottom: 10px;
}
.contact_bnr > li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 800px) {
  .contact_bnr > li:not(:last-child) {
    margin: 0 auto 10px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  color: #323232;
  background: #fefefe;
  border-radius: 37px;
  border: 2px solid #006b20;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
}
.contact_bnr > li .bnr_tel:hover {
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fefefe;
}
.contact_bnr > li .bnr_mobile {
  background: #006b20;
  border: 1px solid rgb(0, 56, 16.7476635514);
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: bold;
}
.contact_bnr > li .bnr_mobile:hover {
  background: #8e6e46;
}
.contact_bnr > li .bnr_reserve {
  background: #ffe53b;
  color: #222;
}
.contact_bnr > li .bnr_reserve:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
}
.contact_bnr > li .bnr_fax {
  background: #fefefe;
  color: #5c4332;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: bold;
}
.contact_bnr > li .bnr_mail {
  background: #8e6e46;
  color: #fefefe;
  font-size: 1.7rem;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
}
.contact_bnr > li .bnr_mail:hover {
  color: #ffe53b;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  padding: 9px 18px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    font-size: 1.5rem;
  }
}
/* footer
----------------------------------*/
.footer-contact .inner {
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}

.footer-wrap {
  position: relative;
}
.footer-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  left: 0;
  bottom: 0;
  background: #eee;
  z-index: -3;
}

#l-footer {
  font-size: 1.3rem;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #006b20;
  z-index: -2;
}
#l-footer .inner {
  position: relative;
  z-index: 3;
}
#l-footer .footer-box {
  color: #fff;
}
@media all and (max-width: 639px) {
  #l-footer .footer-box {
    padding: 60px 10px;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 12px;
  }
}

#fixed-btn {
  position: fixed;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 150;
}
@media all and (max-width: 800px) {
  #fixed-btn {
    display: none !important;
  }
}
#fixed-btn a {
  position: relative;
  overflow: hidden;
  display: block;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(200deg, #427eff, #f13f79, #fecd33 100%) no-repeat;
  border-radius: 5px 0 0 5px;
  color: #fff;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 20px;
}
#fixed-btn a i {
  font-size: 1.5em;
  margin-bottom: 6px;
}
#fixed-btn a:hover i {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
#fixed-btn a.tel {
  background: linear-gradient(200deg, #008f2a, #006b20);
}
#fixed-btn a.form {
  background: linear-gradient(200deg, #f9a826, #f36c21);
}
#fixed-btn a:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 800px) {
  #fixed-btn {
    display: none !important;
  }
}

.morebtn {
  text-align: center;
  max-width: 220px;
  color: #fefefe;
  font-weight: 600;
  padding: 13px 10px;
  background: #006b20;
  /*background-image: linear-gradient(to right, darken($orange,5%) 0%, $sub_color 100%);*/
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 20px auto -30px;
}

.telbnr {
  max-width: 420px;
  width: 95%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.telbnr li {
  border: 3px solid #006b20;
  padding: 15px;
  text-align: center;
  border-radius: 80px;
}
.telbnr li a {
  width: 100%;
  display: block;
  font-size: 3.4rem;
  line-height: 1.5;
  color: #006b20;
  font-weight: 800;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: bold;
  margin-right: 5px;
}
.telbnr li a:hover {
  opacity: 0.6;
}
.telbnr li mn {
  font-weight: 800;
}
@media all and (max-width: 639px) {
  .telbnr li a {
    font-size: 2.4rem;
  }
}

.telbnr-ttl {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  color: #fff;
  margin-top: -30px;
  margin-bottom: 15px;
}
.telbnr-ttl span {
  background: #006b20;
  padding: 5px 20px;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* お知らせCMS
----------------------------------*/
.txt-common {
  padding: 20px 10px 0;
  font-weight: 700;
}

.news_scroll {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  /* スクロールバーを常に表示（Chrome / Edge / Safari） */
}
.news_scroll::-webkit-scrollbar {
  width: 8px; /* ← バーの太さ */
}
.news_scroll::-webkit-scrollbar-track {
  background: #e4e4e4; /* ← うっすらグレーの背景 */
  border-radius: 10px;
}
.news_scroll::-webkit-scrollbar-thumb {
  background: #8bc34a; /* ← 緑系（サイトに合わせたカラー） */
  border-radius: 10px;
}
.news_scroll {
  /* Firefox 用 */
  scrollbar-width: thin; /* 細めバー */
  scrollbar-color: #8bc34a #e4e4e4;
}

.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news_box .news_title {
  width: 24%;
  padding-top: 0.5em;
}
.news_box .news_contents {
  width: 72%;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 4px 14px;
  border-bottom: 0.9px solid #ddd;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .date {
  font-size: 1.2rem;
  color: #006b20;
  border: 0.9px solid #006b20;
  padding: 4px 6px;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .date {
    font-size: 12px;
  }
}
.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  line-height: 1.4;
}
.news-list li .txt a {
  color: #af0909;
  text-decoration: underline;
}
@media all and (max-width: 800px) {
  .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 13px;
    padding: 4px;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

.title50.heading,
.title40.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading,
.title14.heading,
.title12.heading {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media all and (max-width: 800px) {
  .title50.heading,
  .title40.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading,
  .title14.heading,
  .title12.heading {
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
}

.title50 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 5rem;
}
@media all and (max-width: 800px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 4rem;
}
@media all and (max-width: 800px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title32 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.2rem;
}
@media all and (max-width: 800px) {
  .title32 {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2rem;
  }
}

.title28 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
}
@media all and (max-width: 800px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 800px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}
@media all and (max-width: 800px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 800px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 800px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 800px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title14 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
}
@media all and (max-width: 800px) {
  .title14 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .title14 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.title12 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
@media all and (max-width: 800px) {
  .title12 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title12 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal;
}

.img-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}
.img-gray:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.staff-name {
  border-bottom: 1px solid #555;
  color: #8e6e46;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.staff-name span {
  font-size: 1.4rem;
  color: #555;
  padding-left: 5px;
}
@media all and (max-width: 639px) {
  .staff-name span {
    display: block;
    font-size: 1.2rem;
  }
  .staff-name {
    font-size: 1.8rem;
  }
}

.article {
  position: relative;
  padding: 100px 0;
}
.article .article-img {
  width: 70%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.article .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.article .article-txt {
  background: #fefefe;
  padding: 30px 20px;
  width: 50%;
  position: relative;
  font-weight: 600;
  margin-left: auto;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .article {
    padding: 0;
  }
  .article .article-img {
    position: static;
    width: 100%;
    height: auto;
  }
  .article .article-txt {
    width: 100%;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.single.type1 {
  padding: 80px 0 0;
}
@media all and (max-width: 639px) {
  .single {
    padding: 40px 0;
  }
}

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
}
@media all and (max-width: 639px) {
  .single02 {
    padding: 40px 0;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .single03 {
    padding: 40px 0;
  }
}

@media all and (max-width: 1100px) {
  .single03.phalf {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1250px) {
  .single03 {
    width: 95%;
  }
}
@media all and (max-width: 1100px) {
  .single03 {
    padding: 80px 10px;
  }
}
.single04 {
  max-width: 1500px;
  margin: 60px auto !important;
  position: relative;
}
.single04.type1 {
  background-color: #f7fbfc;
  padding: 65px;
  border-radius: 2.5rem;
}
@media all and (max-width: 1100px) {
  .single04 {
    width: 94%;
  }
}

.single05 {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 120px 0;
}
@media all and (max-width: 1100px) {
  .single05 {
    padding: 120px 15px;
  }
}

.top-greet-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media all and (max-width: 1100px) {
  .top-greet-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top-greet-img1 {
  width: 35%;
  position: relative;
}
.top-greet-img1 img {
  width: 100%;
}

@media all and (max-width: 1100px) {
  .top-greet-img1 {
    width: 70%;
  }
}
@media all and (max-width: 639px) {
  .top-greet-img1 {
    width: calc(100% - 130px);
  }
  .top-greet-img1:after {
    left: 30px;
    bottom: -40px;
    height: 30%;
  }
}
.top-greet-lead {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
  position: absolute;
  left: 40px;
  top: 30px;
  font-family: "El Messiri", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: inherit;
  z-index: 2;
  letter-spacing: 0.15em;
  font-size: 3.4rem;
  color: #fff;
  line-height: 1;
}
.top-greet-lead span:nth-child(3) {
  margin: -10px 0;
}

@media all and (max-width: 639px) {
  .top-greet-lead {
    left: 20px;
    top: 20px;
    font-size: 2rem;
  }
  .top-greet-lead span:nth-child(3) {
    margin: -4px 0;
  }
}
.top-greet-box {
  width: 61%;
  position: relative;
  z-index: 2;
}
.top-greet-box p {
  letter-spacing: 0.2em;
  line-height: 2;
}

@media all and (max-width: 896px) {
  .top-greet-box {
    width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  .top-greet-box p {
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box {
    padding: 0 10px;
    width: 85%;
  }
}
.greet-title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  line-height: 2.4;
  margin: 0 0 20px;
  display: table;
}
@media all and (max-width: 639px) {
  .greet-title {
    font-size: 1.3rem;
    line-height: 3rem;
  }
}
.greet-title span {
  font-size: 3.5rem;
  font-weight: 900;
  color: #45c4ff;
}
@media all and (max-width: 639px) {
  .greet-title span {
    font-size: 2.2rem;
  }
}

.top-greet-txt {
  width: 100%;
  margin: auto;
  text-align: left;
}

@media all and (max-width: 639px) {
  .top-greet-txt {
    width: calc(100% - 5px);
  }
}
.top-greet-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1500px;
  margin: 20px auto 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.top-greet-img-box .img-box1 {
  width: 48%;
}
.top-greet-img-box .img-box2 {
  width: 45%;
  margin-bottom: 30px;
}

.sentence p + p {
  margin-top: 20px;
}

.sentence2 p + p {
  margin-top: 40px;
}

.margin-top {
  margin-top: -80px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.margin-bottom {
  margin-bottom: -80px;
}
@media all and (max-width: 639px) {
  .margin-bottom {
    margin-bottom: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

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

.mbox {
  background: rgb(168, 218, 183);
  border-radius: 16px;
  padding: 20px;
}
.mbox.bg_white {
  background-color: #fff;
}

.mbox2 {
  background: rgb(158, 255, 187.0093457944);
  padding: 65px;
  border-radius: 2.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mbox2 {
    padding: 25px;
  }
}

.container-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.bg-pale {
  width: 100%;
  position: relative;
}
.bg-pale.radius:before {
  border-radius: 20px;
}
.bg-pale:before {
  background: #f1fff6;
  content: "";
  position: absolute;
  margin: auto auto 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}

.bg-green {
  position: relative;
}
.bg-green:before, .bg-green:after {
  position: absolute;
  content: "";
}
.bg-green:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00470d;
  z-index: -2;
  opacity: 0.5;
}
.bg-green:after {
  top: 100%;
  left: 50%;
  margin-left: -60px;
  border: 60px solid transparent;
  border-top: 60px solid #4d8658;
  z-index: 1;
}
@media all and (max-width: 800px) {
  .bg-green:after {
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #4d8658;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

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

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

main {
  position: relative;
}

#main {
  float: left;
  width: 76%;
}
@media all and (max-width: 800px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 800px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* 2column */
#col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
#col2-wrap #col2-main {
  width: 78%;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-main {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#col2-wrap #col2-side {
  width: 20%;
  padding: 60px 0 0;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

/* side
----------------------------------*/
#side-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin: 0 auto;
  padding: 0 60px;
}
@media all and (max-width: 1100px) {
  #side-box {
    padding: 0 40px;
  }
}
@media all and (max-width: 800px) {
  #side-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#side-box #side-menu {
  width: 220px;
  position: sticky;
  left: 0;
  top: 40px;
  margin-bottom: 66px;
}
@media all and (max-width: 800px) {
  #side-box #side-menu {
    width: 90%;
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }
}
#side-box #side-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
}
@media all and (max-width: 1100px) {
  #side-box #side-main {
    margin-left: 10px;
  }
}
@media all and (max-width: 800px) {
  #side-box #side-main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 108px;
  background: #ffffff;
  padding: 0 10px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 16px;
}
.sidenavi_wrap.is-fixed {
  margin-top: 40px;
}
@media all and (max-width: 800px) {
  .sidenavi_wrap {
    margin-top: 60px;
  }
}
.sidenavi_wrap .title-mini {
  background: #006b20;
  color: #ffffff;
  padding: 8px;
  margin: 0 -10px;
  text-align: center;
}
.sidenavi_wrap .title-mini.type1 {
  background: #8e6e46;
}
@media all and (max-width: 800px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 639px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.15rem;
  }
}
.sidenavi_wrap .side-navi {
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 10px 0;
}
.sidenavi_wrap .side-navi > li a {
  display: block;
  color: #5c4332;
  position: relative;
  padding: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a i {
  color: #006b20;
  margin-left: 5px;
}
.sidenavi_wrap .side-navi > li a:before {
  margin-right: 5px;
  color: #006b20;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: bold;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a:hover:before {
  opacity: 1;
}
/* intro
----------------------------------*/
.intro-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .intro-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}

.intro-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 768px) {
  .intro-text {
    font-size: 1.3rem;
  }
}
.intro-text p {
  text-align: left;
}

.intro-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .intro-title {
    text-align: center;
  }
}

.ltitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  position: relative;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin: 10px 0 40px;
  font-size: 2.3rem;
  letter-spacing: 0.2rem;
  position: relative;
  text-align: center;
}
.mtitle.f-t {
  margin: 0px 0px 20px;
}
.mtitle .eng {
  color: #006b20;
}
.mtitle .ja {
  display: block;
  font-size: 3.2rem;
  color: #262525;
  line-height: 1.5;
  /*@include eng;*/
}
.mtitle.white {
  color: #fff;
}
.mtitle.white:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fefefe));
  background-image: linear-gradient(to right, #ddd, #fefefe);
}
.mtitle.white span {
  color: #fff;
}
.mtitle.center {
  text-align: center;
}
.mtitle.mtitle_left {
  text-align: left;
}
.mtitle.mtitle_left:after {
  left: 0;
  -webkit-transform: inherit;
          transform: inherit;
}
@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.6rem;
    text-align: center;
  }
  .mtitle .ja {
    font-size: 2.5rem;
    margin-bottom: 0px;
  }
}

.mtitle2 {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
  padding: 30px 0 15px 0;
  color: #222;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to right, #006b20, #006b20, rgb(0, 209, 62.5046728972));
     border-image: -webkit-gradient(linear, left top, right top, from(#006b20), color-stop(#006b20), to(rgb(0, 209, 62.5046728972)));
     border-image: linear-gradient(to right, #006b20, #006b20, rgb(0, 209, 62.5046728972));
  /*border-image: linear-gradient(to right, $sub_color, $base_color, lighten($sub_color,20%));*/
  border-image-slice: 1;
  line-height: 1.3;
  font-weight: 600;
}
.mtitle2 span {
  font-size: 3.3rem;
  letter-spacing: 0.1rem;
  margin-right: 15px;
  color: rgb(0, 81.5, 24.3738317757);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  /*@include eng;*/
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.3rem;
  }
  .mtitle2 span {
    font-size: 2.5rem;
    display: block;
  }
}
.mtitle2.white {
  color: #fefefe;
}
.mtitle2.white span {
  color: rgb(0, 209, 62.5046728972);
}

.mtitle3 {
  position: relative;
  margin-bottom: 50px;
}
.mtitle3.type1 {
  margin: -40px 0 20px 10px;
  position: relative;
  z-index: 4;
}
.mtitle3.type1 .eng {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.mtitle3.type1 .ja {
  font-size: 1.8rem;
}
.mtitle3.sbc .eng {
  background: #35d2b5;
}
.mtitle3 span {
  display: inline-block;
  padding: 3px 8px;
}
.mtitle3 .eng {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 1.3rem;
  text-transform: inherit;
  color: #006b20;
  background: #006b20;
  color: #fff;
}
.mtitle3 .ja {
  font-size: 2.2rem;
  background: #fff;
  color: #5c4332;
}
@media all and (max-width: 639px) {
  .mtitle3.type1 .eng {
    font-size: 1rem;
  }
  .mtitle3.type1 .ja {
    font-size: 1.4rem;
  }
  .mtitle3 .eng {
    font-size: 1.1rem;
  }
  .mtitle3 .ja {
    font-size: 1.5rem;
  }
}

.mtitle-big {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  margin-bottom: 30px;
}
.mtitle-big span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 8rem;
}
.mtitle-big.center {
  text-align: center;
}
@media all and (max-width: 639px) {
  .mtitle-big {
    font-size: 1.4rem;
  }
  .mtitle-big span {
    font-size: 5rem;
  }
}

.mtitle-bll {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #ebebeb;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  left: 0;
  background: #006b20;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 3rem;
  background-color: #006b20;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffe53b;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  position: relative;
  margin: 20px auto 40px;
  text-align: center;
  line-height: 1.6;
}

.mtitle5.mtitle_left {
  text-align: left;
}

.mtitle5 .ja {
  font-family: "RocknRoll One", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
  color: #003d65;
}
@media all and (max-width: 639px) {
  .mtitle5 .ja {
    font-size: 2.3rem;
  }
}

.mtitle5.mtitle_left:after {
  left: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.mtitle5:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  width: 80px;
  height: 5px;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#016bb1), to(#3ebef0));
  background-image: linear-gradient(to right, #016bb1, #3ebef0);
  border-radius: 10px;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #1f62ce;
  margin: 8px 0 10px;
  font-size: 1.6rem;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #006b20;
}
@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.4rem;
  }
}

.mtitle_box {
  background: #006b20;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-weight: bold;
  border-radius: 16px 0 0 0;
  min-height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
}
.mtitle_box.bm0 {
  margin-bottom: 0px;
}
.mtitle_box.maas {
  background-image: -webkit-gradient(linear, left top, right top, from(#635f2c), to(rgb(151.9615384615, 145.8216783217, 67.5384615385)));
  background-image: linear-gradient(to right, #635f2c, rgb(151.9615384615, 145.8216783217, 67.5384615385));
}
.mtitle_box span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 2rem;
  padding-right: 10px;
  color: #555;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: bold;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
  }
  .mtitle_box span {
    font-size: 1.6rem;
  }
}

.mtitle_box2 {
  background: #006b20;
  /*background: $orange;*/
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.mtitle_box2 span {
  position: absolute;
  font-size: 5rem;
  opacity: 0.5;
  left: 0;
  top: -50px;
  color: #006b20;
  /*color: $orange;*/
  letter-spacing: 0.2rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  /*@include eng;*/
}
.mtitle_box2 {
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
  margin-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 12px;
  }
  .mtitle_box2 .small-cap {
    display: block;
    margin-left: 0;
  }
  .mtitle_box2 span {
    font-size: 3rem;
    top: -35px;
    opacity: 0.3;
  }
}

.mtext0 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.mtext0 span {
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.3Frem;
    line-height: 1.4;
  }
  .mtext0 span {
    font-size: 1.2rem;
  }
}

.mtext1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.mtext1 span {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .mtext1 span {
    font-size: 1.3rem;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
.mtext2 span {
  display: block;
  font-size: 1.7rem;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
  }
  .mtext2 sapn {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: bold;
  margin-right: 5px;
  color: #006b20;
}

/* btn
----------------------------------*/
.btn_circle_more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 30px auto 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 33rem;
  height: auto;
  border-radius: 1.8rem;
  overflow: hidden;
  display: block;
}
.btn_circle_more.center {
  margin: 0 auto;
}
.btn_circle_more.white .text {
  color: #fff;
}
.btn_circle_more.white .circle {
  background: #fff;
  border: 2px solid #fff;
}
.btn_circle_more.white .circle .icon.arrow::before {
  border-top: 0.25rem solid #006b20;
  border-right: 0.25rem solid #006b20;
}
.btn_circle_more.white:hover .text {
  color: #006b20 !important;
}
.btn_circle_more:hover .circle {
  width: 100%;
  border-radius: 20rem;
}
.btn_circle_more:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(0.5rem, 0);
          transform: translate(0.5rem, 0);
}
.btn_circle_more:hover .text {
  color: #fff;
}
.btn_circle_more:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
.btn_circle_more .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 4rem;
  height: 4rem;
  background: #006b20;
  border-radius: 50%;
}
.btn_circle_more .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn_circle_more .circle .icon.arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 1.0125rem;
  width: 1.0625rem;
  height: 0.25rem;
}
.btn_circle_more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.23rem;
  right: 0.03125rem;
  width: 0.7125rem;
  height: 0.7125rem;
  border-top: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn_circle_more .text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  margin: 0 0 0 0.325rem;
  color: #006b20;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  font-size: 120%;
  letter-spacing: 0.5px;
}

.btn01 a {
  background: #006b20;
  text-align: center;
  width: 300px;
  margin: 20px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
  border: 2px solid #006b20;
}
.btn01 a:hover {
  background: #FFF;
  color: #006b20;
}
.btn01.rd a {
  background: #8e6e46;
}
.btn01.rd a:hover {
  background: rgb(237.5, 205.9948979592, 0);
  color: #5c4332;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}
.btn01.type1 a {
  margin: 20px 0;
}

.btn02 {
  width: 350px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #006b20;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn03 {
  text-align: center;
  margin: 20px auto;
  position: relative;
  z-index: 2;
}
.btn03 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  padding: 18px 30px;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: visible;
  color: #262525;
  border-color: #006b20;
}
.btn03 a:focus {
  outline: none;
}
.btn03 a:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.btn03 a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #006b20;
  z-index: -1;
  -webkit-box-shadow: 0 0 0 0 #006b20;
          box-shadow: 0 0 0 0 #006b20;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.btn03 a:hover {
  color: #fff;
  background-color: #006b20;
}
.btn03 a:hover::after {
  -webkit-box-shadow: 0 0 0 24px transparent;
          box-shadow: 0 0 0 24px transparent;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s, -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
}
.btn03.rounded a {
  border-radius: 37px;
}
.btn03.rounded a:after {
  border-radius: 35px;
}
.btn03.white a {
  color: #fefefe;
}
.btn03.big2 a {
  width: 241px;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  padding: 4px 30px;
  background-color: #fff;
}
.btn03.big2 a:hover {
  color: #fff;
  background-color: #006b20 !important;
}
.btn03.big2 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn03.big2 a {
    width: 300px;
    font-size: 1.4rem;
    padding: 15px;
    letter-spacing: 0.2rem;
  }
}
.btn03.big a {
  width: 400px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
.btn03.big a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn03.big a {
    width: 300px;
    font-size: 1.4rem;
    padding: 15px;
    letter-spacing: 0.2rem;
  }
}

.btn04 {
  text-align: center;
  margin: 20px auto;
  position: relative;
  z-index: 2;
}
.btn04 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  padding: 18px 30px;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: visible;
  color: #262525;
  border-color: #006b20;
}
.btn04 a:focus {
  outline: none;
}
.btn04 a:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.btn04 a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #006b20;
  z-index: -1;
  -webkit-box-shadow: 0 0 0 0 #006b20;
          box-shadow: 0 0 0 0 #006b20;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.btn04 a:hover {
  color: #fff;
  background-color: #006b20;
}
.btn04 a:hover::after {
  -webkit-box-shadow: 0 0 0 24px transparent;
          box-shadow: 0 0 0 24px transparent;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s;
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s, -webkit-transform 0.2s linear, -webkit-box-shadow 0.5s ease-out 0.2s;
}
.btn04.rounded a {
  border-radius: 37px;
}
.btn04.rounded a:after {
  border-radius: 35px;
}
.btn04.white a {
  color: #fefefe;
}
.btn04.big2 a {
  width: 241px;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  padding: 4px 30px;
  background-color: #fff;
}
.btn04.big2 a:hover {
  color: #fff;
  background-color: #006b20 !important;
}
@media all and (max-width: 639px) {
  .btn04.big2 a {
    width: 276px;
    font-size: 1.4rem;
    padding: 10px;
    letter-spacing: 0.2rem;
  }
}
.btn04.big a {
  width: 400px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
.btn04.big a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn04.big a {
    width: 300px;
    font-size: 1.4rem;
    padding: 15px;
    letter-spacing: 0.2rem;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news dt {
  width: 7.5em;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #006b20;
  /*background: $navy;*/
  border-radius: 5px;
  display: table;
}
.news dd {
  padding: 5px;
  /*background: #fff;*/
  width: calc(100% - 8.5em);
  margin-left: 10px;
  line-height: 1.6;
}
.news dd a {
  color: #5c4332;
  border-bottom: 0.9px solid #ccc;
}
.news dt:not(:last-of-type),
.news dd:not(:last-of-type) {
  margin-bottom: 5px;
}
@media all and (max-width: 639px) {
  .news {
    display: block;
  }
  .news dd {
    margin-left: 0;
    width: 100%;
  }
}

.news-bl dt {
  float: left;
  width: 8.5em;
  padding: 3px 5px;
  line-height: 1.3;
  color: #1460d1;
  font-weight: 400;
  text-align: center;
}
.news-bl dt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: bold;
  margin-right: 5px;
}
.news-bl dd {
  padding: 0 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: black;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news-bl2 {
  overflow: hidden;
  margin: 15px auto;
}
.news-bl2 dt {
  float: left;
  width: 8em;
  padding: 5px;
  border-radius: 5px;
  line-height: 1.3;
  background: #006b20;
  color: #fff;
  text-align: center;
}
.news-bl2 dd {
  padding: 3px 0 9px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #DDDDDD;
  margin: 0 0 10px;
}
.news-bl2 dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl2 dd {
    padding: 4px 0 9px 10em;
  }
}
/* accordion
----------------------------------*/
.accordion {
  overflow: hidden;
  margin-top: 60px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  color: #5c4332;
  border-top: 1px solid #e6e4e1;
  border-bottom: 1px solid #e6e4e1;
  cursor: pointer;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 800px) {
  .accordion dt {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.accordion dt:after {
  position: absolute;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  content: "＋";
  right: 20px;
  top: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion dt.on:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.accordion dd {
  display: none;
  padding: 35px 30px 0;
  background: #ffffff;
}
@media all and (max-width: 800px) {
  .accordion {
    margin-top: 30px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em;
  }
  .accordion dt:after {
    right: 8px;
  }
  .accordion dd {
    padding: 20px 15px 0;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/page-title.webp) no-repeat 50% 48%/cover;
}
.page-title.page-title1 {
  background-image: url(../img/page-title1.jpg);
}
.page-title.page-title2 {
  background-image: url(../img/page-title2.jpg);
}
.page-title.page-title3 {
  background-image: url(../img/page-title3.jpg);
}
.page-title.page-title4 {
  background-image: url(../img/page-title4.jpg);
}
.page-title.page-title5 {
  background-image: url(../img/page-title5.jpg);
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #f7f7f7;
  opacity: 0.4;
}
.page-title .inner {
  margin: 0 auto;
  height: 435px;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-title .page-lead {
  margin: 0 auto;
  padding: 20px 0;
}
.page-title .page-lead .mtitle {
  margin-bottom: -80px;
  color: #777;
}
@media screen and (max-width: 800px) {
  .page-title .page-lead .mtitle {
    margin-bottom: -149px;
  }
}
@media screen and (max-width: 768px) {
  .page-title .page-lead .mtitle {
    margin-bottom: -16px;
  }
}
.page-title .page-lead .mtitle span {
  color: #fff;
  font-size: 4rem;
  line-height: 1.6;
  letter-spacing: 0.5rem;
  margin-bottom: -20px;
  display: inline-block;
  padding: 20px;
  border: 1px solid #fff;
  background-color: rgb(0, 81.5, 24.3738317757);
}
@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 100%;
    height: auto;
    height: 380px;
    margin-bottom: 20px;
  }
  .page-title .page-lead {
    width: 90%;
    padding: 0;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 200px;
  }
  .page-title .page-lead {
    padding: 5px 0 0;
  }
  .page-title .page-lead .mtitle {
    font-size: 1.4rem;
    line-height: 3.2rem;
  }
  .page-title .page-lead .mtitle span {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: -10px;
  }
}

.bg-company {
  background: url(../img/bg-company.jpg) no-repeat center/cover;
  position: relative;
}
.bg-company:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(transparent));
  background-image: linear-gradient(to bottom, #fefefe 0%, transparent 100%);
}

.bg-01 {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  left: 0;
  top: 0;
  /*background: #ffecb6;*/
  opacity: 0.6;
}

.bg-02 {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  background: #f0f0f0 url(../img/grid2.png);
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(218.0454545455, 205.7272727273, 183.5545454545)), to(#fcfcfc));
  background-image: linear-gradient(to right, rgb(218.0454545455, 205.7272727273, 183.5545454545) 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}
.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #8e6e46;
  opacity: 0.8;
}
@media all and (max-width: 800px) {
  .bg-contents:before {
    height: 78%;
    opacity: 0.5;
    bottom: 2%;
  }
}

.bg-maru1 {
  position: relative;
  margin: 50px auto;
}
.bg-maru1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*background: lighten($sub_color, 20%);*/
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .bg-maru1:before {
    width: 100%;
  }
}

.bg-maru2 {
  position: relative;
  margin: 50px auto;
}
.bg-maru2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 40px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #e0f9ff;
  border-radius: 16px;
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .bg-maru2:before {
    width: 100%;
  }
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgb(168, 218, 183);
}
@media all and (max-width: 639px) {
  .bg-base:before {
    width: 100%;
  }
}

.bg-blue {
  background: #1460d1;
}

.bg-gray {
  position: relative;
  background: #ebebeb;
}

.bg-beige {
  background: rgba(225, 215, 197, 0.8);
}

.bg-beige2 {
  background: rgba(225, 215, 197, 0.8);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 800px) {
  .bg-beige2 {
    max-width: calc(100% - 15px);
  }
}
.bg-beige2 {
  border-radius: 20px;
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .bg-beige2 {
    border-radius: 10px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
}
.tbl th {
  background: #eee;
  color: #333;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.th-1 {
  width: 25%;
}
.tbl th.cell02 {
  width: 20%;
}
.tbl th.cell03 {
  width: 22.5%;
}
.tbl th.col1 {
  background: rgba(0, 107, 32, 0.2);
}
@media all and (max-width: 639px) {
  .tbl {
    font-size: 1.1rem;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 25%;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 0.9px solid #cfdafe;
}
.tbl-border th {
  width: 28%;
  color: #262525;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-border2 {
  width: 100%;
}
.tbl-border2 tr:nth-child(odd) th, .tbl-border2 tr:nth-child(odd) td {
  background: #cfdafe;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 15px;
  vertical-align: middle;
}
.tbl-border2 th {
  width: 28%;
  color: #5c4332;
  border-right: 2px solid rgb(107.8396226415, 83.5377358491, 53.1603773585);
}
@media all and (max-width: 639px) {
  .tbl-border2 th {
    width: 30%;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  min-width: 150px;
  text-align: center;
  position: relative;
  background: rgb(0, 56, 16.7476635514);
  color: #fff;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .company th {
    min-width: 80px;
  }
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f4f4f4;
  border-width: 10px;
  border-left-color: rgb(0, 56, 16.7476635514);
  margin-top: -10px;
}
.company td {
  background: #f4f4f4;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}
.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 60%;
  }
}

/* map / video
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  height: 400px;
  -webkit-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 639px) {
  .ggmap {
    height: 250px;
  }
}
.ggmap {
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_common li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc;
  gap: 9px;
}
.list_common li.white {
  color: #fff;
}
.list_common li a {
  color: #8e6e46;
  font-weight: 600;
}
.list_common li:before {
  content: "●";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common li .check_num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #006b20;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_check {
  /*background: #fefefe;*/
  padding: 10px;
}
.list_check li {
  padding-bottom: 5px;
  font-weight: 600;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(225, 215, 197, 0.2);
  margin-top: 10px;
}
.list_check li:not(:last-child) {
  margin-bottom: 15px;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: normal;
  margin-right: 5px;
  color: #ff4500;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list_check2 li {
  padding: 3px;
  background: rgba(254, 254, 254, 0.8);
}
.list_check2 li.w100 {
  width: 100%;
  margin-right: 0%;
}
.list_check2 li {
  width: 49.5%;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 1%;
}
.list_check2 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list_check2 li:nth-child(2n) {
    margin-right: auto;
  }
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 10px;
  color: #8e6e46;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.list_check3 li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #006b20;
  padding-bottom: 5px;
}
.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: normal;
  margin-right: 5px;
  color: #006b20;
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  padding: 0px;
}
.ol-list li {
  line-height: 2;
  border-bottom: 1px dashed #8e6e46;
  margin-bottom: 7px;
  padding: 7px 0;
  padding-left: 40px;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.5rem;
}
.ol-list li:last-child {
  border-bottom: 0px dashed #8e6e46;
  margin-bottom: 0px;
}
.ol-list li .small {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: initial;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: rgb(0, 56, 16.7476635514);
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.6rem;
  }
}

.list-type1 li {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  background: #006b20;
  color: #222;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}
.list-type1 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #fefefe;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.br_tablet {
  display: none;
}
@media all and (max-width: 800px) {
  .br_tablet {
    display: block;
  }
}

.round-box {
  border-radius: 20px;
  overflow: hidden;
}

.color1 {
  color: rgb(0, 81.5, 24.3738317757);
}

.color2 {
  color: #8e6e46;
}

.color3 {
  color: #5c4332;
}

.num {
  text-align: center;
}
.num a {
  color: #1460d1;
  font-weight: bold;
  font-size: 3.5rem;
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  margin-right: 5px;
}
.num a:hover {
  color: #8e6e46;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2.4rem;
  }
}

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-weight: 400;
}
.breadcrumb li {
  display: inline;
  color: #5c4332;
}
.breadcrumb li a {
  color: #006b20;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  /*float: left;*/
  float: none;
  /*width: 280px;*/
  padding-top: 20px;
  font-weight: bold;
}
.form dl dt span {
  font-weight: normal;
  color: #fff;
  background: rgb(135.7345971564, 31.8483412322, 24.2654028436);
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 5px;
  position: relative;
  top: -2px;
}
.form dl dt b {
  color: #fff;
  font-weight: normal;
  background: #555;
  padding: 2px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 5px;
  position: relative;
  top: -2px;
}
.form dl dd {
  /*padding-left: 280px;*/
  padding-left: 5px;
  /*   padding-bottom: 20px;
     padding-top: 23px;*/
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 1.5;
  /*border-bottom: 1px dotted #cccccc;*/
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #006b20;
  /*background: $orange;*/
  border: 1px solid #006b20;
  /*border: 1px solid $orange;*/
  border-radius: 25px;
  color: #fff;
}
.form button:hover {
  background: #fff;
  color: #006b20;
  /*color: $orange;*/
}
.form button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #006b20;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #006b20;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #006b20;
  border-bottom: 3px solid #006b20;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select-content .select-txt {
  padding: 0 5px;
}
@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
     display: inline-block;
    }*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  border: 2px solid rgba(225, 215, 197, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #e1d7c5;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 20px;
  background: #ebebeb;
  margin-top: 40px;
}

.mtitle_small {
  position: relative;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}
.mtitle_small:before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #006b20;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.6rem;
  }
  .mtitle_small:before {
    bottom: -5px;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery_ul li {
  margin: 0 2% 2.5% 0;
  width: 32%;
}
.gallery_ul li:nth-child(3n) {
  margin: 0 0 2.5% 0;
}
.gallery_ul li .photobox-wrap {
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  background: rgba(142, 110, 70, 0.1);
  margin-bottom: 8px;
}
.gallery_ul li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 639px) {
  .gallery_ul li .photobox-wrap {
    height: 280px;
  }
}

/* トップ＞コンテンツ
----------------------------------*/
.top-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}
.top-split.type1 {
  margin-top: 20px;
}
@media all and (max-width: 800px) {
  .top-split.type1 {
    margin-top: 0;
  }
}
@media all and (max-width: 800px) {
  .top-split {
    padding: 0;
  }
}
.top-split .child {
  width: calc(50% - 10px);
  border-radius: 16px;
}
.top-split .child.split-1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/content01.webp) no-repeat center/cover;
}
.top-split .child.split-2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/content02.webp) no-repeat center/cover;
}
.top-split .child.split-3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/content03.webp) no-repeat center/cover;
}
.top-split .child.split-4 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/content04.webp) no-repeat center/cover;
}
@media all and (max-width: 800px) {
  .top-split .child {
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }
}
.top-split .child a {
  display: block;
  position: relative;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  backdrop-filter: blur(1px);
}
@media all and (max-width: 1100px) {
  .top-split .child a {
    height: 280px;
  }
}
@media all and (max-width: 800px) {
  .top-split .child a {
    height: auto;
    padding: 40px 0;
  }
  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}
.top-split .child a .inner {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 600;
}
.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1.5;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2);
}
.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.8;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  letter-spacing: 0.3em;
}
@media all and (max-width: 1100px) {
  .top-split .child a .split-title {
    font-size: 1.8rem;
  }
  .top-split .child a .split-title .eng {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 800px) {
  .top-split .child a .split-title {
    font-size: 1.4rem;
  }
  .top-split .child a .split-title .eng {
    font-size: 1.1rem;
  }
}
.top-split .child a .split-txt {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
}
@media all and (max-width: 800px) {
  .top-split .child a .split-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    max-width: 90%;
  }
}
.top-split .child a .split-more {
  width: 130px;
  padding: 4px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 25px auto 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 90%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.top-split .child a:hover:before {
  backdrop-filter: blur(5px);
}
.top-split .child a:hover .split-more {
  background: #006b20;
  color: #fff;
}

/* title
----------------------------------*/
.mtitle01 {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  z-index: 3;
}
.mtitle01 .ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  font-weight: 900;
}

.greet-wrap {
  position: relative;
}
.greet-wrap.type_b .inner {
  padding-top: 0;
}
.greet-wrap .inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  padding-top: 80px;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 2.2;
  text-align: center;
}
.greet-wrap .inner .greet-title2 {
  position: relative;
  margin: 0 auto 40px auto;
  font-weight: 900;
  text-align: center;
}
.greet-wrap .inner .greet-title2 span.main {
  font-size: 1.7em;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .greet-wrap .inner .greet-title2 span.main {
    font-size: 1.2em;
  }
}
.greet-wrap .inner .greet-title2 span.sub {
  font-size: 1.1em;
}
.greet-wrap .inner .greet-title2 span {
  display: block;
}
.greet-wrap .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.greet-wrap .inner .content .sentence {
  text-align: left;
  max-width: 550px;
  margin: 0 auto 0 auto;
}

.title02 {
  position: relative;
  margin-bottom: 35px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.title02 .eng {
  font-size: 1.4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #006b20;
  display: block;
}
.title02 .ja {
  font-size: 2.4rem;
  color: #5c4332;
}
.title02 .ja mn {
  font-size: 1.8rem;
}
.title02.type1 .eng {
  color: #8e6e46;
}
.title02.white .ja,
.title02.white .eng {
  color: #fff;
}
@media all and (max-width: 800px) {
  .title02 {
    margin-bottom: 30px;
  }
  .title02 .eng {
    font-size: 1.15rem;
  }
  .title02 .ja {
    font-size: 1.6rem;
  }
  .title02 .ja mn {
    font-size: 1.3rem;
  }
}

.title03 {
  position: relative;
  padding: 5px 0 5px 25px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #0077c2;
}
.title03 .ja {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
.title03 .eng {
  font-family: "Barlow Semi Condensed", "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
}
.title03:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: #0077c2;
}
.title03.type1 {
  color: #ffc000;
}
.title03.type1:before {
  background: #ffc000;
}

@media all and (max-width: 896px) {
  .title03 .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title03 .ja {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.5rem;
    padding: 10px 5px 10px 20px;
    margin-bottom: 20px;
  }
  .title03 span {
    font-size: 1.15rem;
    display: block;
  }
  .title03:before {
    left: 5px;
  }
}
.area-sub-ttl {
  color: #006b20;
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  margin: 20px 0 40px;
}

.note-side {
  position: relative;
}
.note-side .rinen {
  max-width: 100%;
}

@media all and (max-width: 639px) {
  .note-side {
    padding: 0 5px;
  }
}
/* carousel
----------------------------------*/
.carousel {
  margin: 60px auto;
  position: relative;
  max-width: 95%;
}
.carousel .swiper-slide {
  width: 300px !important;
  -webkit-box-shadow: rgba(4, 66, 98, 0.1) 0px 48px 100px 0px;
          box-shadow: rgba(4, 66, 98, 0.1) 0px 48px 100px 0px;
  padding: 1em;
  margin: 0 1em;
  border-radius: 20px;
  background: #fefefe;
}
.carousel .swiper-slide .inner {
  text-align: center;
}
.carousel .swiper-slide .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0 0;
     object-position: 0 0;
  text-align: center;
  aspect-ratio: 3/2;
  -o-object-position: center;
     object-position: center;
}
.carousel .swiper {
  overflow: visible;
}
.carousel .swiper-button-prev, .carousel .swiper-button-next {
  cursor: pointer;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.carousel .swiper-button-prev::before, .carousel .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.carousel .swiper-button-prev::after, .carousel .swiper-button-next::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border: solid #ddd;
  border-width: 3px 3px 0 0;
}
.carousel .swiper-button-prev:hover:before, .carousel .swiper-button-next:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.carousel .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.carousel .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.carousel .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.carousel .swiper-button-prev, .carousel .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.carousel .swiper-button-prev::before, .carousel .swiper-button-next::before {
  background: #008cd6;
  -webkit-box-shadow: var(--box-shadow-dark);
  box-shadow: var(--box-shadow-dark);
}
.carousel .swiper-button-prev::after, .carousel .swiper-button-next::after {
  border-color: #fff;
}
.carousel .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
}

@media screen and (max-width: 639px) {
  .carousel .swiper-button-prev, .carousel .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .carousel {
    margin: 40px auto;
  }
  .carousel::before {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }
  .carousel::after {
    width: 80px;
    height: 80px;
    bottom: -40px;
    width: 100px;
    height: 100px;
  }
  .carousel .swiper-slide {
    width: 150px !important;
  }
  .carousel .swiper-slide .blog-img {
    height: auto;
  }
}
/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery li {
  width: calc((100% - 20px) / 3);
  margin: 0 10px 20px 0;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 270px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 1.1rem;
  }
}
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.list2 > li,
.list2 .child {
  width: 48%;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0px auto 25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2.type1 > li a,
.list2.type1 .child a {
  color: #323232;
}
.list2.type1 > li figure,
.list2.type1 .child figure {
  height: 300px;
  margin-bottom: 30px;
}
.list2.type1 > li figure img,
.list2.type1 .child figure img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .list2.type1 .child figure {
    height: 300px;
  }
}
.list2.type2 > li,
.list2.type2 .child {
  background: #fefefe;
  padding: 25px;
}
.list2.type2 > li a,
.list2.type2 .child a {
  color: #323232;
}
.list2.type2 > li figure,
.list2.type2 .child figure {
  height: 300px;
  margin-bottom: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f3e8), to(#fefefe));
  background-image: linear-gradient(to bottom, #f6f3e8, #fefefe);
}
.list2.type2 > li figure img,
.list2.type2 .child figure img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (max-width: 639px) {
  .list2.type2 > li figure,
  .list2.type2 .child figure {
    height: 200px;
  }
}
.list2.type3 {
  row-gap: 40px;
}
.list2.type3 > li,
.list2.type3 .child {
  background: #fefefe;
  padding: 25px;
}
.list2.type3 > li a,
.list2.type3 .child a {
  color: #323232;
}
.list2.type3 > li figure,
.list2.type3 .child figure {
  height: 300px;
  margin-bottom: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f3e8), to(#fefefe));
  background-image: linear-gradient(to bottom, #f6f3e8, #fefefe);
}
.list2.type3 > li figure img,
.list2.type3 .child figure img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 800px) {
  .list2.type3 > li,
  .list2.type3 .child {
    width: 100%;
  }
  .list2.type3 > li:nth-child(2n),
  .list2.type3 .child:nth-child(2n) {
    margin-left: 0;
  }
  .list2.type3 > li figure,
  .list2.type3 .child figure {
    height: 220px;
  }
  .list2.type3 > li figure img,
  .list2.type3 .child figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.title-bg {
  background: rgb(107.8396226415, 83.5377358491, 53.1603773585);
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -15px;
}
@media screen and (max-width: 639px) {
  .list3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.list3 li {
  width: 24%;
  margin: 0 1.25% 15px 0;
}
.list3 li p {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.list3 li p img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .list3 li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .list3 li {
    width: 32%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .list3 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
    text-align: center;
  }
  .list3 li p {
    height: 150px;
  }
  .list3 li p img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .list3 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 639px) {
  .list3 li {
    width: 95%;
    margin: 0;
    text-align: center;
    margin-bottom: 3%;
  }
  .list3 li p {
    height: 290px;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}
.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 31%;
  overflow: hidden;
}
.list4 li img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
  .list4 li img {
    aspect-ratio: 3/2;
  }
}

.note {
  padding: 15px 15px 15px 20px;
  border-left: 5px solid #006b20;
  font-weight: 600;
}
.note.bg-w {
  background: #fff;
}

.note2 {
  padding: 10px;
  background: #f5f5f5;
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}
.flow-dl dt {
  background: #006b20;
  font-size: 3rem;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-right: 20px;
  height: 80px;
  padding-top: 8px;
  border-radius: 100%;
}
.flow-dl dt span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: -16px;
}
.flow-dl dd {
  width: calc(100% - 110px);
  margin-top: 10px;
}
.flow-dl dd:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 0.9px solid #8e6e46;
}
.flow-dl dt:not(:last-of-type),
.flow-dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}

.txt1 {
  padding-left: 10px;
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-center li {
  max-width: 250px;
}
.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}
@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq {
  margin: 20px auto -20px;
}
.faq dt {
  font-size: 1.8rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  background: #eee;
  color: #5c4332;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 36px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.faq dt:before {
  border-radius: 6px;
  content: "Q";
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  font-size: 1.6rem;
  line-height: 35px;
  color: #fff;
  background: #006b20;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
@media all and (max-width: 639px) {
  .faq dt {
    font-size: 1.3rem;
  }
  .faq dt:before {
    font-size: 1.4rem;
  }
  .faq dt:after {
    display: none;
  }
}
.faq dt:hover {
  background: rgba(142, 110, 70, 0.2);
}
.faq dt:after {
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  content: "＋";
  color: #5c4332;
  float: right;
}
.faq dt.active:after {
  font-family: "Font Awesome 5 Free";
  margin-right: 3px;
  content: "ー";
}
.faq dd {
  display: none;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 48px;
  line-height: 2;
  position: relative;
  background: #fff;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #b32a20;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq:last-child {
  margin-bottom: 0;
}
.faq dt,
.faq dd {
  border-radius: 6px;
}
.faq dt:before,
.faq dd:before {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
}
.faq b {
  padding: 3px 5px;
  margin: 10px 0;
  line-height: 40px;
  background: #dad2b9;
  font-size: 11px;
}

.faq-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before,
  .faq-dl .faq-inner dd:before {
    font-size: 2.2rem;
  }
}
.faq-dl .faq-inner dt {
  background-image: -webkit-gradient(linear, left top, right top, from(#b32a20), to(#b32a20));
  background-image: linear-gradient(to right, #b32a20, #b32a20);
  color: #fefefe;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fefefe;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #b32a20;
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-dl dt,
.faq-dl dd {
  padding: 15px 15px 15px 60px;
  position: relative;
  width: 98%;
}
.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  left: 15px;
  top: 0;
}
@media all and (max-width: 639px) {
  .faq-dl dt,
  .faq-dl dd {
    padding: 10px 10px 10px 50px;
  }
  .faq-dl dt:before,
  .faq-dl dd:before {
    font-size: 2rem;
  }
}
.faq-dl dt {
  background: #8e6e46;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #fefefe;
}
.faq-dl dt:before {
  content: "Q.";
  color: #635f2c;
}
.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0;
}
.faq-dl dd:before {
  content: "A.";
  color: #ff4500;
}
.faq-dl dd:not(:last-child) {
  margin-bottom: 50px;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #fefefe;
  border-radius: 5px;
  position: relative;
}
.fukidashi a {
  color: #a71017;
}
.fukidashi a:hover {
  color: #8e6e46;
}
.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fefefe;
  z-index: 2;
}

.info-txt {
  width: 95%;
  margin: 10px auto 0;
  background: rgba(142, 110, 70, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.iframe {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px;
}
.frames:before, .frames:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.frames:before {
  -webkit-box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
          box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}
.frames:after {
  -webkit-box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
          box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}

.document-list li a {
  display: block;
  background: #8e6e46;
  padding: 10px;
  font-weight: bold;
  line-height: 1.5;
  border: 1px solid rgba(92, 67, 50, 0.5);
  color: #5c4332;
}
.document-list li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d2";
  font-weight: bold;
  margin-right: 5px;
}
.document-list li a:hover {
  background: #8e6e46;
}
.document-list li a.pdf:before {
  content: "\f1c1";
}
.document-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.component-box {
  line-height: 1.5;
  font-weight: 400;
  font-size: 0.9em;
}
.component-box li:before {
  content: "●";
  margin-right: 5px;
  color: #006b20;
}

.feature-list li {
  padding: 4px 4px 4px 8px;
  font-weight: 600;
  margin-bottom: 8px;
  background: #f0f0f0;
}
.feature-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #006b20;
}

.video-box {
  width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .video-box {
    width: 100%;
  }
}

/* vertical contents
----------------------------------*/
.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
.mtitle-vertical span {
  display: block;
  font-size: 4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  color: #006b20;
}
.mtitle-vertical {
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
}
@media all and (max-width: 639px) {
  .mtitle-vertical {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
  }
  .mtitle-vertical span {
    font-size: 2.5rem;
  }
}

.vertical-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 639px) {
  .vertical-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vertical-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10%;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .vertical-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 15px 0 0;
  }
}

.line-color {
  color: #00b900;
}

.recommend-lead {
  font-size: 1.7rem;
  color: #5c4332;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.recommend-lead .eng {
  color: #8e6e46;
  font-size: 3rem;
  padding-right: 5px;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .recommend-lead {
    font-size: 1.3rem;
  }
  .recommend-lead .eng {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
  }
}

.recommend-box {
  max-width: 800px;
  background: #fefefe;
  padding: 25px;
  margin: 0 auto;
  font-size: 0.9em;
}

.lead01 {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin: 10px 0;
  text-align: center;
  color: #5c4332;
  line-height: 1.5;
}
.lead01 span {
  display: block;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  /*@include eng;*/
  color: rgb(0, 209, 62.5046728972);
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .lead01 {
    font-size: 1.8rem;
  }
  .lead01 span {
    font-size: 1.5rem;
  }
}

#particle-bg {
  height: 900px;
  width: 100%;
  position: relative;
}
@media all and (max-width: 639px) {
  #particle-bg {
    height: 1400px;
  }
}
@media all and (max-width: 320px) {
  #particle-bg {
    height: 1300px;
  }
}

.point-title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  color: #5c4332;
  margin-bottom: 10px;
}
.point-title .eng {
  font-weight: 400;
  color: #635f2c;
  display: block;
}

.service-title {
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1460d1;
}
.service-title span {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 6rem;
  display: block;
}
@media all and (max-width: 639px) {
  .service-title {
    font-size: 1.3rem;
  }
  .service-title span {
    font-size: 3.5rem;
  }
}

.service-bg {
  /*background-image: linear-gradient(to right, rgba($orange,0.1) 0%, rgba($sub_color,0.1) 100%);*/
}
.service-bg .service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-bg .service-img {
  width: 50%;
}
.service-bg .service-txt {
  width: 49%;
  padding: 20px;
}
.service-bg.type2 {
  background: transparent;
}
.service-bg.type2 .service-txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media all and (max-width: 639px) {
  .service-bg.type2 .service-txt {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
@media all and (max-width: 639px) {
  .service-bg .service-wrap {
    width: 90%;
    margin: 0 auto 50px;
    padding: 50px 0;
  }
  .service-bg .service-img, .service-bg .service-txt {
    width: 100%;
  }
  .service-bg .service-txt {
    padding: 10px;
    margin-bottom: 20px;
  }
}

.en {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
}

mn {
  font-size: 1.4rem;
}

.img-hv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.img-hv:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  -moz-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  -ms-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
}

.mini {
  font-size: 90%;
  line-height: 1.5;
  border-radius: 16px;
}

.mini2 {
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .mini2 {
    font-size: 1.2rem;
  }
}

.bg-fix {
  background-attachment: fixed !important;
}
@media all and (max-width: 639px) {
  .bg-fix {
    background-attachment: scroll !important;
  }
}

.mt_bg {
  font-weight: 600;
  color: #5c4332;
  letter-spacing: 1.5px;
}
.mt_bg b {
  background: rgb(0, 56, 16.7476635514);
  color: #fff;
  padding: 1px 10px;
  border-radius: 5px;
}

.w200 {
  width: 200px;
}
@media all and (max-width: 639px) {
  .w200 {
    width: 99%;
  }
}

.nami {
  position: absolute;
  bottom: -10px;
  display: block;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .nami {
    width: 100%;
  }
}
.en2 {
  font-family: "Quicksand", "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.normal {
  font-weight: 500;
}

.scrbr {
  width: 100%;
  padding: 0px 0px;
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.scrbr::-webkit-scrollbar {
  width: 5px;
}
.scrbr::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.scrbr::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .scrbr {
    width: 100%;
    padding: 2px 0px;
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
.scrbr2 {
  width: 100%;
  padding: 0px 0px;
  max-height: 150px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.scrbr2::-webkit-scrollbar {
  width: 5px;
}
.scrbr2::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.scrbr2::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .scrbr2 {
    width: 100%;
    padding: 2px 0px;
    max-height: 100px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
.grid {
  position: relative;
  margin: 0 0 30px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.grid-item .gallery {
  background: #f2f2f2;
  width: 100%;
  height: 200px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-bottom: 10px;
}
.grid-item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 32.5%;
  font-size: 12px;
  background: #fff;
  padding: 10px 10px 10px;
  margin-right: 1.25%;
  margin-bottom: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  /*background-color: #fff;*/
  background-image: url(../img/click.png);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
}
.grid-item * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.3rem;
  text-align: center;
  color: #006b20;
}
.grid-item dt {
  float: left;
  width: 7em;
  background: #006b20;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
  font-weight: bold;
  border-radius: 5px;
}
.grid-item dd {
  padding-left: 8em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}
.grid-item dd:last-child {
  border-bottom: 0px;
}
.grid-item p {
  line-height: 1.6em;
  font-size: 13px;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item a:hover img {
  opacity: 0.7;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.grid-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  -moz-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  -ms-filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
  filter: drop-shadow(8px 2px 10px rgba(92, 67, 50, 0.2));
}

@media all and (max-width: 639px) {
  .grid-item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(100% - 0px) !important;
    font-size: 12px;
    background: #fff;
    padding: 10px 10px 10px;
    margin-right: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
            box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
  }
}
.hikki {
  font-family: "La Belle Aurore", serif;
}

.kadomaru {
  border-radius: 30px;
}

video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.ruby-r {
  font-size: 8px;
}

.nami_line {
  -webkit-text-decoration: underline wavy #8e6e46;
          text-decoration: underline wavy #8e6e46;
}

.number {
  font-size: 2.5rem;
  color: rgba(142, 110, 70, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  position: relative;
  top: 5px;
}

/* フレックスコンテナ
-------------------------------------------------- */
.k-flex * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.k-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.k-flex img {
  vertical-align: middle;
  max-width: 100%;
}
.k-flex.jc-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.k-flex.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.k-flex.jc-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.k-flex.col-1 > .k-fitem {
  width: 100%;
}
.k-flex.col-2 > .k-fitem {
  width: 50%;
}
.k-flex.col-3 > .k-fitem {
  width: 33.3333333%;
}
.k-flex.col-4 > .k-fitem {
  width: 25%;
}
.k-flex.col-5 > .k-fitem {
  width: 20%;
}
.k-flex > .k-fitem.k-w5 {
  width: 5%;
}
.k-flex > .k-fitem.k-w10 {
  width: 10%;
}
.k-flex > .k-fitem.k-w15 {
  width: 15%;
}
.k-flex > .k-fitem.k-w20 {
  width: 20%;
}
.k-flex > .k-fitem.k-w25 {
  width: 25%;
}
.k-flex > .k-fitem.k-w30 {
  width: 30%;
}
.k-flex > .k-fitem.k-w33 {
  width: 33.3333333%;
}
.k-flex > .k-fitem.k-w35 {
  width: 35%;
}
.k-flex > .k-fitem.k-w40 {
  width: 40%;
}
.k-flex > .k-fitem.k-w45 {
  width: 45%;
}
.k-flex > .k-fitem.k-w50 {
  width: 50%;
}
.k-flex > .k-fitem.k-w55 {
  width: 55%;
}
.k-flex > .k-fitem.k-w60 {
  width: 60%;
}
.k-flex > .k-fitem.k-w65 {
  width: 65%;
}
.k-flex > .k-fitem.k-w70 {
  width: 70%;
}
.k-flex > .k-fitem.k-w75 {
  width: 75%;
}
.k-flex > .k-fitem.k-w80 {
  width: 80%;
}
.k-flex > .k-fitem.k-w85 {
  width: 85%;
}
.k-flex > .k-fitem.k-w90 {
  width: 90%;
}
.k-flex > .k-fitem.k-w95 {
  width: 95%;
}
.k-flex > .k-fitem.k-w100 {
  width: 100%;
}
.k-flex > .k-fitem.order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.k-flex > .k-fitem.order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.k-flex > .k-fitem.order3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.k-flex > .k-fitem.order4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

@media screen and (max-width: 700px) {
  .k-flex > .k-fitem {
    width: 100% !important;
  }
  .k-flex > .k-fitem.order1, .k-flex > .k-fitem.order2, .k-flex > .k-fitem.order3, .k-flex > .k-fitem.order4 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .k-flex.col-4 > .k-fitem {
    width: 50% !important;
  }
  .k-flex {
    /*モバイルで100%にしたくない時の指定*/
  }
  .k-flex.fix.col-1 > .k-fitem {
    width: 100% !important;
  }
  .k-flex.fix.col-2 > .k-fitem {
    width: 50% !important;
  }
  .k-flex.fix.col-3 > .k-fitem {
    width: 33.3333333% !important;
  }
  .k-flex.fix.col-4 > .k-fitem {
    width: 25% !important;
  }
  .k-flex.fix.col-5 > .k-fitem {
    width: 20% !important;
  }
  .k-flex.fix > .k-fitem.k-w5 {
    width: 5% !important;
  }
  .k-flex.fix > .k-fitem.k-w10 {
    width: 10% !important;
  }
  .k-flex.fix > .k-fitem.k-w15 {
    width: 15% !important;
  }
  .k-flex.fix > .k-fitem.k-w20 {
    width: 20% !important;
  }
  .k-flex.fix > .k-fitem.k-w25 {
    width: 25% !important;
  }
  .k-flex.fix > .k-fitem.k-w30 {
    width: 30% !important;
  }
  .k-flex.fix > .k-fitem.k-w33 {
    width: 33.3333333% !important;
  }
  .k-flex.fix > .k-fitem.k-w35 {
    width: 35% !important;
  }
  .k-flex.fix > .k-fitem.k-w40 {
    width: 40% !important;
  }
  .k-flex.fix > .k-fitem.k-w45 {
    width: 45% !important;
  }
  .k-flex.fix > .k-fitem.k-w50 {
    width: 50% !important;
  }
  .k-flex.fix > .k-fitem.k-w55 {
    width: 55% !important;
  }
  .k-flex.fix > .k-fitem.k-w60 {
    width: 60% !important;
  }
  .k-flex.fix > .k-fitem.k-w65 {
    width: 65% !important;
  }
  .k-flex.fix > .k-fitem.k-w70 {
    width: 70% !important;
  }
  .k-flex.fix > .k-fitem.k-w75 {
    width: 75% !important;
  }
  .k-flex.fix > .k-fitem.k-w80 {
    width: 80% !important;
  }
  .k-flex.fix > .k-fitem.k-w85 {
    width: 85% !important;
  }
  .k-flex.fix > .k-fitem.k-w90 {
    width: 90% !important;
  }
  .k-flex.fix > .k-fitem.k-w95 {
    width: 95% !important;
  }
  .k-flex.fix > .k-fitem.k-w100 {
    width: 100% !important;
  }
  .k-flex.fix > .k-fitem.order1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .k-flex.fix > .k-fitem.order2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .k-flex.fix > .k-fitem.order3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .k-flex.fix > .k-fitem.order4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
}
/* ビフォーアフター1
================================================== */
.k-beforeAfter1 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.k-beforeAfter1 {
  position: relative;
}
.k-beforeAfter1 .before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
}
.k-beforeAfter1 .after {
  padding: 10px 10px 30px 30px;
}
.k-beforeAfter1 .before .inner img {
  height: 100px;
}
.k-beforeAfter1 .inner {
  position: relative;
  background-color: #fff;
}
.k-beforeAfter1 .inner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 5px #fff;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
}
.k-beforeAfter1 .inner p {
  position: absolute;
  font-weight: 100;
  top: 10px;
  right: 10px;
  letter-spacing: 0.5px;
  background: rgba(0, 107, 32, 0.8);
  border-radius: 5px;
  padding: 1px 8px 0px;
  text-align: right;
  z-index: 3;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.k-beforeAfter1 .inner a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.k-beforeAfter1 .inner a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .k-beforeAfter1 .before {
    width: 50%;
  }
}
.pola img {
  width: 100%;
  border: solid 5px #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.pola p {
  text-align: center;
  margin: 5px 0 10px;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #555;
}
.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: rgb(124.9198113208, 96.7688679245, 61.5801886792);
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.8em;
  left: 0;
}

.ja {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 4s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-slideup 4s cubic-bezier(0.2, 1, 0.2, 1);
}

.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #ffb400;
  background-image: -webkit-gradient(linear, left top, right top, from(#005BAC), to(#66BFFF));
  background-image: linear-gradient(to right, #005BAC, #66BFFF);
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
  animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #bea173;
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  51% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.bgappearTrigger, .bgUDextendTrigger, .bgDUextendTrigger, .bgRLextendTrigger, .bgLRextendTrigger {
  opacity: 0;
}

.img-100 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.img-100 img {
  width: 50%;
}

.category_tab2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.category_tab2 li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  letter-spacing: 0.15em;
  font-size: 1.8rem;
  border: 1px solid #50b0e2;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0);
  color: #50b0e2;
  padding: 20px 15px;
  margin-right: 1%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category_tab2 li i {
  font-size: 130%;
  margin-right: 10px;
}
.category_tab2 li:last-child {
  margin-right: 0;
}
.category_tab2 li:hover {
  background: #00b050;
  color: #fff;
}
.category_tab2 li.active {
  background: #50b0e2;
  color: #fff;
}
.category_tab2 li.active::after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid rgba(0, 0, 0, 0);
  border-left: 7px solid rgba(0, 0, 0, 0);
  border-top: 10px solid #50b0e2;
  border-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category_tab2 li:nth-child(even) {
  color: #ffc000;
  border: 1px solid #ffc000;
}
.category_tab2 li:nth-child(even):hover {
  background: #ffc000;
  color: #fff;
}
.category_tab2 li:nth-child(even).active {
  background: #ffc000;
  color: #fff;
}
.category_tab2 li:nth-child(even).active::after {
  border-top: 10px solid #ffc000;
}

@media all and (max-width: 896px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
  .category_tab2 li {
    padding: 15px 10px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
  .category_tab2 li i {
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }
}
@media all and (max-width: 639px) {
  .category_tab2 li {
    padding: 10px 5px;
  }
  .category_tab2 li i {
    margin-bottom: 2px;
  }
}
.tbl-border {
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 700 !important;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  color: rgb(0, 56, 16.7476635514);
  text-align: left;
  border-bottom: 1px solid #006b20 !important;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th, .tbl_new tr td {
  vertical-align: middle;
  padding: 15px;
  font-weight: 500 !important;
  line-height: 1.5;
}
.tbl_new tr th {
  padding-left: 25px;
  width: 18%;
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: rgba(237, 244, 247, 0.9);
}
.tbl_new.type1 tr:nth-child(odd) th, .tbl_new.type1 tr:nth-child(odd) td {
  background: rgba(237, 244, 247, 0.9);
}

@media all and (max-width: 639px) {
  .tbl_new tr th, .tbl_new tr td {
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    padding-left: 15px;
    width: 28%;
  }
}
.tbl-border {
  width: 100%;
}
.tbl-border.type1 {
  border-top: 1px solid #ddd;
}
.tbl-border th, .tbl-border td {
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  font-weight: 500;
  text-align: left;
}
.tbl-border th span, .tbl-border td span {
  font-size: 85%;
}

@media all and (max-width: 639px) {
  .tbl-border th, .tbl-border td {
    padding: 10px;
  }
}
/* bg-contact
----------------------------------*/
.bg-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg-contact:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/bg_contact.webp) no-repeat 77% 50%/cover;
  background-attachment: fixed;
  z-index: -2;
}
@media all and (max-width: 800px) {
  .bg-contact:before {
    background-attachment: scroll;
  }
}
.bg-contact:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.mask {
  position: relative;
  clip-path: circle(1%);
  -webkit-transition: 0.6s ease-in all;
  transition: 0.6s ease-in all;
}
.mask.on {
  clip-path: circle(120%);
}

.icon {
  width: 200px;
  text-align: center;
  margin: 0 auto 5px;
}
.icon.type1 {
  -webkit-animation: bounce-anm 2s ease infinite;
          animation: bounce-anm 2s ease infinite;
}
@media all and (max-width: 800px) {
  .icon {
    width: 150px;
  }
}

.map-big {
  width: 60%;
  margin: 0 auto;
  height: 350px;
  position: relative;
  z-index: 3;
}
.map-big iframe {
  border-radius: 16px;
}
@media all and (max-width: 639px) {
  .map-big iframe {
    border-radius: 0;
  }
}
@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 20px;
  padding-top: 40px;
}
#l-footer .inner {
  margin: 0 auto 40px;
  height: 350px;
  position: relative;
  max-width: 90%;
  z-index: 3;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#l-footer .inner p {
  max-width: 95%;
  margin: 0 auto;
}
@media all and (max-width: 800px) {
  #l-footer .inner {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    height: 180px;
    border-radius: 10px;
    max-width: 95%;
  }
}

.address {
  text-align: center;
}

.map-big {
  height: 350px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  max-width: 900px;
  padding: 15px 0 30px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.footer_navi ul li a {
  color: #fefefe;
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #ffffff;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.65em;
  left: 0;
}
.footer_navi ul li a:hover {
  color: #006b20;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  width: 260px;
  text-align: center;
  margin: 0 auto;
  min-height: 0;
}
.flogo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media all and (max-width: 639px) {
  .flogo {
    margin: 0 auto;
    width: 60%;
  }
}

.address {
  text-align: center;
  font-size: 1em;
  padding: 20px 0;
  color: #fefefe;
}
.address .big {
  font-size: 1.6em;
}
@media all and (max-width: 639px) {
  .address .big {
    font-size: 1.2em;
  }
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  background: #073013;
  color: #fefefe;
}
@media all and (max-width: 1200px) {
  .copyright {
    font-size: 12px;
    padding: 10px 0 75px;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.column2.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 56%;
}
.column2 .child2 {
  width: 55%;
}
.column2 .child3 {
  width: 42%;
}
.column2 .child4 {
  width: 44%;
}
.column2 .child5 {
  width: 34%;
}
.column2 .child6 {
  width: 60%;
}
@media all and (max-width: 800px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5,
  .column2 .child6 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img,
  .column2 .child6.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20,
  .column2 .child6.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child2.bm10,
  .column2 .child3.bm10,
  .column2 .child4.bm10,
  .column2 .child5.bm10,
  .column2 .child6.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child2.column2-img2,
  .column2 .child3.column2-img2,
  .column2 .child4.column2-img2,
  .column2 .child5.column2-img2,
  .column2 .child6.column2-img2 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.small-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.type1 {
  max-width: 600px;
}

.title-ja {
  position: relative;
  text-align: center;
  color: #5c4332;
  margin-bottom: 30px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.2rem;
}
@media all and (max-width: 800px) {
  .title-ja {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .title-ja {
    font-size: 2rem;
  }
}
.title-ja {
  line-height: 1.4;
}
.title-ja.white {
  color: #fff;
}

.point-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.point-list > li {
  display: block;
  background: #ffffff;
  -webkit-filter: drop-shadow(0 0 10px rgba(92, 67, 50, 0.1));
          filter: drop-shadow(0 0 10px rgba(92, 67, 50, 0.1));
  padding: 25px;
  color: #5c4332;
}
.point-list > li .point-txt h3 {
  position: relative;
  text-align: center;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 800px) {
  .point-list > li .point-txt h3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .point-list > li .point-txt h3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.point-list > li .point-txt h3 {
  letter-spacing: 0.15em;
  color: #5c4332;
  margin: 15px auto 35px;
  line-height: 1.5;
}
.point-list > li .point-txt h3 span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .point-list > li .point-txt h3 span {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .point-list > li .point-txt h3 span {
    font-size: 1rem;
  }
}
.point-list > li .point-txt h3 span {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  color: #006b20;
}
.point-list > li .point-txt h3:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -13px;
  width: 30px;
  height: 3px;
  z-index: 1;
  border-radius: 30px;
  background: rgb(0, 132.5, 39.6261682243);
}
.point-list > li > img {
  display: block;
  margin: 0 auto;
  max-width: 90px;
  width: 65%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.point-list .category-icon {
  margin-top: 15px;
}
.point-list .category-icon i {
  font-size: 50px;
  color: #006b20;
}
@media all and (max-width: 1100px) {
  .point-list {
    gap: 10px;
  }
  .point-list > li {
    padding: 20px;
  }
  .point-list > li .point-txt h3 {
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 800px) {
  .point-list > li {
    padding: 15px;
  }
  .point-list > li .point-txt h3 {
    margin: 15px auto 30px;
  }
  .point-list > li .point-txt h3:after {
    bottom: -10px;
    width: 20px;
    height: 2px;
  }
  .point-list > li > img {
    max-width: 70px;
  }
}
@media all and (max-width: 639px) {
  .point-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.reason {
  display: grid;
  gap: 2em 2em;
}
.reason > * {
  min-width: 0;
}
.reason.plus > li:before {
  content: "+";
  position: absolute;
  z-index: 2;
  line-height: 1;
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: -1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 1px solid #006b20;
  color: #006b20;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  border-radius: 100%;
  font-size: 200%;
}
@media all and (max-width: 639px) {
  .reason.plus > li:before {
    top: auto;
    bottom: -1.3em;
    right: 0;
    left: 0;
  }
}
.reason.plus > li:last-child:before {
  display: none;
}
.reason.arrow > li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  z-index: 2;
  line-height: 1;
  top: 50%;
  bottom: 50%;
  margin: auto;
  right: -1.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #006b20;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  border-radius: 100%;
  font-size: 200%;
}
@media all and (max-width: 639px) {
  .reason.arrow > li:before {
    content: "\f078";
    top: auto;
    bottom: -1.6em;
    right: 0;
    left: 0;
  }
}
.reason.arrow > li:last-child:before {
  display: none;
}
.reason .category-icon-large {
  font-size: 55px;
  color: #ff4500;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.reason li:hover .category-icon-large {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.reason > li,
.reason > .child {
  position: relative;
}
.reason.set1 {
  grid-template-columns: repeat(1, 1fr);
}
.reason.set2 {
  grid-template-columns: repeat(2, 1fr);
}
.reason.set3 {
  grid-template-columns: repeat(3, 1fr);
}
.reason.set4 {
  grid-template-columns: repeat(4, 1fr);
}
.reason.set5 {
  grid-template-columns: repeat(5, 1fr);
}
.reason.set6 {
  grid-template-columns: repeat(6, 1fr);
}
.reason.set7 {
  grid-template-columns: repeat(7, 1fr);
}
.reason.set8 {
  grid-template-columns: repeat(8, 1fr);
}
.reason.p_center {
  place-items: center;
}
.reason.reversal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.reason.center {
  grid-template-columns: repeat(auto-fit, 46%);
  row-gap: 24px;
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 800px) {
  .reason.tablet1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .reason.tablet2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .reason.tablet3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .reason.tablet1 > li, .reason.tablet1 .child, .reason.tablet2 > li, .reason.tablet2 .child, .reason.tablet3 > li, .reason.tablet3 .child {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 639px) {
  .reason {
    grid-template-columns: repeat(1, 1fr);
  }
  .reason.sp1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .reason.sp2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .reason.sp3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .reason.sp1 > li, .reason.sp1 .child, .reason.sp2 > li, .reason.sp2 .child, .reason.sp3 > li, .reason.sp3 .child {
    margin-bottom: 0px;
  }
}

.content-box + .content-box {
  margin-top: 40px;
}

.content-box {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.content-box:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-box.type1:before {
  left: auto;
  right: 0;
}
.content-box.type1 .child-txt {
  margin-left: auto;
}
.content-box.type1 .photo:before {
  right: auto;
  left: 0;
}
.content-box .content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-box .content-flex .child-txt {
  position: relative;
  width: 50%;
  padding: 60px;
}
.content-box .content-flex .child-txt .num {
  position: absolute;
  color: #f1fff6;
  font-size: 10rem;
  top: 30px;
  left: 30px;
  line-height: 1;
}
.content-box .content-flex .child-txt .content-title {
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  color: #5c4332;
  line-height: 1.6;
}
.content-box .content-flex .child-txt .content-title i {
  color: #006b20;
}
.content-box .content-flex .child-txt .content-title .small {
  display: block;
  font-size: 2rem;
  margin-top: 5px;
}
.content-box .content-flex .child-txt .txt {
  margin: 30px auto;
}
.content-box .content-flex .child-txt .txt p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .txt2 {
  margin: 30px auto 0;
}
.content-box .content-flex .child-txt .txt2 p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .content-btn a {
  position: relative;
  overflow: hidden;
  color: #5c4332;
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 800px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.content-box .content-flex .child-txt .content-btn a {
  padding: 10px;
  border: 1px solid #006b20;
  display: block;
  text-align: center;
  max-width: 220px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.content-box .content-flex .child-txt .content-btn a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #006b20;
  top: 0;
  left: 10px;
}
.content-box .content-flex .child-txt .content-btn a:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #006b20;
  top: 0;
  right: 10px;
}
.content-box .content-flex .child-txt .content-btn a:hover {
  color: #fff;
  border: 1px solid #006b20;
  -webkit-box-shadow: #8e6e46 0 80px 0px 2px inset;
  box-shadow: #8e6e46 0 80px 0px 2px inset;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.content-box .content-flex .child-txt .content-btn a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: -1px;
}
.content-box .content-flex .child-txt .content-btn a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -1px;
}
.content-box .content-flex .child-img .photo {
  height: 100%;
}
.content-box .content-flex .child-img .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-box .content-flex .child-img .photo:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0%;
  top: 0;
  right: 0;
}
.content-box .content-flex .child-img .photo.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/business01.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type2:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/business02.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type3:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/business03.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type4:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27767/business04.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type5:before {
  background: url(../img/photo05.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type6:before {
  background: url(../img/photo06.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type7:before {
  background: url(../img/photo07.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 800px) {
  .content-box {
    width: calc(100% - 40px);
  }
  .content-box .content-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-box .content-flex .child-txt {
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 8rem;
    top: 15px;
    left: 15px;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.8rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 25px auto;
  }
  .content-box .content-flex .child-txt .txt p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 25px auto 0;
  }
  .content-box .content-flex .child-txt .txt2 p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .content-box .content-flex .child-img .photo {
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
  }
  .content-box .content-flex .child-img .photo.type1:before, .content-box .content-flex .child-img .photo.type2:before, .content-box .content-flex .child-img .photo.type3:before, .content-box .content-flex .child-img .photo.type4:before, .content-box .content-flex .child-img .photo.type5:before, .content-box .content-flex .child-img .photo.type6:before, .content-box .content-flex .child-img .photo.type7:before {
    width: 100%;
    background-size: cover;
  }
}
@media all and (max-width: 800px) {
  .content-box {
    width: calc(100% - 20px);
  }
  .content-box .content-flex .child-txt {
    padding: 20px;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 6rem;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.4rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.3rem;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 20px auto;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 20px auto 0;
  }
}

.u-timeline3 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.u-timeline3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.4;
}
.u-timeline3.type1 > dt {
  width: 5em;
}
.u-timeline3.sbc > dt > b {
  color: #8e6e46;
}
.u-timeline3.sbc > dd {
  border-left: solid 2px #006b20;
}
.u-timeline3.sbc > dd > .inner {
  border-left: solid 8px #8e6e46;
}
.u-timeline3.sbc > dd > .inner > .container > .title {
  border-bottom: solid 1px #8e6e46;
}
.u-timeline3.sbc > dd > .inner::before {
  border-color: transparent #8e6e46 transparent transparent;
}
.u-timeline3.sbc > dd > .inner::after {
  background-color: #8e6e46;
}
.u-timeline3 > dt {
  width: 8em;
  padding-top: 3.5em;
}
.u-timeline3 > dt > b {
  position: relative;
  display: block;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  text-transform: inherit;
  color: #999;
  text-align: right;
  padding-right: 0.5em;
}
.u-timeline3 > dd {
  width: calc(100% - 8em - 20px);
  padding: 2em 0 2em 20px;
  border-left: solid 2px #006b20;
}
.u-timeline3 > dd > .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  margin-left: 1em;
  border-left: solid 8px #006b20;
  -webkit-box-shadow: 2px 2px 15px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 15px -5px rgba(0, 0, 0, 0.1);
}
.u-timeline3 > dd > .inner > .image {
  width: 25%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.u-timeline3 > dd > .inner > .image img {
  width: 100%;
}
.u-timeline3 > dd > .inner > .container {
  width: 75%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 10px;
  color: #333;
}
.u-timeline3 > dd > .inner > .container > .title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  border-bottom: solid 1px #006b20;
  padding-bottom: 5px;
}
.u-timeline3 > dd > .inner::before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: -30px;
  display: inline-block;
  border-style: solid;
  border-width: 15px;
  border-color: transparent #006b20 transparent transparent;
}
.u-timeline3 > dd > .inner::after {
  position: absolute;
  top: 2.7em;
  left: -53px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #006b20;
  border-radius: 50%;
}
@media screen and (max-width: 896px) {
  .u-timeline3 > dt {
    border-left: solid 2px #006b20;
    margin-left: 1em;
    padding-top: 0;
    padding-left: 2.5em;
  }
  .u-timeline3 > dd {
    width: calc(100% - 1em);
    margin-left: 1em;
    padding-top: 0.5em;
  }
  .u-timeline3 > dd > .inner > .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .u-timeline3 > dd > .inner > .container {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .u-timeline3 > dd > .inner > .container > .title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }
  .u-timeline3 > dd > .inner::after {
    top: 2.8em;
    left: -49px;
  }
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #ff4500 !important;
}