@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
.font-roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}
.font-noto {
  font-family: 'Noto Sans JP';
}
html, body {
  height: 100%;
}
*, *::after, *::before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
body {
  color: #000000;
  background:#d4d8cd;
  background-size:3% auto;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  font-size: 1.4em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
p {
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}
main {
  display: block;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  display: block;
  color: #fff;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
sup, sub {
  font-size: 80%;
}

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


.wrap {
  background-blend-mode: lighten;
  z-index:9990;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.wrap:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d4d8cd;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
  content: '';
}

.wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: fadeIn 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeIn 1s;
  -webkit-animation-fill-mode: backwards;
  max-width:350px;
  width:50%;
  height:auto;

}

.wrap.active {
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;

}

.wrap.active:before {
  transform: translate(0, -100%);
}


.wrap.active img {
  display: none;
}

@media only screen and (max-width:480px) {
  .wrap img{
    width:60%;
    margin:Fauto;
  }
}




.wrapmain {

}


/*-------------------
navigation
-------------------*/
#navigation{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:80px;
  z-index:5;
  background:rgba(255,255,255,.5);

}



#navigation h1{
  padding:5px 0 0 5%;
  animation: fadeInTop 1s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInTop 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: backwards;
}

#navigation h1 a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity:1;
  display:inline-block;
}

#navigation h1 a:hover{
  opacity:.7;
}

#navigation h1 img{
  vertical-align:middle;

}

#toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background:#2f4421;
  width:80px;
  height:100%;
  display:flex;
  justify-content: center;
  align-items: center;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  animation: fadeInLeft 1s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: backwards;
}

#toggle:after{
   content:'MENU';
   display:block;
   color:#FFFFFF;
   font-family: 'Roboto', sans-serif;
   font-size:0.7em;
   font-weight:bold;
   -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#toggle:hover{
  background:#FFFFFF;
}

#toggle:hover:after{
   color:#2f4421;
}

#toggle-box {


}


#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #2f4421;
  position: absolute;
  transition: transform .5s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}
#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
    bottom: 0;
}

#toggle {
    z-index: 1000;
}
#main {
    position: relative;  
    z-index: 990;
}

#nav-content {
    z-index: 900;
    overflow: auto;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,1);
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    visibility:hidden;
    opacity:0;
    -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  overflow:hidden;
}

#nav-content ul {
  list-style: none;
  text-align:left;
}


#nav-content nav {
  padding-top:5em;
  padding-left:2em;
}

#nav-content .nav-in {
  padding-left:1em;
}

#nav-content a {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 0.5em 0;
  transition: opacity .6s ease;
  font-weight:500;
  font-size:0.7em;
  line-height:3;
  -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#nav-content a:before{
  content:'▶';
  padding-right:0.5em;
  color: #c63433;
  display:inline-block;
  -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size:60%;
}

#nav-content a:hover {
  color:#2f4421;
}

#nav-content a:hover:before{
  color: #b4b4b4;
}

#nav-content .nav-in a{
  padding:0.3em 0;
}

.is-open {
   overflow:hidden;
}

.is-open #navigation .nav-bg{
  background-color:rgba(128,128,118,0.9);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
}

.is-open #toggle-box img{
   display:none;
}



.is-open #toggle-box > span {
    background: #c63433;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}


.is-open #toggle{
  background:#FFFFFF;
}

.is-open #toggle:hover{
  background:#2f4421;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.is-open #toggle:after{
   content:'CLOSE';
   display:block;
   color:#2f4421;
   font-family: 'Roboto', sans-serif;
   font-size:0.7em;
   font-weight:bold;
   -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.is-open #toggle:hover:after{
   color:#FFFFFF;
}

.is-open #nav-content {
  z-index: 999;
  visibility:visible;
  opacity:1;
  width:30%;
  height:100%;
  transform:scale(1);
  background: rgba(255,255,255,1);
}


@media only screen and (min-width:1500px) {

  .is-open #nav-content {
    width:350px;
  }
}


@media only screen and (max-width:1000px) {

  #navigation{
    height:60px;
  }

  #navigation h1{
    padding:5px 0 0 5%;
    width:30%;
  }

  #toggle {
    width:60px;
  }
}

@media only screen and (max-width:640px) {
  #navigation h1{
    padding:5px 0 0 5%;
    width:40%;
  }

  #nav-content nav {
    padding-top:3em;
    padding-left:2em;
  }


  .is-open #nav-content {
    width:50%;
  }
}


@media only screen and (max-width:480px) {
  #navigation{
    height:50px;
  }
  #navigation h1{
    padding:1% 0 0 5%;
    width:50%;
  }

  #toggle:after{
    font-size:3vw;
  }

  #toggle {
    width:50px;
  }

  .is-open #nav-content {
    width:70%;
  }

  #nav-content a {
    display: block;
    color: #000000;
    text-decoration: none;
    padding: 0.5em 0;
    transition: opacity .6s ease;
    font-weight:500;
    font-size:4vw;
    line-height:2.5;
  }

  .is-open #toggle:after{
     font-size:3vw;
  }
  
}






.swiper-wrapper{
  width:100%;
  /*max-height:1000px;*/
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  text-align: center;

  position:relative;
  
}


@-webkit-keyframes zoomUp {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(1.15);
transform: scale(1.15);
}
}

@keyframes zoomUp {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(1.15);
transform: scale(1.15);
}
}

.swiper-container{
  position: relative !important;
}


