*{
    list-style-type: none;
}
#wrapper{
    max-width: 100%;
}

/*ヘッダーメニュー*/
header {
  max-width: 100%;
  /*  width: 1920px;*/
  height: 100vh;
  background-image: url("../img/eyecatch1.jpg");
  background-size: 100% 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  text-align:center
}

.eyecatch_name h1{
    font-family: 'grafolita-script', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 150px;
  color: #d6c19f;
  text-shadow: 7px 0px 20px #fff;
    text-align: center;
    
    animation-name:fadeUpAnime;
animation-duration: 1.5s;
animation-fill-mode:forwards;
opacity:0;
}
@media screen and (max-width: 768px){
    header{
        height: 500px;
    }
}
/*ハンバーガーメニュー*/
#hamburger_menu{
    width: 100%;
    background-color: aqua;
}
#hamburger_box {
margin: 20px 35px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
}
input {
  display: none;
  width: 100px;
}
label {
  position: relative;
  float: right;
  clear: both;
  z-index: 1000;
}
span {
  display: inline-block;
  width: 35px;
  height: 25px;
}
span i {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #d6c19f;
  display: block;
  transition: all .3s ease-in-out;
box-shadow: 3px 3px 10px #fff;
}
span i:nth-child(1) {
  top: 0;
  bottom: 0;
}
span i:nth-child(2) {
  margin: auto;
  top: 0;
  bottom: 0;
}
span i:nth-child(3) {
  bottom: 0;
}
input:checked + label span i:nth-child(1) {
  margin: auto;
  transform: rotate(45deg);
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}
input:checked + label span i:nth-child(2) {
  transform: rotateX(90deg);
  top: 0;
  bottom: 0;
}
input:checked + label span i:nth-child(3) {
  margin: auto;
  transform: rotate(-45deg);
  top: 0;
  right: 0;
  bottom: 0;
}
/*ハンバーガーメニューリスト*/
input:checked + label + .hamburger-list {
  position: fixed;
  z-index: 99;
  opacity: 1;
}
.hamburger-list {
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: opacity .3s ease-in-out, z-index .3s ease-in-out;
}
.hamburger-list__wrap {
  width: 40%;
  background-color: #78c8f9;
  position: absolute;
  right: -100%;
  top: 0;
  bottom: 0;
  transition: right 0.4s ease-in-out;
}

.hamburger-list__wrap2 li{
    padding: 0px;
}
@media screen and (max-width: 768px){
    #hamburger_box {
margin: 20px 15px;
}
	.hamburger-list__wrap {
		width: 70%;
	}
}
input:checked + label + .hamburger-list > .hamburger-list__wrap {
  right: 0;
}
.hamburger-list__wrap2 a {
  font-family: 'Hina Mincho', serif;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
    font-size: 50px;
    padding: 20px 30px;
}

.g-w a{
    font-size: 30px;
     padding: 5px 10px 10px 80px;
}
.hamburger-list__wrap a:hover {
  text-shadow: 5px 5px 10px #fff;
  transition: .5s;
}


/*nav hover*/
#nav li:hover {
  background-color: #fff;
  color: #000;
}
#nav li a:hover {
  color: #000;
  display: block;
}


@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
@media screen and (max-width: 768px){
    header{
        
    }
    .eyecatch_name h1{
        font-size: 100px;
        padding: 100px 0;
    }
}
/*メインページ*/
main {
  width: 100%;
}
#main h2 {
  font-family: 'Hina Mincho', serif;
  font-size: 80px;
  color: #4d4d4d;
  font-weight: 200;
  padding: 88px;
    text-align: center;
}
#main p{
    font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 2em;
    text-align: center;
}
@media screen and (max-width: 768px){
    #main h2 {
  font-family: 'Hina Mincho', serif;
  font-size: 60px;
  color: #4d4d4d;
  font-weight: 200;
  padding: 40px;
}

#main p {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 2em;
}
    .text {
        width: 80%;
        margin: 0 auto;
    }
    }
/*セクションアクセスボタン*/
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.more {
  padding: 72px 0;
  text-align: center;
}

