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

.line {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: center;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}
.line .line-1 {
  width: 10%;
  border-right: 1px solid rgb(0, 0, 0);
  height: 100vh;
}
.line .line-2 {
  width: 40%;
  border-right: 1px solid rgb(0, 0, 0);
  height: 100vh;
}
.line .line-3 {
  width: 40%;
  border-right: 1px solid rgb(0, 0, 0);
  height: 100vh;
}
.line .line-4 {
  width: 10%;
  border-right: 1px solid rgb(0, 0, 0);
  height: 100vh;
}
.line .line-5 {
  position: absolute;
  width: 100%;
  background-color: rgb(0, 0, 0);
  height: 1px;
  top: 50%;
}

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

#wrapper {
  position: relative;
  overflow: hidden;
}

#l-main {
  overflow: hidden;
  position: relative;
}

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

.bold {
  font-weight: 600;
}

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

.mincho {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: 500 !important;
}

/* 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);
}

/*=============== ローでイング =================*/
.loader {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
}
.loader.off {
  display: block;
}

.loader-bg1 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #528f5c;
  top: 0;
  left: 0;
  animation: load-fade 0.6s ease-out 2s forwards;
}
@media all and (max-width: 639px) {
  .loader-bg1 {
    animation: load-tate 1s ease-out 1.8s forwards;
  }
}

@keyframes load-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes load-tate {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0%;
  }
}
#splash_logo {
  position: absolute;
  top: 34%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 639px) {
  #splash_logo {
    top: 40%;
  }
}

@keyframes anime-paper {
  0% {
    opacity: 0;
  }
  60% {
    transform: translate(0px, 0px);
  }
  70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.svgall {
  width: 200px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 639px) {
  .svgall {
    width: 140px;
  }
}

/* header
----------------------------------*/
@keyframes load-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#l-header {
  width: 90%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  animation: load-bg 1s ease-out 1.6s forwards;
}
@media all and (max-width: 1367px) {
  #l-header {
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  #l-header {
    width: 100%;
    padding: 20px 0 10px;
  }
}
#l-header.is-fixed {
  right: auto;
  position: fixed;
  padding: 0;
  background-color: #fff;
  z-index: 101;
  width: 100%;
  height: 80px;
  box-shadow: 10px 0 10px rgba(141, 141, 141, 0.4);
}
#l-header.is-fixed .inner #logo {
  transition: 0.4s;
  position: absolute;
  /* top: 25px; */
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 101;
}
@media all and (max-width: 1367px) {
  #l-header.is-fixed .inner #logo {
    left: 0;
    right: 0;
  }
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    width: 200px;
  }
}
@media all and (max-width: 639px) {
  #l-header.is-fixed .inner #logo {
    width: 180px;
  }
}
#l-header .inner {
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  display: flex;
}
#l-header .inner #logo {
  transition: 0.4s;
  margin: 20px auto 0;
  width: 20%;
  max-width: 290px;
}
#l-header .inner #header_nav {
  width: 70%;
  margin-left: 10%;
}
#header_nav {
  position: relative;
  margin: 0 5% 0 auto;
  text-align: center;
  z-index: 100;
}
#header_nav ul {
  margin: 10px 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#header_nav ul li {
  position: relative;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.8rem;
  padding: 10px 20px;
  color: #333;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  color: #333;
  position: relative;
  letter-spacing: 0.1rem;
}
#header_nav ul li a:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.4s;
}
#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #98CE97;
  transition: 0.2s width ease-in;
  transform: translateY(-4px);
}
#header_nav ul li a:hover:before, #header_nav ul li a.active:before {
  transition: 0.4s;
  border-bottom: 1px solid #528f5c;
  bottom: 0px;
}
#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0;
  position: absolute;
  width: 260px;
  top: 60px;
  left: 12px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  padding: 20px;
}
#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #528f5c;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  opacity: 0;
  transition: 0.8s;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#header_nav ul li .sub-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
#header_nav ul li .sub-menu li:nth-child(3) {
  transition-delay: 0.2s;
}
#header_nav ul li .sub-menu li:nth-child(4) {
  transition-delay: 0.3s;
}
#header_nav ul li .sub-menu li:nth-child(5) {
  transition-delay: 0.4s;
}
#header_nav ul li .sub-menu li:nth-child(6) {
  transition-delay: 0.5s;
}
#header_nav ul li .sub-menu li:nth-child(7) {
  transition-delay: 0.6s;
}
#header_nav ul li .sub-menu li:before {
  display: none;
}
#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
  text-align: left;
}
#header_nav ul li .sub-menu li:hover {
  background-color: rgb(151, 151, 151);
}
#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: flex;
  flex-wrap: wrap;
  visibility: visible;
}
#header_nav ul li:hover .sub-menu li, #header_nav ul li.active .sub-menu li {
  transition: 0.8s;
  transition: transform 1s ease, opacity 0.9s ease;
  animation: opacityAnime 1s 0.1s forwards;
}
#header_nav ul li:hover .sub-menu li:nth-child(2), #header_nav ul li.active .sub-menu li:nth-child(2) {
  animation-delay: 0.2s;
}
#header_nav ul li:hover .sub-menu li:nth-child(3), #header_nav ul li.active .sub-menu li:nth-child(3) {
  animation-delay: 0.3s;
}
#header_nav ul li:hover .sub-menu li:nth-child(4), #header_nav ul li.active .sub-menu li:nth-child(4) {
  animation-delay: 0.4s;
}
#header_nav ul li:hover .sub-menu li:nth-child(5), #header_nav ul li.active .sub-menu li:nth-child(5) {
  animation-delay: 0.5s;
}
#header_nav ul li:hover .sub-menu li:nth-child(6), #header_nav ul li.active .sub-menu li:nth-child(6) {
  animation-delay: 0.6s;
}
#header_nav ul li:hover .sub-menu li:nth-child(7), #header_nav ul li.active .sub-menu li:nth-child(7) {
  animation-delay: 0.7s;
}
#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  transform: scale(1.1);
  position: relative;
}
#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(152, 206, 151, 0.4);
  z-index: -1;
}
#header_nav ul li:hover .header_link.type2:before, #header_nav ul li.active .header_link.type2:before {
  background-color: rgba(27, 92, 158, 0.4);
}
#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(235, 97, 42, 0.4);
}
#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(216, 181, 78, 0.4);
}
@media all and (max-width: 1480px) {
  #header_nav ul li a {
    font-size: 1.4rem;
  }
  #header_nav ul li a span {
    font-size: 1.2rem;
  }
  #header_nav ul li.type-contact {
    margin-left: 10px;
  }
}
@media all and (max-width: 1367px) {
  #header_nav {
    text-align: center;
    width: 100%;
  }
  #header_nav ul {
    margin: 40px auto 0;
    justify-content: center;
  }
  #header_nav ul li a {
    font-size: 1.4rem;
  }
}
#header_nav.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
#header_nav.DownMove {
  display: none;
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  animation: DownAnime 0.5s forwards;
  background-color: #fff;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