.swiper-slide#mnimg01{
  
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
-webkit-animation: zoomUp 12s linear 0s;
animation: zoomUp 12s linear 0s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

.swiper-slide {
overflow: hidden !important;
-webkit-backface-visibility: hidden !important;
backface-visibility: hidden !important;
}
.swiper-img {
background-size: cover !important;
background-position: center center !important;
  padding-top:calc(100% / 2.5);
}

.swiper-slide#mnimg01 .mnicp{
  position:absolute;
  top:20%;
  right:10%;
  text-align:right;
}

.swiper-slide-active#mnimg01 .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: .8s;
  -webkit-animation-delay: .8s;
}

.swiper-slide-active#mnimg01 .mnicp > div.scp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}




.swiper-slide#mnimg02 .mnicp{
  position:absolute;
  top:40%;
  left:5%;
  text-align:left;
}

.swiper-slide-active#mnimg02 .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: .8s;
  -webkit-animation-delay: .8s;
}

.swiper-slide-active#mnimg02 .mnicp > div.scp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}


.swiper-slide#mnimg03 .mnicp{
  position:absolute;
  top:20%;
  left:10%;
  text-align:left;
}

.swiper-slide-active#mnimg03 .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: .8s;
  -webkit-animation-delay: .8s;
}

.swiper-slide-active#mnimg03 .mnicp > div.scp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.swiper-slide img{
  width:100%;
  vertical-align:middle;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #c63433;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 2vw !important;
    left: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 2vw !important;
    right: auto;
}


.swiper-pagination{
  bottom:-4vw !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px 10px;
}

.swiper-pagination-bullet {
  background-color: #FFFFFF;
  height: 15px;
  width: 15px;
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-scrollbar{
  display:none;
}


.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {

}




@media only screen and (min-width:1500px) {
  .swiper-img {
    padding-top:600px;
  }

  .swiper-pagination{
    bottom:-2em !important;
  }

}




@media only screen and (max-width:1000px) {
  .swiper-pagination{
    bottom:-5vw !important;
  }

  .swiper-pagination-bullet {
    background-color: #FFFFFF;
    height: 10px;
    width: 10px;
  }

}

@media only screen and (max-width:640px) {
  .swiper-pagination{
    bottom:-7vw !important;
  }

  .swiper-img {
    padding-top:calc(100% / 2);
  }
}

@media only screen and (max-width:480px) {
  .swiper-pagination{
    bottom:-11vw !important;
  }
  .swiper-img {
    padding-top:calc(100% / 1.5);
  }

  .swiper-slide#mnimg02 .mnicp{
    position:absolute;
    top:60%;
    left:5%;
    text-align:left;
  }

  .swiper-slide#mnimg03 .swiper-img{
    background-position:right center;
  }
}

#recr-bt{
  position:fixed;
  bottom:3%;
  right:3%;
  z-index:5;
  animation: fadeInBottom 1s;
  animation-delay: 1.2s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 1.2s;
  -webkit-animation-fill-mode: backwards;
}


#recr-bt a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: scale(1, 1);
}

#recr-bt a:hover{
  transform: scale(1.2, 1.2);
}

@media only screen and (max-width:800px) {
  #recr-bt{
    width:20%;
    bottom:2%;
  right:2%;
  }

}




/*-------------------
header
-------------------*/
header {
  width: 100%;
  position: relative;
  background:#FFFFFF;
  border-radius:0;
  padding-top:80px;
}

header .mainimg {
  position: relative;
  margin: 0 auto;
  padding:0;

}

header .mainimg .mnicp{
  text-align:left;

}

header .mainimg .mnicp > div{
  background:#FFFFFF;
  display:inline-block;
  padding:0.1em 0.5em;
  font-size:1.1em;
  font-weight:600;
  margin:5px 0;
}

header .mainimg .mnicp > div span{
  font-size:120%;
}

@media only screen and (max-width:1200px) {

  header .mainimg .mnicp > div{
    font-size:0.9em;
  }
}

@media only screen and (max-width:1200px) {

  header .mainimg .mnicp > div{
    font-size:2vw;
  }
}

@media only screen and (max-width:1000px) {
  header {
    padding-top:60px;
  }

}

@media only screen and (max-width:480px) {
  header {
    padding-top:50px;
  }

  header .mainimg .mnicp > div{
    font-size:4vw;
    margin:0.5vw 0;
  }

}


/*pabout
--------------*/
#pabout header .mainimg{
  background:url(../images/about/mainimg_pc.jpg) no-repeat center top;
  background-size:100% auto;
  padding-top:calc(100% / 2.5);
}

#pabout header .mainimg .mnicp{
  position:absolute;
  top:20%;
  left:10%;
}

#pabout header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pabout header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

@media only screen and (min-width:1500px) {
  #pabout header .mainimg{
    padding-top:600px;
  }
}

@media only screen and (max-width:480px) {
  #pabout header .mainimg{
    background:url(../images/about/mainimg_sp.jpg) no-repeat center top;
    background-size:auto 100%;
    padding-top:calc(100% / 2);
  }

}


/*pservice
--------------*/
#pservice header .mainimg{
  background:#a9b09a;
  padding-top:calc(100% / 2.5);
}

#pservice header .mainimg ul{
  display:flex;
  justify-content: center;
  position:absolute;
  top:40%;
  left:0;
  right:0;
}

#pservice header .mainimg ul li{
  padding:0 1%;
}

#pservice header .mainimg ul li a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity:1;
}

