@charset "utf-8";

/* headerはじまり */
header {
position: fixed;
width: 100%;
transition: .3s;
z-index: 900;
opacity: 1;
background: rgba(255,255,255);
background-image:  radial-gradient(rgba(255,255,255) 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
height: 100px;
display: flex;					
align-items: center;			
justify-content: space-between;
padding: 1vw 3vw;			
font-weight: 700;
}

.logo img{
width: 250px;
top: 20px;
left: 10px;
position: absolute;
}

.hd{
height: 100px;
padding: 0em;
}

a {
color:#000;
display: block;
}

.hamburger {
  display : none;
  position: fixed;
  z-index : 3;
  right : 3%;
  top   : 4%;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

nav.globalMenuSp {
display: none;
}

/* --- naviはじまり ----- */
.menu {
position: absolute;
width: 60%;
height: 50px;
list-style: none;
right: 3%;
top:15px;
text-align: center;
font-weight: bold;
z-index: 10000;
}

.menu > li {
float: left;
width: 20%; 
height: 50px;
line-height: 25px;
background: transparent;
font-size: 24px;
letter-spacing: 3px;
border-left: solid 1px red;
}

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

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

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

.menu > li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background:red;
  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おわり ----- */

/* headerおわり */

/* footerはじまり */
.footer0 {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(4, 1fr) 0.5fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
width: auto;
height: 80vh;
background:#fff;
opacity: 0.99;
border-radius: 0px;
border: red solid 5px;
}
.footer0 img{
width: 100px;
}
.footer1 { grid-area: 1 / 1 / 2 / 13; 
padding: 10px;
text-align: center;
}
.footer2 { grid-area: 2 / 1 / 5 / 5;
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 150px;
}
.footer3 { grid-area: 2 / 5 / 5 / 9; 
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 50px;
}
.footer4 { grid-area: 2 / 9 / 5 / 13;
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 10px;
padding-top: 50px;
}
.footer5 { grid-area: 5 / 1 / 6 / 13; 
padding: 10px;
font-size: 10px;
font-weight: 300;
color: #494544;
letter-spacing: 2px;
line-height: 1em;
text-align: center;
}
/* footerおわり */


/* --- レスポンシブはじまり ----- */

@media (max-width: 768px){
    
/* headerはじまり */
header {
position: fixed;
width: 100%;
transition: .3s;
z-index: 900;
opacity: 1;
background: rgba(255,255,255);
background-image:  radial-gradient(rgba(255,255,255) 50%, transparent 70%);
background-position: 0 0, 2px 2px;
background-size    : 1.9px 1.7px;
height: 100px;
display: flex;					
align-items: center;			
justify-content: space-between;
padding: 1vw 3vw;			
font-weight: 700;
}

.logo img{
width: 200px;
top: 20px;
left: 10px;
position: absolute;
}
/* headerはじまり */
.menu {
display: none;
}
/* 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  : 2px ;
  left    : 6px;
  background :#494544;
  -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: 70%;
  left: 75%;
  display: block;
  content: '';
  width: 60px;
  height:60px;
  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 #494544;
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  letter-spacing: 3px;
background:#fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
font-family: "Staatliches", "Noto Serif JP";
font-weight:bold;
display:inherit;
font-size: 14px;
line-height: 2em;
}

nav.globalMenuSp ul {
background:#fff;
  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:#494544;
  opacity: 0.5;
}

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

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

/* footerはじまり */
.footer0 {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(2, 1fr) 0.5fr repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
width: auto;
height: 500px;
background:#fff;
opacity: 0.99;
border-radius: 0px;
border: red solid 5px;
}
.footer0 img{
width: 75px;
}
.footer1 { grid-area: 1 / 1 / 2 / 13; 
padding: 10px;
text-align: center;
}
.footer2 { grid-area: 2 / 1 / 4 / 7;
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 5px;
}
.footer3 { grid-area: 2 / 7 / 4 / 13; 
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 5px;
}
.footer4 { grid-area: 4 / 1 / 5 / 13;
padding: 10px;
font-size: 12px;
font-weight: 300;
color: #494544;
letter-spacing: 5px;
padding-left: 10px;
padding-top: 10px;
}
.footer5 { grid-area: 5 / 1 / 6 / 13; 
padding: 2px;
font-size: 8px;
font-weight: 300;
color: #494544;
letter-spacing: 1px;
line-height: 1em;
text-align: center;
padding-top: 50px;
}
/* footerおわり */
    
}
/* --- レスポンシブおわり ----- */
