@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ysabeau:wght@300;500&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@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: #555555;
  font-family: "Noto Sans JP", 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 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 500;
}

h3 {
  color: #593C3C;
}

.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;
  }
}

.btn {
  border: 1px solid;
  position: relative;
}
.btn:after {
  content: "";
  width: 40px;
  height: 8px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
  position: absolute;
  right: 30px;
  transition: all 0.3s ease;
}
.btn_pink {
  width: 300px;
  padding: 10px 20px;
  border-color: #C58C8C;
  background-color: #C58C8C;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
}
.btn_pink:after {
  border-color: #ffffff;
  top: 20px;
}
.btn_pink:hover {
  background-color: #ffffff;
  color: #C58C8C;
}
.btn_pink:hover:after {
  border-color: #C58C8C;
  right: 15px;
}
.btn_white {
  width: 100%;
  max-width: 520px;
  border-color: #ffffff;
  padding: 30px;
  background-color: #ffffff;
  color: #C23434;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
}
.btn_white:after {
  border-color: #C23434;
  top: 45px;
}
.btn_white:hover {
  background-color: #C23434;
  color: #ffffff;
}
.btn_white:hover:after {
  border-color: #ffffff;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .btn_white {
    padding: 20px 30px 20px 10px;
    font-size: 1.8rem;
  }
  .btn_white:after {
    border-color: #C23434;
    top: 30px;
  }
}
.btn_sub {
  width: 100%;
  max-width: 430px;
  padding: 10px;
  border-color: #593C3C;
  text-align: center;
  color: #593C3C;
}
.btn_sub:after {
  display: none;
}
.btn_sub:hover {
  opacity: 0.7;
}
.btn_box {
  text-align: center;
}
.head_text {
  margin-bottom: 40px;
  color: #593C3C;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
}
.head_text_white {
  color: #ffffff;
}
.head_text_pink {
  color: #C58C8C;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
}

.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 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  font-family: "Ysabeau", sans-serif;
  font-size: 4.6rem;
  font-size: 500;
  line-height: 1;
  transition: 0.3s ease;
}
.header_logo:hover {
  opacity: 0.7;
}
.header nav {
  flex: 1;
}
.header nav ul {
  justify-content: flex-end;
  gap: 30px;
  font-size: 1.4rem;
  font-weight: 500;
}
.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: #C58C8C;
}
.overlay a i {
  padding-right: 5px;
  color: #C58C8C;
}

