@charset "utf-8";

/* headerはじまり */
header {
	position: fixed;
	width: 100%;
	transition: .3s;
    z-index: 90000;
    padding-top: 0px;
    opacity: 1;
}

header a{
text-decoration:none;
}

header a:hover{
opacity: 0.5;
}
.is-animation {
padding-top: 0px;
font-size: 0px;
opacity: 0.5;
height: 50px;
}

.hd001{
background-color: rgba(255, 255, 255, 0.9);
opacity: 1;
height: 50px;
padding: 0em;
}

.hd001 p{
font-size: 12px;
letter-spacing: 3px;
padding: 10px;
padding-left: 20px;
color: #bcd537;
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff; 
font-family: 'Shippori Antique B1', sans-serif;
}
.logo img{
width: 6%;
top: 5%;
left: 2%;
position: fixed;
}

.logo a:hover{
  opacity: 0.5;
}

.blank{
width: 100%;
height: 50px; 
}
/* headerおわり */

/* ハンバーガーメニュー*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 3%;
  top   : 4%;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background :#74a64c;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */

.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 80px;
  height:80px;
  margin: -45px 0 0 -43px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all .75s;
}
.hamburger.active::after {
  border: 1px solid #74a64c;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #1a0b08;
  letter-spacing: 3px;
  background: rgba(224, 241, 241, 0.9);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
font-family: 'Rubik Dirt','M PLUS Rounded 1c', sans-serif;
font-weight:100;
font-size: 18px;
}

