@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #111;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: #217637;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper.contents {
  overflow: initial;
}

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

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 500;
}

.mincho {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.eng {
  font-family: "Red Hat Display", sans-serif;
}

.bigger {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.en-big {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

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

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

/* splash
----------------------------------*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #278a40;
  z-index: 9999999;
  text-align: center;
  color: #333;
}
#splash::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/moyou.jpg) repeat 50%/contain;
  opacity: 0.15;
  z-index: -2;
  filter: invert(1);
}
#splash::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fefefe;
  border: 6px solid #278a40;
  z-index: -1;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash-logo img {
  width: 200px;
}
@media all and (max-width: 896px) {
  #splash-logo img {
    width: 130px;
  }
}
@media all and (max-width: 639px) {
  #splash-logo img {
    width: 100px;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background: #fefefe;
}
body.appear {
  background: #fefefe;
}

body .splashbg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #f9f9f9;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes backBoxAnime {
  99.9% {
    z-index: 2;
    border-width: 0px;
  }
  100% {
    z-index: -1;
    border-width: 0px;
  }
}
#wrapper2 {
  position: relative;
}

body.appear #wrapper2 {
  animation-name: PageAnimeAppear;
  animation-duration: 0.8s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #9dc01d, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
#l-header.is-fixed {
  top: 0;
  position: fixed;
  background: #fefefe;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}
#l-header.is-fixed .inner #logo {
  width: 140px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .inner {
    padding: 0;
  }
  #l-header.is-fixed .inner #logo {
    display: none;
  }
}
#l-header.is-fixed #header_nav ul li a {
  color: #1d2129;
}
#l-header.is-fixed #header_nav ul li a:hover, #l-header.is-fixed #header_nav ul li a.active {
  color: #9dc01d;
}
#l-header.is-fixed #header_nav .dropdown .dropdown-li a {
  color: #fefefe;
}
#l-header.is-fixed #header_nav .dropdown .dropdown-li a::after {
  display: none;
}
#l-header.is-fixed .head-right {
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .head-right {
    display: none;
  }
}
#l-header.is-fixed .head-right .h-content .contact-mail {
  text-align: center;
  margin-right: 5px;
}
#l-header.is-fixed .head-right .h-content .contact-mail a {
  font-size: 1.5rem;
  padding: 8px 14px;
  font-weight: 600;
}
#l-header.is-fixed .head-right .h-content .contact-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
#l-header.is-fixed .head-right .h-content .contact-tel {
  text-align: center;
  margin-left: 5px;
}
#l-header.is-fixed .head-right .h-content .contact-tel a {
  color: #278a40;
  font-size: 2.1rem;
  padding: 8px 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#l-header.is-fixed .head-right .h-content .contact-tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
#l-header.is-fixed .head-right .h-content .time {
  color: #1d2129;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  margin-right: 60px;
  align-items: center;
  min-width: 1000px;
  margin: 0 auto;
  padding: 5px 20px 10px;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  width: 140px;
}
#l-header .inner #logo .logo1 {
  display: block;
}
#l-header .inner #logo .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 0;
  padding-top: 12px;
  border-radius: 0 0 0 5px;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right .h-content {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
}
#l-header .head-right .h-content .contact-mail {
  text-align: center;
  margin-right: 5px;
}
#l-header .head-right .h-content .contact-mail a {
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px 14px;
  font-weight: 600;
}
#l-header .head-right .h-content .contact-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
#l-header .head-right .h-content .contact-tel {
  text-align: center;
  margin-left: 5px;
}
#l-header .head-right .h-content .contact-tel a {
  color: #fff;
  font-size: 2.1rem;
  padding: 8px 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#l-header .head-right .h-content .contact-tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
#l-header .head-right .h-content .number {
  padding: 0 10px;
}
#l-header .head-right .h-content .number a {
  font-size: 2.5rem;
  color: #fefefe;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
#l-header .head-right .h-content .time {
  color: #fefefe;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 10px;
}

#header_nav {
  position: relative;
  margin-top: 7px;
  width: 820px;
}
#header_nav ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
#header_nav ul li a {
  letter-spacing: 0.09rem;
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 0 15px 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
#header_nav ul li a span {
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #278a40;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #9dc01d;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #111;
  text-align: center;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 10px 8px;
  color: #fefefe;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li:hover {
  background: #278a40;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}
@media all and (max-width: 1100px) {
  #header_nav {
    width: 770px;
  }
  #header_nav ul li a {
    font-size: 1.3rem;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #278a40;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fefefe;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 75px;
  }
}

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

.swiper-slide {
  position: relative;
  background: #000;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}
.swiper-slide.slide1:before {
  background-image: url(../img/001.jpg);
}
.swiper-slide.slide2:before {
  background-image: url(../img/002.jpg);
}

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: brightness(0.9);
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 75vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 100vw;
  }
}

/* slideshow
----------------------------------*/
#slide-bg {
  position: relative;
}
@media all and (max-width: 1100px) {
  #slide-bg {
    width: 100%;
    padding: 0;
  }
}

#slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0 auto;
    width: 100%;
  }
}
#slideshow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: url(../img/wave.webp) repeat-x bottom left/contain;
  left: 0;
  bottom: -1px;
  z-index: 1;
}

#catch {
  z-index: 150;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  width: 700px;
  transform: translate(-50%, -50%);
}
#catch.on {
  opacity: 1;
  transition: 2s;
}
@media all and (max-width: 896px) {
  #catch {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 75%;
    top: 50%;
  }
}

