@charset "utf-8";
/* CSS Document */

/*----------------------------------------
header
----------------------------------------*/
header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}
header .header_wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  width: min(90%, 1700px);
  margin-inline: auto;
}
header .logo img {
  width: 300px;
  height: auto;
}
header nav,
header .cta_wrap {
  display: grid;
  align-items: center;
  grid-auto-flow: column;
  gap: 30px;
}
header .cta_wrap {
  gap: 10px;
}
header [class*="btn_"] {
  min-width: 228px;
  min-height: 58px;
}
@media (max-width: 1400px) {
  header {
    padding: 10px;
  }
  header h1 .logo img {
    width: 150px;
  }
  header .tel_wrap,
  header .cta_wrap {
    display: none;
  }
}

/* #hamburger */
header input[type="checkbox"],
#hamburger ~ label {
  display: none;
}
#hamburger ~ label {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  width: 46px;
  aspect-ratio: 1 / 1;
  z-index: 10;
}
#hamburger ~ label span {
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: var(--base_color);
}
#hamburger ~ label span:nth-of-type(1) {
  top: 20%;
}
#hamburger ~ label span:nth-of-type(2) {
  top: 50%;
}
#hamburger ~ label span:nth-of-type(3) {
  top: 80%;
}
#hamburger:checked ~ label span {
  translate: -50% -50%;
}
#hamburger:checked ~ label span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  rotate: -30deg;
}
#hamburger:checked ~ label span:nth-of-type(2) {
  display: none;
}
#hamburger:checked ~ label span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  rotate: 30deg;
}

/* .nav_wrap */
#hamburger ~ .nav_wrap {
  visibility: hidden;
}
#hamburger:checked ~ .nav_wrap {
  visibility: visible;
}
#hamburger ~ .nav_wrap {
  --width: auto;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  width: min(90%, var(--width));
  height: auto;
  max-height: 100dvh;
  padding-block: calc(var(--height_header) + 20px);
  padding-inline: 50px max(15vw, 50px);
  background-color: #fff;
  overflow-y: scroll;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

body:has(#hamburger:checked) {
  overflow: hidden;
}
header:has(#hamburger:checked) h1 .logo {
  position: relative;
  z-index: -1;
}
@media (max-width: 520px) {
  #hamburger ~ .nav_wrap {
    padding-inline: min(5%, 20px);
  }
}

