@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  /* 字間指定 */
  font-feature-settings: "palt";
  letter-spacing: .8px;
}

/* 太字の指定 */
b, strong, .bold{
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

a {
  color: #d9000f;
}

a:hover {
  color: #d43e48;
  text-decoration: none;
}

img{
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
}

section{
  z-index: 10;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px;
    border-top: 1px solid rgba(0,0,0,.2);
    width: 100%;
}

.pc_only {
  display: block;
}
.sp_only{
  display: none;
}
.sp_nobr br{
  display: block;
}

.pc_nobr br{
  display: none;
}

@media screen and (max-width: 768px) {
.pc_only {
  display: none;
}
.sp_only{
  display: block;
}
.sp_nobr br{
  display: none;
}
.pc_nobr br{
  display: block;
}
}

@keyframes blink{
    0% {opacity:.7;}
    100% {opacity:1;}
}
.blinking{
    animation:blink 1s ease-in-out infinite alternate;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 80px;
  z-index: 995;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #cda45e;
  transition: all 0.4s;
  border: 2px solid #cda45e;
  padding-bottom: 5px;
}

.back-to-top i:hover {
  background: #cda45e;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #cda45e;
  border-bottom-color: #cda45e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 7px 0;
  top: 0px;
  background: #0c0b09;/**/
}

#header.header-scrolled {
  top: 0;
  background: #0c0b09;
  border-bottom: 1px solid #411e1b;
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo a:hover {
  opacity: .5;
}

#header .logo img {
  max-height: 70px;
}
@media (max-width: 640px) {
  #header .logo img {
  max-height: 50px;
}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding-left: 30px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 0;
  transition: 0.3s;
  font-size: 14px;
  font-weight: normal;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #f1d697;
  text-decoration: none;
  font-weight: bold;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #065e77;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9998;
  overflow-y: auto;
  left: -260px;/**/
  width: 260px;/*width: 260px;*/
  padding-top: 18px;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px; 
  font-size: 15px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;/*z-index: 9998;*/
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #f5efe4;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #f5efe4;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 80vh;*/
  position: relative;
  background: #1a7c41;
  background: linear-gradient(175deg, rgba(86,195,153,1) 0%, rgba(26,124,65,1) 100%);/**/
  margin-top: 83px;
  padding: 80px 0 0px;
}

.snow_l{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 20%;
}

.snow_r{
  position: absolute;
  top: 0%;
  right: 0%;
  width: 20%;
}

@media (max-width: 767px) {
  #hero {
    height: auto;
    padding: 30px 0 60px 0;
    margin-top: 63px;
  }
  #hero .container {
    height: auto !important;
  }
  #hero .intro-img {
    width: 100%;
  }
  .snow_l{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 40%;
}

.snow_r{
  position: absolute;
  top: 0%;
  right: 0%;
  width: 40%;
}

}

@media (max-width: 767px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 20px;
  }
  #hero .intro-img {
    padding-top: 0px;
  }  
}

#hero .intro-info h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

#hero .intro-info h2 span {
  color: #d9000f;
  font-size: 16px;
}
#hero .intro-info p{
  color: #fff;
  font-size: 16px;
}

@media (max-width: 767px) {
  #hero .intro-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #hero .intro-info p{
    text-align: left;
    font-size: 14px;
  }
}

#hero .intro-info .btn-get-started, #hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #d9000f;
  color: #fff;
  margin: 0.8rem 0 0;
}

#hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {
  background: #d43e48;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: #411e1b;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Map Section
--------------------------------*/
/*#map {
  padding: 30px 0 60px;
  background:
    url(../img/bg_snow_l.png),
    url(../img/bg_snow_r.png),
    linear-gradient(180deg, rgba(245,239,228,1) 0%, rgba(212,189,135,1) 50%, rgba(153,110,57,1) 100%);
  background-position:
    left 0px,
    right 0px;
  background-repeat:
    repeat-y,
    repeat-y;
}*/
#map {
  padding: 30px 0 60px;
  background:
    linear-gradient(180deg, rgba(245,239,228,1) 0%, rgba(212,189,135,1) 50%, rgba(153,110,57,1) 100%);
    position: relative;
}

#map.map-img{
  position: relative;
}

#map .map_pin{
  position: absolute;
  top: 43%;
  left: 19%;
  width: 10%;
}

#map .map-content {
  padding-top: 40px;
}
#map h2{
  color: #d9000f;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
#map h3 {
  color: #d9000f;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}

#map h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #d9000f;
}

#map h5 {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

#map .map-content{
  background-color: #fff;
  padding: 1rem 1rem 1rem;
  border-radius: 10px;
  position: relative;
  margin: 1.5em 0 1.5em 15px;
  min-width: 120px;
  max-width: 100%;
  border: dotted 2px #d9000f;
}

#map .map-content:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #d9000f;
}

@media (max-width: 768px) {

#map .map-content{
  background-color: #fff;
  padding: 2rem 1rem 1rem;
  border-radius: 10px;
  position: relative;
  margin: 1.5em auto 1.5em;
  min-width: 120px;
  max-width: 100%;
}

#map .map-content:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #d9000f;
}
  }

#map .map-content h1{
  text-align: center;
}
#map .map-content .icon{
  width: 18%;
}

#map .map-content .iframe-wrap {
  margin-top: 20px;
  position: relative;
  width: 100%;
  padding-top: 75%;
  border: solid 1px;
  padding-bottom: 1px;
}