.fv_stand {
  z-index: 150;
  position: absolute;
  left: 50%;
  top: 80%;
  opacity: 1;
  transform: translate(-50%, -50%);
  color: #fefefe;
  width: 100%;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
.fv_stand p {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .fv_stand p {
    font-size: 1.1rem;
  }
}
.fv_stand h3 {
  font-size: 2.5rem;
}
@media all and (max-width: 639px) {
  .fv_stand h3 {
    font-size: 1.8rem;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0px;
  color: #fefefe;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 200px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #fefefe;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(254, 254, 254, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
}
#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/load2.jpg);
  opacity: 0.9;
  filter: brightness(0.95);
}
#l-footer .inner {
  margin: 0 auto 0px;
  max-width: 1200px;
  position: relative;
  z-index: 3;
  padding: 40px 0;
}
#l-footer .inner .contact-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#l-footer .inner .contact-area > li {
  width: 40%;
}
@media all and (max-width: 1100px) {
  #l-footer .inner .contact-area > li {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .contact-area > li {
    width: 100%;
    padding: 0 20px;
  }
}
#l-footer .inner .contact-area > li:nth-child(1) {
  padding: 0 50px 0 80px;
  width: 55%;
}
@media all and (max-width: 1100px) {
  #l-footer .inner .contact-area > li:nth-child(1) {
    padding: 0 30px 0 50px;
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .contact-area > li:nth-child(1) {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    background-size: contain;
    overflow: hidden;
    width: 100%;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.contact_bnr.full {
  margin: 20px auto 0;
  width: 80%;
}
@media all and (max-width: 896px) {
  .contact_bnr.full {
    width: 100%;
  }
}
.contact_bnr.full > li {
  width: 100%;
}
.contact_bnr > li {
  width: 48%;
  margin: 0 auto 10px;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 100%;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
  }
}
.contact_bnr > li .bnr_tel.type1 {
  font-weight: 600;
  font-size: 2.8rem;
  border: 1px solid #278a40;
}
.contact_bnr > li .bnr_tel.type1::before {
  font-size: 2.8rem;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel.type1 {
    font-size: 2.1rem;
  }
}
.contact_bnr > li .bnr_sns {
  white-space: nowrap;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_sns i {
  font-size: 2.5rem;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #278a40;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 8px 10px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  color: #fefefe;
  background-color: #a1d70e;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr.white li {
  width: 48%;
}
@media all and (max-width: 639px) {
  .contact_bnr.white li {
    width: 100%;
  }
}
.contact_bnr.white li a,
.contact_bnr.white li span {
  border: 1px solid #fefefe;
  color: #fefefe;
}
.contact_bnr.white li a:hover,
.contact_bnr.white li span:hover {
  color: #278a40;
  background: #fefefe;
}
.contact_bnr.type1 a {
  color: #278a40;
  font-weight: 600;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  margin: 30px auto 0;
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_navi ul li {
  margin-bottom: 8px;
}
.footer_navi ul li a {
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  padding: 0 10px;
  font-weight: 600;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #1d2129;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer_navi ul li a:hover {
  color: #9dc01d;
}
.footer_navi ul li:first-child a::before {
  display: none;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.address {
  font-size: 14px;
  color: #fff;
}

.flogo {
  width: 150px;
  margin: 0 auto 15px;
}
.flogo img {
  width: 100%;
}
@media all and (max-width: 639px) {
  .flogo {
    width: 120px;
  }
}

.copyright {
  font-size: 1rem;
  z-index: 2;
  color: #fff;
  position: relative;
  font-weight: 600;
  padding: 20px 0;
  text-align: center;
  background-color: #278a40;
}
@media all and (max-width: 639px) {
  .copyright {
    padding-bottom: 75px;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
.single.margin-top2 {
  margin-top: -200px;
}
@media all and (max-width: 1100px) {
  .single {
    width: 85%;
  }
  .single.margin-top2 {
    margin-top: -150px;
  }
}
@media all and (max-width: 639px) {
  .single.margin-top2 {
    margin-top: -100px;
  }
}

.single01 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 80px;
}
@media all and (max-width: 1100px) {
  .single01 {
    width: 95%;
    padding: 0 0 60px;
  }
}
.single01.type1 {
  padding: 80px 0 0;
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

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

.margin-top2 {
  margin-top: -150px;
}
@media all and (max-width: 896px) {
  .margin-top2 {
    margin-top: -80px;
  }
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  border-radius: 20px;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}
.mbox.bd {
  position: relative;
  padding: 30px;
  border: 1px solid #278a40;
}
@media all and (max-width: 639px) {
  .mbox.bd {
    padding: 15px;
  }
}
.mbox.bd2 {
  position: relative;
  padding: 30px;
  border: 6px double #278a40;
}
@media all and (max-width: 639px) {
  .mbox.bd2 {
    padding: 10px;
  }
}
.mbox.sd {
  box-shadow: 0.5rem 0.5rem 10px rgba(51, 51, 51, 0.1), -0.5rem -0.5rem 8px rgba(218, 218, 218, 0.1);
}

.small-box {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.min {
  max-width: 450px;
}

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

.sentence2 {
  line-height: 2;
}
.sentence2 p + p {
  margin-top: 20px;
}

.tcen {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}

.trig {
  text-align: right;
}
@media all and (max-width: 896px) {
  .trig {
    text-align: left;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
    border-bottom: 1px solid #555;*/
  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;
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
#main .mbox a {
  font-weight: 600;
  text-decoration: underline;
}
#main .mbox a:hover {
  text-decoration: none;
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

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

.s-contena {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: calc(100% - 150px);
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .s-contena {
    max-width: 95%;
    padding: 40px 0;
  }
}

.s-main {
  width: 78%;
}
@media all and (max-width: 1100px) {
  .s-main {
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .s-main {
    width: 100%;
  }
}

.s-side {
  width: 18%;
  height: 100vh;
  position: sticky;
  right: 0;
  top: 100px;
}
@media all and (max-width: 1100px) {
  .s-side {
    width: 20%;
  }
}
@media all and (max-width: 896px) {
  .s-side {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: 50px;
  }
}

/* title
----------------------------------*/
.title01 {
  margin: 30px 0;
  position: relative;
  z-index: 3;
  text-align: center;
}
.title01 .eng {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.5vw;
  color: #efadc0;
  display: inline-block;
  background: #efadc0;
  background-image: linear-gradient(135deg, #835315 0%, #ffce08 37%, #918417 47%, #a08924 50%, #a08633 53%, #e1ce08 63%, #85591f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title01 .ja {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: #1d2129;
  font-weight: 600;
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle .eng {
  font-size: 4rem;
  color: transparent;
  position: relative;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-weight: 700;
  background-image: linear-gradient(90deg, #278a40 0%, #9dc01d 100%);
  -webkit-background-clip: text;
  letter-spacing: 0;
}
.mtitle .ja {
  font-size: 1.8rem;
  color: #333;
  position: relative;
}
.mtitle .ja:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  background: #9dc01d;
  border-radius: 7px;
}
.mtitle .ja:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  background: #9dc01d;
  border-radius: 7px;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-right: 0;
  margin-left: 0;
}
.mtitle.mtitle_right span:after {
  left: 0;
  transform: none;
}
.mtitle.type1 .eng {
  font-size: 2.5rem;
  color: #9dc01d;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.2rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle1 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #9dc01d;
  margin-bottom: 40px;
}
.mtitle1 .eng {
  font-size: 20rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-weight: 300;
  background: #fefefe;
  padding-right: 20px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng {
    font-size: 15rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng {
    font-size: 5rem;
  }
}
.mtitle1 .ja {
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  position: absolute;
  top: 100%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .mtitle1 .ja {
    font-size: 1rem;
    top: 75%;
  }
}
.mtitle1 .eng2 {
  font-size: 11rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-weight: 500;
  background: #fefefe;
  padding-right: 20px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng2 {
    font-size: 10rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng2 {
    font-size: 4rem;
    letter-spacing: 0;
  }
}
.mtitle1 .ja2 {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  position: absolute;
  top: 65%;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .mtitle1 .ja2 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .ja2 {
    font-size: 11px;
    top: 95%;
    right: 0.5rem;
    text-align: right;
  }
}
.mtitle1::after {
  content: "";
  background-color: #9dc01d;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media all and (max-width: 639px) {
  .mtitle1::after {
    height: 3px;
  }
}
.mtitle1.type1 {
  text-align: right;
}
.mtitle1.type1 .eng,
.mtitle1.type1 .eng2 {
  padding-right: 0;
  padding-left: 20px;
}
.mtitle1.type1 .ja,
.mtitle1.type1 .ja2 {
  right: auto;
  left: 0.5rem;
}
.mtitle1.sub .eng,
.mtitle1.sub .eng2 {
  background: #9fa69f;
  color: #fefefe;
}
.mtitle1.sub .ja,
.mtitle1.sub .ja2 {
  color: #fefefe;
}
.mtitle1.sub::after {
  background-color: #fefefe;
}

.mtitle2 {
  position: relative;
  margin-bottom: 45px;
}
.mtitle2:after {
  position: absolute;
  left: 0%;
  bottom: -20px;
  content: "●●●";
  letter-spacing: 0.8em;
  font-size: 10px;
  color: #9dc01d;
}
.mtitle2.type1 {
  margin-top: -40px;
  margin-bottom: 25px;
  position: relative;
  z-index: 4;
}
.mtitle2 .eng {
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  text-transform: inherit;
  font-size: 2rem;
  color: #9dc01d;
  font-weight: 600;
  padding: 0 5px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  display: inline-block;
}
.mtitle2 .ja {
  position: relative;
  font-size: 2.6rem;
  color: #111;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  display: block;
}
.mtitle2 .sub {
  color: #278a40;
  font-size: 1.4rem;
  font-weight: 600;
}
.mtitle2.sbc .eng {
  background: #9dc01d;
}
@media all and (max-width: 639px) {
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .ja {
    font-size: 1.8rem;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #278a40;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mtitle3 .eng {
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #278a40;
  padding-left: 3px;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    left: 0px;
    top: 0px;
    min-height: 50px;
    margin-bottom: 20px;
    writing-mode: inherit;
    position: relative;
  }
  .mtitle3 .ja {
    border-right: none;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 500;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  color: #1d2129;
  letter-spacing: 0.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #1d2129;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #1d2129, #1d2129 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #1d2129;
  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: 2px;
  height: 2rem;
  background-color: #278a40;
}
.mtitle4 span:before {
  left: -13px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -13px;
  transform: rotate(20deg);
}
.mtitle4.white {
  color: #fff;
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}
.mtitle4.min {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.mtitle4.min span:before, .mtitle4.min span:after {
  width: 2px;
  height: 3rem;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 7px solid #278a40;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #32b252;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -7px;
  bottom: 0;
  content: "";
  width: 7px;
  height: 50%;
  background-color: #9dc01d;
}

.mtitle_box {
  background: #217637;
  color: #fefefe;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-weight: 500;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #9dc01d;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  box-shadow: 0 8px 8px rgba(39, 138, 64, 0.2);
  padding: 20px 40px 20px 40px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px;
  }
  .mtitle_box2 span {
    font-size: 2rem;
  }
}

.mtext1 {
  font-size: 2.1rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.mtext2 span {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 2px solid #1d2129;
  border-top: 2px solid #1d2129;
  color: #1d2129;
  line-height: 2.2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
  .mtext2 span {
    border-bottom: 1px solid #1d2129;
    border-top: 1px solid #1d2129;
    line-height: 2.4;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 30px;
}
.mtitle_category span {
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  font-size: 0.6875rem;
  margin-top: 8px;
  text-transform: uppercase;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #278a40;
  position: absolute;
  left: 0;
}

/* btn
----------------------------------*/
.btn01 a {
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #278a40;
  background-color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 5px;
}
.btn01 a:hover {
  background: #278a40;
  color: #fefefe;
}
.btn01.tel a {
  background: #fefefe;
}
.btn01.tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.tel a:hover {
  background: #278a40;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #9dc01d;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.sub1 a {
  margin: 15px auto 25px 0;
}
.btn01.sub2 a {
  border: 2px solid #9dc01d;
  color: #9dc01d;
}
.btn01.sub2 a:hover {
  background: #9dc01d;
  color: #fefefe;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02.right {
  margin-right: 0;
}
.btn02.left {
  margin-left: 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #278a40;
  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;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* news
----------------------------------*/
.news-box {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 10;
  display: flex;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0.5rem 0.5rem 10px rgba(215, 194, 175, 0.1), -0.5rem -0.5rem 8px rgba(215, 194, 175, 0.05);
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    padding: 20px 10px;
  }
}

.news-title {
  position: relative;
  margin-right: 20px;
  width: 200px;
  /* text-align: center; */
  margin: 0 auto;
}
.news-title span {
  display: block;
  line-height: 1.4;
}
.news-title .eng {
  position: relative;
  font-size: 3rem;
  color: #9dc01d;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.news-title .ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.5rem;
  position: relative;
  font-weight: 600;
  color: #1d2129;
}
@media all and (max-width: 639px) {
  .news-title {
    margin: 0 0 15px 5px;
    text-align: left;
    border-right: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #9dc01d;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
  }
}

.news-right {
  flex: 1;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 0 auto;
  }
}

.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  padding: 10px 8px 18px;
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: 0.9px solid #ddd;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1;
  color: #278a40;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 12px 8.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #222;
  background-image: linear-gradient(to right, #278a40, #9dc01d);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
  font-size: 1em;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
  .news-bl dd a {
    font-size: inherit;
  }
}

.news-ul li {
  border-bottom: 1px solid rgba(39, 138, 64, 0.5);
}
.news-ul li:last-child {
  border-bottom: none;
}
.news-ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #333;
}
.news-ul li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #278a40;
  border-right: 1px solid #278a40;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.news-ul li a:hover:after {
  right: 10px;
}
@media all and (max-width: 1100px) {
  .news-ul li a {
    padding: 15px 40px 15px 0;
  }
}
.news-ul .day {
  font-size: 15px;
  width: 20%;
  color: #333;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-weight: 400;
}
.news-ul .title {
  width: 75%;
  font-weight: 600;
}
@media all and (max-width: 1100px) {
  .news-ul .day,
  .news-ul .title {
    width: 100%;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #9dc01d;
  padding-right: 30px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #9dc01d;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #9dc01d;
  border-right: 1px solid #9dc01d;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #9dc01d;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #278a40;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #278a40;
  border-right: 1px solid #278a40;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #278a40;
  padding-right: 30px;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../img/slide4.jpg) no-repeat center 20%/cover;
  width: 100%;
  margin: 0 auto;
  background-blend-mode: hard-light;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.page-title .inner {
  margin: 0 auto;
  padding: 250px 0 150px;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}
.page-title .inner .page-lead .ja {
  font-weight: 600;
  font-size: 3.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    font-size: 1.5rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 95%;
    padding: 150px 0 80px;
  }
}

/* bg
---------------------------------*/
.bg-base {
  background: rgba(39, 138, 64, 0.1);
  position: relative;
}
.bg-base.type1 {
  background-image: linear-gradient(to bottom, rgba(204, 204, 204, 0.3), rgba(39, 138, 64, 0.3));
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/009.jpg) no-repeat center bottom/cover;
  background-attachment: fixed;
  opacity: 1;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    background-attachment: scroll;
  }
}
.bg-base.type1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #278a40 url(../img/raster2.png) repeat;
  opacity: 0.3;
  z-index: 1;
}
.bg-base.type2 {
  background: transparent;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #278a40;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.bg-base.type3 {
  background: transparent;
  margin-bottom: 40px;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: -2;
  background-image: linear-gradient(to bottom right, #9dc01d, #a1d70e);
  opacity: 0.15;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .bg-base.type3:before {
    width: 100%;
    height: 100%;
  }
}

.bg-contact {
  background-color: #000;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.bg-contact:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0px 0;
  margin-bottom: 80px;
  background: url(../img/002.jpg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.3);
  transition: 1s all ease;
}
.bg-contact .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #FFF;
  display: flex;
  padding: 20px;
}

.bg-minamo {
  position: relative;
}
.bg-minamo:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/minamo.png) repeat center/cover;
  background-attachment: fixed;
  opacity: 1;
}
.bg-minamo:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #edeeed url(../img/raster2.png) repeat;
  /* opacity: 0.3; */
  z-index: -3;
}
@media all and (max-width: 896px) {
  .bg-minamo:before:before {
    background-attachment: scroll;
  }
}

.bg-beige {
  position: relative;
}
.bg-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #EEEBE5;
  z-index: -5;
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  z-index: -5;
}

.bg-01 {
  position: relative;
  overflow: hidden;
  background: rgba(29, 251, 255, 0.3098039216);
}
.bg-01:before {
  position: absolute;
  content: "";
  top: 0;
  height: 105%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.8) 65%, #000 90%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.8) 65%, #000 90%);
  /* opacity: 0.8; */
  background: url(../img/bg-05.jpg) no-repeat 50%/cover;
  /* -webkit-filter: blur(3px); */
  /* filter: blur(3px); */
  width: 102%;
}
@media all and (max-width: 896px) {
  .bg-01 {
    background-color: #fff;
  }
}

.bg-giza {
  position: relative;
}
.bg-giza:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: url(../img/wave.webp) repeat-x bottom left/contain;
  left: 0;
  bottom: -48px;
  z-index: 10;
  transform: scaleY(-1);
}

.bg-deko {
  position: relative;
  z-index: 1;
}
.bg-deko:before {
  position: absolute;
  content: "";
  width: 260px;
  height: 230px;
  left: 0px;
  bottom: -140px;
  background: url(../img/deko.png) no-repeat 50%/contain;
  z-index: 0;
}
@media all and (max-width: 639px) {
  .bg-deko:before {
    width: 150px;
    height: 150px;
    bottom: -50px;
  }
}

.bg-deko2 {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.bg-deko2:after {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  right: -50px;
  bottom: 0px;
  background: url(../img/deko2.png) no-repeat 50%/contain;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-deko2:after {
    width: 150px;
    height: 150px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #aaa;
  font-size: 1.4rem;
  line-height: 1.5;
}
.tbl th .small,
.tbl td .small {
  font-weight: normal;
}
.tbl th {
  background: rgba(157, 192, 29, 0.2);
  text-align: left;
  width: 31%;
}
.tbl thead th {
  background: #edeeed;
}
.tbl.type1 td {
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 30%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #333;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #333;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}
.tbl-border.type01 th,
.tbl-border.type01 td {
  font-size: 1.4rem;
}
.tbl-border.type01 th {
  width: 35%;
}
@media all and (max-width: 639px) {
  .tbl-border.type01 th {
    width: 30%;
  }
}

.price {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-weight: 600;
  font-size: 2rem;
  color: #278a40;
  text-align: right;
}
.price span {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 2rem;
  }
  .price span {
    font-size: 1.2rem;
  }
}

.p-tbl {
  width: 100%;
}
.p-tbl tr {
  border-bottom: 1px solid #b3b3b3;
}
.p-tbl tr:last-child {
  border-bottom: none;
}
.p-tbl th,
.p-tbl td {
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #b3b3b3;
}
.p-tbl th:last-child,
.p-tbl td:last-child {
  border-right: none;
}
.p-tbl td {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.p-tbl td.txt {
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  font-size: 13px;
  width: 40%;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .p-tbl td.txt {
    font-size: 1rem;
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px;
  vertical-align: middle;
}
.company th {
  width: 30%;
  position: relative;
  background: #278a40;
  color: #fff;
  font-weight: 600;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #278a40;
  margin-top: -10px;
}
@media all and (max-width: 639px) {
  .company th {
    width: 40%;
  }
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
  margin-bottom: 30px;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #555;
  color: #1d2129;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl0 th,
  .tbl0 td {
    font-size: 0.9rem;
  }
}
.tbl0 th {
  font-weight: normal;
  background: none;
  color: #333;
  font-weight: 600;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0 th.nmb {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.tbl0.type1 th,
.tbl0.type1 td {
  font-size: 1.5rem;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .tbl0.type1 th,
  .tbl0.type1 td {
    padding: 3px 5px;
    font-size: 1.2rem;
  }
  .tbl0.type1 th:nth-child(1), .tbl0.type1 th:nth-child(2),
  .tbl0.type1 td:nth-child(1),
  .tbl0.type1 td:nth-child(2) {
    width: 10%;
  }
  .tbl0.type1 th:nth-child(3), .tbl0.type1 th:nth-child(4), .tbl0.type1 th:nth-child(5),
  .tbl0.type1 td:nth-child(3),
  .tbl0.type1 td:nth-child(4),
  .tbl0.type1 td:nth-child(5) {
    width: 20%;
  }
}
.tbl0.type1 th {
  background: rgba(39, 138, 64, 0.1);
}

.f-tbl {
  width: 100%;
}
.f-tbl tr {
  border-bottom: 1px solid #9dc01d;
}
.f-tbl tr:last-child {
  border-bottom: none;
}
.f-tbl th,
.f-tbl td {
  padding: 10px 15px;
  font-size: 1.3rem;
}
@media all and (max-width: 896px) {
  .f-tbl th,
  .f-tbl td {
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.f-tbl th {
  color: #1d2129;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-weight: 600;
}
.f-tbl.ja th {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.footer {
  padding-bottom: 0;
  height: 400px;
}
.ggmap.facebook {
  padding-bottom: 0;
  height: 500px;
}
@media all and (max-width: 639px) {
  .ggmap.facebook {
    height: 400px;
  }
}
.ggmap.facebook iframe,
.ggmap.facebook object,
.ggmap.facebook 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_check li {
  padding: 8px;
  font-weight: 600;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #278a40;
}
.list_check li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}

.list_check2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type1 li {
  width: 48%;
  padding: 0px;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2.type2 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type2 li {
  width: 32%;
  padding: 0px;
  margin-right: 2%;
}
.list_check2.type2 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list_check2.type2 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type2 li:nth-child(3n) {
    margin-right: auto;
  }
}
.list_check2.sbc li:before {
  color: #9dc01d;
}
.list_check2 li {
  padding: 2px;
  margin-bottom: 5px;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  margin-right: 5px;
  color: #9dc01d;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #278a40;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #278a40;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_disc li {
  padding: 5px 0 5px 2rem;
  position: relative;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  top: 0.5rem;
  left: 0;
  color: #278a40;
}
.list_disc.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.list_disc.type1 li {
  width: 48%;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 0;
  padding-left: 1.4em;
}
.list_disc.type1 li b {
  color: #9dc01d;
}
.list_disc.type1 li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: none;
}
.list_disc.type1 li:before {
  color: #9dc01d;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .list_disc.type1 li {
    font-size: 1.2rem;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.list-btn li {
  width: 23.5%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  color: #278a40;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0;
  border: 1px solid #278a40;
}
.list-btn li a:hover {
  background: #278a40;
  color: #fefefe;
}
.list-btn li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 98%;
    margin: 0 auto 10px;
  }
  .list-btn li:nth-child(4n) {
    margin: 0 auto;
  }
}
.list-btn.type1 {
  margin: 0 auto;
}
.list-btn.type1 li {
  width: 48%;
  margin: 0 1.995% 10px 0;
}
.list-btn.type1 li a {
  background: #278a40;
  border: none;
  color: #fefefe;
  border-radius: 5px;
  font-size: 1.2rem;
}
.list-btn.type1 li a:hover {
  background: #13421f;
}
.list-btn.type1 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list-btn.type1 li {
    width: 23%;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin-right: 1.995%;
  }
  .list-btn.type1 li:nth-child(4n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list-btn.type1 li {
    width: 32%;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin-right: 1.995%;
  }
  .list-btn.type1 li:nth-child(3n) {
    margin-right: 0;
  }
}

/* blog
----------------------------------*/
.top-blog .pages {
  display: none;
}

#main .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ddd;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 10px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  .blog-wrap > li:last-child {
    border-bottom: none;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  background: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 5px #ddd;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
  align-items: center;
}
.blog-wrap2 > li:hover {
  box-shadow: 15px 15px 10px #ddd;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto;
  }
}
.blog-wrap2 .blog-detail {
  width: 55%;
  margin-top: -5px;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 60%;
    padding: 15px 10px;
  }
}
.blog-wrap2 .blog-date {
  border: none;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #fefefe;
  background: #278a40;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-weight: 600;
  border-radius: 5px;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1d2129;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-title {
    font-size: 1.6rem;
  }
}
.blog-wrap2 .blog-txt {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-txt {
    font-size: 12px;
  }
}
.blog-wrap2 .blog-img {
  width: 45%;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-img {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 40%;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-img {
    height: 200px;
  }
}

.blog-detail {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .blog-detail {
    margin-top: 0;
    width: 100%;
  }
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #fff;
  border: 1px solid #278a40;
  color: #278a40;
  margin-right: 0.9em;
  font-size: 0.7em;
  border-radius: 50px;
}
@media all and (max-width: 639px) {
  .blog-category {
    margin-right: 0.5em;
  }
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #164e24;
  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: 6px 0;
}
@media all and (max-width: 639px) {
  .blog-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
  }
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
    padding: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding: 0;
  }
}

.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: #9dc01d;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

.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: #edeeed;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #278a40;
}

.color2 {
  color: #9dc01d;
}

.color3 {
  color: #3A6792;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #278a40;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #9dc01d;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px;
}
.telbnr li {
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #278a40;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #278a40;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #edeeed;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #999;
}
.breadcrumb li a {
  color: #278a40;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #9dc01d;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: rgb(167, 167, 167);
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd input {
  margin-top: -0.5rem;
}
@media all and (max-width: 639px) {
  .form dl dd {
    font-size: 1.3rem;
  }
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  background: #f0f0f0;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20% !important;
  margin-right: 1%;
  padding: 10px;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #278a40;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #278a40;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #278a40;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  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: #278a40;
}
.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: 2px;
  top: 4px;
  background-color: #278a40;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  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 #278a40;
  border-bottom: 3px solid #278a40;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

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

.thanks {
  padding: 40px;
  border: 3px solid #9dc01d;
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #1d2129;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
  border-left: 3px solid #9dc01d;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: 600;
}
.mtitle_small2:before {
  content: "";
  background-color: #278a40;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form-contents .textarea03 {
  width: 30% !important;
}

/*photoギャラリー
----------------------------*/
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery li {
  width: 22.5%;
  position: relative;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(237, 238, 237, 0.2);
  display: block;
  text-align: center;
  position: relative;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li .img-area {
  position: relative;
}
.gallery li .img-area::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.8));
}
.gallery li .img-area .name {
  font-size: 1.6rem;
  margin-top: 10px;
  color: #fefefe;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}
.gallery li .comment {
  margin: 10px 5px 15px;
}
.gallery li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 100px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  height: 120px;
  background: #fefefe;
}
.gallery.col3 li a img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.gallery.col3 li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}
.gallery.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col4 li .sns > a {
  width: 100%;
  border-radius: 5px;
  padding: 10px 5px;
  margin-top: 10px;
  text-align: center;
  background: #278a40;
  color: #fefefe;
  height: auto;
}
.gallery.col4 li .sns > a:hover {
  background: #9dc01d;
}
.gallery.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}

.gallery2 {
  -moz-columns: 4;
       columns: 4;
  /*段組みの数*/
  padding: 0 15px;
  /*ギャラリー左右に余白をつける*/
  margin: 0 auto 80px;
  padding: 0;
  list-style: none;
}
.gallery2 li {
  width: 100%;
  margin-right: 1%;
  margin-bottom: 20px;
  /*各画像下に余白をつける*/
}
.gallery2 li:nth-child(4n) {
  margin-right: 0;
}
.gallery2 li a {
  color: #333;
}
.gallery2 li a:hover, .gallery2 li a:active {
  text-decoration: none;
}
.gallery2 li img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media all and (max-width: 1100px) {
  .gallery2 {
    -moz-columns: 3;
         columns: 3;
  }
}
@media all and (max-width: 896px) {
  .gallery2 {
    -moz-columns: 2;
         columns: 2;
  }
}
.gallery2 h1 {
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 30px 0;
}
.gallery2 p {
  margin: 0 10px 10px 10px;
  word-wrap: break-word;
}

/*画像を出現させるアニメーションCSS*/
.flipLeft {
  animation-name: flipLeft;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeft {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(39, 138, 64, 0.3);
}
.list2.type2 > li,
.list2.type2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2.type2 > li:nth-child(2n),
.list2.type2 .child:nth-child(2n) {
  margin-left: 4%;
}
.list2.ai-c {
  align-items: center;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
.list2 > li.od-1,
.list2 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2 > li.od-1,
  .list2 .child.od-1 {
    order: 2;
  }
}
.list2 > li.od-2,
.list2 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li.od-2,
  .list2 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: center;
}
.list3.type1 > li {
  padding: 10px;
  position: relative;
}
.list3.type1 > li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #278a40;
}
.list3.type1 > li:last-child:before {
  display: none;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li {
    width: 48%;
  }
  .list3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:nth-child(2n) {
    margin-right: auto;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list4 > li,
.list4 .child {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li figure,
.list4 .child figure {
  width: 100%;
  height: 200px;
}
.list4 > li figure img,
.list4 .child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list4 > li:nth-child(4n),
.list4 .child:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list4 > li,
  .list4 .child {
    width: 46%;
  }
  .list4 > li:nth-child(2n),
  .list4 .child:nth-child(2n) {
    margin-right: 0;
  }
}

.prv dt {
  color: #278a40;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #278a40;
}
.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #278a40;
  line-height: 1.3;
}
.flow-dl .flow-inner dt .eng {
  font-size: 1.1rem;
  color: #278a40;
  display: block;
}
.flow-dl .flow-inner dt .eng::after {
  content: ".";
}
.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #278a40;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    width: 20%;
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    width: 77%;
  }
}