/* .nav_inner */
header .nav_inner {
  display: grid;
  grid-auto-flow: column;
  align-items: flex-start;
  gap: 50px;
}
header .nav_inner .btn_C {
  margin-left: 0;
  transition: none;
}
@media (max-width: 520px) {
  header .nav_inner {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
}

/* .sitemap */
.sitemap a:not(dd a),
.sitemap dt {
  border-bottom: 1px solid color-mix(in srgb, var(--base_color) 20%, #fff);
}
.sitemap a:not(dd a) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.sitemap a:not(dd a)::after {
  --size: 1.2em;
  --mask: url(../images/icon_arrow01.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 1 / 1;
  display: block;
  width: var(--size);
  height: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}
.sitemap dt,
.sitemap a {
  padding: 5px 0;
}
.sitemap dt {
  color: var(--c_main);
}
.sitemap dd a {
  display: block;
}

/*----------------------------------------
.fix_header
----------------------------------------*/
.fix_header {
  visibility: hidden;
}
.scroll .fix_header {
  visibility: visible;
}
.fix_header {
  position: fixed;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  z-index: 100;
}
@media (max-width: 520px) {
  .fix_header {
    display: none;
  }
}

.fix_header a {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-rows: 1fr auto;
  gap: 10px;
  width: auto;
  min-height: 200px;
  height: auto;
  padding: 15px;
  color: #fff;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.fix_header a::after {
  --size: 1.2em;
  --mask: url(../images/icon_arrow01.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 1 / 1;
  display: block;
  width: var(--size);
  height: auto;
  margin: 0 auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}
.fix_header a:nth-child(1) {
  background-color: var(--c_line);
}
.fix_header a:nth-child(2) {
  background-color: var(--c_sub);
}
.fix_header a p {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/*----------------------------------------
footer
----------------------------------------*/
footer .footer_wrap {
  display: grid;
  align-items: flex-start;
  grid-auto-flow: column;
  gap: 200px;
}
footer .logo img {
  width: 300px;
}
@media (max-width: 1400px) {
  footer .footer_wrap {
    gap: 50px;
  }
}
@media (max-width: 520px) {
  footer .footer_wrap {
    grid-auto-flow: row;
  }
}

/*----------------------------------------
.fix_footer
----------------------------------------*/
.fix_footer {
  display: none;
}
@media (max-width: 520px) {
  .fix_footer {
    visibility: hidden;
  }
  .scroll .fix_footer {
    visibility: visible;
  }
  .fix_footer {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
  }
  .fix_footer .wrap {
    display: grid;
    grid-auto-flow: column;
  }
  .fix_footer .wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 5px;
    color: #fff;
  }
  .fix_footer .wrap a:nth-child(1) {
    background-color: var(--c_acc01);
  }
  .fix_footer .wrap a:nth-child(1)::before {
    --size: 15px;
    --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
    aspect-ratio: 23 / 30;
    content: "";
    display: block;
    width: var(--size);
    height: auto;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    background-color: currentColor;
  }
  .fix_footer .wrap a:nth-child(2) {
    background-color: var(--c_line);
  }
  .fix_footer .wrap a:nth-child(3) {
    background-color: var(--c_sub);
  }
}

/*----------------------------------------
.main_mv
----------------------------------------*/
.main_mv {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70dvh;
}
.main_mv .mv_splide {
  position: absolute;
  inset: 0px;
  z-index: -1;
}
.main_mv .mv_splide::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgb(from var(--c_main) r g b / 0.5);
  z-index: 1;
}
.main_mv .mv_splide * {
  height: 100%;
}

/*----------------------------------------
.service
----------------------------------------*/
*:has(+ .service) {
  padding-bottom: 80px;
}
.service {
  margin-top: -80px;
  padding-bottom: var(--section);
}
.service_list li a:hover {
  opacity: 1;
}
.service_list li .wrap {
  border: 4px solid var(--c_main);
}
.service_list li .figure img {
  aspect-ratio: 2 / 1;
}
.service_list li .inner {
  padding: 25px 30px;
}
@media (max-width: 520px) {
  .service_list li .inner {
    padding: 15px 20px;
  }
}

/*----------------------------------------
.purchase_mv
----------------------------------------*/
/* .loop_splide */
.purchase_mv .loop_splide {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.loop_splide .figure img {
  aspect-ratio: 354 / 200;
}
.loop_splide .figure .figcaption {
  padding: 3px;
  font-size: 2rem;
  font-family: var(--font_jp02);
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--c_main);
}
/* .mv_peason */
.purchase_mv .mv_peason {
  position: absolute;
  z-index: 0;
  inset: 0;
  padding-top: 50px;
}
.purchase_mv .mv_peason .figure {
  width: auto;
  height: 100%;
  aspect-ratio: 500 / 800;
  margin-left: auto;
  margin-right: calc(-1 * max(5vw, 50px));
}
.purchase_mv .mv_peason .figure img {
  object-position: right bottom;
}
/* .mv_catch */
.purchase_mv .mv_catch {
  position: relative;
  z-index: 1;
  padding: 120px 0 150px;
}
.purchase_mv .mv_catch .figure {
  width: min(70%, 950px);
}
@media (max-width: 520px) {
  .purchase_mv .mv_peason {
    display: none;
  }
  .purchase_mv .mv_catch {
    padding: 20px 0 0;
  }
  .purchase_mv .mv_catch .figure {
    width: 100%;
  }
  .purchase_mv .loop_splide {
    padding: 20px 0 0;
  }
  .loop_splide .figure .figcaption {
    font-size: 1rem;
  }
  .purchase_mv .loop_splide .figure .figcaption {
    color: var(--c_main);
    background-color: #fff;
  }
}

/*----------------------------------------

----------------------------------------*/
.about .bg_img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(
    to bottom,
    rgb(from var(--c_main) r g b / 1) 0%,
    rgb(from var(--c_main) r g b / 0.9) 10%
  );
}
@media (max-width: 520px) {
  .purchase_mv .loop_splide::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--c_main);
  }
}

/*----------------------------------------
.worry
----------------------------------------*/
.worry {
  --overlap: 36px;
}
.worry .worry_inner {
  --padding: 40px;
  padding: var(--padding);
  padding-bottom: calc(var(--padding) + var(--overlap));
  border: 4px solid #fff;
  border-radius: 30px;
}
.worry .worry_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  min-height: 85px;
  padding: 10px;
  font-size: 2.2rem;
  font-family: var(--font_jp02);
  font-weight: bold;
  background-color: color-mix(in srgb, var(--c_acc01) 60%, #fff);
  border: 2px solid #fff;
  border-radius: 6px;
}
.worry .worry_list li span {
  font-size: 1.4rem;
  font-family: var(--font_jp01);
}
.worry .add_arrowA {
  width: 90%;
  margin-inline: auto;
  margin-top: calc(-1 * var(--overlap));
  font-size: 3.4rem;
}
@media (max-width: 520px) {
  .worry .worry_inner {
    --padding: 20px;
  }
  .worry .worry_list li {
    font-size: 1.6rem;
  }
  .worry .worry_list li span {
    font-size: 1rem;
  }
  .worry .add_arrowA {
    width: 95%;
    font-size: 2rem;
  }
}