#pservice header .mainimg ul li a:hover{
  opacity:.7;
}

#pservice header .mainimg .mnicp{
  position:absolute;
  top:10%;
  left:10%;
}

#pservice header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pservice header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

@media only screen and (min-width:1500px) {
  #pservice header .mainimg{
    padding-top:600px;
  }
}

@media only screen and (max-width:1200px) {
  #pservice header .mainimg ul{
    width:75%;
    margin:0 auto;
    top:35%;
  }
}

@media only screen and (max-width:480px) {
  #pservice header .mainimg{
    padding-top:calc(100% / 2);
  }

  #pservice header .mainimg ul{
    width:80%;
    margin:0 auto;
    top:45%;
  }
}

/*pbiomass
--------------*/
#pbiomass header .mainimg{
  background:url(../images/biomass/mainimg_pc.jpg) no-repeat center top;
  background-size:100% auto;
  padding-top:calc(100% / 2.5);
}

#pbiomass header .mainimg .mnicp{
  position:absolute;
  top:20%;
  left:10%;
}

#pbiomass header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pbiomass header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

@media only screen and (min-width:1500px) {
  #pbiomass header .mainimg{
    padding-top:600px;
  }
}

@media only screen and (max-width:480px) {
  #pbiomass header .mainimg{
    background:url(../images/biomass/mainimg_sp.jpg) no-repeat center top;
    background-size:auto 100%;
    padding-top:calc(100% / 2);
  }

}




/*phreso
--------------*/
#phreso header .mainimg{
  background:#a9b09a;
  padding-top:calc(100% / 2.5);
}

#phreso header .mainimg ul{
  display:flex;
  justify-content: center;
  position:absolute;
  top:40%;
  left:0;
  right:0;
}

#phreso header .mainimg ul li{
  padding:0 1%;
}

#phreso header .mainimg ul li a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity:1;
}

#phreso header .mainimg ul li a:hover{
  opacity:.7;
}

#phreso header .mainimg .mnicp{
  position:absolute;
  top:10%;
  left:10%;
}

#phreso header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#phreso header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}


@media only screen and (min-width:1500px) {
  #phreso header .mainimg{
    padding-top:600px;
  }
}

@media only screen and (max-width:1200px) {
  #phreso header .mainimg ul{
    top:30%;
    width:55%;
    margin:0 auto;
  }
}

@media only screen and (max-width:480px) {
  #phreso header .mainimg{
    padding-top:calc(100% / 2);
  }

  #phreso header .mainimg ul{
    width:60%;
    margin:0 auto;
    top:40%;
  }
}


/*paccess
--------------*/
#paccess header .mainimg{
  background:#d4d8cd;
  padding-top:calc(100% / 7);
}


#paccess header .mainimg .mnicp{
  position:absolute;
  top:25%;
  left:10%;
}

#paccess header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#paccess header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

@media only screen and (min-width:1500px) {
  #paccess header .mainimg{
    padding-top:200px;
  }
}

@media only screen and (max-width:480px) {
  #paccess header .mainimg{
    padding-top:calc(100% / 5);
  }
}



/*pcontact
--------------*/
#pcontact header .mainimg{
  background:#d4d8cd;
  padding-top:calc(100% / 7);
}


#pcontact header .mainimg .mnicp{
  position:absolute;
  top:25%;
  left:10%;
}

#pcontact header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pcontact header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}


@media only screen and (min-width:1500px) {
  #pcontact header .mainimg{
    padding-top:200px;
  }
}

@media only screen and (max-width:480px) {
  #pcontact header .mainimg{
    padding-top:calc(100% / 5);
  }
}

/*pprivacy
--------------*/
#pprivacy header .mainimg{
  background:#d4d8cd;
  padding-top:calc(100% / 7);
}


#pprivacy header .mainimg .mnicp{
  position:absolute;
  top:25%;
  left:10%;
}

#pprivacy header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pprivacy header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}


@media only screen and (min-width:1500px) {
  #pprivacy header .mainimg{
    padding-top:200px;
  }
}


@media only screen and (max-width:480px) {
  #pprivacy header .mainimg{
    padding-top:calc(100% / 5);
  }
}






@media only screen and (max-width:1100px) {
  header .head_lg {
    padding: 1vw 0;
  }

  header .head_lg a{
    font-size:0.9em;
  }
  
}



@media only screen and (max-width:640px) {
  header .head_lg .head_lg_wp{
    padding:0 2vw;
  }
  header .head_lg a{
    font-size:2.5vw;
  }
}

@media only screen and (max-width:480px) {
  header {
    border-radius:0 0 20px 0 ;
  }
  header .head_lg {
    border-radius:0 0 0 15px;
  }
  header h1 {
    padding:10vw 13vw 5vw 0;
  }

}


/*pgreeting
--------------*/
#pgreeting header .mainimg{
  background:#d4d8cd;
  padding-top:calc(100% / 7);
}


#pgreeting header .mainimg .mnicp{
  position:absolute;
  top:25%;
  left:10%;
}

#pgreeting header .mainimg .mnicp > div{
  padding:0.1em 1em;
}

#pgreeting header .mainimg .mnicp > div.fcp{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}


@media only screen and (min-width:1500px) {
  #pgreeting header .mainimg{
    padding-top:200px;
  }
}


@media only screen and (max-width:480px) {
  #pgreeting header .mainimg{
    padding-top:calc(100% / 5);
  }
}