#header_nav.DownMove ul {
  justify-content: end;
  margin: 0 auto;
}
#header_nav.DownMove ul li {
  position: relative;
}
#header_nav.DownMove ul li a {
  padding: 22px 20px;
  background-color: transparent;
  color: #333;
}
#header_nav.DownMove ul li a:after {
  display: none;
}
#header_nav.DownMove ul li:hover, #header_nav.DownMove ul li.active {
  color: #98CE97;
}
#header_nav.DownMove ul li:hover a, #header_nav.DownMove ul li.active a {
  color: #98CE97;
  transition: 0.2s width ease-in;
}
#header_nav.DownMove ul li:hover a:after, #header_nav.DownMove ul li.active a:after {
  display: none;
}
#header_nav.DownMove ul li:hover a span, #header_nav.DownMove ul li.active a span {
  color: #fff;
}
#header_nav.DownMove ul li:hover .sub-menu a, #header_nav.DownMove ul li.active .sub-menu a {
  background-color: transparent;
  color: #fff;
}
@media all and (max-width: 1367px) {
  #header_nav.DownMove ul {
    margin: 60px auto 0;
    justify-content: center;
  }
  #header_nav.DownMove ul li a {
    font-size: 1.3rem;
  }
}

@keyframes opacityAnime {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* nav
----------------------------------*/
#nav-toggle {
  display: block;
  position: fixed;
  top: 30px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
}
#nav-toggle:before {
  position: absolute;
  content: "";
  left: -26px;
  top: -30px;
  width: 90px;
  height: 80px;
  background-color: #528f5c;
  z-index: -1;
}
#nav-toggle > div {
  position: relative;
  width: 35px;
}
#nav-toggle > div > p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  font-size: 11px;
  text-align: center;
  color: #222;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
  width: 90%;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
  width: 80%;
}
#nav-toggle:hover span:nth-child(1) {
  top: 0px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 20px;
}
@media all and (max-width: 896px) {
  #nav-toggle {
    top: 30px;
    right: 20px;
  }
  #nav-toggle:before {
    left: -4px;
    top: -9px;
  }
}
@media all and (max-width: 639px) {
  #nav-toggle {
    top: 20px;
    right: 20px;
  }
}

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  width: 100%;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
}

#sp_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 20;
  width: 100%;
  transform: translateX(-50%);
}
#sp_btn ul {
  display: flex;
  justify-content: center;
  max-width: 330px;
  padding-bottom: 15px;
  margin: 0 auto;
}
#sp_btn ul li {
  padding: 0 5px;
}
#sp_btn ul li a {
  display: block;
  padding: 7px 30px;
  text-align: center;
  background: #fefefe;
  color: #528f5c;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
}
#sp_btn ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  color: #111;
}
#sp_btn ul li a.sp_btn_icon {
  background: transparent;
  width: 40px;
  padding: 7px 0;
}

#sp-nav {
  background: rgb(239, 246, 242);
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  text-align: center;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#sp-nav .inner {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  max-height: 1000px;
  position: relative;
}
#sp-nav .inner .head-nav-logo {
  text-align: center;
  width: 340px;
  margin: 0px auto 30px;
}
#sp-nav .inner .photoarea {
  margin-top: 5%;
  height: 65%;
  overflow: hidden;
}
#sp-nav .inner .photoarea .photo {
  margin-bottom: 30px;
}
#sp-nav .inner .photoarea .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sp-nav .inner .txtarea {
  margin-top: 5%;
}
#sp-nav .inner .txtarea-inner {
  background-color: #fff;
  padding: 100px 40px;
  height: 100%;
}
#sp-nav .photo__txtarea {
  position: absolute;
  bottom: 10%;
}
#sp-nav .photo__txtarea .photo__txtarea__txt {
  padding: 0 0 0 50px;
  margin-bottom: 20px;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}
#sp-nav .photo__txtarea .photo__txtarea__txt:before {
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  border-top: 50px solid #528f5c;
  border-right: 50px solid transparent;
}
#sp-nav .nav__detail {
  display: flex;
  align-items: center;
}
#sp-nav .nav__detail .detail {
  margin-right: 40px;
  font-size: 3rem;
  line-height: 1;
}
#sp-nav .nav__detail .detail a {
  display: block;
  transition: 0.4s;
}
#sp-nav .nav__detail .detail a:hover {
  transition: 0.4s;
}
#sp-nav .nav__detail .detail a:hover i {
  color: #528f5c;
}
#sp-nav .nav__detail .detail a:hover .detail__txt {
  transition: 0.4s;
  color: #333;
}
#sp-nav .nav__detail .detail__txt {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  display: inline-block;
  padding-left: 10px;
  transition: 0.4s;
}
#sp-nav .dropdown {
  display: none;
}
#sp-nav ul {
  list-style: none;
  max-width: 300px;
  margin: 0 auto 40px;
}
#sp-nav ul li {
  width: 100%;
  margin: 0 auto 20px 0;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
  text-align: left;
}
#sp-nav ul li a {
  border-bottom: 2px solid #528f5c;
  color: #528f5c;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  display: block;
  margin-top: 20px;
  overflow: hidden;
  font-size: 2rem;
}
#sp-nav ul li a:before {
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #528f5c;
  z-index: -1;
}
#sp-nav ul li a:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 30px;
  bottom: 24%;
  border-bottom: 20px solid transparent;
  border-top: 0px solid transparent;
  border-left: 20px solid #333;
  transform: rotate(180deg);
  opacity: 0.4;
  transition: 0.4s;
}
#sp-nav ul li a:hover {
  color: #fff;
}
#sp-nav ul li a:hover:before {
  transition: 0.4s;
  width: 100%;
}
#sp-nav ul li a:hover:after {
  transition: 0.4s;
  transform: rotate(0deg);
  bottom: 32%;
  opacity: 1;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 20px solid #fff;
}
#sp-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav ul li:nth-child(7) {
  transition-delay: 0.6s;
}

/* open */
.open {
  overflow: hidden;
}
.open #sp-nav {
  visibility: visible;
  opacity: 1;
  z-index: 990;
}
.open #sp-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 110;
}
#page-top a {
  display: block;
  background: #333;
  box-shadow: #333;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 58px;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 10px;
    right: 10px;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.slide-img {
  overflow: hidden;
  width: 70%;
  height: 80vh;
  margin-left: auto;
  margin-top: 80px;
  max-height: 750px;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 80vh;
  }
}
@media all and (max-width: 896px) {
  .slide-img {
    height: 70vh;
    margin-top: 130px;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 56vh;
    border-radius: 30px 30px 0 0;
    margin-top: 110px;
    max-height: 380px;
    min-height: 380px;
  }
}

#slide-wrap {
  position: relative;
  margin: 0px auto 0px;
  padding-bottom: 50px;
}
#slide-wrap .slide-box {
  opacity: 1;
  width: 100%;
  position: relative;
  right: 0;
  bottom: 0%;
  left: 0;
  margin: 0 auto;
}
#slide-wrap .slide-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  animation: bg-anime 0.8s ease-in 0.4s forwards;
  z-index: 100;
}
@media all and (max-width: 639px) {
  #slide-wrap {
    padding-bottom: 20px;
  }
}

@keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.catch-eng {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 2;
}
.catch-eng svg {
  width: 500px;
  height: 100px;
}

.catch {
  z-index: 1;
  position: absolute;
  margin: 0px auto 0 0;
  bottom: 30%;
  left: 5%;
  right: 0;
  margin: 0 auto;
}
.catch .catch-symble {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 570px;
}
.catch .catch-logo {
  margin: 0 auto;
  text-align: center;
}