/*----------------------------------------
.num_list
----------------------------------------*/
.num_list {
  counter-reset: num 0;
}
.num_list li .num_info {
  letter-spacing: -1px;
}
.num_list li .num_info p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}
.num_list li .num_info i {
  font-family: var(--font_en);
}
.num_list li .num_info i::after {
  counter-increment: num 1;
  content: counter(num);
  font-size: 2em;
}
.num_list li .num_info span {
  font-family: var(--font_jp02);
  font-weight: bold;
}

/*----------------------------------------
.point
----------------------------------------*/
.point .num_list li .num_info i::after {
  vertical-align: sub;
}
.point .num_list li .figure img {
  height: auto;
  aspect-ratio: 340 / 396;
  border-radius: var(--radius);
}
.point .num_list li .figure.border {
  border: none;
}
.point .num_list li .figure.border img {
  border: 1px solid;
}
.point .num_list li .num_info::after {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  margin: 10px auto;
  background: url(../images/deco_arrow.svg) center center / contain no-repeat;
  aspect-ratio: 342 / 20;
}
@media (max-width: 520px) {
  .point .num_list .dist_20 .figure {
    order: 1;
  }
}

/*----------------------------------------
.recommend
----------------------------------------*/
.recommend .recommend_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.recommend .recommend_list.check_list li::before {
  color: var(--c_acc02);
}
.recommend .overflow_splide {
  padding-block: 60px;
}
.recommend .overflow_splide li {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
}
.recommend .overflow_splide li .figure img {
  aspect-ratio: 300 / 220;
}
.recommend .overflow_splide li .figure .figcaption {
  margin-top: 10px;
}
@media (max-width: 520px) {
  .recommend .recommend_list {
    justify-content: flex-start;
    gap: 5px;
  }
}

/*----------------------------------------
.area
----------------------------------------*/
.area .area_list li {
  padding: 6px 18px;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  background-color: var(--c_main);
  border-radius: 6px;
}
@media (max-width: 520px) {
  .area .area_list li {
    font-size: 1.6rem;
  }
}

/*----------------------------------------
.step
----------------------------------------*/
.step .num_list {
  row-gap: 40px;
}
.step .num_list li .num_info p {
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}
.step .num_list li .num_info i::after {
  content: counter(num, decimal-leading-zero);
  font-size: 1.8em;
}
/* arrow */
.step .num_list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.step .num_list li::after,
.step .num_list li:nth-child(4)::before {
  content: "";
  width: 24px;
  height: auto;
  aspect-ratio: 24 / 46;
  margin: 0 8px;
  background-color: var(--c_acc01);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.step .num_list li:nth-child(4)::before {
  position: absolute;
  top: 50%;
  right: 100%;
  translate: 0 -50%;
}
.step .num_list li:first-child::after,
.step .num_list li:last-child:after {
  opacity: 0;
}
/* .wrap */
.step .num_list li .wrap {
  height: 100%;
  padding: 18px;
  background-color: color-mix(in srgb, var(--c_sub) 24%, #fff);
  border-radius: 12px;
}
.step .num_list li .figure img {
  aspect-ratio: 300 / 230;
  border-radius: 12px;
}
/* :first-child */
.step .num_list li:first-child .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 30px;
  min-height: 200px;
  background-color: var(--c_acc02);
}
.step_tit {
  padding: 5px 25px;
  font-size: 4.2rem;
  font-family: var(--font_jp02);
  font-weight: bold;
  color: var(--c_main);
  border-top: 2px solid;
  border-bottom: 2px solid;
}
@media (max-width: 520px) {
  .step .num_list {
    row-gap: 20px;
  }
  .step .num_list li::after,
  .step .num_list li:nth-child(4)::before {
    display: none;
  }
  .step_tit {
    font-size: 3rem;
  }
}

/*----------------------------------------
.vacant
----------------------------------------*/
.vacant a:hover .figure img {
  scale: 1;
}

/*----------------------------------------
.faq_list
----------------------------------------*/
summary {
  pointer-events: none;
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.faq_list details summary,
.faq_list details .answer_wrap .answer_inner {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 20px;
}
.faq_list details summary {
  align-items: center;
  font-size: 1.8rem;
  line-height: 2;
}

.faq_list details summary::before,
.faq_list details .answer_wrap .answer_inner::before {
  font-weight: bold;
  font-family: var(--font_en);
  text-align: center;
  line-height: 1.5;
}
.faq_list details summary::before {
  content: "Q";
  font-size: 3.2rem;
  color: var(--c_main);
}
.faq_list details .answer_wrap .answer_inner::before {
  content: "A";
  font-size: 2.6rem;
  color: var(--c_acc01);
}

/*----------------------------------------
.inc_contact
----------------------------------------*/
.contact .bg_img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgb(from var(--c_main) r g b / 0.9);
}
.contact_list {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
}
.contact_list li {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 20px;
  min-height: 208px;
  padding: 35px;
  background-color: #fff;
  border-radius: 6px;
}
.contact_list [class*="btn_"] {
  min-width: auto;
  width: 100%;
}
@media (max-width: 520px) {
  .contact_list {
    grid-auto-flow: row;
  }
  .contact_list li {
    min-height: auto;
    padding: 20px;
  }
}

/*----------------------------------------
下層ページ
----------------------------------------*/
/*----------------------------------------
inc_heading
----------------------------------------*/
.heading .bg_img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgb(from var(--c_main) r g b / 0.8);
}