/*-------------------
animation
-------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




/*-------------------
common
-------------------*/

.secin{
  width:80%;
  max-width:1200px;
  margin:0 auto;
  position:relative;
  display:flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom:5vw;
}

.mctents p{
  font-size:0.7em;
  line-height:2;
  padding:0;
}

.mctents dl{
  font-size:0.7em;
  line-height:2;
}

.mctents dl dt{
  font-weight:bold;
}

.mctents .plink{
  background:#FFFFFF;
  display:inline-block;
  padding:1em 3em 1em 2em;
  margin:2em auto;
  position:relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height:1;
}

.mctents .plink img{
  vertical-align:middle;
}

.mctents .plink:after{
  content:'';
  display:block;
  background:url(../images/bt_arrow_pc.png) no-repeat center center;
  background-size:100% auto;
  width:13px;
  height:13px;
  position:absolute;
  top:50%;
  right:8%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mctents .plink:hover{
  background:#eeeeee;
}

.mctents .plink:hover:after{
  right:6%;
}

@media only screen and (min-width:1500px) {
  .secin{
    padding-bottom:3em;
  }

}

@media only screen and (max-width:1200px) {

  .mctents p{
    font-size:1.5vw;
    line-height:2;
    padding:0;
  }

  .mctents dl{
    font-size:1.5vw;
    line-height:2;
  }

  .mctents .plink{
    padding:1.5vw 3em 2vw 2em;
    margin:5vw auto;
  }
}

@media only screen and (max-width:768px) {

  .mctents p{
    font-size:1.7vw;
    line-height:2;
    padding:0;
  }

  .mctents dl{
    font-size:1.7vw;
    line-height:2;
  }
}

@media only screen and (max-width:640px) {
  .mctents .plink{
    padding:1.5vw 2em 2vw 1em;
    margin:5vw auto;
  }

  .mctents .plink img{
  }

  .mctents .plink:after{
    width:10px;
    height:10px;
    right:6%;
  }

  .mctents .plink:hover:after{
    right:5%;
  }

}

@media only screen and (max-width:480px) {

  .secin{
    display:block;
  }

  .mctents p{
    font-size:3vw;
    line-height:2;
    padding:0;
  }

  .mctents dl{
    font-size:3vw;
    line-height:2;
  }

  .mctents .plink{
    padding:.5vw 2em 2vw 1em;
  }
}



/*-------------------
tabout
-------------------*/
#tabout {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#tabout h2{
  width:30%;
}

#tabout .mctents{
  text-align:left;
  width:70%;
}

#tabout .mctents p{
  text-align:left;
}

#tabout:after {
  content:'';
  display:block;
  background:url(../images/top/img01.jpg) no-repeat center center;
  width:100%;
  height:calc(100vw / 3);
  background-attachment:fixed;
}

@media only screen and (min-width:1500px) {
  #tabout {
    padding:4em 0 0 0;
  }

  #tabout:after {
    height:400px;
  }

}

@media only screen and (max-width:1200px) {
  #tabout h2{
    padding-right:5%;
  }

}

@media only screen and (max-width:480px) {
  #tabout {
    padding:10vw 0 0 0;
  }

  #tabout h2{
    width:50%;
    padding:0;
    margin:0 auto;
  }

  #tabout .mctents{
    text-align:left;
    width:100%;
  }

  #tabout .plink{
    display:block;
  }

  #tabout .plink img{
    width:50%;
  }

}

/*-------------------
tworks
-------------------*/
#tworks {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#tworks h2{
  width:30%;
}

#tworks .mctents{
  text-align:left;
  width:70%;
}

#tworks .mctents p{
  text-align:left;
}

#tworks:after {
  content:'';
  display:block;
  background:url(../images/top/img02.jpg) no-repeat center center;
  width:100%;
  height:calc(100vw / 3);
  background-attachment:fixed;
}

@media only screen and (min-width:1500px) {
  #tworks {
    padding:4em 0 0 0;
  }

  #tworks:after {
    height:400px;
  }
}

@media only screen and (max-width:1200px) {
  #tworks h2{
    padding-right:5%;
    padding-left:10%;
  }

}

@media only screen and (max-width:480px) {

  #tworks h2{
    width:30%;
    padding:0;
    margin:0 auto;
  }

  #tworks .mctents{
    text-align:left;
    width:100%;
  }

  #tworks .plink{
    display:block;
  }

  #tworks .plink:nth-child(2) img{
    width:80%;
  }

  #tworks .plink:nth-child(3) img{
    width:90%;
  }

}

/*-------------------
treso
-------------------*/
#treso {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#treso h2{
  width:30%;
}

#treso .mctents{
  text-align:left;
  width:70%;
}

#treso .mctents p{
  text-align:left;
}

@media only screen and (min-width:1500px) {
  #treso {
    padding:4em 0 0 0;
  }

}

@media only screen and (max-width:1200px) {
  #treso h2{
    padding-right:5%;
    padding-left:10%;
  }
}

@media only screen and (max-width:480px) {

  #treso h2{
    width:30%;
    padding:0;
    margin:0 auto;
  }

  #treso .mctents{
    text-align:left;
    width:100%;
  }

  #treso .plink{
    display:block;
  }

  #treso .plink img{
    width:25%;
  }

}

/*-------------------
about
-------------------*/
#about {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#about h2{
  width:30%;
}

#about .mctents{
  text-align:left;
  width:70%;
}

#about .mctents dl{
  display:flex;
  flex-wrap: wrap;
}

