@charset "utf-8";
/* CSS Document */
body {
  font-family: "Dancing Script", cursive, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6em;
  color: #232323;
  width: 1920px;
  margin: 0 auto;
}
#wrapper {
  margin: 0 auto;
  background-color: #e3e3e3;
}
#background {
  background-image: url("../images/background.jpg");
}
a {
  color: #232323;
  text-decoration: none;
}
.sp-nav {
  display: none;
}
.header_bg {
  position: relative;
}
.header_nav {
  position: absolute;
  top: 10%;
  left: 17%;
  display: flex;
  justify-content: center;
  gap: 150px;
}
.header_nav li {
  list-style: none;
  font-size: 32px;
  font-weight: bold;
  padding-top: 50px;
}
.contact_section h2 {
	 font-size: 48px;
  margin-left: 288px;
  margin-top: 100px;
}
.under_line {
    margin: 20px auto 0 250px;
  display: block;
  }
.contact_bg {
  width: 1342px;
  height: 1186px;
  background-color: rgba(247, 247, 247, 0.8);
  margin: 50px auto 0 auto;
}
.text_underline {
  width: 1120px;
  border-top: 3px solid #c9c9c9;
}
.form03 {
  max-width: 650px;
}
.form_inner {
  display: flex;
  align-items: center;
  padding: 5.5rem 0.5rem 2.5rem 0.5rem;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
}
.form_label {
  font-weight: bold;
  width: 15%;
  padding-left: 100px;
}
.form_label label {
  vertical-align: middle;
}
.form_input {
  width: 70%;
}
input[type="text"], input[type="email"] {
  width: 95%;
  height: 30px;
  background: #f9f9f9;
  padding: 1rem;
  font-size: 24px;
  border: none;
}
textarea {
  width: 95%;
  height: 400px;
  background: #f9f9f9;
  padding: 1rem;
  border: none;
  font-size: 24px;
}
.form_btn {
  display: block;
  width: 381px;
  height: 136px;
  background: #c9c9c9;
  color: #232323;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 0.9rem 0;
  margin: 1.5rem auto 0;
  border: none;
}
.footer_bg {
  margin-top: 50px;
  position: relative;
}
.footer_logo {
  margin-top: -50px;
}
.footer_link_icon {
  position: absolute;
  top: 10%;
  left: 25%;
  display: flex;
  justify-content: center;
  gap: 100px;
  list-style: none;
  padding-top: 50px;
}
.footer_nav {
  position: absolute;
  top: 70%;
  left: 32%;
  display: flex;
  gap: 150px;
  font-size: 32px;
  list-style: none;
}
.footer_bg p {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 90%;
  left: 40%;
  font-size: 14px;
  text-align: center;
}
.kakuu {
  margin-top: -30px;
  font-size: 21px;
  color: #ce7754;
}
@media screen and (max-width: 768px) {
  body {
	  width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #wrapper {
    margin: 0 auto;
    width: 100%;
  }
  img {
    max-width: 100%;
  }
  .header_nav h1 {
    position: relative;
    top: 0%;
    left: 10%;
  }
  /* 
hamburger(ハンバーガーアイコン)
=================================== */
  .hamburger {
    position: absolute;
    top: 5%;
	  right: 5%;
   
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line {
    position: absolute;
    width: 50px;
    height: 3px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }
  .hamburger__line--1 {
    top: 1px;
  }
  .hamburger__line--2 {
    top: 18px;
  }
  .hamburger__line--3 {
    top: 36px;
  }
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  /* 
sp-nav(ナビ)
=================================== */
  .sp-nav {
    display: block;
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 70%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  /* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    /* z-index: 100;*/
  }
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
	 
    opacity: 0.3;
    visibility: visible;
  }
	.sp-nav ul{
		position: relative;
		top: 0%;
		left: -7%;
	}
  .sp-nav li {
    margin-top: 80px;
    font-size: 32px;
  }
  .header_nav li {
    display: none;
  }
  h2 {
    position: relative;
    left: -50%;
  }
  .under_line {
    position: relative;
    left: -50%;
    width: 70%;
  }
  .contact_bg {
    width: 90%;
    height: 1070px;
  }
  .form_label {
    font-size: 18px;
	  position: relative;
	 left: -20%
   /* padding-left: 50px;*/
  }
  input[type="text"], input[type="email"] {
    width: 100%;
    height: 30px;
    background: #f9f9f9;
    padding: 1rem;
    font-size: 18px;
    border: none;
	  position: relative;
	  left: -30%
  }
  .text_underline {
    width: 90%;
  }
  textarea {
    width: 100%;
    height: 300px;
    background: #f9f9f9;
    padding: 1rem;
    border: none;
    font-size: 18px;
	    position: relative;
	  left: -30%
  }
  .form_btn {
    display: block;
    width: 181px;
    height: 76px;
    background: #c9c9c9;
    color: #232323;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    padding: 0.9rem 0;
    margin: 1.5rem auto 0;
    border: none;
  }
  footer {
    padding-top: 50px;
  }
  .footer_link_icon {
    position: absolute;
	  top: 1%;
    left: 2%;
    gap: 10px;
  }
	.footer_bg h1{
		width: 30%;
		
	}
  .footer_nav {
	 
	  flex-wrap: wrap;
    position: absolute;
	  top: 40%;
    left: 30%;
   gap: 0px;
  }
	.footer_nav li{
		width: 80%;
		 font-size: 24px;
		padding-top: 15px;
	}
  .footer_bg p {
    position: absolute;
	  top: 90%;
    left: 13%;
	  font-size: 12px;
	  
  }
}