.eachTextAnime {
  margin: 20px 0 0px;
  font-size: 3rem;
  color: #333;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.eachTextAnime {
  animation: text_anime_on 0.4s ease-out 1s forwards;
  opacity: 0;
}
.eachTextAnime.type2 {
  animation: text_anime_on 0.4s ease-out 1.8s forwards;
  font-size: 4rem;
  margin: 0px 0 20px;
  line-height: 1.2;
}
.eachTextAnime.type2 span {
  font-size: 6rem;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  background: linear-gradient(90deg, #375e51, #57aa8e);
  background: -webkit-linear-gradient(0deg, #375e51, #57aa8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eachTextAnime.type3 {
  animation: text_anime_on 0.4s ease-out 2.4s forwards;
  margin: 20px 0 0px;
}
.eachTextAnime.type4 {
  animation: text_anime_on 0.4s ease-out 2.8s forwards;
  margin: 0px 0 0px;
}

@keyframes text_anime_on {
  0% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/***************************************************
 * Generated by SVG Artista on 11/25/2022, 12:19:26 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
.cls-1 {
  fill: #231815;
  stroke: #231815;
  stroke-miterlimit: 10;
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 439.5575561523px;
    stroke-dasharray: 439.5575561523px;
  }
  100% {
    stroke-dashoffset: 879.1151123047px;
    stroke-dasharray: 439.5575561523px;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-1 {
  animation: animate-svg-stroke-1 1s cubic-bezier(1, 0, 0, 1) 2s both, animate-svg-fill-1 0.7s ease 2.8s both;
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 439.5637207031px;
    stroke-dasharray: 439.5637207031px;
  }
  100% {
    stroke-dashoffset: 879.1274414063px;
    stroke-dasharray: 439.5637207031px;
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-2 {
  animation: animate-svg-stroke-2 1s cubic-bezier(1, 0, 0, 1) 2.12s both, animate-svg-fill-2 0.7s ease 2.9s both;
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 310.5733642578px;
    stroke-dasharray: 310.5733642578px;
  }
  100% {
    stroke-dashoffset: 621.1467285156px;
    stroke-dasharray: 310.5733642578px;
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-3 {
  animation: animate-svg-stroke-3 1s cubic-bezier(1, 0, 0, 1) 2.24s both, animate-svg-fill-3 0.7s ease 3s both;
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 349.2627868652px;
    stroke-dasharray: 349.2627868652px;
  }
  100% {
    stroke-dashoffset: 698.5255737305px;
    stroke-dasharray: 349.2627868652px;
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-4 {
  animation: animate-svg-stroke-4 1s cubic-bezier(1, 0, 0, 1) 2.36s both, animate-svg-fill-4 0.7s ease 3.1s both;
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 425.6333618164px;
    stroke-dasharray: 425.6333618164px;
  }
  100% {
    stroke-dashoffset: 851.2667236328px;
    stroke-dasharray: 425.6333618164px;
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-5 {
  animation: animate-svg-stroke-5 1s cubic-bezier(1, 0, 0, 1) 2.48s both, animate-svg-fill-5 0.7s ease 3.1s both;
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 191.1400146484px;
    stroke-dasharray: 191.1400146484px;
  }
  100% {
    stroke-dashoffset: 382.2800292969px;
    stroke-dasharray: 191.1400146484px;
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(35, 24, 21);
  }
}
.svg-elem-6 {
  animation: animate-svg-stroke-6 1s cubic-bezier(1, 0, 0, 1) 2.6s both, animate-svg-fill-6 0.7s ease 3.2s both;
}

/* footer
----------------------------------*/
footer {
  padding: 100px 0 50px;
  position: relative;
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
#l-footer:before {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0px;
  border-bottom: 50px solid #528f5c;
  border-left: 50px solid transparent;
}
#l-footer .flogobox {
  padding: 0 0 0 50px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
#l-footer .flogobox:before {
  position: absolute;
  content: "";
  top: -20px;
  left: 0px;
  border-top: 50px solid #528f5c;
  border-right: 50px solid transparent;
}
#l-footer .flogobox .flogo {
  width: 20%;
}
#l-footer .flist {
  width: 80%;
  text-align: center;
}
#l-footer .footer__address {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0 30px;
}

.flist {
  display: flex;
  padding-left: 50px;
}
.flist li:hover a {
  color: #333;
}
.flist .flist__tel {
  font-size: 4rem;
  line-height: 1;
}
.flist .flist__tel .flist____txt {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  display: inline-block;
}
.flist .flist__mail {
  margin-left: 50px;
  font-size: 4rem;
  line-height: 1;
}
.flist .flist__mail .flist____txt {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  display: inline-block;
}

/* footer_navi
----------------------------------*/
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer_navi ul li {
  margin-right: 10px;
}
.footer_navi ul li:last-child {
  margin-right: 0;
}
.footer_navi ul li a {
  font-size: 2rem;
  position: relative;
  display: block;
  text-align: center;
  font-weight: 600;
  border: 1px solid #528f5c;
  padding: 4px 20px;
  transition: 0.4s;
  z-index: 1;
}
.footer_navi ul li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #528f5c;
  z-index: -1;
  transition: 0.4s;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  transition: 0.4s;
  color: #fff;
}
.footer_navi ul li a:hover:before {
  width: 100%;
  transition: 0.4s;
}
.footer_navi ul li .sub-menu {
  margin-top: 10px;
  display: block;
}
.footer_navi ul li .sub-menu li {
  margin: 0;
  width: 100%;
  padding-left: 30px;
}
.footer_navi ul li .sub-menu a {
  padding: 0px;
}
.footer_navi ul li .sub-menu a:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 7px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
  background-color: transparent;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

/* copyrigh
----------------------------------*/
.copyright {
  padding: 12px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 75px;
  }
}

/* loading mask
----------------------------------*/
.mask-img {
  mask-image: url("../img/topMessage-logo.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../img/topMessage-logo.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: auto;
}

/* contents
----------------------------------*/
#main {
  float: left;
  width: 76%;
}
@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;
  }
}

/* btn
----------------------------------*/
.btn {
  margin: 40px auto 0;
  text-align: center;
}
.btn a {
  margin: 0 auto;
  display: block;
  width: 300px;
  position: relative;
  background-color: #528f5c;
  color: #fff;
  font-size: 1.5rem;
  padding: 15px 0px;
  z-index: 1;
  letter-spacing: 5px;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  transition: 0.4s;
  overflow: hidden;
}
.btn a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #528f5c;
  z-index: -1;
  transition: 0.4s;
}
.btn a:hover {
  transition: 0.4s;
  letter-spacing: 10px;
}
.btn a:hover:before {
  transition: 0.4s;
  filter: blur(10px);
  opacity: 0.4;
}
.btn a:hover:after {
  transform: scale(0.4);
  transition: 0.4s;
  opacity: 0.3;
}

/* page-title
----------------------------------*/
.pagewrapper #l-header {
  animation: load-bg 1s ease-out 0.2s forwards;
}