#about .mctents dl dt{
  font-weight:normal;
  border-bottom:1px solid #2f4421;
  padding:0.2em 1em;

}

#about .mctents dl dd{
  border-bottom:1px solid #2f4421;
  padding:0.2em 1em;

}

#about .mctents dl.gaiyou dt{
  width:30%;
}

#about .mctents dl.gaiyou dd{
  width:70%;
}

#about .mctents dl.info dt{
  width:40%;
}

#about .mctents dl.info dd{
  width:60%;
}

#about .mctents dl.info dd a{
  display:inline-block;
  color:#2f4421;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#about .mctents dl.info dd a:hover{
  color:#FFFFFF;
  background:#2f4421;
}

@media only screen and (min-width:1500px) {
  #about {
    padding:4em 0 0 0;
  }

}

@media only screen and (max-width:1200px) {
  #about h2{
    padding-right:5%;
    padding-left:10%;
  }
}

@media only screen and (max-width:480px) {
  #about h2{
    width:25%;
    margin:0 auto;
    padding:0;
  }

  #about .mctents{
    text-align:left;
    width:100%;
  }

  #about .plink img{
    width:60%;
  }
}



/*-------------------
service
-------------------*/
#service {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#service .secin{
  padding-top:5vw;
}

#service .secin:first-of-type{
  padding-top:0;
}

#service h2{
  width:30%;
}

#service .mctents{
  text-align:left;
  width:70%;
}

#service .mctents p{
  text-align:left;
}

#service .mctents dl{
  padding-top:1em;
}

#service .svbg{
  display:flex;
  justify-content: center;
  width:100%;
}

#service .svbg li{
  width:calc(100% / 4);
}


#service .svbg li img{
  width:100%;
  height:auto;
  vertical-align:bottom;
}


@media only screen and (min-width:1500px) {
  #service {
    padding:4em 0 0 0;
  }

  #service .secin{
    padding-top:3em;
  }

  #service .svbg{
    height:300px;
    overflow:hidden;
  }
}

@media only screen and (max-width:1200px) {
  #service h2{
    padding-right:5%;
    padding-left:5%;
  }
}


@media only screen and (max-width:480px) {
  #service h2{
    width:25%;
    margin:0 auto;
    padding:0;
  }

  #service .mctents{
    text-align:left;
    width:100%;
  }

  #service .svbg{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    width:100%;
  }

  #service .svbg li{
    width:calc(100% / 2);
  }


}

/*-------------------
biomass
-------------------*/
#biomass {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#biomass .secin{
  padding-top:5vw;
}

#biomass .secin:first-of-type{
  padding-top:0;
}

#biomass h2{
  width:30%;
}

#biomass .mctents{
  text-align:left;
  width:70%;
}

#biomass .mctents p{
  text-align:left;
}

#biomass .mctents dl{
  padding-top:1em;
}

#biomass .bioimg{
  background:#FFFFFF;
  padding:5vw 0;
}

#biomass .biolist{
  background:#FFFFFF;
  width:30%;
  margin:2em auto 0 20%;
  text-align:center;
  font-size:0.8em;
  font-weight:500;
  padding:1em 2em;
}

#biomass .biolist li{
  position:relative;
}

#biomass .biolist li:after{
  content:'▼';
  display:block;
  font-size:70%;
}

#biomass .biolist li:last-child:after{
  content:none;
}

#biomass .svbg{
  display:flex;
  justify-content: center;
  width:100%;
}

#biomass .svbg li{
  width:calc(100% / 4);
}


#biomass .svbg li img{
  width:100%;
  height:auto;
  vertical-align:bottom;
}

@media only screen and (min-width:1500px) {

  #biomass {
    padding:4em 0 0 0;
  }

  #biomass .secin{
    padding-top:3em;
  }

  #biomass .svbg{
    height:300px;
    overflow:hidden;
  }
}

@media only screen and (max-width:1200px) {
  #biomass h2{
    padding-right:5%;
    padding-left:5%;
  }

  #biomass .bioimg{
    padding:5vw 10%;
  }

  #biomass .biolist{
    width:40%;
    margin:5vw auto 0 20%;
    font-size:1.7vw;
  }
}

@media only screen and (max-width:480px) {
  #biomass h2{
    width:25%;
    margin:0 auto;
    padding:0;
  }

  #biomass .mctents{
    text-align:left;
    width:100%;
  }

  #biomass .svbg{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    width:100%;
  }

  #biomass .svbg li{
    width:calc(100% / 2);
  }

  #biomass .biolist{
    width:40%;
    margin:5vw auto 0 auto;
    font-size:2.5vw;
  }


}


/*-------------------
hreso
-------------------*/
#hreso {
  text-align: center;
  padding:5vw 0 0 0;
  position:relative;
}

#hreso .secin{
  padding-top:5vw;
}

#hreso .secin:first-of-type{
  padding-top:0;
}

#hreso .secin:first-of-type .mctents{
  margin-left:28%;
}

#hreso h2{
  width:28%;
}

#hreso .mctents{
  text-align:left;
  width:72%;
}

#hreso .mctents p{
  text-align:left;
  padding:0 2em;
}

#hreso .mctents .voicea{
  background:#FFFFFF;
  padding:2em 0;
  margin:0 auto 4em auto;
  position:relative;
  background:#FFFFFF url(../images/hreso/voicea_bg_pc.png) no-repeat 95% 85%;
  background-size:25% auto;
}