/*----------------------------------------
article
----------------------------------------*/
/* .archive_wrap */
.archive_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}
@media (max-width: 520px) {
  .archive_wrap {
    grid-template-columns: 1fr;
  }
}

/* .post_info */
.post_info {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
}

/* .post_cat */
.post_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.post_cat span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  color: #fff;
  background-color: var(--c_sub);
}

/* time */
.post_info time {
  padding: 5px 15px;
  font-size: 1.2rem;
}

.archive_list a {
  height: 100%;
  border: 1px solid #bbbbbb;
}
.archive_list .figure img {
  aspect-ratio: 3 / 2;
}
.archive_list .inner {
  padding: 25px 30px;
}
@media (max-width: 520px) {
  .archive_list .inner {
    padding: 15px 20px;
  }
}

.archive_wrap .faq_list li {
  padding: 30px;
  background-color: color-mix(in srgb, var(--c_main) 5%, #fff);
  border-radius: var(--radius);
}
@media (max-width: 520px) {
  .archive_wrap .faq_list li {
    padding: 20px;
  }
}

/* .archive_nav */
.archive_nav > li {
  padding-block: 10px;
  border-bottom: 1px solid var(--c_main);
}
.archive_nav a {
  display: block;
  padding-inline: 20px;
}
.archive_nav ul a {
  padding-block: 5px;
}

/* .archive_list */
.archive_list {
  --gap: 40px;
}

/* .pagination */
.pagination,
.pagination span,
.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination {
  flex-wrap: wrap;
  gap: 10px;
}
.pagination span,
.pagination a {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  color: var(--c_main);
  border: 1px solid var(--c_main);
}
.pagination span.current,
.pagination a:hover {
  color: #fff;
  background-color: var(--c_main);
}
.pagination span.dots {
  background-color: transparent;
  border: none;
}

/*----------------------------------------
company
----------------------------------------*/
.map iframe {
  aspect-ratio: 5 / 2;
}
@media (max-width: 520px) {
  .map iframe {
    aspect-ratio: 3 / 2;
  }
}

/*----------------------------------------
contact
----------------------------------------*/
.locaop_review iframe {
  height: 400px !important;
}

.locaop_reserve iframe {
  aspect-ratio: 2 / 1;
}
@media (max-width: 520px) {
  .locaop_reserve iframe {
    aspect-ratio: 1 / 2;
  }
}

.smf-form .smf-item__col--label {
  color: #fff;
  background-color: color-mix(in srgb, var(--c_main) 90%, #fff);
}
.smf-form .smf-item__label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 10px;
}
.smf-form .smf-item:has([data-validations*="required"]) .smf-item__label::after,
.smf-form [data-name="agree"] span.smf-checkbox-control__label::after {
  content: "必須";
  padding: 2px 5px;
  font-size: 0.8em;
  font-weight: bold;
  color: crimson;
  background-color: #fff;
}
.smf-form [data-name="agree"] span.smf-checkbox-control__label::after {
  margin-left: 10px;
  color: #fff;
  background-color: crimson;
}
.smf-form .smf-item__col--controls {
  background-color: #fff;
}
.smf-form .smf-item__description {
  --_font-size: 0.8em;
  color: #fff;
}
.smf-form [data-name="address"],
.smf-form input[type="text"][name="address"] {
  width: 100%;
}

.smf-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}
.smf-action .smf-button-control__control {
  background: none;
  /* ボタンデザイン */
  --btn_color: var(--base_color);
  --btn_bg: #fff;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 288px;
  width: fit-content;
  min-height: 64px;
  margin: 0px auto;
  padding: 10px;
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border: 1px solid var(--btn_color);
  border-radius: 1000px;
}
@media (max-width: 520px) {
  .smf-action {
    flex-flow: column-reverse;
    gap: 10px;
  }
  .smf-button-control {
    width: 100%;
  }
}
