#wrapper {
  max-width: 100%;
}
/*ヘッダーメニュー*/
header {
  max-width: 100%;
  height: 70vh;
  background-image: url("../img/eyecatch_g.jpg");
  background-size: 100% 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}
@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;
}
#hamburger_box input {
  display: none;
  width: 100px;
}
#hamburger_box 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;
}
#hamburger_box input:checked + label span i:nth-child(1) {
  margin: auto;
  transform: rotate(45deg);
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}
#hamburger_box input:checked + label span i:nth-child(2) {
  transform: rotateX(90deg);
  top: 0;
  bottom: 0;
}
#hamburger_box input:checked + label span i:nth-child(3) {
  margin: auto;
  transform: rotate(-45deg);
  top: 0;
  right: 0;
  bottom: 0;
}
/*ハンバーガーメニューリスト*/
#hamburger_box 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;
}
@media screen and (max-width: 768px) {
  #hamburger_box {
    margin: 20px 15px;
  }
  .hamburger-list__wrap {
    width: 70%;
  }
}
#hamburger_box input:checked + label + .hamburger-list > .hamburger-list__wrap {
  right: 0;
}
.hamburger-list__wrap a {
  font-family: 'Hina Mincho', serif;
  color: #fff;
  font-size: 50px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 30px;
}
.w-g a {
  font-size: 30px;
  padding: 5px 0px 5px 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;
}
.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;
  padding: 100px 0;
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@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;
  }
}
/*セクションアクセスボタン*/
*, *: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 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding-bottom: 48px;
}
/*メインページ*/
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;
}
/*コンタクト始まり*/
#contact {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
	margin: 0 auto;
}
tr{
    width: 100%;
	margin: 0 auto;
}
th{
	font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: #4d4d4d;
  font-size: 18px;
}
input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
    width: 100%;
}
 
 
input[type="text"],
textarea {
  background: #ecf9ff;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100;
  transition: 0.8s;
  border-radius: 0;
	text-align: left;
}
 
input[type="text"]:focus,
textarea:focus {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid #d6c19f;
	border-radius: 5px;
}
 
textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
.form-table {
  width: 80%;
}
 
.form-table th,
.form-table td {
  border-top: 1px solid #d6c19f;
  border-bottom: 1px solid #d6c19f;
  padding: 20px;
}
 
.form-table th {
  background: #fff;
  padding-left: 30px;
  position: relative;
  text-align: left;
  width: 30%;
}
/* スマホ*/
@media screen and (max-width: 768px) {
	#contact{
	width: 95%;
	margin: 0 auto;
	text-align: center;
}
.form-table th,
.form-table td {
  display: block;
  width: 100%;
  border-bottom: none;
text-align: center;
}
    .form-table th{
        text-align: left;
    }
	.form-table{
		width: 90%;
	}

}
.entryTable input {
    width: 30em;
    padding: 5px;
  border: 1px solid #d6c19f;
  margin: 32px 0;
  border-radius: 10px;
}
.entryTable3 input{
    width: 30em;
      border: 1px solid #d6c19f;
  padding: 5px;
  border-radius: 10px;
       height: 100px;
    margin: 32px 0;
}
.entryBtns{
	margin-bottom: 60px;
}
.entryBtns input{
    width: 150px;
    border: 1px solid #d6c19f;
    margin: 60px;
  padding: 15px;
  border-radius: 10px;
	 font-family: 'Shippori Mincho', serif;
}
.entryBtns input:hover{
	background-color: #d6c19f;
	color: #fff;
}
/*フッター*/
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;
}