#hreso .mctents .voiceb{
  background:#FFFFFF;
  padding:2em 0;
  margin:0 auto;
  position:relative;
  background:#FFFFFF url(../images/hreso/voiceb_bg_pc.png) no-repeat 95% 85%;
  background-size:26% auto;
}


#hreso .mctents dl dt{
  font-weight:normal;
}


@media only screen and (min-width:1500px) {

  #hreso {
    padding:4em 0 0 0;
  }

  #hreso .secin{
    padding-top:0;
  }

  #hreso .mctents .voicea{
    margin:0 auto 3em;
  }


}

@media only screen and (max-width:1200px) {
  #hreso h2{
    padding-right:5%;
    padding-left:5%;
  }

  #hreso .mctents .voicea{
    background:#FFFFFF;
    padding:2em 0;
    margin:0 auto 5vw auto;
    position:relative;
    background:#FFFFFF url(../images/hreso/voicea_bg_pc.png) no-repeat 95% 85%;
    background-size:40% auto;
  }

  #hreso .mctents .voiceb{
    background:#FFFFFF;
    padding:2em 0;
    margin:0 auto;
    position:relative;
    background:#FFFFFF url(../images/hreso/voiceb_bg_pc.png) no-repeat 95% 70%;
    background-size:46% auto;
  }
}
@media only screen and (max-width:480px) {
    #hreso h2{
      width:25%;
      margin:0 auto;
      padding:0;
    }

    #hreso .secin:first-of-type .mctents{
      margin-left:0;
    }

    #hreso .mctents{
      text-align:left;
      width:100%;
  }

  #hreso .mctents p{
    text-align:left;
    padding:0;
  }

  #hreso .mctents .voicea p{
    padding:0 2em;
    margin:0 auto 5vw auto;
    position:relative;
    background:#FFFFFF url(../images/hreso/voicea_bg_sp.png) no-repeat 95% 90%;
    background-size:40% auto;
  }

  #hreso .mctents .voiceb p{
    padding:0 2em;
    margin:0 auto;
    position:relative;
    background:#FFFFFF url(../images/hreso/voiceb_bg_sp.png) no-repeat 95% 90%;
    background-size:46% auto;
  }

}

/*-------------------
access
-------------------*/
#access {
  text-align: center;
  padding:0;
  position:relative;
}

#access .secin{
  display:block;
}


#access .secin .snmap{
  height:0;
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  border:1px solid #eee;
}

#access .secin iframe{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height:98%;
  width:99%;
}

#access .secin .foracc{
  background:#f0f0f0;
  padding:2em;
  border-radius:10px;
  font-size:0.7em;
  margin:1em auto;
  display:inline-block;
}

#access .secin dl{
  padding:2em 0;
  font-size:0.7em;
}


@media only screen and (min-width:1500px) {

  #access .secin .snmap{
    padding-bottom:40%;
    border:1px solid #eee;
  }

}

@media only screen and (max-width:1200px) {
  #access .secin .foracc{
    background:#f0f0f0;
    padding:2em;
    border-radius:10px;
    font-size:1.7vw;
    margin:1em auto;
    display:inline-block;
  }

  #access .secin dl{
    padding:2em 0;
    font-size:1.7vw;
  }

}

@media only screen and (max-width:480px) {
   #access .secin .foracc{
    background:#f0f0f0;
    padding:2em;
    border-radius:10px;
    font-size:2.5vw;
    margin:1em auto;
    display:inline-block;
  }

  #access .secin dl{
    padding:2em 0;
    font-size:2.5vw;
  }

}

/*-------------------
contact
-------------------*/
#contact {
  text-align: center;
  padding:0;
  position:relative;
}

#contact .secin{
  display:block;
}


#contact .secin .appformBox{
  width:100%;
  margin:0 auto;
  text-align:left;
  overflow:hidden;
  font-size:0.7em;
}

#contact .appformBox::before, #contact .formBox::after {
content: "";
display: table;
}

#contact .appformBox::after {
clear: both;
}

#contact.confirm .secin .appformBox{
  max-width:600px;
  padding-bottom:3em;
}

#contact .appformBox textarea{
  height:200px;
}

#contact .appformBox .prap{
  width:30%;
  float:left;
  clear:left;
  padding:0.8em 0;
  text-align:right;
}

#contact.confirm .appformBox .prap{
width:40%;
float:left;
clear:left;
padding:0.5em 0;
text-align:right;
}

#contact .appformBox .prapd{
width:60%;
float:left;
vertical-align:middle;
padding:0.3em 1em;
}

#contact.confirm .appformBox .prapd{
width:60%;
float:left;
padding:0.5em 1em;
}

#contact .appformBox .prapd select{
color: #556063;
}

#contact .thanks{
  font-size:1.5em;
  padding-bottom:calc(100% / 5);
}

.btbackcamp{
text-align:center;
color:#000000;
font-size:0.7em;
font-weight:bold;
margin:2em 0;
}

.btbackcamp input{
display:inline-block;
padding:1em 0;
width:30%;
max-width:400px;
background:#FFFFFF;
color:#000000;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:1;
border:3px solid #333333;
}

.btbackcamp input:hover{
background:#333333;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:0.9;
color:#FFFFFF;
border:3px solid #333333;
}

.btbackcamp a{
display:inline-block;
padding:1em;
width:30%;
max-width:400px;
background:#FFFFFF;
color:#000000;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:1;
border:3px solid #333333;
}