.contact_area {
  background-image: url(../img/cta_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.contact_area:before, .contact_area:after {
  content: "";
  width: 100%;
  height: 1px;
  border: 1px solid #C58C8C;
  position: absolute;
  left: 0;
}
.contact_area:before {
  top: 10px;
}
.contact_area:after {
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contact_area .head_text {
    font-size: 2.5rem;
  }
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  padding: 10px 0;
}
.footer .copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #B9AFAF;
}
@media screen and (max-width: 767px) {
  .footer .container {
    align-items: flex-start;
    gap: 20px;
  }
}

.main_visual .container {
  padding: 40px 0;
  justify-content: space-between;
  align-items: flex-end;
}
.main_visual .container + img {
  width: 100%;
}
.main_visual_text {
  margin-bottom: 10px;
  color: #C58C8C;
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .main_visual .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .main_visual_text {
    margin-bottom: 5px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .main_visual .container + img {
    aspect-ratio: 1/1;
  }
}

.top_message {
  position: relative;
  font-family: "Noto Serif JP", serif;
  overflow: hidden;
}
.top_message .container {
  padding: 130px 0 200px;
}
.top_message .container + img {
  position: absolute;
  top: 60px;
  right: -30px;
}
.top_message_main_text {
  margin-bottom: 60px;
  text-align: left;
}
.top_message_sub_text {
  padding-left: 30px;
  font-weight: 500;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .top_message .container {
    padding: 80px 0 130px;
  }
  .top_message .container + img {
    top: auto;
    bottom: 30px;
  }
  .top_message_main_text {
    margin-bottom: 40px;
  }
  .top_message_sub_text {
    padding-left: 0;
    line-height: 2;
  }
}
.top_trouble {
  color: #ffffff;
  background-image: url(../img/top_trouble_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_trouble ul {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  flex-direction: column;
  gap: 10px;
}
.top_trouble li {
  padding: 20px 30px;
  background-color: rgba(75, 45, 45, 0.7);
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
.top_about {
  position: relative;
}
.top_about:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_parts.webp);
  background-size: 10px;
  background-repeat: repeat;
  position: absolute;
}
.top_about .container {
  position: relative;
  z-index: 1;
}
.top_about_title {
  color: #593C3C;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.top_about_title p {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 4.6rem;
  position: relative;
}
.top_about_title p:before, .top_about_title p:after {
  content: "/";
  position: absolute;
  bottom: 0;
}
.top_about_title p:before {
  right: -20px;
}
.top_about_title p:before {
  left: -310px;
  transform: scale(-1, 1);
}
.top_about_title h2 span {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 10px;
  background-color: #593C3C;
  color: #ffffff;
}
.top_about ul {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  gap: 30px;
}
.top_about li {
  border: 11px solid #ECDFDF;
  padding: 30px 40px;
  background-color: #ffffff;
  align-items: center;
  gap: 30px;
  position: relative;
}
.top_about h3 {
  margin-bottom: 25px;
}
.top_about h3 + p {
  font-size: 1.4rem;
}
.top_about_point {
  width: 106px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 22px 30px;
  background-color: hsl(0, 33%, 66%);
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "Noto Serif JP", serif;
}
.top_about_point:before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_about_point p {
  font-size: 1.2rem;
}
.top_about_point span {
  display: block;
  font-size: 3.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top_about_title p {
    font-size: 3.5rem;
  }
  .top_about_title p:before {
    left: -248px;
  }
  .top_about_title h2 span {
    margin: 5px 10px;
  }
  .top_about li {
    border: 6px solid #ECDFDF;
    padding: 30px 20px;
  }
  .top_about h3 {
    margin-bottom: 17px;
  }
  .top_about_point {
    width: 80px;
    padding: 13px 0 0 0;
    top: 15px;
    left: 15px;
  }
  .top_about_point span {
    font-size: 2.4rem;
  }
}
.top_achieve ul {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 50px;
  flex-direction: row;
  justify-content: center;
  gap: 35px 30px;
}
.top_achieve li {
  width: 310px;
  padding: 25px;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.4rem;
  transition: 0.3s ease;
  cursor: pointer;
}
.top_achieve li:hover {
  opacity: 0.7;
}
.top_achieve p {
  margin-top: 10px;
  font-size: 1.4rem;
}
.top_guide {
  background-color: #E9E2E0;
  position: relative;
}
.top_guide:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_parts2.webp);
  background-size: 10px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.top_guide .container {
  position: relative;
  z-index: 1;
}
.top_guide h2 + p {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  padding: 20px;
  margin: 0 auto 50px;
  text-align: center;
  background-color: #ffffff;
  color: #C58C8C;
}
.top_guide ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 20px;
  justify-content: center;
}
.top_guide li {
  width: 200px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}
.top_guide img {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_guide li {
    width: 150px;
  }
}
.top_flow {
  background-image: url(../img/top_flow_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_flow ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: column;
  gap: 30px;
}
.top_flow li {
  padding: 30px 40px;
  background-color: #ffffff;
  align-items: center;
  gap: 30px 40px;
  position: relative;
}
.top_flow li:before {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  background: #F0EFED;
  height: 51.9615242271px;
  width: 60px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: -35px;
  left: -28px;
  transform: rotate(-45deg);
}
.top_flow_detail {
  font-size: 1.4rem;
}
.top_flow_detail span {
  display: inline-block;
  padding: 0px 15px;
  margin-bottom: 10px;
  background-color: #C58C8C;
  color: #ffffff;
}
.top_flow_detail h3 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}
.top_flow_detail p {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .top_flow li {
    padding: 30px 20px;
  }
  .top_flow h3 {
    font-size: 2rem;
  }
}
.top_faq ul {
  width: 100%;
  max-width: 750px;
  border-top: 1px dotted #C58C8C;
  margin: 0 auto;
}
.top_faq li {
  border-bottom: 1px dotted #C58C8C;
  font-family: "Noto Sans JP", sans-serif;
}
.top_faq li .fa-minus {
  display: none;
}
.top_faq li.opened .fa-plus {
  display: none;
}
.top_faq li.opened .fa-minus {
  display: block;
}
.top_faq_question {
  padding: 50px 10px;
  color: #593C3C;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.top_faq_question span {
  font-family: "Noto Serif JP", serif;
  color: #C58C8C;
  font-size: 3.2rem;
  line-height: 1;
}
.top_faq_question i {
  color: #C58C8C;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.top_faq_answer {
  padding: 0 40px 30px 10px;
  font-size: 1.4rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .top_faq_question {
    padding: 25px 30px 25px 10px;
    gap: 8px;
  }
  .top_faq_question span {
    font-size: 2.4rem;
  }
  .top_faq_question i {
    right: 10px;
  }
  .top_faq_answer {
    padding: 0px 20px 15px 10px;
  }
}
.top_company {
  background-image: url(../img/top_company_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_company dl {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.5rem;
}
.top_company dt {
  width: 180px;
  padding: 25px;
  background-color: #C58C8C;
  color: #ffffff;
  text-align: center;
  font-weight: normal;
}
.top_company dd {
  width: calc(100% - 190px);
  padding: 25px;
  background-color: #ffffff;
}
.top_company a {
  text-decoration: underline;
}
.top_company a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .top_company dt {
    width: 100%;
    padding: 10px 15px;
  }
  .top_company dd {
    width: 100%;
    padding: 10px 15px;
  }
}
.top_contact {
  background-image: url(../img/top_contact_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_contact h2 + p {
  width: 100%;
  max-width: 600px;
  border: 1px solid #ffffff;
  padding: 20px 25px;
  margin: 0 auto 50px;
  text-align: center;
  color: #ffffff;
}

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;
}
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 {
  display: inline-block;
  background-color: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
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;
  }
}

/*チェックボックス*/
.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;
}/*# sourceMappingURL=style.css.map */