.flow-dl2 {
  position: relative;
}
.flow-dl2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: #9dc01d;
  background: linear-gradient(to bottom, #9dc01d 80%, transparent 100%);
  height: 100%;
  width: 1px;
}
@media all and (max-width: 639px) {
  .flow-dl2::after {
    left: 35%;
    width: 1px;
  }
}
.flow-dl2 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
  width: 100%;
}
.flow-dl2 dl dt {
  width: 45%;
  position: relative;
}
.flow-dl2 dl dt::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -5px;
  background: #9dc01d;
  border: 2px solid #fefefe;
  height: 10px;
  width: 10px;
  border-radius: 100%;
}
.flow-dl2 dl dt .img-box {
  margin: 0 auto;
  width: 100%;
  height: 300px;
  background: #edeeed;
  border: 1px solid #9dc01d;
}
.flow-dl2 dl dt .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.flow-dl2 dl dt img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .flow-dl2 dl dt {
    width: 30%;
  }
  .flow-dl2 dl dt .img-box {
    height: 120px;
  }
}
.flow-dl2 dl dd {
  width: 45%;
  position: relative;
  padding-top: 25px;
}
.flow-dl2 dl dd::after {
  content: "";
  position: absolute;
  top: 15px;
  left: -25%;
  background: #9dc01d;
  height: 1px;
  width: 30%;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .flow-dl2 dl dd {
    padding-top: 0;
    padding-left: 10px;
    width: 60%;
    letter-spacing: 0;
  }
  .flow-dl2 dl dd::after {
    width: 25%;
  }
  .flow-dl2 dl dd > .contact_bnr li a {
    font-size: 1.3rem;
  }
}
.flow-dl2 dl dt:not(:last-of-type),
.flow-dl2 dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}
.flow-dl2 dl:nth-child(2n) dt {
  order: 2;
}
.flow-dl2 dl:nth-child(2n) dt::after {
  right: auto;
  left: -5px;
}
.flow-dl2 dl:nth-child(2n) dd {
  order: -1;
}
.flow-dl2 dl:nth-child(2n) dd::after {
  left: auto;
  right: -25%;
}
@media all and (max-width: 639px) {
  .flow-dl2 dl:nth-child(2n) dt {
    order: 1;
  }
  .flow-dl2 dl:nth-child(2n) dt::after {
    right: -5px;
    left: auto;
  }
  .flow-dl2 dl:nth-child(2n) dt .img-box {
    height: 120px;
  }
  .flow-dl2 dl:nth-child(2n) dd {
    order: 2;
  }
  .flow-dl2 dl:nth-child(2n) dd::after {
    left: -25%;
    right: auto;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #278a40;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li:hover {
  background: #9dc01d;
  transition: all 0.4s ease;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact {
  display: block;
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 2px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.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.5rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #1d2129;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dt:hover {
  background: rgba(157, 192, 29, 0.7);
}
.faq-dl .faq-inner dd {
  display: none;
  margin-top: 10px;
  padding: 20px 10px 40px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #edeeed;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 896px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list.big li a {
  width: 50px;
  height: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns-list li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #00b900;
}
.sns-list li a.btn-viber {
  background: #706DF6;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

/* slide_list
----------------------------------*/
.slide_list,
.slide_list2 {
  position: relative;
  padding-bottom: 10px;
  display: none;
}
.slide_list li,
.slide_list2 li {
  margin-right: 1%;
  width: 350px;
}
.slide_list li img,
.slide_list2 li img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_list li table,
.slide_list li p,
.slide_list2 li table,
.slide_list2 li p {
  display: none;
}
@media all and (max-width: 639px) {
  .slide_list li,
  .slide_list2 li {
    width: 180px;
  }
  .slide_list li img,
  .slide_list2 li img {
    height: 140px;
  }
}

.bnr-img {
  position: relative;
  height: 400px;
  border: 6px solid #278a40;
}
.bnr-img .b_img {
  position: relative;
  background: #333;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bnr-img .b_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.5;
}
.bnr-img .title {
  position: absolute;
  bottom: 30px;
  left: 15px;
}
.bnr-img .title .eng {
  font-size: 1.5rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  color: #fefefe;
}
.bnr-img .title .ja {
  display: block;
  font-size: 2.5rem;
  background: #278a40;
  color: #fefefe;
  padding: 3px 10px;
  font-weight: 500;
  text-align: center;
}
.bnr-img:hover .b_img img {
  transition: all 0.3s ease;
  transform: scale(1.1);
  opacity: 0.8;
}

.bnr-img2 img:hover {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
  z-index: 20;
}
.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-top: 1px dotted #111;
  border-bottom: 1px dotted #111;
  color: #111;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt:hover {
  background: rgba(39, 138, 64, 0.2);
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
  color: #333;
  border-bottom: 1px dotted #111;
}

.h-img {
  width: 250px;
  height: 300px;
  overflow: hidden;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}
.h-img.h-500 {
  height: 500px;
  width: 250px;
}
@media all and (max-width: 639px) {
  .h-img.h-500 {
    width: 100%;
    height: 200px;
  }
}
.h-img.h-600 {
  height: 600px;
}
@media all and (max-width: 1100px) {
  .h-img.h-600 {
    height: 400px;
  }
}
@media all and (max-width: 896px) {
  .h-img.h-600 {
    height: 330px;
  }
}
@media all and (max-width: 639px) {
  .h-img.h-600 {
    height: 200px;
  }
}
.h-img.rd {
  border-radius: 20px;
}
.h-img.long {
  height: 400px;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .h-img.long {
    width: 100%;
    height: 200px;
  }
}

.bg-fixed {
  position: relative;
  height: 60vh;
  width: 100%;
}
@media all and (max-width: 639px) {
  .bg-fixed {
    height: 50vh;
  }
}
.bg-fixed:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1100px) {
  .bg-fixed:before {
    background-attachment: scroll;
  }
}
.bg-fixed:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #278a40 url(../img/raster2.png) repeat;
  opacity: 0.3;
  z-index: -1;
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  font-size: 90%;
  margin-top: 30px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.4em;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  color: #278a40;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}
.btn_wk2.base a {
  color: #278a40;
  border: 1px solid #278a40;
}
.btn_wk2.base a:before, .btn_wk2.base a:after {
  border: solid #278a40;
}
.btn_wk2.base a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2.base a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2.base a:hover {
  color: #fff;
  background: #278a40;
  border-color: transparent;
}
.btn_wk2.base a:hover:before, .btn_wk2.base a:hover:after {
  border-color: #278a40;
}
.btn_wk2.right a {
  margin-right: 0;
}
.btn_wk2.left a {
  margin-left: 0;
}

.menu-list {
  width: 100%;
  margin: auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#1d2129 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 95%;
  color: #1d2129;
  margin-top: 5px;
  padding: 5px 10px;
}
.menu-list > li .info.capt {
  margin-top: 10px;
  background: #fefefe;
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #1d2129;
  font-size: 1.5rem;
  position: relative;
}
.menu-list > li .left .small {
  display: block;
  font-size: 1.2rem;
}
.menu-list > li .left .small::before {
  content: "[";
  padding-right: 3px;
}
.menu-list > li .left .small::after {
  content: "]";
  padding-left: 3px;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 50%;
    font-size: 1.3rem;
  }
  .menu-list > li .left .small {
    font-size: 1rem;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

.tab_area {
  width: 98%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.tab_area > .content_class {
  padding: 40px 0;
  border-top: 2px solid #278a40;
}
@media all and (max-width: 639px) {
  .tab_area > .content_class {
    padding: 25px 0;
  }
}

.tab_class {
  width: calc(50% - 20px);
  height: 50px;
  background-color: #fefefe;
  border: 2px solid #278a40;
  color: #278a40;
  font-weight: 600;
  border-bottom: none;
  line-height: 50px;
  margin: 0 10px;
  font-size: 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  display: block;
  float: left;
  order: -1;
}

input[name=tab_name] {
  display: none;
}

input:checked + .tab_class {
  background-color: #278a40;
  color: #fefefe;
}

.content_class {
  display: none;
  width: 100%;
}

input:checked + .tab_class + .content_class {
  display: block;
}

/*greet-area
----------------------------------*/
.greet-area {
  align-items: flex-start;
  display: flex;
  margin: 0 auto 0;
  padding: 60px 20px 80px;
  max-width: 1200px;
  flex-wrap: wrap;
}
.greet-area .txt {
  margin-right: auto;
  width: 37%;
}
.greet-area .image {
  width: 22%;
}
.greet-area .image2 {
  margin-top: -145px;
  margin-left: 3%;
  text-align: center;
  width: 35%;
  position: relative;
}
@media all and (max-width: 639px) {
  .greet-area .txt {
    width: 100%;
  }
  .greet-area .image {
    margin-right: auto;
    margin-top: 25px;
    width: 38.4%;
  }
  .greet-area .image2 {
    margin-left: auto;
    width: 60%;
    margin-top: 0;
  }
}

/* fixed-btn
----------------------------------*/
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 50;
  transform: translateY(-30%);
}
.fixed-btn ul li {
  margin-bottom: 10px;
}
.fixed-btn ul li:nth-child(2n) a {
  background: #9dc01d;
}
.fixed-btn ul li a {
  background: #a1d70e;
  color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  text-align: center;
}
.fixed-btn ul li a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.fixed-btn ul li .cont {
  font-size: 1rem;
  text-align: center;
}
.fixed-btn ul li .cont i {
  display: block;
  font-size: 2rem;
}
.fixed-btn ul li:nth-child(4) {
  display: none;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 35px);
  }
  .fixed-btn ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fixed-btn ul li {
    width: 33%;
    margin-bottom: 0;
  }
  .fixed-btn ul li a {
    width: 100%;
    height: 60px;
    writing-mode: initial;
  }
  .fixed-btn ul li .cont {
    font-size: 1rem;
  }
  .fixed-btn ul li .cont img {
    margin: 0 auto;
    display: block;
  }
  .fixed-btn ul li:nth-child(4) {
    display: block;
  }
}