.btbackcamp a:hover{
background:#333333;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:0.9;
color:#FFFFFF;
border:3px solid #333333;
}

.obbutton{
text-align:center;
color:#FFFFFF;
font-size:0.8em;
margin:0.5em 0;
}


.obbutton button{
text-decoration:none;
display:inline-block;
padding:1em 0;
width:100%;
max-width:450px;
background: #5b5b5b;
border-radius:10px;
margin:0 auto 0 0;
color:#FFFFFF;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:1;
border:none;
}

.obbutton button:hover{
background: #2f4421;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
opacity:0.9;
border:none;
}



.obbutton button[disabled]{
opacity:0.5;
}


input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input, button {
  -webkit-font-smoothing: antialiased;
}

input[type="text"], 
input[type="tel"], 
input[type="number"], 
input[type="email"], 
input[type="password"], 
textarea {
display: block;
padding: 0.8em 1em;
margin: 0 0 5px 0;
outline: none;
vertical-align: middle;
color: #000000;
font-size: 1.1em;
max-width: 100%;
background: #FFFFFF;
border: 1px solid #999999;
border-radius:5px;
}

input[type="text"], 
input[type="tel"], 
input[type="email"] {
width:80%;
}

textarea {
width:100%;
}

input[type="number"] {
width:30%;
}

select {
position:relative;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
display:block;
padding: 0.3em 1em;
margin: 0 0 10px 0;
outline: none;
vertical-align: middle;
border-radius: 3px;
width: 100%;
background: #FFFFFF;
border: 1px solid #999999;

}

.select{
position:relative;
overflow:hidden;
display:block;
width: 100%;

}

.select:after{
display:block;
font-family: "Font Awesome 5 Free";
content:"\f107";
font-style:normal;
font-variant: normal;
text-rendering: auto;
font-weight:bold;
font-size:1.4em;
line-height:1;
position:absolute;
top:20%;
right:3%;
pointer-events:none;
}

select::-ms-expand {
  display: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}


input[type="text"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
textarea:focus {
  background: white;
}
input[type="checkbox"], input[type="radio"] {
margin-left:10px;
vertical-align:middle;
-moz-transform-origin: right bottom;
-moz-transform: scale( 1.2 , 1.2 );
-webkit-transform-origin: right bottom;
-webkit-transform: scale( 1.2 , 1.2 );
width:1.4em;
height:1.4em;
}


input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #b41418;
  background-color: #F2DEDE;
  border: 1px solid #b41418;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit; 
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer; 
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0; 
  border: 0;
}

input {
  line-height: normal;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

.parsley-required, .parsley-type, .parsley-filemaxmegabytes, .parsley-filemimetypes{
  color: #b41418;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

::-webkit-input-placeholder{
    font-size: 80%;
}
::-moz-placeholder{
    font-size: 80%; 
}
:-ms-input-placeholder{
    font-size: 80%;   
}

@media only screen and (max-width:1200px) {

  #contact .secin .appformBox{
    font-size:1.7vw;
  }

  .obbutton{
    font-size:1.8vw;
  }

  #contact .thanks{
    font-size:3.5vw;
    padding-bottom:calc(100% / 5);
    padding-top:calc(100% / 10);
  }
}

@media only screen and (max-width:480px) {
  #contact .secin .appformBox{
    font-size:2.5vw;
  }

  .obbutton{
    font-size:3vw;
  }

  #contact .appformBox .prap{
    width:100%;
    float:none;
    clear:left;
    padding:0.8em 0;
    text-align:left;
  }

  #contact.confirm .appformBox .prap{
  width:100%;
  float:none;
  clear:left;
  padding:0.5em 0 0 0;
  text-align:left;

  }

  #contact .appformBox .prapd{
  width:100%;
  float:left;
  vertical-align:middle;
  padding:0.3em 1em;
  }

  .btbackcamp a{
  font-size:3vw;
  width:50%;
  }

  .btbackcamp input{
  font-size:3vw;
  width:50%;
  }

  #contact .thanks{
    padding-top:calc(100% / 5);
  }

}

/*-------------------
privacy
-------------------*/
#privacy {
  text-align: center;
  padding:0;
  position:relative;
}

#privacy .secin{
  display:block;
  font-size:0.7em;
  text-align:left;
}

#privacy .plnom{
  text-align:left;
  padding-bottom:2em;
}

#privacy .plaba{
  padding:1em 0 1em 1em;
}

#privacy .plaba .plal{
  padding:1em 0;
  list-style-type: decimal;
}

#privacy .plaba .plal .plabb{
  padding:0 1em;
}

#privacy .plaba .plal .plabb li{
  padding:0.5em 0;
  list-style-type: decimal;
}

#privacy h2{
  font-size:1.6em;
  font-weight:normal;
  text-align:center;
  padding-top:2em;
}

@media only screen and (max-width:1200px) {

  #privacy .secin{
    font-size:1.7vw;
  }

  #privacy h2{
    font-size:2.2vw;

  }
}

@media only screen and (max-width:480px) {
  #privacy .secin{
    display:block;
    font-size:2.5vw;
    text-align:left;
  }

  #privacy h2{
    font-size:3.5vw;

  }

}

/*-------------------
greeting
-------------------*/
#greeting {
  text-align: center;
  padding:0;
  position:relative;
}


#greeting .greetingw {
  width:80%;
  max-width:1000px;
  margin:0 auto;
  display:flex;
  justify-content: center;
}