.btn, a.btn, button.btn {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 30px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-malformation {
  font-size: 20px;
  padding: 20px 40px;
  color: #fff;
  border-radius: 100% 80px / 80px 100%;
  font-family: 'Hina Mincho', serif;
}
a.btn-malformation:hover {
  color: #fff;
  border-radius: 60% 80% / 100% 80%;
}
a.btn-malformation:hover {
  color: #fff;
  border-radius: 60% 80% / 100% 80%;
}
.btn-malformation--pastel {
  background: #bee2fa;
  background: -webkit-linear-gradient(-45deg, #bee2fa 40%, #fddbb3 85%);
  background: -webkit-linear-gradient(315deg, #bee2fa 40%, #fddbb3 85%);
  background: linear-gradient(135deg, #78c8f9 40%, #fddbb3 85%);
  -webkit-box-shadow: 30px 10px 0 #bee2fa;
  box-shadow: 30px 10px 0 #fff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fca1a1', endColorstr='#fcfc5d', GradientType=1);
}
.btn-malformation--gallery {
  background: #bee2fa;
  background: -webkit-linear-gradient(-45deg, #bee2fa 40%, #fddbb3 85%);
  background: -webkit-linear-gradient(315deg, #bee2fa 40%, #fddbb3 85%);
  background: linear-gradient(135deg, #78c8f9 40%, #fddbb3 85%);
  -webkit-box-shadow: 30px 10px 0 #e9f7ff;
  box-shadow: 30px 10px 0 #e9f7ff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fca1a1', endColorstr='#fcfc5d', GradientType=1);
}
@media screen and (max-width: 768px){
    .more{
        padding: 48px 0;
        text-align: center;
    }
    a.btn-malformation {
  font-size: 20px;
  padding: 15px 30px;
  color: #fff;
  border-radius: 100% 80px / 80px 100%;
  font-family: 'Hina Mincho', serif;
}
}
/*profaile　PC版*/
#profile {
  margin: 0 auto;
  text-align: center;
  background-color: #caf1ff;
}

#profile img {
  border-radius: 50%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px){
   #profile img {
  width: 200px;
  height: 200px;
}
}
/*gallery */
#gallery h2{
        text-align: center;
    }
#gallery{
    background-color: #fff;
}
@media screen and (min-width: 768px){
    #gallery {
    width: 100%;
  }
    #gallery h2{
        text-align: center;
    }
  #ga_box {
    max-width: 800px;
    margin: 0 auto;
      text-align: center;
    display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
  #ga_box li {
    width: 300px;
      height: 300px;
      text-align: center;
      background: url("../img/gallary1.jpg");
      background-size: cover;
      border: 1px solid #bee2fa;
      float: left;
      margin: 50px;
  }
     .ga_box1 img,.ga_box2 img{
        margin: 50px auto;
    }
    .ga_box3 img,.ga_box4 img{
        margin: 75px auto;
    }
   
  #ga_box li img {
	  transition: 0.5s;
  }
  #gallery li a img:hover {
    transform: scale(1.1, 1.1);
  }
}
    
@media screen and (max-width: 768px) {
  #gallery {
    width: 100%;
       margin: 0 auto;
      text-align: center;
  }
    #gallery h2{
        text-align: center;
    }
  #ga_box {
    max-width: 80%;
    margin: 0 auto;
      text-align: center;
  }
  #ga_box li {
    width: 250px;
      height: 250px;
      text-align: center;
      background: url("../img/gallary1.jpg");
      background-size: cover;
      margin: 50px auto;
      
  }

  #ga_box li img {
	 transition: 1s;
  }
    
    .ga_box3 img,.ga_box4 img{
       margin-top: 50px;
    }
    .ga_box1 img,.ga_box2 img{
        margin-top: 25px;
    }
  #ga_box li a img:hover {
    transform: scale(1.1, 1.1);
  }
}


/*コンタクト　PC版*/
#contact {
  max-width: 100%;
  height: auto;
  text-align: center;
  background-color: #caf1ff;
}
/*フッター*/
footer {
  background-color: #78c8f9;
  width: 100%;
}

.footer {
    margin: 0 auto;
}
footer p {
  text-align: center;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 14px;
    color: #fff;
}