nav.globalMenuSp ul {
  background: ;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a:hover{
  color:#1a0b08;
  opacity: 0.5;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #74a64c;
  padding: 1.5em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
/* ハンバーガーメニューおわり*/

/* --- naviはじまり ----- */
.menu {
position: absolute;
width: 70%;
height: 50px;
list-style: none;
right: 3%;
top:10%;
text-align: center;
font-weight: 100;
font-family: 'Rubik Dirt', 'Shippori Antique B1', sans-serif;
z-index: 10000;
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff; 
}

.menu > li {
float: left;
width: 14.28%; 
height: 50px;
line-height: 25px;
background: transparent;
font-size: 18px;
letter-spacing: 3px;
}

.menu h6{
font-size: 12px;
}

.menu > li a {
display: block;
color:#d9eaec;
text-decoration: none;
position: relative;
}

.menu > li a:hover {
color:#d9eaec;
}

.menu > li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background:#f3e7ea;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.menu > li a:hover::after {
  transform: scale(1, 1);
}

.menu > li:hover {
background:transparent;
-webkit-transition: all .5s;
transition: all .5s;
}

.menu:before,
.menu:after {
content: " ";
display: table;
}

.menu:after {
clear: both;
}

.menu {
*zoom: 1;
}

.menu > li.menu__single {
position: relative;
}

li.menu__single ul.menu__second-level {
position: absolute;
top: 40px;
width: 100%;
background: #68666c;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
top: 65px;
visibility: visible;
opacity: 1;
}
/* --- naviおわり ----- */

/* footerはじまり */
.footer01{
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
width: 100%;
height: 50vh;
background-color: rgba(255, 255, 255, 0.9);
opacity: 1;
font-family: 'Rubik Dirt','M PLUS Rounded 1c', sans-serif;
border-radius: 10px;
}

.footer01 a{
text-decoration: none;
color: #74a64c;
}

.footer01 a:hover{
opacity: 0.5;
}

.footer02 { grid-area: 1 / 1 / 5 / 2; 
text-align: left;
padding: 20px;
}

.footer02 img{
width: 30%;
}

.footer03 { grid-area: 3 / 1 / 5 / 4; 
font-size: 14px;
 color:#bcd537;
font-weight: 100;
line-height: 1.5em;
text-align: left;
padding-left: 50px;
letter-spacing: 5px;
font-family: 'Shippori Antique B1', sans-serif;
}

.footer04{grid-area: 2 / 4 / 4 / 5; 
font-size: 16px;
padding-top: 20px;
font-weight: 100;
line-height: 2.5em;
letter-spacing: 5px;
}

.footer05{grid-area: 2 / 5 / 4 / 6; 
font-size: 16px;
padding-top: 20px;
font-weight: 100;
line-height: 2.5em;
letter-spacing: 5px;
}

.footer07{grid-area: 5 / 1 / 6 / 6; 
text-align: center;
color: #bcd537;
font-size: 12px;
padding-top:35px;
letter-spacing: 3px;
}
/* footerおわり */

@media (max-width: 768px){

/* headerはじまり */
header {
	position: fixed;
	width: 100%;
	transition: .3s;
    z-index: 90000;
    padding-top: 0px;
    opacity: 1;
}

header a{
text-decoration:none;
}

header a:hover{
opacity: 0.5;
}
.is-animation {
padding-top: 0px;
font-size: 0px;
opacity: 0.5;
height: 50px;
}

.hd001{
background-color: rgba(255, 255, 255, 0.5);
opacity: 1;
height: 50px;
padding: 0em;
}

.hd001 p{
font-size: 10px;
letter-spacing: 2px;
padding: 15px;
padding-left: 10px;
color: #006633;
font-family: 'Shippori Antique B1', sans-serif;
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff; 
}
.logo img{
width: 65px;
top: 5%;
left: 2%;
position: fixed;
}

.logo a:hover{
  opacity: 0.5;
}

.blank{
width: 100%;
height: 50px; 
}
/* headerおわり */

/* ハンバーガーメニュー*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 3%;
  top   : 4%;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background :#74a64c;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */

.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 80px;
  height:80px;
  margin: -45px 0 0 -43px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all .75s;
}
.hamburger.active::after {
  border: 1px solid #74a64c;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #1a0b08;
  letter-spacing: 3px;
  background: rgba(224, 241, 241, 0.9);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
font-family: 'Rubik Dirt','M PLUS Rounded 1c', sans-serif;
font-weight:100;
font-size: 18px;
}

nav.globalMenuSp ul {
  background: ;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li a:hover{
  color:#1a0b08;
  opacity: 0.5;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #74a64c;
  padding: 1.5em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
/* ハンバーガーメニューおわり*/

/* --- naviはじまり ----- */
.menu {
position: absolute;
width: 70%;
height: 50px;
list-style: none;
right: 3%;
top:10%;
text-align: center;
font-weight: 100;
font-family: 'Rubik Dirt', 'Shippori Antique B1', sans-serif;
z-index: 10000;
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff; 
display: none;
}

.menu > li {
float: left;
width: 14.28%; 
height: 50px;
line-height: 25px;
background: transparent;
font-size: 18px;
letter-spacing: 3px;
}

.menu h6{
font-size: 12px;
}

.menu > li a {
display: block;
color:#d9eaec;
text-decoration: none;
position: relative;
}

.menu > li a:hover {
color:#d9eaec;
}

.menu > li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background:#f3e7ea;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.menu > li a:hover::after {
  transform: scale(1, 1);
}

.menu > li:hover {
background:transparent;
-webkit-transition: all .5s;
transition: all .5s;
}

.menu:before,
.menu:after {
content: " ";
display: table;
}

.menu:after {
clear: both;
}

.menu {
*zoom: 1;
}

.menu > li.menu__single {
position: relative;
}

li.menu__single ul.menu__second-level {
position: absolute;
top: 40px;
width: 100%;
background: #68666c;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
top: 65px;
visibility: visible;
opacity: 1;
}
/* --- naviおわり ----- */

/* footerはじまり */
.footer01{
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(4, 1fr) 2fr 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
width: 100%;
height: 400px;
background-color: rgba(255, 255, 255, 0.9);
opacity: 1;
font-family: 'Rubik Dirt','M PLUS Rounded 1c', sans-serif;
border-radius: 10px;
}

.footer01 a{
text-decoration: none;
color: #74a64c;
}

.footer01 a:hover{
opacity: 0.5;
}

.footer02 { grid-area: 1 / 1 / 2 / 2; 
text-align: left;
padding: 20px;
}

.footer02 img{
width: 65px;
}

.footer03 { grid-area: 5 / 1 / 6 / 6; 
font-size: 14px;
color: #006633;
font-weight: 100;
line-height: 1em;
text-align: left;
padding-left: 20px;
letter-spacing: 2px;
padding-top: 20px;
margin-top: 100px;
font-family: 'Shippori Antique B1', sans-serif;
}

.footer04{grid-area: 2 / 1 / 5 / 3; 
font-size: 16px;
padding-top: 10px;
font-weight: 100;
line-height: 2em;
letter-spacing: 2px;
}

.footer05{grid-area: 2 / 3 / 5 / 6; 
font-size: 16px;
padding-top: 10px;
font-weight: 100;
line-height: 2em;
letter-spacing: 2px;
}

.footer07{grid-area: 6 / 1 / 7 / 6; 
text-align: center;
color: #006633;
font-size: 10px;
padding-top:35px;
letter-spacing:1px;
}
/* footerおわり */

    
}