.page-titleBox {
  padding: 110px 0px 0px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-titleBox .inner {
  margin: 0 auto;
  padding: 80px 0 80px;
  overflow: hidden;
}
.page-titleBox .page__title {
  position: relative;
}
.page-titleBox .page__title .eng {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 8rem;
  position: relative;
  padding: 0 20px;
}
.page-titleBox .page__title .eng:before {
  position: absolute;
  content: "";
  top: 10px;
  left: -20px;
  z-index: -1;
  border-top: 60px solid #528f5c;
  border-right: 60px solid transparent;
}
.page-titleBox .page__title .eng:after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: -20px;
  z-index: -1;
  border-bottom: 60px solid #528f5c;
  border-left: 60px solid transparent;
  opacity: 0.4;
}
.page-titleBox .page__title .ja {
  display: table;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 6px 20px;
  color: #528f5c;
  position: relative;
}
.page-titleBox .page__title .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #528f5c;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-titleBox .page__title .ja:after {
  position: absolute;
  content: "";
  width: 102%;
  height: 60%;
  top: 20%;
  left: -1%;
  background-color: #fff;
  z-index: -1;
}
.page-titleBox .page__title.title--center {
  text-align: center;
}

@keyframes page-leadanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* breadcrumb
----------------------------------*/
.breadcrumb {
  padding: 10px 30px;
  z-index: 101;
  width: 80%;
  margin: 14px auto 0;
  font-size: 1.2rem;
  text-align: center;
  background-color: #528f5c;
}
.breadcrumb li {
  display: inline;
  color: #fff;
}
.breadcrumb li a {
  color: #d8b54e;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 10px;
    left: 20px;
    padding: 8px 20px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
}
.tbl th,
.tbl td {
  padding: 10px 15px;
  border: 1px solid #ddd;
}
.tbl th {
  color: #fff;
  background: #528f5c;
  width: 25%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl td {
  vertical-align: middle;
}
.tbl td.num {
  width: 10%;
  max-width: 200px;
}
@media all and (max-width: 639px) {
  .tbl th {
    width: 25%;
    text-align: left;
    font-size: 1.2rem;
  }
  .tbl th,
.tbl td {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
  .tbl td.num {
    width: 20%;
    max-width: 200px;
    min-width: 40px;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 18%;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.ggmap.type-top {
  padding-bottom: 18%;
}
@media all and (max-width: 639px) {
  .ggmap.type-top {
    margin-bottom: 4px;
  }
}
@media all and (max-width: 1100px) {
  .ggmap {
    padding-bottom: 28%;
  }
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gallery-list
----------------------------------*/
.gallerarea {
  max-width: 1500px;
  margin: 0 auto 30px;
  padding: 40px;
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .gallerarea {
    padding: 40px 20px;
  }
}

.gallery-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.gallery-list li {
  width: 22%;
  margin: 0 1% 20px;
  border: 1px solid #363636;
  padding: 10px;
  background-color: #fff;
}
.gallery-list li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery-list li .txt {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .gallery-list li {
    width: 98%;
    margin-bottom: 10px;
  }
  .gallery-list li img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  .gallery-list li .txt {
    font-size: 1.5rem;
  }
}

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

.blogbox {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
}
.blogbox .blogbox__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
  color: #528f5c;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .blogbox .blogbox__title {
    font-size: 1.4rem;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 23%;
  margin: 0 1% 20px;
  position: relative;
  padding: 15px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #ddd;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 31%;
  }
}
@media all and (max-width: 896px) {
  .blog-wrap > li {
    width: 48%;
  }
}
.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;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap li {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
  }
  .blog-wrap li .blog-img {
    width: 100%;
  }
  .blog-wrap li .blog-detail {
    width: 100%;
    padding: 10px;
  }
  .blog-wrap li .blog-txt {
    padding: 10px 0;
  }
}

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

.blog-detail {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.blog-cat {
  background-color: #98CE97;
  color: #fff;
  font-size: 13px;
  display: none;
}

.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: #111;
}

.blog-date {
  width: 100px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #595959;
  font-size: 12px;
  position: relative;
}
.blog-date:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  left: -5px;
  background-color: #ddd;
}

.blog-date2 {
  color: #365e3d;
  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: 700;
  line-height: 1.3;
  margin: 10px 0;
}

.blog-txt {
  line-height: 1.5;
  color: #333;
  font-size: 1.7rem;
  padding-top: 10px;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #528f5c;
  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: #f4f4f4;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.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: #88CCFF;
}
@media all and (max-width: 639px) {
  .blog-month ul li {
    margin-left: 20px;
  }
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li a:hover {
  color: #528f5c;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 80%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #528f5c;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #d8b54e;
  color: #604C3F;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 10px;
  padding-top: 13px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd.type1 p {
  display: inline;
}
.form dl dd.type1 .w20 {
  width: 20%;
}
@media all and (max-width: 896px) {
  .form dl dd.type1 .w20 {
    width: 30%;
  }
}
.form dl dd.type1 .w30 {
  width: 30%;
}
@media all and (max-width: 639px) {
  .form dl dd.type1.type1-name .w30 {
    width: 48%;
  }
}
.form dl dd.type1 .w60 {
  width: 60%;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 12px 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f8f8f8;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
  background: #f9fcff;
  box-shadow: 0 8px 8px rgba(165, 165, 165, 0.4);
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 70%;
  margin-right: 1%;
}
.form .select_arrow {
  position: relative;
}
.form .select_arrow::before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10.5px solid #528f5c;
  content: "";
  position: absolute;
  right: 9px;
  top: 42px;
  width: 0;
}
@media all and (max-width: 639px) {
  .form .select_arrow::before {
    top: 30px;
  }
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #363636;
  font-weight: 600;
  padding: 12px 5px;
  margin: 20px auto 0;
  width: 250px;
  background: #363636;
}
.form button:hover {
  background: #fff;
  color: #363636;
}
.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: #528f5c;
}
.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: #528f5c;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  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 #528f5c;
  border-bottom: 3px solid #528f5c;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  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: 14px;
}
@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: 1px solid #528f5c;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
}
.thanks .btn04 {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 100%;
    padding: 30px 20px;
  }
  .thanks p.t-m50 {
    margin-top: 0;
  }
  .thanks p.b-m50 {
    margin-bottom: 20px;
  }
  .thanks p.tcenter.sp-left {
    text-align: left;
  }
}

.policy {
  padding: 30px;
  background: rgba(82, 143, 92, 0.2);
  margin: 100px auto 0;
}

