@charset "utf-8";
/* CSS Document */
* {
  padding: 0;
  margin: 0;
}
body {
    font-family: 源ノ角ゴシック JP;
  position: relative;
    line-height: 1.5;
}
body p{
    font-size: 14px;
}
body .wrapper {
  width: 100%;
position: relative;
    z-index:2;
    top: 0;
  overflow: hidden;
}
body .wrapper .menu {
  position: fixed;
    z-index: 1;
  top: 50px;
  right: 20px;
  width: 40px;
  height: 6px;
  background: #fff;
  cursor: pointer;
    border: 1px solid #000;
    box-sizing: border-box;
}
@media screen and (min-width:600px){
   .menu {
        display: none;
    }
    
}
body .wrapper span:before,
body .wrapper span:after {
  display: block;
  position: absolute;
  content: '';
  z-index: 1;
  height: 6px;
  width: 40px;
  background: #fff;
     border: 1px solid #000;
    box-sizing: border-box;
}
body .wrapper span:before {
  top: -13px;
}
body .wrapper span:after {
  bottom: -13px;
}
body .wrapper .overlay {
  position: fixed;
  bottom: -99%;
  height: 100%;
  background: #30c4c9;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
}
@media screen and (min-width:600px){
    body .wrapper .overlay{
        height:100px;
         position: fixed;
        bottom: 99%;
        top: 0;
        background-color: #3251EE;
    }
}
body .wrapper .overlay.anim {
  left: 0;
  bottom: 0;
  animation: menu-anim 1.5s 1 ease-out forwards;
  width: 25%;
  transition: all 0.5s ease;
}
body .wrapper .overlay.anim.reverse-anim {
  left: 0;
  bottom: 0;
  animation: menu-anim 1.5s 1 ease-out reverse;
  width: 25%;
  transition: all 0.5s ease;
}
body .wrapper .overlay ul {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  padding-left: 0;
  margin-left: -10px;
  font-size: 2em;
  font-weight: 800;
}
.submenu{
    display: none;
}