#map .map-content .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link{
  padding: 1.5rem 0 0;
}

.link a{
  text-decoration: underline;
}

#map p.link{
  text-align: center;
}

/* Activities
--------------------------------*/
#activities {
  padding: 60px 0;
  background-color: #d9000f;
  background: rgb(217,0,15);
  background: linear-gradient(90deg, rgba(217,0,15,1) 0%, rgba(237,124,131,1) 50%, rgba(217,0,15,1) 100%);
  position: relative;
}/**/

#activities h2{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
#activities h3 {
  font-size:16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  letter-spacing: -.02em;
  text-align: center;
}

#activities span.sns{
  color: #d9000f;
  font-weight: 700;
}

#activities span.present{
  color: #1a7c41;
  font-weight: 700;
}

.activities .type{
  border: dotted 2px #cda45e;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem auto 1rem;
}

.activities .bg_grd{
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,239,228,1) 100%);
}

.activities .type .title{
  margin: auto;
}
.flex_box{
  display: flex;
  justify-content: center;
  align-items: center;
}

.activities .type .title h4{
  color: #d9000f;
  font-weight: 600;
  text-align: left;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  text-align: center;
}

.activities .type h3{
  font-size:16px;
  font-weight: 600;
  color: #411e1b!important;
  line-height: 1.6;
  letter-spacing: -.01em;
  text-align: left!important;
}

.activities .type h4.camp{
  color: #d9000f;
  font-size:16px;
  font-weight: 600;
}

.activities .type h4 img{
  vertical-align: middle;
  width: 100px;
}

img.icon_van_h4{
  vertical-align: middle;
    width: 80px!important;
}

.activities .type h4 br{
  display: none;
}

.oneof_box{
  border: solid 1px #ccc;
  padding: 0.5rem 0.5rem 0;
  margin-top: 1rem;
  background-color: #fff;
}

img.oneofL{
  width: 320px;
}

.oneof_box p{
  font-size: 14px;
}
.min_768px_only{
  display: block;
}
.min_768px_only .oneof_box{
  display: flex;
  align-items: center;
}

.min_768px_only .oneof_box p.text-center{
  padding-right: 1rem;
}

.max_767px_only{
  display: none;
}

/* Ribon_title */
.type .col-12{
  padding: 0;
}

.ribon h5 {
 position: relative;
  margin: 10px 6%;
  text-align: center;
}

.ribon h5:before,
.ribon h5:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: '';
  border: 1em solid #c20f2f;
}

.ribon h5:before {
  left: -26px;
  border-left-width: 15px;
  border-left-color: transparent;
}

.ribon h5:after {
  right: -26px;
  border-right-width: 15px;
  border-right-color: transparent;
}

.ribon h5 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px;
  color: #fff;
  background: #c5020f;
  font-size: 22px;
    font-weight: 600;
}

.ribon h5 span:before,
.ribon h5 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: '';
  border-style: solid;
  border-color: #8d041c transparent transparent transparent;
}

.ribon h5 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}

.ribon h5 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}

@media (max-width: 375px) {
.ribon h5 span {
  font-size: 20px;
}
}
@media (max-width: 320px) {
.ribon h5 span {
  font-size: 17px;
}
}
/* end Riobn title */

.order1{
  order: 1;
}
.order0{
  order: 0;
}

img.sns_icon{
  width: 50px;
}

@media (max-width: 767px) {
  .activities .type h4 br{
  display: block;
}
  .activities .type{
  padding: 1.5rem .5rem;
}
  .activities .type h4{
  text-align: center;
}
.flex_box{
  display: block;
}
.min_768px_only{
  display: none;
}
.max_767px_only{
  display: block;
  margin-top: 10px;
}
img.oneofL{
  width: 160px;
}

}


@media (max-width: 320px) {
.activities .type h4{
  font-size: 20px;
}
}

/* Menu
--------------------------------*/
#menu {
  padding: 60px 0;
  background-color: #f5efe4;
}
#menu h2{
  color: #d9000f;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
#menu h3 {
  font-size:16px;
  font-weight: 600;
  color: #411e1b;
  line-height: 1.6;
  letter-spacing: -.01em;
  text-align: center;
}

.menu .menu_img{
  margin: 2rem 0 0;
}


/*--------------------------------------------------------------
# today
--------------------------------------------------------------*/
#today{
  padding: 60px 0 60px;
  text-align: center;
  background-color: #1a7c41;
  position: relative;
}

#today h2{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

img.icon_van{
  vertical-align: middle;
    width: 100px;
}

.report_van{
  background-color: #fff;
  padding: 1rem .5rem;
  margin: 1rem .5rem 0;
}

.report_van .title{
  margin: auto;
}
.report_van .title h4{
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #d9000f;
}

.report_van p{
  text-align: left;
}




/*--------------------------------------------------------------
  youtube
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0b09;
  padding: 0 0 68px 0;
  color: #fff;
  font-size: 14px;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  /*border-bottom: 1px solid #28251f;*/
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

@media (max-width: 640px) {
  #footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}
#footer .footer-top .footer-info h3 img{
  width: 200px;
  }
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links{
  text-align: center;
}

#footer .footer-top .social-links a:hover {
  background: #cda45e;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}

#footer .copyright {
  text-align: center;
  padding-top: 0px;
}