/*contents3
-----------------------------*/
.contents3 {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  width: 100%;
  margin: auto;
}
.contents3 .child {
  position: relative;
  background: #333;
}
.contents3 .child:hover {
  transition: all 0.8s ease;
}
.contents3 .child:hover .ttl {
  background: rgba(69, 69, 69, 0.5);
}
.contents3 .child:hover figure img {
  position: relative;
  transform: scale(1.2);
  opacity: 0.5;
}
.contents3 .child a {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.contents3 .child a img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.8s ease;
  width: 100%;
  opacity: 0.7;
  height: 300px;
}
.contents3 .child .ttl {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 10px 15px;
  min-width: 170px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.8s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
}
.contents3 .child .ttl .right {
  left: auto;
  right: 30px;
}
.contents3 .child .ttl b {
  border-bottom: 1px solid #fff;
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media all and (max-width: 1100px) {
  .contents3 .child .ttl {
    top: 20px;
    left: 20px;
    padding: 8px 12px;
    min-width: 150px;
    font-size: 1.5rem;
  }
}
@media all and (max-width: 896px) {
  .contents3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
  }
  .contents3 .child a img {
    height: 240px;
  }
}
@media all and (max-width: 639px) {
  .contents3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    padding: 0;
  }
  .contents3 .child a img {
    height: 200px;
  }
  .contents3 .child .ttl {
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    min-width: 140px;
    font-size: 1.3rem;
  }
}
.arrow-line {
  position: absolute;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  outline: none;
  width: 140px;
  bottom: 30px;
  right: 50px;
}
.arrow-line:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 1px;
  background: #fff;
}
.arrow-line:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 10px;
  width: 21px;
  height: 11px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media all and (max-width: 896px) {
  .arrow-line .arrow-line {
    width: 80px;
    bottom: 15px;
    right: 35px;
  }
}
@media all and (max-width: 639px) {
  .arrow-line .arrow-line:after {
    bottom: -3px;
    width: 18px;
  }
}

