@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background-color: #FFEFF2;
  color: #222222;
  overflow-x: hidden;
}

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

i {
  display: inline-block;
}

img {
  height: auto;
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

h3 {
  font-weight: 500;
}

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

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

.btn {
  border: 1px solid;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.btn_white {
  width: 220px;
  border-radius: 30px;
  border-color: #ffffff;
  padding: 15px;
  background-color: #ffffff;
  color: #EC6D81;
}
.btn_pink {
  width: 450px;
  border-color: #EC6D81;
  padding: 20px;
  background-color: #EC6D81;
  color: #ffffff;
  font-size: 2.2rem;
}
.btn:hover {
  opacity: 0.7;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn_pink {
    width: 250px;
    padding: 15px;
    font-size: 1.8rem;
  }
}

.head_text {
  margin-bottom: 50px;
  text-align: center;
  font-size: 3.6rem;
}
.head_text_after_msg {
  margin-bottom: 25px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.head_text.pink {
  color: #EC6D81;
}
.head_text.white {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .head_text {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .head_text_after_msg {
    text-align: left;
    font-size: 1.8rem;
  }
}

.tel_num {
  text-decoration: underline;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
    text-decoration: none;
  }
}

.scroll_top {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  padding-top: 8px;
  background-color: #EC6D81;
  color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
.scroll_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .scroll_top {
    width: 40px;
    font-size: 2.4rem;
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.header {
  width: 100%;
  padding: 40px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 1;
}
.header_logo:hover {
  opacity: 0.7;
}
.header nav {
  flex: 1;
  color: #ffffff;
}
.header nav ul {
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.header nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1299px) {
  .header {
    padding: 20px;
  }
  .header_logo {
    width: 55px;
  }
  .header nav {
    display: none;
  }
}

.burger_btn {
  display: none;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1299px) {
  .burger_btn {
    display: block;
  }
}

.overlay {
  width: 95%;
  padding: 40px 20px;
  border-radius: 25px;
  background-color: #ffffff;
  color: #EC6D81;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.overlay img {
  margin: 0 auto 40px;
}
.overlay .close_btn {
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 10px;
  right: 15px;
}
.overlay .close_btn:hover {
  opacity: 0.7;
}
.overlay ul:nth-of-type(1) {
  margin-bottom: 40px;
  gap: 20px;
  font-size: 2rem;
}
.overlay ul:nth-of-type(2) {
  margin-bottom: 30px;
  gap: 10px;
}
.overlay a:hover {
  opacity: 0.7;
}
.overlay .copyright {
  text-align: center;
}
@media screen and (max-width: 1299px) {
  .overlay {
    display: block;
  }
}

.filter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(35, 24, 21, 0.4);
  opacity: 0;
  visibility: hidden;
}
.filter.show {
  animation: fadeIn 0.3s ease forwards;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-color: #EC6D81;
  color: #ffffff;
  font-weight: 700;
}
.footer .container {
  padding: 80px 0 40px;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_top_area {
  margin-bottom: 100px;
  justify-content: space-between;
  align-items: flex-end;
}
.footer_top_area img {
  width: 150px;
}
.footer_top_area nav {
  flex: 1;
  max-width: 650px;
}
.footer_top_area ul {
  gap: 40px;
  justify-content: flex-start;
  font-size: 2rem;
  line-height: 1.2;
}
.footer_btm_area {
  justify-content: space-between;
  align-items: center;
}
.footer_btm_area ul {
  gap: 10px 60px;
}
@media screen and (max-width: 767px) {
  .footer_top_area {
    margin-bottom: 50px;
    gap: 60px;
    align-items: flex-start;
  }
  .footer_top_area img {
    margin: 0 auto;
  }
  .footer_top_area nav {
    flex: 1;
    max-width: none;
  }
  .footer_btm_area {
    align-items: flex-start;
    gap: 40px;
  }
  .footer_copyright {
    display: block;
    text-align: center;
  }
}

.first_view {
  width: 100%;
  height: 90vh;
  max-height: 800px;
  background-image: url("../img/fv_bg.webp");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.first_view_msg {
  width: 100%;
  padding-left: 10%;
  color: #ffffff;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
}
.first_view_msg_main {
  margin-bottom: 10px;
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1.2;
}
.first_view_msg_main span {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.first_view_msg_sub {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1534px) {
  .first_view {
    max-height: 600px;
  }
}
@media screen and (max-width: 1299px) {
  .first_view {
    max-height: 500px;
  }
  .first_view_msg_main {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .first_view {
    background-image: url("../img/fv_bg_sp.webp");
    background-position: center;
  }
  .first_view_msg {
    padding-left: 20px;
    bottom: auto;
    top: 100px;
  }
  .first_view_msg_main {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .first_view_msg_sub {
    font-size: 1.6rem;
  }
}

.about {
  text-align: center;
  font-weight: 500;
}
.about p:has(+ ul) {
  margin-bottom: 50px;
}
.about ul {
  gap: 45px;
  justify-content: center;
}
.about li {
  max-width: 330px;
  width: 100%;
}
.about li p {
  font-size: 2rem;
}
.about img {
  max-width: 330px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-bottom: 25px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .about p:has(+ ul) {
    text-align: left;
  }
  .about img {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.trouble {
  position: relative;
  background-color: #ffffff;
}
.trouble:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 50vw 0 50vw;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  z-index: 1;
}
.trouble .container {
  padding-bottom: 20px;
}
.trouble ul {
  justify-content: center;
  gap: 40px 20px;
}
.trouble li {
  width: 255px;
  border-radius: 10px;
  padding: 30px 20px 40px;
  background-color: #F5F5F5;
}
.trouble h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
}
.trouble img {
  width: 100%;
  aspect-ratio: 25/14;
  margin: 0 auto 25px;
}
.trouble p {
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .trouble ul {
    align-items: center;
  }
}

.feature {
  padding-top: 80px;
}
.feature ul {
  justify-content: center;
}
.feature li {
  width: 100%;
  max-width: 360px;
  padding: 30px 20px 50px;
}
.feature li:nth-of-type(2n + 2) {
  background-color: #ffffff;
}
.feature img {
  width: 200px;
  aspect-ratio: 4/3;
  margin: 0 auto 30px;
  background-color: #D9D9D9;
}
.feature h3 {
  height: 60px;
  margin: 20px 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #EC6D81;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .feature ul {
    align-items: center;
  }
  .feature li {
    padding-bottom: 30px;
  }
  .feature h3 {
    margin-top: 0;
  }
}

.category {
  background-color: #EC6D81;
  color: #ffffff;
}
.category p:has(+ ul) {
  margin-bottom: 40px;
  text-align: center;
}
.category ul {
  justify-content: center;
  gap: 40px;
}
.category_item {
  width: 50%;
  max-width: 450px;
}
.category_item ul {
  color: #222222;
  gap: 10px;
}
.category_item li {
  position: relative;
  padding-left: 25px;
}
.category_item li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/check_icon.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}
.category h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.category_box {
  border-radius: 10px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.category img {
  width: 220px;
  aspect-ratio: 4/3;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .category ul {
    align-items: center;
  }
  .category_item {
    width: 100%;
    max-width: 360px;
  }
  .category_box {
    padding: 40px 25px;
  }
}

.case {
  padding: 100px 0;
}
.case_item {
  width: 520px;
  border-radius: 30px;
  border: 1px solid #EC6D81;
  padding: 50px 30px;
  margin: 0 35px;
  background-color: #ffffff;
}
.case img {
  width: 260px;
  margin: 0 auto 15px !important;
}
.case h3 {
  margin-bottom: 15px;
  color: #FFCC00;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.case p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .case .head_text_after_msg {
    padding: 0 20px;
  }
  .case .case_title_area img {
    width: 80%;
  }
  .case_item {
    width: 340px;
    padding: 40px 20px;
  }
}

.reason {
  background-color: #ffffff;
  background-image: url(../img/reason_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.reason .container {
  padding: 60px 0;
}
.reason ul {
  margin-bottom: 60px;
  gap: 80px;
}
.reason ul + p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.reason li {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px 50px;
}
.reason li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.reason img {
  width: 40%;
  max-width: 460px;
}
.reason .text_area {
  flex: 1;
  position: relative;
}
.reason .text_area span {
  color: #F19EC2;
  font-family: "Inter", sans-serif;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: -25px;
  left: 0;
}
.reason h3 {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.reason p {
  line-height: 2;
}
.reason img {
  width: 40%;
  max-width: 460px;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 767px) {
  .reason {
    background-image: url(../img/reason_bg_sp.webp);
  }
  .reason ul {
    margin-bottom: 40px;
    gap: 40px;
  }
  .reason ul + p {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.8em;
  }
  .reason li {
    align-items: center;
  }
  .reason li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .reason img {
    width: 100%;
    max-width: 350px;
  }
  .reason h3 {
    font-size: 2rem;
    line-height: 1.8;
  }
  .reason p {
    line-height: 1.8;
  }
}

.flow ul {
  justify-content: center;
  gap: 20px;
}
.flow li {
  width: 250px;
}
.flow img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto 40px;
}
.flow h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .flow ul {
    align-items: center;
  }
}

.faq ul {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}
.faq li {
  border-radius: 10px;
  padding: 20px 30px;
  background-color: #EC6D81;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}
.faq li:hover {
  opacity: 0.7;
}
.faq li i {
  font-size: 2.8rem;
  position: absolute;
  top: 25px;
  right: 40px;
}
.faq li.open {
  background-color: #ffffff;
  color: #EC6D81;
}
.faq li.open i {
  transform: rotate(180deg);
}
.faq_question {
  font-size: 1.8rem;
  font-weight: 500;
}
.faq_answer {
  display: none;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .faq li {
    padding: 20px 40px 20px 20px;
  }
  .faq li i {
    font-size: 2.4rem;
    top: 20px;
    right: 10px;
  }
  .faq_question {
    font-size: 1.6rem;
  }
}

.company dt,
.company dd {
  border-bottom: 1px solid #EC6D81;
  padding: 30px 50px;
}
.company dt {
  width: 30%;
}
.company dd {
  width: 70%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company dt,
  .company dd {
    width: 100%;
    padding: 15px 20px;
  }
  .company dt {
    border-bottom: none;
    padding-bottom: 0;
  }
}

form {
  border-radius: 20px;
  border: 2px solid #CCD6DC;
  padding: 40px;
  background-color: #ffffff;
}
form#myForm {
  padding: 0;
  border: none;
  box-shadow: 0;
}
form a {
  text-decoration: underline;
}
form a:hover {
  color: #0064B2;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  text-align: left;
  padding: 30px 20px 20px;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  font-weight: 400;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
}
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 #D9D9D9;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form textarea {
  font-size: 16px;
  border: 1px solid #D9D9D9;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input,
form select {
  vertical-align: middle;
}
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: #EC6D81;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 0 0 10px;
  padding: 2px 10px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
  padding-bottom: 40px;
}
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: 30px;
}
form .formBtn .btn {
  width: 280px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form {
    padding: 30px 20px;
  }
  form dl {
    display: block;
    padding: 0;
    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: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  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: #FFFFFF;
  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;
}

.h-adr span:not(.must),
.mail-adr span:not(.must) {
  color: #EC6D81;
  font-weight: 400;
}

#form {
  padding-top: 150px;
  background-color: #EC6D81;
}
@media screen and (max-width: 767px) {
  #form {
    padding-top: 70px;
  }
}

.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) {
  .err_page.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=style.css.map */