@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ysabeau:wght@300;500&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: #F8F7F5;
  color: #343434;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

a, button {
  display: inline-block;
  transition: all 0.3s ease;
}

img {
  object-fit: cover;
}

h2, h3 {
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1000px;
  padding: 100px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

.image_area img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.flex_box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

#pan {
  font-weight: normal;
  color: #888888;
}
#pan li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #pan {
    margin-left: 20px;
  }
}

.btn {
  width: 300px;
  border: 1px solid #343434;
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}
.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(239, 230, 205, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.btn:after {
  content: "";
  width: 40px;
  height: 1px;
  border: 1px solid #343434;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.btn:hover:before {
  opacity: 1;
}
.btn:hover:after {
  right: -30px;
}
.btn_box {
  text-align: center;
}
.head_text {
  margin-bottom: 40px;
  font-family: "Ysabeau", sans-serif;
  font-size: 6rem;
  font-weight: 300;
}
.head_text_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 30px;
    font-size: 4rem;
  }
}

.tel_num {
  font-size: 2rem;
  line-height: 1.5;
}
.tel_num span {
  display: block;
  font-size: 1.3rem;
}
.tel_num:hover {
  color: #EBBD9B;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.scroll_top {
  position: fixed;
  bottom: 15px;
  right: 30px;
  z-index: 3;
}
.scroll_top:hover {
  opacity: 0.7;
}

.header {
  padding: 10px 40px 10px 25px;
  background-color: #F8F7F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  font-family: "Ysabeau", sans-serif;
  font-size: 4rem;
  line-height: 1;
  transition: 0.3s ease;
}
.header_logo:hover {
  opacity: 0.7;
}
.header nav {
  flex: 1;
  justify-content: flex-end;
  gap: 30px;
}
.header nav ul {
  gap: 30px;
  font-size: 1.4rem;
}
.header nav a:hover {
  color: #EBBD9B;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 20px;
  }
  .header_logo {
    font-size: 3rem;
  }
  .header nav {
    flex: inherit;
  }
  .header nav ul:nth-of-type(1) {
    display: none;
  }
  .header nav ul:nth-of-type(2) {
    flex-direction: row;
  }
}