.mtitle_small {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #528f5c;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #604C3F;
  font-weight: 600;
  padding: 10px 10px 10px 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #fff;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 0;
}
.mtitle_small2:after {
  content: "";
  background-color: #838383;
  width: 3px;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 2px;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit:contain;";
  object-position: 50% 50%;
}
@media all and (max-width: 896px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #604C3F;
}
@media all and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*アンカーリンク*/
.anchor-link {
  margin: 100px auto 0;
}
.anchor-link .anchorbox {
  margin: 0 20px;
  width: 380px;
}
@media all and (max-width: 639px) {
  .anchor-link .anchorbox {
    width: 100%;
    margin: 0 auto;
  }
}
.anchor-link .anchorbox a {
  display: block;
}
.anchor-link .anchorbox a:hover {
  opacity: 0.7;
  filter: brightness(0.85) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(241, 235, 221, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 0px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
/* common content
----------------------------------*/
.mainContents {
  margin: 0 auto;
  position: relative;
}
.mainContents .mainContents__inner {
  padding: 100px 40px 100px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mainContents .mainContents__inner.inner--w1200 {
  max-width: 1200px;
}
.mainContents .mainContents__title {
  margin-bottom: 40px;
  position: relative;
}
.mainContents .mainContents__title .eng {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 8rem;
  position: relative;
}
.mainContents .mainContents__title .eng:before {
  position: absolute;
  content: "";
  top: 10px;
  left: -20px;
  z-index: -1;
  border-top: 60px solid #528f5c;
  border-right: 60px solid transparent;
}
.mainContents .mainContents__title .eng:after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: -20px;
  z-index: -1;
  border-bottom: 60px solid #528f5c;
  border-left: 60px solid transparent;
  opacity: 0.4;
}
.mainContents .mainContents__title .ja {
  display: table;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 6px 20px;
  color: #528f5c;
  position: relative;
}
.mainContents .mainContents__title .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #528f5c;
  top: 0;
  left: 0;
  z-index: -1;
}
.mainContents .mainContents__title .ja:after {
  position: absolute;
  content: "";
  width: 102%;
  height: 60%;
  top: 20%;
  left: -1%;
  background-color: #fff;
  z-index: -1;
}
.mainContents .mainContents__title.title--page .ja {
  font-size: 2rem;
  padding: 10px 20px;
}
.mainContents .mainContents__title.title--center {
  text-align: center;
}
.mainContents .mainContents__txt {
  font-size: 1.6rem;
  font-weight: bold;
}
.mainContents .mainContents__txt.txt--main {
  line-height: 2.6;
}
.mainContents .mainContents__maintxt {
  font-size: 2rem;
  font-weight: bold;
}
.mainContents .mainContents__maintxt.txt--main {
  line-height: 2.6;
}
@media all and (max-width: 896px) {
  .mainContents .mainContents__title {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__title .eng {
    font-size: 1.8rem;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__txt {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .mainContents .mainContents__txt.txt--main {
    line-height: 2;
  }
}
@media all and (max-width: 639px) {
  .mainContents .mainContents__inner {
    padding: 50px 15px;
  }
  .mainContents .mainContents__title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .mainContents .mainContents__title .eng {
    font-size: 1.6rem;
  }
  .mainContents .mainContents__title .ja {
    font-size: 1.4rem;
  }
  .mainContents .mainContents__txt {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .mainContents .mainContents__txt.txt--main {
    line-height: 1.8;
  }
  .mainContents .mainContents__maintxt {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .mainContents .mainContents__maintxt.txt--main {
    line-height: 2.6;
  }
}

/* top content
----------------------------------*/
.topGreet {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.topGreet:after {
  position: absolute;
  content: "";
  width: 80%;
  height: 510px;
  bottom: 0px;
  left: 0;
  background-color: rgba(231, 231, 223, 0.4);
  z-index: -1;
}
.topGreet .topGreet__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-grow: wrap;
}
.topGreet .topGreet__photo {
  width: 60%;
  height: 400px;
}
.topGreet .topGreet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.topGreet .topGreet__txtArea {
  position: relative;
  padding: 80px 0px 70px 152px;
  z-index: 1;
  width: 40%;
}
.topGreet .topGreet__txtArea .mainContents__title {
  position: relative;
  z-index: 1;
}
.topGreet .topGreet__txtArea .mainContents__title .eng {
  font-size: 8rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
.topGreet .topGreet__txt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
}
@media all and (max-width: 1680px) {
  .topGreet .topGreet__txtArea {
    position: relative;
    padding: 100px 20px 40px 80px;
    z-index: 1;
    width: 40%;
  }
}

.topWork {
  position: relative;
  padding: 100px 0;
  margin: 0 auto;
}
.topWork .topWork__title {
  position: absolute;
  left: 0;
  right: 0;
  top: -65px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.topWork .topWork__title .eng {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 10rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
  line-height: 1.2;
}
.topWork .topWork__title .ja {
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .topWork .topRecommend__inner {
    padding: 30px;
  }
}

.topWork__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 30px;
  width: 80%;
  position: relative;
  z-index: 2;
}
.topWork__list li {
  width: 23%;
  margin: 0 2.65% 0 0;
  position: relative;
}
.topWork__list li:nth-child(4) {
  margin: 0;
}
.topWork__list .list__photo {
  background-color: #5f5f5f;
}
.topWork__list .list__photo img {
  opacity: 0.6;
  width: auto;
  height: 500px;
  object-fit: cover;
}
.topWork__list .list__txtarea {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
}
.topWork__list .list__icon {
  margin: 0 auto;
  z-index: 1;
  width: 120px;
  animation: tateanime 1s infinite;
}
.topWork__list .list__title {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  text-shadow: 0 0 15px #333;
}
.topWork__list .list__title .eng {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 2rem;
  display: block;
}
.topWork__list .list__title .ja {
  line-height: 1;
  font-size: 3rem;
  font-weight: bold;
}

@keyframes tateanime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.topPoint {
  position: relative;
  padding: 100px 0;
}
.topPoint:before {
  position: absolute;
  content: "";
  width: 76%;
  height: 700px;
  top: -300px;
  right: 0;
  background-color: rgba(231, 231, 223, 0.4);
  z-index: 1;
}
.topPoint .topPoint__inner {
  width: 90%;
  margin: 0 0 0 auto;
  display: flex;
  flex-grow: wrap;
  position: relative;
  z-index: 1;
}
.topPoint .topPoint__photo {
  width: 60%;
  height: 500px;
  position: relative;
  margin-left: 7.2%;
}
.topPoint .topPoint__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.topPoint .topPoint__txtArea {
  position: relative;
  padding: 80px 0px 70px 20px;
  z-index: 1;
  width: 40%;
}
.topPoint .topPoint__txtArea .mainContents__title {
  position: relative;
  z-index: 1;
}
.topPoint .topPoint__txtArea .mainContents__title .eng {
  font-size: 8rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
@media all and (max-width: 1680px) {
  .topPoint .topPoint__txtArea {
    position: relative;
    padding: 100px 80px 40px 20px;
    z-index: 1;
    width: 40%;
  }
}

.topPoint__list {
  margin-left: -20px;
}
.topPoint__list li {
  border: 1px solid #528f5c;
  padding: 20px;
  margin: 0 auto 20px;
}
.topPoint__list .list__title span {
  background-color: #528f5c;
  color: #fff;
  font-size: 2rem;
  padding: 2px 20px;
}
.topPoint__list .list__txt {
  margin: 10px auto 0;
}

.topRecruit {
  position: relative;
  margin: 50px auto;
}
.topRecruit .topRecruit__inner {
  position: relative;
  width: 80%;
  margin: 0 auto;
  z-index: 1;
}
.topRecruit .topRecruit__photo {
  position: relative;
  z-index: 1;
}
.topRecruit .topRecruit__photo__bg img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: bottom;
}
.topRecruit .topRecruit__photo__main {
  position: absolute;
  bottom: 0;
  right: 3%;
  z-index: 1;
}
.topRecruit .topRecruit__txtarea {
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
.topRecruit .mainContents__title .eng {
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
.topRecruit .mainContents__title .eng:before {
  border-top: 50px solid #1b5c9e;
}
.topRecruit .mainContents__title .eng:after {
  border-bottom: 50px solid #1b5c9e;
}
.topRecruit .mainContents__title .ja {
  text-align: center;
  margin: 0 auto;
  color: #333;
}
.topRecruit .mainContents__title .ja:before {
  border: 1px solid #333;
}
.topRecruit .mainContents__title .ja:after {
  background-color: #96c2dc;
}
.topRecruit .topRecruit__txt {
  font-weight: bold;
  font-size: 3rem;
}
.topRecruit .topRecruit__txtsub {
  margin-top: 50px;
  font-size: 1.8rem;
}
.topRecruit .topRecruit__detail {
  position: relative;
  margin-top: 50px;
}
.topRecruit .topRecruit__detail .topRecruit__detail__eng {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  color: #fff;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.4;
  font-weight: bold;
}
@media all and (max-width: 1680px) {
  .topRecruit .topRecruit__photo__main {
    right: -60px;
  }
}

.topContent {
  position: relative;
  margin: 200px auto 0;
}
.topContent .topContent__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.topContent .mainContents__title {
  position: relative;
  z-index: 1;
}
.topContent .mainContents__title .eng {
  font-size: 8rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
.topContent .topContent__photo {
  position: relative;
  width: 50%;
  margin: 0;
  height: 480px;
}
.topContent .topContent__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topContent .topContent__txtarea {
  margin-left: 10%;
  width: 30%;
  padding: 50px 0;
}
.topContent .topContent__txtarea .txtarea__subtitle {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  color: #528f5c;
  opacity: 0.4;
  font-size: 2rem;
}
.topContent .topContent__txtarea .txtarea__title {
  font-size: 3rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}
.topContent .topContent__txtarea .txtarea__detail {
  margin-top: 40px;
}
.topContent .topContent__btnarea {
  margin: 20px auto 0;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}
.topContent .topContent__btnarea li {
  width: 49%;
  margin-right: 2%;
}
.topContent .topContent__btnarea li:nth-child(2n) {
  margin-right: 0;
}
.topContent .topContent__btnarea li a {
  border-bottom: 2px solid #528f5c;
  color: #528f5c;
  position: relative;
  z-index: 1;
  padding: 15px 100px 15px 50px;
  display: block;
  margin-top: 20px;
  overflow: hidden;
  font-size: 2rem;
}
.topContent .topContent__btnarea li a:before {
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #528f5c;
  z-index: -1;
}
.topContent .topContent__btnarea li a:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 30px;
  bottom: 24%;
  border-bottom: 20px solid transparent;
  border-top: 0px solid transparent;
  border-left: 20px solid #333;
  transform: rotate(180deg);
  opacity: 0.4;
  transition: 0.4s;
}
.topContent .topContent__btnarea li a:hover {
  color: #fff;
}
.topContent .topContent__btnarea li a:hover:before {
  transition: 0.4s;
  width: 100%;
}
.topContent .topContent__btnarea li a:hover:after {
  transition: 0.4s;
  transform: rotate(0deg);
  bottom: 32%;
  opacity: 1;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 20px solid #fff;
}
@media all and (max-width: 1680px) {
  .topContent .topContent__btnarea li a {
    padding: 15px 50px 15px 20px;
  }
}

.topContact {
  margin: 100px auto 0;
  position: relative;
  z-index: 1;
}
.topContact .topContact__inner {
  padding: 100px 0;
  position: relative;
}
.topContact .mainContents__title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.topContact .mainContents__title .eng {
  font-size: 8rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
.topContact .mainContents__title .ja {
  margin: 0 auto;
}
.topContact .topContact__txtarea {
  text-align: center;
  margin: 50px auto;
}
.topContact .topContact__linkBox {
  display: flex;
  max-width: 1200px;
  justify-content: center;
  margin: 50px auto 100px;
}
.topContact .topContact__linkBox a {
  transition: 0.4s;
  width: 48%;
  margin: 0 1%;
  padding: 40px 20px;
  border: 1px solid #528f5c;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.topContact .topContact__linkBox a:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 102%;
  left: 10%;
  top: -1%;
  background-color: #fff;
  z-index: -1;
}
.topContact .topContact__linkBox a:after {
  position: absolute;
  content: "";
  width: 102%;
  height: 50%;
  left: -1%;
  top: 25%;
  background-color: #fff;
  z-index: -1;
}
.topContact .topContact__linkBox a i {
  font-size: 4rem;
  color: #528f5c;
  transition: 0.4s;
}
.topContact .topContact__linkBox a .linkBox__txt {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  transition: 0.4s;
}
.topContact .topContact__linkBox a:hover {
  transition: 0.4s;
  transform: scale(1.05);
}
.topContact .topContact__linkBox a:hover i {
  color: #333;
  transition: 0.4s;
}
.topContact .topContact__linkBox a:hover .linkBox__txt {
  color: #333;
  transition: 0.4s;
}
.topContact .topContact__ggmap {
  margin: 0 auto;
  width: 80%;
  position: relative;
  height: 402px;
}
.topContact .topContact__ggmap iframe {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: 0.4s;
  position: relative;
  height: 400px;
}
.topContact .topContact__ggmap:hover {
  transition: 0.4s;
  border: 1px solid #528f5c;
}
@media all and (max-width: 1680px) {
  .topContact .topContact__inner {
    padding: 0;
  }
}

/* page content
----------------------------------*/
.twoColumn {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.twoColumn:after {
  position: absolute;
  content: "";
  width: 80%;
  height: 480px;
  bottom: 80px;
  left: 0;
  background-color: rgba(231, 231, 223, 0.4);
  z-index: -1;
}
.twoColumn .twoColumn__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-grow: wrap;
}
.twoColumn .twoColumn__photo {
  width: 50%;
  height: 400px;
}
.twoColumn .twoColumn__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.twoColumn .twoColumn__txtArea {
  width: 50%;
  position: relative;
  padding: 0px 0px 50px 100px;
  z-index: 1;
}
.twoColumn .twoColumn__txtArea .mainContents__title {
  position: relative;
  z-index: 1;
}
.twoColumn .twoColumn__txtArea .mainContents__title .eng {
  font-size: 8rem;
  color: transparent;
  text-shadow: 3px 3px #fff, 4px 4px 0 #5d6f77, 4px 2px 0 #5d6f77, 2px 4px 0 #5d6f77, 2px 2px 0 #5d6f77;
}
.twoColumn .twoColumn__txt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
}
.twoColumn .twoColumn__txt .twoColumn__txt__sub {
  font-size: 1.6rem;
  margin-top: 20px;
}
.twoColumn .twoColumn__detail {
  margin-top: 30px;
  padding: 40px;
  position: relative;
}
.twoColumn .twoColumn__detail:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  background-color: #fff;
  z-index: -1;
}
.twoColumn .twoColumn__detail:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #528f5c;
}
.twoColumn .twoColumn__detail .twoColumn__detail__title span {
  background-color: #528f5c;
  padding: 4px 20px;
  color: #fff;
}
.twoColumn .twoColumn__topWork {
  margin-top: 150px;
}
.twoColumn.twoColumn--reverse {
  padding-bottom: 0;
}
.twoColumn.twoColumn--reverse:after {
  right: 0;
  left: auto;
  height: 400px;
  bottom: auto;
  top: 400px;
  width: 65%;
  display: none;
}
.twoColumn.twoColumn--reverse .twoColumn__photo {
  order: 2;
}
.twoColumn.twoColumn--reverse .twoColumn__txtArea {
  padding: 100px 100px 100px 0px;
  order: 1;
}

.oneColumn {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
}
.oneColumn.p0--top {
  padding: 0 0 100px;
}
.oneColumn.p0--bottom {
  padding: 100px 0 0;
}
.oneColumn.p0 {
  padding: 0;
}
.oneColumn .oneColumn__inner {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.oneColumn .oneColumn__inner.inner--photo {
  background-color: #555555;
}
.oneColumn .mainContents__title .ja {
  margin: 0 auto;
  text-align: center;
}
.oneColumn .oneColumn__photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.oneColumn .oneColumn__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.oneColumn .detail__txt {
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 0 80px;
  font-size: 2rem;
}

.flow__list {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.flow__list li {
  border: 1px solid #528f5c;
  padding: 10px 20px;
  position: relative;
  margin-bottom: 50px;
  background-color: #fff;
}
.flow__list li:last-child:before {
  display: none;
}
.flow__list li:before {
  position: absolute;
  content: "";
  width: 20px;
  border-top: 20px solid #528f5c;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.flow__list .list__num {
  position: absolute;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 8rem;
  line-height: 1;
  color: #528f5c;
  left: 20px;
  top: 0;
}
.flow__list .list__txt {
  font-size: 2rem;
  padding-left: 140px;
}

.detail__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 150px 0;
}
.detail__list li {
  width: 30%;
  margin: 0 3% 0 0;
  border: 1px solid #fff;
  padding: 50px 40px;
  background-color: rgba(51, 51, 51, 0.2);
  color: #fff;
}
.detail__list li:nth-child(3) {
  margin: 0;
}
.detail__list .list__title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
.detail__list .list__txt {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 15px;
  text-align: center;
}
.detail__list .list__icon {
  margin: 0 auto 10px;
  width: 60px;
  text-align: center;
}
.detail__list .list__btn {
  display: block;
  background-color: #fff;
  border-radius: 50px;
  padding: 4px 20px;
  color: #333;
  margin: 20px auto 0;
  text-align: center;
  width: 80%;
  border: 1px solid #fff;
}
.detail__list .list__btn:hover {
  background-color: transparent;
  color: #fff;
}

.work__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 30px;
  width: 80%;
  position: relative;
  z-index: 2;
}
.work__list li {
  width: 49%;
  margin: 0 2% 40px 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
.work__list li:nth-child(2n) {
  margin: 0 0 40px;
}
.work__list .list__photo {
  background-color: #5f5f5f;
  width: 50%;
}
.work__list .list__photo img {
  opacity: 0.6;
  width: auto;
  height: 500px;
  object-fit: cover;
}
.work__list .list__txtarea {
  width: 50%;
  padding: 100px 50px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.work__list .list__txtarea:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  background-color: rgb(245, 245, 245);
  z-index: -1;
}
.work__list .list__txtarea:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border: 1px solid #528f5c;
  z-index: -1;
}
.work__list .list__icon {
  margin: 0 auto;
  z-index: 1;
  width: 120px;
  animation: tateanime 1s infinite;
}
.work__list .list__title {
  color: #333;
  text-align: center;
  margin: 0 auto;
}
.work__list .list__title .eng {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 2rem;
  display: block;
}
.work__list .list__title .ja {
  line-height: 1;
  font-size: 3rem;
  font-weight: bold;
}
.work__list .list__detail {
  margin-top: 30px;
  border: 1px solid #528f5c;
  padding: 20px;
}

.company__list {
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.company__list li {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(141, 141, 141, 0.1);
}
.company__list .list__title {
  width: 140px;
  width: 20%;
  background-color: #686868;
  padding: 8px 20px;
  font-weight: bold;
  color: #fff;
}
.company__list .list__txt {
  padding: 8px 20px;
  width: 86%;
}
.company__list .list__btn {
  display: block;
  background-color: #528f5c;
  border-radius: 50px;
  padding: 2px 20px;
  color: #fff;
  margin: 5px auto 10px 0;
  text-align: center;
  font-size: 1.4rem;
  width: 80%;
  max-width: 200px;
  border: 1px solid #528f5c;
}
.company__list .list__btn:hover {
  background-color: transparent;
  color: #528f5c;
}

.history__list {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.history__list li {
  border: 1px solid #528f5c;
  padding: 10px 40px;
  position: relative;
  margin-bottom: 50px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.history__list li:last-child:before {
  display: none;
}
.history__list li:before {
  position: absolute;
  content: "";
  width: 20px;
  border-top: 20px solid #528f5c;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.history__list .list__num {
  width: 25%;
  color: #333;
  font-size: 2rem;
  border-right: 1px solid #528f5c;
}
.history__list .list__num span {
  font-family: "Black Ops One", cursive;
  font-weight: 300;
  font-size: 6rem;
  line-height: 1;
  color: #528f5c;
  padding: 0 4px;
}
.history__list .list__txt {
  width: 75%;
  font-size: 2rem;
  padding-left: 40px;
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto 0;
}
.gallery__list li {
  width: 24%;
  padding: 20px;
  margin: 0 1.33% 40px 0;
  background-color: #fff;
  background-color: rgba(82, 143, 92, 0.1);
}
.gallery__list li:nth-child(4n) {
  margin: 0 0 40px 0;
}
.gallery__list .list__photo {
  display: block;
}
.gallery__list .list__txt {
  text-align: center;
  margin-top: 10px;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 1.4rem;
}

/* flex
----------------------------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .flex {
    display: block;
  }
}
.flex.w-100 {
  width: 100%;
}
.flex.j-center {
  justify-content: center;
}
.flex.a-center {
  align-items: center;
}
.flex.a-first {
  flex-wrap: inherit;
  align-items: flex-start;
}
.flex.a-end {
  align-items: flex-end;
}
@media all and (max-width: 1100px) {
  .flex.flex-pro {
    display: block;
  }
}
.flex.flex-pro .flex-30 {
  width: 30%;
}
@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-30 {
    width: 100%;
    margin: 0 auto;
  }
}
.flex.flex-pro .flex-60 {
  width: 60%;
}
@media all and (max-width: 1100px) {
  .flex.flex-pro .flex-60 {
    width: 100%;
    margin: 0 auto;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet {
    display: block;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-40 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-48 {
    width: 100%;
    margin: 0 auto;
  }
  .flex.flex-tablet .flex-48.l-m2 {
    margin-left: auto;
  }
  .flex.flex-tablet .flex-48.l-m4 {
    margin-left: auto;
  }
}
.flex.flex-tablet .flex-50 {
  width: 50%;
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-50 {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-56 {
    width: 90%;
    margin: 20px auto 0;
    margin-left: auto;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.flex.flex-tablet .flex-60 {
  width: 60%;
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-60 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex.flex-tablet .flex-70 {
  width: 70%;
}
@media all and (max-width: 896px) {
  .flex.flex-tablet .flex-70 {
    width: 100%;
  }
}
.flex .flex-10 {
  width: 10%;
}
@media all and (max-width: 639px) {
  .flex .flex-10 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-15 {
  width: 15%;
}
@media all and (max-width: 639px) {
  .flex .flex-15 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-18 {
  width: 18%;
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-18 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-20 {
  width: 20%;
}
@media all and (max-width: 639px) {
  .flex .flex-20 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-25 {
  width: 25%;
}
@media all and (max-width: 639px) {
  .flex .flex-25 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-30 {
  width: 30%;
}
@media all and (max-width: 639px) {
  .flex .flex-30 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-36 {
  width: 36%;
}
@media all and (max-width: 639px) {
  .flex .flex-36 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-38 {
  width: 38%;
}
@media all and (max-width: 639px) {
  .flex .flex-38 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-40 {
  width: 40%;
}
@media all and (max-width: 639px) {
  .flex .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48 {
  width: 48%;
}
@media all and (max-width: 639px) {
  .flex .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m2 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-48.l-m2.sp-m60 {
    margin-top: 60px;
  }
}
.flex .flex-48.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m4 {
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-50 {
  width: 50%;
}
@media all and (max-width: 896px) {
  .flex .flex-50 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-56 {
  width: 56%;
}
.flex .flex-56.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 896px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
}
@media all and (max-width: 639px) {
  .flex .flex-56.l-m4 {
    width: 90%;
    margin-left: auto;
  }
}
.flex .flex-58 {
  width: 58%;
}
.flex .flex-58.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-58 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .flex .flex-58.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-60 {
  width: 60%;
}
.flex .flex-60.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-60.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-60.l-m10 {
  margin-left: 10%;
}
@media all and (max-width: 639px) {
  .flex .flex-60.l-m10 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .flex .flex-60 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-68 {
  width: 68%;
}
@media all and (max-width: 639px) {
  .flex .flex-68 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.flex .flex-68.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-68.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-70 {
  width: 70%;
}
@media all and (max-width: 639px) {
  .flex .flex-70 {
    width: 100%;
  }
}
.flex .flex-78 {
  width: 78%;
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-78 {
    margin-left: auto;
    width: 100%;
  }
}
.flex .flex-88 {
  width: 88%;
}
.flex .flex-88.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-88 {
    margin-left: auto;
    width: 100%;
  }
}
.flex .flex-80 {
  width: 80%;
  margin-left: 3%;
}
@media all and (max-width: 639px) {
  .flex .flex-80 {
    margin-left: auto;
    width: 100%;
  }
}

/* slider
----------------------------------*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slick-slide {
  margin: 0 5px;
  padding: 15px !important;
  height: 200px;
}
.slick-slide img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slick-slide img {
  width: 100%;
  height: 100%;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:before {
  position: absolute;
  content: "";
  color: #000;
  border-right: 20px solid #528f5c;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  left: -20px;
  top: 44%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-prev:before {
    left: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-prev {
    left: -30px !important;
  }
}

.slick-next:before {
  position: absolute;
  content: "";
  color: #000;
  border-left: 20px solid #528f5c;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 20px;
  height: 10px;
  right: -20px;
  top: 44%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-next:before {
    right: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-next {
    right: -30px !important;
  }
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slick-track {
  height: 300px;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0px auto 60px;
}
.slide_list li {
  margin-right: 1%;
  border-radius: 0px;
  overflow: hidden;
}
.slide_list li:nth-child(2n) {
  margin-top: 40px;
}
.slide_list li img {
  width: auto;
  height: 300px;
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 240px;
  }
}

/* Q and A
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px auto 0;
  cursor: pointer;
  max-width: 1000px;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl:after {
  position: absolute;
  top: 30px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.qa-list .open::after {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: rgb(59, 105, 231);
  background: linear-gradient(150deg, rgb(59, 105, 231) 0%, rgb(116, 213, 255) 100%);
  color: #fff;
}
.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #fff;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background-color: #fff;
}
.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #c32121;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}
.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 26px 16px 40px;
    font-size: 12px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 40px;
    font-size: 10px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
  .qa-list dl dd p {
    margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}
/*----------------------------------
tab
----------------------------------*/
.tab {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab li {
  width: 18%;
  margin-left: 2%;
  background-color: #363636;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid #363636;
}
.tab li a {
  color: #fff;
}
.tab li:hover {
  background-color: #fff;
}
.tab li:hover a {
  color: #363636;
}

/*----------------------------------
txt anime
----------------------------------*/
.txtanime {
  transform: translateY(15px);
  opacity: 0;
}
.txtanime.type2.txtanime-move {
  animation: txtanime-on 0.5s ease-out 0.2s forwards;
}
.txtanime.type3.txtanime-move {
  animation: txtanime-on 0.5s ease-out 0.3s forwards;
}

.txtanime-move {
  animation: txtanime-on 0.5s ease-out 0.1s forwards;
}

@keyframes txtanime-on {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*----------------------------------
bg anime
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg2cloumn::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #528f5c;
  animation: bg2cloumnAnime 1s forwards;
}

.bg2cloumn::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  bottom: 0;
  right: 0;
  background-color: #528f5c;
  animation: bg2cloumnAnime2 1s forwards;
}

@keyframes bg2cloumnAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
@keyframes bg2cloumnAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  51% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*印象編　4-9 背景色が伸びて出現（左から）*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #528f5c;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*印象編　4-9 背景色が伸びて出現（右から）*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #111;
  /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*----------------------------------
モーダルウィンドウ
----------------------------------*/
@media all and (max-width: 639px) {
  .modaal-content-container {
    padding: 15px !important;
  }
}

.modaal-container .modaal-close {
  right: 0;
  left: 0;
  top: auto;
  bottom: 50px;
  margin: 0 auto;
  text-align: center;
}

.modal-wrapper {
  display: none;
}

.modalbox .txtarea {
  padding-left: 50px;
}
@media all and (max-width: 896px) {
  .modalbox .txtarea {
    padding-left: 0px;
  }
}

.mainImg {
  margin-bottom: 10px;
  height: 400px;
  text-align: center;
  margin: 0 auto 20px;
}
.mainImg img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 896px) {
  .mainImg {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .mainImg {
    height: 120px;
  }
}

.subImg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.subImg li {
  width: 23%;
  margin: 0 1% 20px;
  height: 100px;
}
.subImg li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (max-width: 896px) {
  .subImg li {
    height: 90px;
    width: 18%;
    margin: 0 1% 20px;
  }
  .subImg li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media all and (max-width: 639px) {
  .subImg li {
    height: 50px;
    width: 16%;
    margin: 0 1% 20px;
  }
}

.modalarea__title {
  background-color: #528f5c;
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  text-align: center;
  padding: 5px 10px;
}

.modalarea__detail .modalarea_detail--title {
  font-weight: bold;
  font-size: 2rem;
  color: #528f5c;
  font-family: "Zen Old Mincho", "Noto Serif JP", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  margin-top: 20px;
}
.modalarea__detail .modalarea_detail--price {
  text-align: right;
}
.modalarea__detail .modalarea_detail--price .main {
  font-size: 2rem;
  font-family: "Black Ops One", cursive;
  font-weight: 300;
}
.modalarea__detail .modalarea_detail--price .min {
  color: #555;
  font-size: 1.4rem;
  padding-left: 5px;
}
.modalarea__detail .modalarea_detail-txt {
  margin-top: 15px;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .modalarea__detail .modalarea_detail--title {
    font-size: 1.5rem;
  }
  .modalarea__detail .modalarea_detail--price .main {
    font-size: 1.5rem;
  }
  .modalarea__detail .modalarea_detail--price .min {
    font-size: 10px;
  }
  .modalarea__detail .modalarea_detail-txt {
    font-size: 1rem;
  }
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 639px) {
  .sponly {
    display: block;
  }
}/*# sourceMappingURL=basis.css.map */