.arrow-line:before {
  animation: arrowlong01 2s ease infinite;
}

.arrow-line:after {
  animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 105%;
    opacity: 1;
  }
  100% {
    width: 105%;
    opacity: 0;
  }
}
@keyframes arrowlong02 {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    left: 0;
    opacity: 1;
  }
  80% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
/*slick
-----------------------------------*/
.autoplay li {
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 5px;
}
.autoplay li a img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #edeeed;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.swiper-blog {
  overflow: hidden;
}
.swiper-blog > .swiper-wrapper {
  display: flex;
}
.swiper-blog > .swiper-wrapper > .swiper-slide {
  width: 100%;
  height: 350px;
  margin: 0 auto 1rem;
}
@media all and (max-width: 1100px) {
  .swiper-blog > .swiper-wrapper > .swiper-slide {
    height: 230px;
  }
}
@media all and (max-width: 896px) {
  .swiper-blog > .swiper-wrapper > .swiper-slide {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .swiper-blog > .swiper-wrapper > .swiper-slide {
    margin: 0 auto 1.5rem;
    height: 45vh;
  }
}
.swiper-blog .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
}
.swiper-blog .swiper-slide a {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 10px;
  background: #ccc;
}
.swiper-blog .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.3s ease;
}
.swiper-blog .swiper-slide a:hover img {
  transform: scale(1.1);
}
.swiper-blog .swiper-slide a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent, rgba(51, 51, 51, 0.2), #333);
  border-radius: 10px;
  opacity: 0.8;
}
.swiper-blog .swiper-slide .copy {
  z-index: 10;
  color: #fefefe;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  text-shadow: 0 0 5px #333;
}
@media all and (max-width: 639px) {
  .swiper-blog .swiper-slide .copy {
    padding: 10px;
  }
}
.swiper-blog .swiper-slide .copy h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .swiper-blog .swiper-slide .copy h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.swiper-blog .swiper-slide .copy p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .swiper-blog .swiper-slide .copy {
    font-size: 1.2rem;
  }
  .swiper-blog .swiper-slide .copy h3 {
    font-size: 1.5rem;
    letter-spacing: 0.08rem;
  }
}
@media all and (max-width: 639px) {
  .swiper-blog .swiper-slide .copy {
    font-size: 1.1rem;
  }
}
.swiper-blog .swiper-slide .copy .day {
  display: block;
}
.swiper-blog .swiper-slide .pointa {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #fefefe;
  filter: drop-shadow(0.1rem 0.1rem 5px rgba(51, 51, 51, 0.8));
}
.swiper-blog .swiper-slide .pointa::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper-blog .swiper-slide .cate {
  position: absolute;
  font-size: 1.5rem;
  padding: 3px 5px;
  z-index: 10;
  top: 15px;
  left: 15px;
  border-radius: 5px;
  background: #fefefe;
  color: black;
  filter: drop-shadow(0.1rem 0.1rem 5px rgba(51, 51, 51, 0.3));
  font-weight: 500;
}
.swiper-blog .swiper-controller {
  display: flex;
  gap: 3.6rem;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
}
@media all and (max-width: 639px) {
  .swiper-blog .swiper-controller {
    bottom: -1.5rem;
  }
}
.swiper-blog .swiper-button-prev,
.swiper-blog .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
}
@media all and (max-width: 896px) {
  .swiper-blog .swiper-button-prev,
  .swiper-blog .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.swiper-blog .swiper-button-prev::before,
.swiper-blog .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
}
.swiper-blog .swiper-button-prev::after,
.swiper-blog .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #278a40;
  border-width: 2px 2px 0 0;
}
.swiper-blog .swiper-button-prev:hover::before,
.swiper-blog .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.swiper-blog .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.swiper-blog .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.swiper-blog .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.s-product {
  position: relative;
  margin: 40px auto 0;
}
@media all and (max-width: 639px) {
  .s-product {
    padding-bottom: 6rem;
    overflow: hidden;
  }
}
.s-product.type1 {
  width: 80%;
}
@media all and (max-width: 639px) {
  .s-product.type1 {
    width: 100%;
  }
}
.s-product.type1 > .swiper-wrapper > .swiper-slide {
  width: 31.3333333333%;
}
.s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(4n) {
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  .s-product.type1 > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
  }
  .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(4n), .s-product.type1 > .swiper-wrapper > .swiper-slide:nth-child(3n) {
    margin-right: auto;
  }
}
.s-product > .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
  }
}
.s-product > .swiper-wrapper > .swiper-slide {
  width: 23%;
  margin: 0 2% 40px 0;
  background: transparent;
  position: relative;
}
.s-product > .swiper-wrapper > .swiper-slide:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 31.3333333333%;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(3n) {
    margin-right: 0;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(4n) {
    margin-right: 2%;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(4n), .s-product > .swiper-wrapper > .swiper-slide:nth-child(3n) {
    margin-right: auto;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .img-area {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0 auto 20px;
  border: 1px solid #9dc01d;
  filter: drop-shadow(3px 3px 0px rgba(157, 192, 29, 0.8));
  overflow: hidden;
}
.s-product > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 180px;
  }
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 220px;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 160px;
  }
}
.s-product > .swiper-wrapper > .swiper-slide h3 {
  display: block;
  font-size: 1.8rem;
  color: #a1d70e;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.s-product > .swiper-wrapper > .swiper-slide .volume {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #9dc01d;
  color: #fefefe;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0;
}
.s-product > .swiper-wrapper > .swiper-slide .txt {
  color: #333;
}
.s-product > .swiper-wrapper > .swiper-slide .btn {
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
  text-align: right;
}
.s-product > .swiper-wrapper > .swiper-slide .btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #a1d70e;
  opacity: 0.5;
  z-index: -2;
  border-radius: 30px;
}
.s-product > .swiper-wrapper > .swiper-slide:hover {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .img-area img {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .btn::after {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}
.s-product .swiper-controller {
  display: none;
}
@media all and (max-width: 639px) {
  .s-product .swiper-controller {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.s-product .swiper-button-prev,
.s-product .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
  background: #278a40;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev,
  .s-product .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.s-product .swiper-button-prev::before,
.s-product .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.s-product .swiper-button-prev::after,
.s-product .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fefefe;
  border-width: 2px 2px 0 0;
}
.s-product .swiper-button-prev:hover::before,
.s-product .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.s-product .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.s-product .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.s-product .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.bnr-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  .bnr-top-list {
    width: 75%;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .bnr-top-list {
    width: 100%;
  }
}
.bnr-top-list li {
  width: 48%;
  position: relative;
  box-shadow: 0 0 15px rgba(51, 51, 51, 0.1);
}
@media all and (max-width: 896px) {
  .bnr-top-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .bnr-top-list li:last-child {
    margin-bottom: 0;
  }
}
.bnr-top-list li .bnr-img-area {
  position: relative;
  border-bottom: 6px solid #a1d70e;
}
.bnr-top-list li .bnr-img-area .main {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.bnr-top-list li .bnr-img-area .main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.2s all ease;
}
.bnr-top-list li .bnr-img-area .main:hover img {
  transform: scale(1.1);
}
@media all and (max-width: 639px) {
  .bnr-top-list li .bnr-img-area .main {
    height: 200px;
  }
}
.bnr-top-list li .bnr-img-area .icon {
  width: 100px;
  height: 100px;
  background: #a1d70e;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}
.bnr-top-list li .bnr-img-area .icon img {
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  filter: invert(1);
}
.bnr-top-list li .text-area {
  padding: 60px 20px 20px;
}
.bnr-top-list li .text-area h3 {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #232323;
}
.bnr-top-list li .text-area h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  display: block;
  color: #a1d70e;
}

.interview-li {
  position: relative;
}
.interview-li li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.interview-li li:last-child {
  margin-bottom: 0;
}
.interview-li li .icon {
  width: 15%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 639px) {
  .interview-li li .icon {
    width: 100%;
    margin-bottom: 35px;
  }
}
.interview-li li .icon .img {
  width: 150px;
  height: 150px;
  border-radius: 250px;
  background: #eee;
  border: 5px solid #9dc01d;
  overflow: hidden;
}
.interview-li li .icon .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.interview-li li .fuki {
  width: 80%;
  background: #eef7cb;
  padding: 30px 20px;
  position: relative;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .interview-li li .fuki {
    width: 100%;
  }
}
.interview-li li .fuki::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #eef7cb;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media all and (max-width: 639px) {
  .interview-li li .fuki::after {
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}
.interview-li li:nth-child(2n) .icon .img {
  border-color: #a1d70e;
}
.interview-li li:nth-child(2n) .fuki {
  order: -1;
  background: #caf457;
}
@media all and (max-width: 639px) {
  .interview-li li:nth-child(2n) .fuki {
    order: 1;
  }
}
.interview-li li:nth-child(2n) .fuki::after {
  left: auto;
  right: -28px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #caf457;
}
@media all and (max-width: 639px) {
  .interview-li li:nth-child(2n) .fuki::after {
    top: -28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.what-inner.m-b0 {
  margin-bottom: 0;
}
.what-inner .in-left {
  width: 47%;
  padding: 10px;
}
.what-inner .in-left .read {
  font-size: 24px;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.4em;
  font-family: "Zen Maru Gothic", sans-serif;
}
.what-inner .in-left .read span {
  margin: 0;
  display: block;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #9dc01d;
  margin-top: 10px;
}
.what-inner .in-left .maru-img {
  position: relative;
  width: 350px;
  height: 350px;
  overflow: hidden;
  border-radius: 100%;
  margin: 20px auto 0;
}
.what-inner .in-left .maru-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .what-inner .in-left:before {
    position: absolute;
    content: "";
    width: 280px;
    height: 280px;
    background-color: rgba(157, 192, 29, 0.7);
    left: -50px;
    top: -50px;
    border-radius: 100%;
    z-index: -2;
  }
}
.what-inner .in-right {
  width: 52%;
}
@media all and (max-width: 639px) {
  .what-inner .in-left {
    width: 100%;
  }
  .what-inner .in-left.sp-b {
    order: 2;
  }
  .what-inner .in-left .read {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .what-inner .in-left .read span {
    font-size: 18px;
  }
  .what-inner .in-right {
    width: 100%;
  }
}

/*column2*/
.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 47%;
}
.column2 .child img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.column2 .child.position-chosei img {
  -o-object-position: center 30%;
     object-position: center 30%;
}
.column2 .child.position-chosei2 img {
  -o-object-position: center 70%;
     object-position: center 70%;
}
.column2.hikari {
  position: relative;
}
.column2.hikari:before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  background-color: rgba(252, 255, 242, 0.5294117647);
  filter: blur(80px);
  left: 0;
  top: 50%;
  z-index: -1;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .column2 .child img {
    height: 290px;
  }
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child img {
    height: 200px;
  }
  .column2 .child .list2 li {
    width: 48%;
  }
  .column2 .child .list2 li img {
    height: 150px;
  }
}

/*page_menu*/
.page_menu_bg {
  text-align: center;
  padding: 16px 0;
}

.page_menu {
  font-weight: normal;
  overflow: hidden;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3px 3%;
}
.page_menu li {
  position: relative;
  text-align: center;
  margin: 0 5px 1px;
  display: table;
}
.page_menu li a {
  width: 290px;
  font-size: 1.8rem;
  letter-spacing: 0.8;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 0px;
  border: 1px solid #9dc01d;
  background: #9dc01d;
  padding: 5px 15px;
}
.page_menu li a:link, .page_menu li a:visited {
  color: #fff;
}
.page_menu li a:hover {
  background: #fff;
  color: #278a40 !important;
}

@media all and (max-width: 639px) {
  .page_menu {
    margin: 6px 0;
  }
  .page_menu li {
    margin: 0 2px 3px;
    border: 1px solid #fff;
    width: calc(33.3333333333% - 4px);
  }
  .page_menu li a {
    font-size: 0.8rem;
    letter-spacing: 0rem;
    padding: 20% 0px;
    height: auto;
  }
}
/*CMS*/
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  content: "必須";
  color: #fff;
  background: #9dc01d !important;
}

.form-pattern-2 .submit-btn {
  color: #fff;
  background: #9dc01d !important;
  border: 1px solid #9dc01d !important;
  -o-border-image: initial;
     border-image: initial;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  border-radius: 25px;
}

.form-pattern-2 :not(.pattern-exclusion) button:hover {
  color: #9dc01d !important;
  background: #fff !important;
}

.submit-btn:hover:before {
  background-color: #9dc01d !important;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 !important;
  }
}

/*引用*/
blockquote {
  position: relative;
  padding: 20px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  color: #cfcfcf;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.blockquote_link {
  text-align: right;
}
.blockquote_link a {
  color: #a1d70e;
  border-bottom: 1px solid #a1d70e;
}
.blockquote_link a:hover {
  color: #ddd;
  border-bottom: 1px solid #ddd;
}

.loader {
  align-items: center;
  background: url(../img/load2.jpg) repeat 50%;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  perspective: 100px;
  width: 100%;
  height: 100vh;
}
.loader::after {
  animation: loader 12s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  content: "";
  height: 110px;
  width: 86px;
  display: block;
}
.loader.off {
  display: none;
}

@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.frame {
  padding: 15px;
}
@media all and (max-width: 639px) {
  .frame {
    padding: 10px;
  }
}

.arrow {
  display: flex;
  justify-content: space-between;
}
.arrow a {
  padding: 5px;
  border: 1px solid #c7c7c7;
}
.arrow a.arrow-before, .arrow a.arrow-after {
  background: #278a40;
  color: #fff;
}

.calendar-box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
}