.burger_btn {
  cursor: pointer;
  transition: 0.3s ease;
}
.burger_btn:hover {
  color: #EBBD9B;
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.close_btn:hover {
  color: #EBBD9B;
}

.overlay {
  display: none;
  width: 100%;
  padding: 70px 30px 50px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay ul {
  flex-direction: column;
  gap: 10px;
}
.overlay a:hover {
  color: #EBBD9B;
}
.overlay a i {
  padding-right: 5px;
  color: #EBBD9B;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-color: #B8917B;
  color: #ffffff;
}
.footer .container {
  padding: 30px 0;
  justify-content: space-between;
  align-items: center;
}
.footer ul {
  gap: 10px 45px;
  font-size: 1.4rem;
}
.footer a:hover {
  opacity: 0.7;
}
.footer .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer .container {
    align-items: flex-start;
    gap: 20px;
  }
}

.main_visual {
  width: 100%;
  height: 90vh;
  min-height: 850px;
  background-image: url(../img/mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.main_visual_text {
  color: #ffffff;
  text-shadow: 0 0px 6px rgba(113, 58, 9, 0.5);
  font-family: "Ysabeau", sans-serif;
  font-size: 8rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_visual .newest_news {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  flex-direction: row;
  align-items: center;
  gap: 30px;
  position: absolute;
  bottom: 20px;
  right: 0;
  background-color: #ffffff;
}
.main_visual .newest_news img {
  width: 120px;
  aspect-ratio: 4/3;
}
.main_visual .newest_news_title {
  padding-right: 30px;
}
.main_visual .newest_news:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .main_visual {
    min-height: auto;
    max-height: 650px;
  }
  .main_visual .newest_news {
    bottom: 0;
    gap: 20px;
  }
  .main_visual .newest_news_title {
    padding-right: 10px;
  }
}

.top_about p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 3;
}
.top_about ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.top_about li:nth-of-type(2n + 2) {
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .top_about p {
    line-height: 2.5;
  }
  .top_about ul {
    gap: 10px;
  }
}
.top_menu ul {
  margin-bottom: 80px;
}
.top_news {
  background: linear-gradient(to bottom, #EFE6CD, #EBBD9B);
}
.top_news ul {
  margin-bottom: 50px;
}
.top_column_flex {
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
}
.top_column .head_text {
  margin-bottom: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
}
.top_column ul {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_column .head_text {
    writing-mode: horizontal-tb;
  }
}
.top_order {
  width: 100%;
  max-width: 1000px;
  padding: 50px;
  margin: 100px auto 0;
  background-color: #F3EAE3;
  align-items: center;
  gap: 30px 50px;
}
.top_order img {
  width: 40%;
  max-width: 380px;
}
.top_order_text {
  flex: 1;
}
.top_order h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.top_order p {
  margin-bottom: 25px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .top_order {
    padding: 50px 30px;
  }
  .top_order img {
    width: 100%;
    max-width: 380px;
  }
  .top_order_text {
    flex: inherit;
    width: 100%;
  }
  .top_order h2 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .top_order .btn {
    width: 100%;
  }
}
.top_insta ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 35px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.top_insta ul + a {
  display: block;
  text-align: center;
}
.top_insta ul + a i {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 3rem;
}
.top_insta ul + a:hover {
  color: #EBBD9B;
}
.top_insta li {
  cursor: pointer;
  transition: 0.3s ease;
}
.top_insta li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .top_insta li {
    width: 150px;
  }
}
.top_guide {
  padding: 50px 20px;
  background-color: rgba(184, 145, 123, 0.3);
}
.top_guide h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
}
.top_guide ul {
  justify-content: center;
  gap: 20px;
}
.top_guide li {
  width: 100%;
  max-width: 254px;
  padding: 20px;
  background-color: #ffffff;
}
.top_guide h3 {
  border-bottom: 1px dotted #B8917B;
  padding-bottom: 7px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.6rem;
}
.top_guide p {
  font-size: 1.3rem;
}
.top_guide .tel_num {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top_guide ul {
    align-items: center;
  }
}

.news_info {
  padding: 20px;
  background-color: #ffffff;
}
.news_title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_text {
  font-size: 1.3rem;
  color: #AAAAAA;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news ul {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.news li {
  width: 100%;
  max-width: 350px;
  transition: 0.3s ease;
  cursor: pointer;
}
.news li img {
  width: 100%;
  aspect-ratio: 4/3;
}
.news li:hover {
  opacity: 0.7;
}
.news.column .news_info {
  padding: 30px;
  flex: 1;
}
.news.column .news_text {
  -webkit-line-clamp: 2;
}
.news.column ul {
  flex-direction: column;
}
.news.column li {
  max-width: 800px;
}
.news.column li img {
  width: auto;
  max-height: 180px;
}
@media screen and (max-width: 767px) {
  .news.column .news_info {
    padding: 20px;
  }
}

.menu_name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.menu_price {
  font-weight: 700;
}
.menu_price span {
  font-size: 1.4rem;
  font-weight: 500;
}
.menu ul {
  flex-wrap: wrap;
  gap: 40px 25px;
  justify-content: center;
  align-items: center;
}
.menu li {
  width: 280px;
  transition: 0.3s ease;
  cursor: pointer;
}
.menu li img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}
.menu li:hover {
  opacity: 0.7;
}

.form_message {
  margin-bottom: 30px;
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #53A75E;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
  font-weight: 500;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #F5F5F5;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #F5F5F5;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  margin: 0 0 0 10px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

.must {
  display: inline-block;
  background-color: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #F5F5F5;
  padding: 2px 5px;
  margin: 0 10px 0 0;
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #F5F5F5;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

#privacy p {
  margin-bottom: 50px;
}
#privacy dt {
  border-bottom: 2px solid #343434;
  padding: 0 0 10px 15px;
  margin-bottom: 20px;
}
#privacy dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
#privacy ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}

#sitemap ul {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
#sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
}
#sitemap a i {
  color: #EBBD9B;
  padding-right: 7px;
}
#sitemap a:hover {
  color: #EBBD9B;
}

#rule h2 {
  font-size: 3.2rem;
}
#rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
#rule dt {
  width: 35%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
#rule dd {
  width: 65%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}

@media screen and (max-width: 767px) {
  #rule h2 {
    font-size: 2.5rem;
  }
  #rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  #rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  #rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}
.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  #notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
#thanks {
  background-color: #53A75E;
}
#thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}

@media screen and (max-width: 767px) {
  #thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style1.css.map */