@media screen and (min-width:600px){
 body .wrapper .overlay ul{
        display: flex;
        max-width: 1110px;
     height: 100%;
     margin: 0 auto;
        justify-content:flex-end;
        align-items: center;
     
    }
    body .wrapper .overlay ul li{
        width: 112px;
        padding-right: 10px;
    }
    body .wrapper .overlay ul li a{
        font-size: 20px;
    }
   .submenu{
        display: block;
       font-size: 12px;
       margin-left: 10px;
    }
    body .wrapper .overlay ul li a:hover{
        background-color: #30c4c9;
    }
   
}
@media screen and (min-width:1025px){
     body .wrapper .overlay{
        position: fixed;
        bottom: 99%;
        top: 0;
        height: 110px;
        background-color: #3251EE;
    }
    body .wrapper .overlay ul li:hover{
        background-color: #30c4c9;
    }
    body .wrapper .overlay ul li a{
        font-size: 25px;
    }
      body .wrapper .overlay ul li{
          padding-left: 20px;
        padding-right: 20px;
    }
}
body .wrapper .overlay ul li a {
  text-decoration: none;
  color: white;
  position: relative;
  display: inline-block;
  padding: 10px 0;
  overflow: hidden;
}
body .wrapper .overlay ul li a:after {
  display: block;
  border-radius: 2px;
  content: '';
  left: 0;
  bottom: -10px;
  height: 5px;
  background: #fff;
  transform: translateX(-101%);
}
body .wrapper .overlay ul li a:hover {
  text-decoration: none;
}
body .wrapper .overlay ul li a:hover:after {
  animation: border-anim 0.5s 1 ease normal;
  transform: translateX(0);
}
@-webkit-keyframes border-anim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes menu-anim {
  0% {
    left: 0;
    bottom: -99%;
    width: 100%;
  }
  33% {
    left: -99%;
    bottom: -99%;
    width: 100%;
  }
  66% {
    left: -99%;
    bottom: 0;
    width: 100%;
  }
  100% {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
header img{
    width:70px;
    position: fixed;
    z-index: 2;
    top: 20px;
    left: 24px;
    }
@media screen and (min-width:600px){
    header img{
        width: 100px;
        height: 100px;
        z-index: 3;
        top: 10px;
    }
    body .wrapper .overlay ul{
        position: relative;
    }
}
    @media screen and (min-width:1025px){
        
       header img{
        width: 140px;
        height: 140px;
    }
}
.first{
    display: block;
    background: url("../../img/menutop.png")no-repeat 50% 20% /contain;
    background-attachment: fixed;
    height: 600px;
}
h1{
    font-family:'VDL ロゴJrブラック BK',suns-selif;
    padding-top: 30px;
    font-size: 40px;
    background-color: #FCFB03;
    vertical-align: middle;
    text-align: center;
    height: 90px;
    }
.inner{
    width: 95%;
    margin: 0 auto;
}
h2{
    background-color: #3251EE;
    color: #FCFB03;
    margin-top: 40px;
    font-size: 24px;
    padding-left: 16px;
}
.flex{
    display: flex;
    justify-content: flex-end;
}
.flex p{
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 15px;
    margin-right: 20px;
    margin-top: 24px;
    background-color: #F32A2D;
    font-size: 14px;
    color: #fff;
    position: relative;
}
.flex p:after {
  position: absolute;
  top: 0;
  right: 0px;
  content: '';
  border-width: 16px 12px 16px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.background{
    background: url("../../img/contents1.PNG") no-repeat;
    background-size: contain;
    
}
.background2{
    background: url("../../img/contents2.jpg") no-repeat;
    background-size: contain;
}
.background3{
    background: url("../../img/contents3.jpg") no-repeat;
    background-size: contain;
}
.background4{
    background: url("../../img/contents4.jpeg") no-repeat;
    background-size: contain;
}
.background5{
    background: url("../../img/contents5-menu.png") no-repeat;
    background-size: contain;
}
@media screen and (min-width:1025px){
   /* .container{
        position: relative;
    }
    .background{
        width: 45%;
    position: absolute;
        top: 0;
        left: 0;
}
    /*.example{
        position: absolute;
        top: 0;
        right: 0;
    }*/
   /* .exsample2{
        width: 50%;
        margin-left: auto;
        /*position: absolute;
        right:0;
        bottom: 0;*/
   /* }*/
    /*.aaa{
        width: 50%;
        margin-left: auto;
    }*/
    .inner{
        max-width: 1110px;
    }
    .container{
        display: grid;
         grid-template-rows: 50% 50%;
        grid-template-columns: 50% 50%;
        grid-template-areas: "img heading"
            "img p";
        gap: 24px;
    }
    .grid-right-top{grid-area: heading;
        margin-right: 24px;
    }
    .background{grid-area: img;
    margin-top: 40px;
    }
    .grid-right-bottom{grid-area:  p;
        margin-right: 24px;
    }
    .background2{grid-area: img;
    margin-top: 40px;
}
    .background3{grid-area: img;
    margin-top: 40px;
}
    .background4{grid-area: img;
    margin-top: 40px;
}
    .background5{grid-area: img;
    margin-top: 40px;
}
}
.price{
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 20px;
    text-align: right;
    color:#707070; 
}
section p{
   color:#707070; 
}
.caption{
    margin: 16px 0;
    font-size: 20px;
    font-weight: bold;
    color: #30c4c9;
}

main img{
    width: 100%;
}

.outdoor h2{
    font-family:'VDL ロゴJrブラック BK',suns-selif;
    padding-top: 30px;
    font-size: 40px;
    background-color: #FCFB03;
    color: #000;
    vertical-align: middle;
    text-align: center;
    height: 90px;
}
.flexitem{
   width: 50%; 
    display: block;
    margin: 0 auto ;
}
.outdoor .side{
      background-color: #3251EE;
    color: #FCFB03;
    font-size: 24px;
    padding-left: 16px;
    text-align: center;
    margin-top: 40px;
}
.outdoor p{
    text-align: right;
}
.outdoor .gopro{
    width: 100%;
    display: block;
    margin-bottom: 50px;
}
@media screen and (min-width:1025px){
    .contents{
         width: 95%;
        margin: 0 auto; 
    }
    .outdoor .gopro{
        width: 50%;
        margin: 0 auto 40px auto;
    }
    .sidecontainer{
        max-width: 1110px;
        margin: 0 auto;
    }
}
footer{
    width: 100%;
    height: 90px;
    background: url("../../img/footerImg.jpg") no-repeat center center;
    background-size: cover;
   
    position: relative; 
}
footer p{
    position: absolute;
    top: 30px;
    left: 50%;
    font-size: 12px;
    font-weight: normal;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}
@media screen and (min-width:600px){
    footer{
        height: 200px;
    background: url("../../img/footerimg-pc.jpg") no-repeat 80%;
       
    }
}
@media screen and (min-width:1025px){
    footer{
        width: 100%;
        height: 200px;
    background: url("../../img/footerimg-pc.jpg") no-repeat 100% 100%;
    }
}
@media screen and (min-width:1920px){
    footer{
         height: 200px;
    background: url("../../img/footerimg-pc.jpg") no-repeat center center;
        background-size: cover;
}
}
.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 60px;

  border-radius: 27px;

  color: #fff;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-liquid .inner {
  position: relative;

  z-index: 2;
}

.btn-liquid canvas {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;

  z-index: 1;
}
.pagetop{
    position: fixed;
    bottom: 50px;
    right: 40px;
}
#breadcrumb {
    width: 100%;
  padding: 10px 0 0 10px;
    background-color: #3251EE;
    line-height: 1.5;
    
}
.archive #breadcrumb {
  padding: 0;
  background: transparent;
}
#breadcrumb ul {
  margin: 0;
}
#breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 0.87em;
    color: #fff;
}
#breadcrumb li:after {
  padding: 0 6px;
  color: #fff;
  content: ">";
  font-size: 14px;
}
#breadcrumb li a {
  text-decoration: none;
    color: #fff;
}

#breadcrumb li a:hover {
  color: gray;
  text-decoration: none;
} 