.calendar {
  width: 48%;
  background: #f5f5f5;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .calendar {
    width: 100%;
    padding: 5px;
  }
}
.calendar table {
  margin: 10px 0;
  line-height: 2.6;
  width: 100%;
}
.calendar table th {
  text-align: center;
  vertical-align: middle;
  background-color: #F3EEDE;
  padding: 5px 2px;
  font-weight: normal;
  line-height: 1.5;
  border: #4f5a3f 1px solid;
  width: 14%;
}
.calendar table th.sun {
  color: #cf1313;
}
.calendar table th.sat {
  color: #207CF2;
}
.calendar table td {
  padding-left: 2px;
  padding-right: 2px;
  background-color: #FFF;
  height: 60px;
  border: #4f5a3f 1px solid;
  width: 14%;
  line-height: 2;
  vertical-align: top;
  font-size: 12px;
}
.calendar table td .item {
  color: rgb(219, 46, 36);
  text-align: center;
}
.calendar table td.today {
  position: relative;
}
.calendar table td.today:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0%;
  z-index: 0;
  background-color: rgba(39, 138, 64, 0.1);
}
.calendar table td.kara {
  background: #fff;
  background-image: repeating-linear-gradient(-45deg, #f4f4f4, #f4f4f4 3px, transparent 0, transparent 6px);
}
.calendar td.off {
  background: #f59be2;
}

#calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}

.calendar_head {
  padding: 0px 10px 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

.calendar_body {
  padding: 0px 10px 10px 10px;
}
@media all and (max-width: 639px) {
  .calendar_body {
    padding: 0px 5px 10px 5px;
  }
}

/* スマホ */
@media screen and (max-width: 600px) {
  #calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
    float: none;
    width: auto;
  }
}
.calendar_area {
  background: #278a40;
}

.calendar table td {
  height: 40px;
}
.calendar table td .item {
  font-size: 1rem;
}

.order-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 30px;
}
.order-list > li {
  width: 32%;
  margin-bottom: 30px;
  margin-right: 2%;
}
.order-list > li:nth-child(3n) {
  margin-right: 0;
}
.order-list > li .main_contens .txtarea {
  background: #F3EEDE;
  padding: 15px;
}
.order-list > li .main_contens p {
  padding: 0;
}
.order-list > li .main_contens .img {
  height: 300px;
}
.order-list > li .main_contens .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.order-list > li .main_contens .name {
  font-size: 1.8rem;
  font-weight: bold;
}
.order-list > li .main_contens .sub {
  font-size: 1.4rem;
}
.order-list > li .main_contens .sub_a {
  color: #9b3044;
}
.order-list > li .main_contens .sub_a span {
  padding-left: 5px;
  font-size: 2rem;
  font-weight: 600;
}
.order-list > li .main_contens .ciment span {
  position: relative;
  display: inline-block;
}
.order-list > li .main_contens .ciment span::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 2rem;
  margin-top: -0.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #000;
}
.order-list > li .main_contens .ciment select {
  z-index: 2;
  padding: 7px 35px 7px 7px;
  outline: none;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  min-width: 150px;
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 7px;
}
@media all and (max-width: 639px) {
  .order-list li {
    width: 100%;
    margin-right: auto;
  }
  .order-list li:nth-child(3n) {
    margin-right: auto;
  }
  .order-list li .main_contens .name {
    font-size: 1.6rem;
  }
  .order-list li .main_contens .img {
    height: 220px;
  }
}

