body {
  width: 100%;
  height: auto;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

ul {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

dl {
  letter-spacing: 0.05em;
}

.pc {
  display: block;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width:640px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  .sp {
    display: block;
  }
}
@media only screen and (max-width:640px) {
  .sp {
    display: block;
  }
}

.btn {
  display: inline-block;
  color: #FFFFFF;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 13px 60px 10px;
  border: solid 1px white;
}
.btn:hover {
  color: #020202;
  background-color: white;
  transition: all 0.5s;
}
.btn p {
  margin: 0;
}

.h2_en {
  display: block;
  margin: 0 0 60px;
  text-align: center;
  color: #796A56;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:640px) {
  .h2_en {
    margin: 0 0 40px;
    font-size: 16px;
  }
}

#header {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  display: block;
  width: 100%;
  height: 130px;
}
@media only screen and (max-width:640px) {
  #header {
    height: 90px;
  }
}
#header .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: auto;
  margin: 30px 0 0 30px;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #header .logo {
    width: 100px;
    margin: 20px 0 0 20px;
  }
}
@media only screen and (max-width:640px) {
  #header .logo {
    width: 80px;
    margin: 20px 0 0 20px;
  }
}

.openbtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  display: block;
  width: 80px;
  height: 80px;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #796A56;
}
.openbtn .btn_line {
  position: relative;
  top: 21px;
  left: 50%;
  transform: translate(-50%);
  display: inline-block;
  width: 35px;
  height: 1.6px;
  border-radius: 2px;
  background: #FFFFFF;
  transition: all 0.1s;
}
.openbtn .btn_line::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translate(-50%);
  width: 35px;
  height: 1.6px;
  border-radius: 2px;
  background: #FFFFFF;
  transition: all 0.5s;
}
.openbtn .btn_line::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translate(-50%);
  width: 35px;
  height: 1.6px;
  border-radius: 2px;
  background: #FFFFFF;
  transition: all 0.5s;
}

.openbtn.active .btn_line::before {
  top: 0px;
  left: 0px;
  z-index: 10000;
  width: 35px;
  height: 1.6px;
  border-radius: 2px;
  background: #FFFFFF;
  transform: rotate(45deg);
  transition: all 0.5s;
  visibility: visible;
}
.openbtn.active .btn_line {
  visibility: hidden;
}
.openbtn.active .btn_line::after {
  top: 0px;
  left: 0px;
  z-index: 10000;
  width: 35px;
  height: 1.6px;
  border-radius: 2px;
  background: #FFFFFF;
  transform: rotate(-45deg);
  transition: all 0.5s;
  visibility: visible;
}

#nav {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: #9F8D76;
  transition: all 0.5s;
}
#nav.panelactive {
  right: 0;
}
#nav .nav-list {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: auto;
}
#nav .nav-list .nav_list_inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  #nav .nav-list .nav_list_inner {
    display: block;
  }
}
#nav .nav-list .nav_list_inner .menu_img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 45%;
}
@media only screen and (max-width:640px) {
  #nav .nav-list .nav_list_inner .menu_img {
    top: 75%;
    right: 0;
    width: 70%;
  }
}
#nav .nav-list .nav_list_inner .wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 45%;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  #nav .nav-list .nav_list_inner .wrapper {
    top: 35%;
    width: 100%;
  }
}
#nav .nav-list .nav_list_inner .wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}
#nav .nav-list .nav_list_inner .wrapper ul li {
  width: 100%;
  margin-bottom: 2.1em;
  vertical-align: top;
}
#nav .nav-list .nav_list_inner .wrapper ul li:nth-last-child(1), #nav .nav-list .nav_list_inner .wrapper ul li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:640px) {
  #nav .nav-list .nav_list_inner .wrapper ul li {
    margin-bottom: 1.8em;
  }
}
#nav .nav-list .nav_list_inner .wrapper ul li a {
  position: relative;
  padding-left: 30px;
  color: #FFFFFF;
  font-size: 28px;
  font-family: "Cinzel", serif;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  text-decoration: none;
}
#nav .nav-list .nav_list_inner .wrapper ul li a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
@media only screen and (max-width:640px) {
  #nav .nav-list .nav_list_inner .wrapper ul li a {
    font-size: 20px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  right: -120%;
  display: none;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.6s;
  z-index: 99999;
}
.overlay.panelactive {
  right: 0;
}

.openbtn.active + .overlay {
  display: block;
}