#greeting .greetingw .greetingp{
  width:48%;
  padding-right:5%;
}

#greeting .greetingw .greetingt{
  width:52%;
}

#greeting .greetingw .greetingt p{
  text-align:left;
  font-size:clamp(.7rem, 2vw, 1.1rem);
}

#greeting .greetingw .greetingt p.sign{
  text-align:right;
}



@media only screen and (max-width:1200px) {


}

@media only screen and (max-width:480px) {
  #greeting .greetingw {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  #greeting .greetingw .greetingp{
    width:100%;
    padding-right:0;
    padding-top:5vw;
  }

  #greeting .greetingw .greetingt{
    width:100%;
  }

}

/*-------------------
management
-------------------*/
#pmanagement #navigation{
  display:none;
}


#pmanagement footer .footer{
  display:none;
}

#pmanagement #recr-bt{
  display:none;
}

#pmanagement h1{
  background:#FFFFFF;
  text-align:center;
  padding:0.2em 0;
}

#management{
  width:90%;
  max-width:1000px;
  margin:0 auto;
  padding:1em 0 3em 0;
  text-align:center;
}

#management h2{
  font-family:serif;
  font-weight:normal;
  font-size:1.2em;
  padding:2em 0 0 0;
}

#management .regulations{

}

#management li{
  padding:0.2em 0;
}

#management a{
  display:inline-block;
  padding:0 1em;
  color:#3081a0;
  font-size:0.8em;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

#management a:hover{
  color:#FFFFFF;
  background:#3081a0;
}

#management .atten{
  font-size:0.7em;
  padding:3em 0 0 0;
}

@media only screen and (max-width:640px) {
  #pmanagement h1{
    padding:0.5vw 0;
  }

  #pmanagement h1 img{
    width:60%;
    margin:0 auto;
  }

  #management{
    margin:0 auto;
    padding:2vw 0 5vw 0;
  }

  #management h2{
    font-size:7vw;
    padding:5vw 0 0 0;
  }

  #management li{
    padding:.5vw 0;
  }

  #management a{
    font-size:4vw;
  }

  #management .atten{
    font-size:3vw;
    padding:5vw 0;
  }

}




/*-----------------
footer
-----------------*/
footer {
  text-align: center;
  position: relative;
  z-index:2;
  background:#808076;
  
}

footer .footer{
  width:80%;
  max-width:1000px;
  margin:0 auto;
  padding:3vw 0 12vw 0;
  display:flex;
  justify-content: space-around;
  font-size:0.7em;
}

footer .footer .ftLeft{
  color:#FFFFFF;
  text-align:left;
  font-weight:600;
}

footer .footer .ftLeft .postal{
  font-size:90%;
}

footer .footer .ftLink{
  font-weight:bold;
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  height:8em;
}

footer .footer .ftLink li{
  padding-right:4em;
}

footer .footer .ftLink li a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer .footer .ftLink li a:hover{
  color:#000000;
}


footer small{
  font-size: 0.8rem;
  letter-spacing: 0;
  color:#9a9a8d;
}

@media only screen and (min-width:1400px) {
  footer .footer{
    padding:3em 0;
  }
}


@media only screen and (max-width:1200px) {
  
  footer .footer{
    padding:3vw 0 ;
    display:flex;
    justify-content: space-around;
    font-size:1.5vw;
  }

  footer .footer .ftLeft{
    width:40%;
  }

  footer .footer .ftLink{
    width:60%;
    font-weight:bold;
    display:flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    height:8em;
  }

  footer .footer .ftLink li{
    padding-right:4em;
  }

}

@media only screen and (max-width:640px) {


}

@media only screen and (max-width:480px) {

  footer .footer{
    font-size:3vw;
    width:90%;
    padding:3vw 0 3vw 0;
  }

  footer .footer .ftLeft{
    width:100%;
  }

  footer .footer .ftLink{
    display:none;
  }

  footer small{
    font-size: 2.5vw;
    letter-spacing: 0;
    color:#9a9a8d;
  }

}


/* back to top */
#go-top {   
  position: fixed;
  bottom: 5%;
  right: 10%;
  z-index: 6;
  width: 100%;
  text-align: center;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#go-top .totop {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55px;
  padding: 0;
}

#go-top .totop img{
    width:100%;
    height:auto;
}
#go-top .totop a {
  display: block;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#go-top .totop a:hover {
  opacity: 0.5;
}
@media only screen and (max-width:1380px) {
  #go-top {
    right: 1%;
    bottom: 1%;
  }
}

@media only screen and (max-width:900px) {
  #go-top {
    position: fixed;
    bottom: 3%;
    right: 3%;
  }

  #go-top .totop {
    width: 44px;
  }

  #go-top .totop img{
    width:100%;
    
  }
}
@media only screen and (max-width:768px) {

}

@media only screen and (max-width:640px) {

}

@media only screen and (max-width:480px) {

  #go-top {
    position: fixed;
    bottom: 0;
    right: 3%;
  }
}
/*------------
animetion
------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  transition: opacity .8s, transform .7s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transition-delay: .1s;
}

.fadeinp {
  opacity: 0;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transition: all 1000ms;
}
.fadeinp.scrollin {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

@media only screen and (max-width:480px) {
  .fadein {
    opacity: 0;
    transform: translate(0, 10px);
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transition: opacity .8s, transform .7s;
  }
}

.brc {
  display: block;
}
@media only screen and (max-width:750px) {
  .brc {
    display: none;
  }
}