.goukei {
  background: #278a40;
  color: #fefefe;
  text-align: center;
  margin-bottom: 60px;
  padding: 20px;
}
.goukei input {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 0;
  border: 0;
  margin: 0 10px;
}

.order-form-txt.type2 {
  margin-top: 60px;
}

/*reason-wrap
----------------------------------*/
.reason-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reason-wrap .heading {
  width: 35%;
}
.reason-wrap .heading .inner {
  position: sticky;
  top: 130px;
}
.reason-wrap .detail {
  width: 56%;
  margin-top: 80px;
}
.reason-wrap .reason-child {
  margin-bottom: 80px;
}
.reason-wrap .reason-image {
  position: relative;
  height: 320px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.reason-wrap .reason-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  -o-object-position: center 50%;
     object-position: center 50%;
}
@media all and (max-width: 896px) {
  .reason-wrap .heading {
    margin-bottom: 40px;
    width: 100%;
  }
  .reason-wrap .detail {
    width: 100%;
  }
  .reason-wrap .reason-image {
    height: 220px;
  }
}

.top-reasons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 20px;
}
.top-reasons-list.type1 > li {
  width: 31%;
}
.top-reasons-list > li {
  width: 150px;
  height: 150px;
  background: #FCFAF6;
  border-radius: 100%;
  padding: 30px;
  border: 2px solid #D1B9AD;
  filter: drop-shadow(15px 15px 28px #fff);
}
.top-reasons-list > li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.top-reasons-list > li .ttl {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #111;
}
.top-reasons-list > li .ttl span {
  font-size: 1.1rem;
  color: #037171;
  display: block;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .top-reasons-list > li .ttl span i {
    display: none;
  }
}
.top-reasons-list > li .ttl span.spb {
  display: none;
}
@media all and (max-width: 639px) {
  .top-reasons-list > li .ttl span.spb {
    display: block;
  }
}
.top-reasons-list > li .txt {
  font-family: 1.6rem;
}
@media all and (max-width: 1100px) {
  .top-reasons-list > li {
    padding: 20px;
  }
  .top-reasons-list > li .ttl span {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 896px) {
  .top-reasons-list > li {
    padding: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-reasons-list > li {
    width: 120px;
    height: 120px;
    padding: 13px;
  }
  .top-reasons-list > li .txt {
    font-family: 1.4rem;
  }
  .top-reasons-list > li .ttl {
    font-size: 1.8rem;
  }
  .top-reasons-list > li .ttl span {
    font-size: 1.2rem;
  }
}

/*history*/
.history-dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  width: 85%;
}
.history-dl:before {
  position: absolute;
  content: "";
  left: 200px;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: #aaa;
}
@media all and (max-width: 639px) {
  .history-dl {
    display: block;
    width: 99%;
  }
  .history-dl:before {
    left: 0;
  }
}
.history-dl dt, .history-dl dd {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.history-dl dt {
  width: 160px;
  margin-right: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  text-align: right;
  line-height: 1;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
.history-dl dt span {
  font-size: 3rem;
  padding: 0 3px;
  color: #1c622e;
}
@media all and (max-width: 639px) {
  .history-dl dt {
    width: 60%;
    font-size: 1.5rem;
    padding-left: 20px;
    text-align: left;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .history-dl dt span {
    font-size: 1.8rem;
  }
}
.history-dl dd {
  width: calc(100% - 200px);
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
  align-items: flex-start;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .history-dl dd {
    width: 100%;
    padding-left: 20px;
    font-size: 1.2rem;
  }
}
.history-dl dd .month {
  width: 65px;
  font-weight: 700;
  background: #ffc253;
  padding: 5px;
  text-align: center;
  border-radius: 30px;
  position: relative;
}
.history-dl dd .month.type1 {
  background-color: transparent;
}
.history-dl dd .month:before, .history-dl dd .month:after {
  position: absolute;
  content: "";
}
.history-dl dd .month:before {
  left: -40px;
  top: 50%;
  width: 42px;
  height: 1px;
  z-index: 1;
  background: #aaa;
}
.history-dl dd .month:after {
  width: 10px;
  height: 10px;
  left: -45px;
  top: 50%;
  border-radius: 100%;
  background: #9dc01d;
  margin-top: -5px;
  z-index: 10;
}
@media all and (max-width: 639px) {
  .history-dl dd .month:before {
    left: -20px;
    width: 25px;
  }
  .history-dl dd .month:after {
    left: -25px;
  }
}
.history-dl dd .txt {
  width: calc(100% - 65px);
  padding: 10px;
}
.history-dl dd .txt.type1 {
  margin-top: -17px;
}
.history-dl dd .month, .history-dl dd .txt {
  margin-bottom: 10px;
}