#sec_kv .logo {
  display: block;
  width: 130px;
  margin: 30px auto 0;
}
@media only screen and (max-width:640px) {
  #sec_kv .logo {
    width: 100px;
    margin: 20px auto 0;
  }
}
#sec_kv .kv_img {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px;
}
@media only screen and (max-width:640px) {
  #sec_kv .kv_img {
    height: 300px;
    padding: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#sec_pricelist .sec_inner {
  max-width: 1238px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 30px;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner {
    margin: 0 auto 60px;
    padding: 0 20px;
  }
}
#sec_pricelist .sec_inner h2 {
  color: #796A56;
  font-size: 36px;
  text-align: center;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner h2 {
    font-size: 28px;
  }
}
#sec_pricelist .sec_inner dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1238px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 30px;
  background-color: rgba(121, 106, 86, 0.05);
  color: #796A56;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner dl {
    display: block;
    padding: 20px;
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner dl {
    display: block;
    padding: 20px;
    font-size: 15px;
  }
}
#sec_pricelist .sec_inner dl .fa-camera {
  padding: 0 5px 0 0;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner dl dd {
    margin: 8px 0 0;
    font-size: 15px;
    text-align: right;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner dl dd {
    margin: 8px 0 0;
    font-size: 15px;
    text-align: right;
  }
}
#sec_pricelist .sec_inner dl dd .tax {
  font-size: 12px;
}
#sec_pricelist .sec_inner .list_2 {
  background-color: rgba(121, 106, 86, 0.15);
}
#sec_pricelist .sec_inner .list_4 {
  background-color: rgba(121, 106, 86, 0.15);
}
#sec_pricelist .sec_inner .txt {
  margin: 20px 0 100px;
  padding: 0;
  color: #796A56;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner .txt {
    margin: 15px 0 80px;
    font-size: 15px;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .txt {
    margin: 15px 0 80px;
    font-size: 15px;
  }
}
#sec_pricelist .sec_inner .txt_dl {
  margin: 20px 0 100px;
  padding: 0;
  color: #796A56;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .txt_dl {
    margin: 15px 0 60px;
    padding: 0;
    font-size: 15px;
  }
}
#sec_pricelist .sec_inner .album_img {
  display: flex;
  width: 100%;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner .album_img {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .album_img {
    display: block;
    margin: 0 auto;
  }
}
#sec_pricelist .sec_inner .album_img img {
  display: block;
  width: 100%;
}
#sec_pricelist .sec_inner .album_img .dl_album {
  display: flex;
  margin: 30px 0 25px;
  padding: 0;
  color: #796A56;
  font-size: 18px;
  letter-spacing: 0.05em;
  background: transparent;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .album_img .dl_album {
    display: block;
    margin: 20px 0;
  }
}
#sec_pricelist .sec_inner .album_img dl {
  display: block;
  color: #796A56;
}
#sec_pricelist .sec_inner .album_img dl dd {
  margin: 0;
  text-align: right;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .album_img dl dd {
    margin: 10px 0 0;
  }
}
#sec_pricelist .sec_inner .album_img .album1 {
  padding: 0 20px 0 0;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner .album_img .album1 {
    padding: 0;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .album_img .album1 {
    padding: 0;
  }
}
#sec_pricelist .sec_inner .album_img .album1 .dl_gray {
  background-color: rgba(121, 106, 86, 0.15);
}
#sec_pricelist .sec_inner .album_img .album2 {
  padding: 0 0 0 20px;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner .album_img .album2 {
    padding: 0;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .album_img .album2 {
    padding: 0;
  }
}
#sec_pricelist .sec_inner .min {
  font-size: 14px;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .min {
    font-size: 13px;
  }
}
#sec_pricelist .sec_inner .cancel {
  margin: 0 auto;
  padding: 30px;
  border: solid 1px #796A56;
}
@media only screen and (min-width:641px) and (max-width:820px) {
  #sec_pricelist .sec_inner .cancel {
    padding: 30px 15px;
  }
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .cancel {
    padding: 30px 15px;
  }
}
#sec_pricelist .sec_inner .cancel h3 {
  margin: 0 0 10px 0;
  color: #796A56;
  font-size: 18px;
}
#sec_pricelist .sec_inner .cancel ul {
  margin: 0;
  padding: 0 0 0 30px;
  color: #796A56;
}
@media only screen and (max-width:640px) {
  #sec_pricelist .sec_inner .cancel ul {
    padding: 0 0 0 20px;
  }
}

#sec_contact {
  max-width: 1440px;
  width: 100%;
  height: auto;
  margin: 120px auto 0;
  padding: 0 30px 100px;
}
@media only screen and (max-width:640px) {
  #sec_contact {
    margin: 140px auto 0;
    padding: 0 20px 60px;
  }
}
#sec_contact h2 {
  margin: 0;
  text-align: center;
  color: #796A56;
  font-size: 42px;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
@media only screen and (max-width:640px) {
  #sec_contact h2 {
    margin: 0;
    font-size: 32px;
  }
}
#sec_contact .contact_form {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
#sec_contact .contact_form input {
  width: 100%;
  height: 40px;
  margin: 3px 0 20px;
  padding: 5px 10px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
#sec_contact .contact_form .min {
  margin: 0 0 0 5px;
  padding: 2px 3px;
  color: #796A56;
  font-size: 12px;
  border: solid 1px #796A56;
}
#sec_contact .contact_form textarea {
  width: 100%;
  margin: 3px 0 0;
  padding: 5px 10px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
#sec_contact .contact_form .btn {
  display: block;
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  cursor: pointer;
}
#sec_contact .contact_form .btn p {
  margin: 0;
}
#sec_contact .contact_form .btn:hover {
  opacity: 0.8;
  transition: all 0.5s;
  cursor: pointer;
}
#sec_contact .contact_form .btn input {
  color: #FFFFFF;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 0;
  border: none;
  background-color: #796A56;
  cursor: pointer;
}
#sec_contact .contact_form input,
#sec_contact .contact_form textarea,
#sec_contact .contact_form button,
#sec_contact .contact_form select {
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  box-shadow: none;
  border: solid 1px #796A56;
}

footer {
  padding: 60px 0 30px;
  background-color: #796A56;
}
@media only screen and (max-width:640px) {
  footer {
    padding: 50px 0 20px;
  }
}
footer .copy {
  padding: 30px 0 0;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
footer .logo_footer {
  display: block;
  width: 150px;
  margin: 0 auto 40px;
}
@media only screen and (max-width:640px) {
  footer .logo_footer {
    width: 120px;
  }
}
footer .hp {
  display: block;
  margin: 0 0 30px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
}
footer .insta {
  text-decoration: none;
}
footer .fa-instagram {
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  text-align: center;
}
footer .fa-arrow-up-right-from-square {
  padding: 0 0 0 5px;
}/*# sourceMappingURL=main.css.map */