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

/*==================================================
02: common
==================================================*/
:root {
  --height_header: 0px;
  --height_fix_footer: 0px;
  --section: 40px;

  --base_width: 1120px;
  --base_color: #000;
  --base_bg: #f6f8f5;

  --c_main: #9a0500;
  --c_sub: #f4a500;
  --c_acc: palevioletred;

  --font_jp: "Noto Sans JP", sans-serif;
  --font_en: "Roboto", sans-serif;
  --icons: "Material Symbols Outlined";

  --transition: 0.3s;
}
@media (max-width: 520px) {
  :root {
    --section: 50px;
    --base_width: 100%;
  }
}

a[href=""] {
  pointer-events: all;
}

/*----------------------------------------
common
----------------------------------------*/
body {
  padding-top: var(--height_header);
}
@media (max-width: 520px) {
  body {
    padding-bottom: var(--height_fix_footer);
  }
}

.sec_margin {
  margin: var(--section) auto;
}
.sec_padding {
  padding: var(--section) 0;
}

/* figure,img */
img {
  object-fit: cover;
}
.of_cont img,
img.of_cont {
  object-fit: contain;
}

/* [class*="grid_"] 等分 */
[class*="grid_"] {
  --gap: 50px;
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  gap: var(--gap);
}
.grid_2c {
  --grid: 2;
}
.grid_3c {
  --grid: 3;
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1 !important;
  }
  [class*="grid_"].sp2c {
    --grid: 2 !important;
  }
}

/* .box_2c 按分 */
.box_2c {
  --gap: 50px;
  --box: 30% 1fr;
  display: grid;
  grid-template-columns: var(--box);
  align-items: flex-start;
  gap: var(--gap);
}
@media (min-width: 521px) {
  .box_2c.reverse > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .box_2c {
    --gap: 30px;
    grid-template-columns: 1fr;
  }
}

/* .dist_ */
[class*="dist_"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--distance);
}
.dist_10 {
  --distance: 10px;
}
.dist_20 {
  --distance: var(--margin20);
}
.dist_30 {
  --distance: var(--margin30);
}
.dist_40 {
  --distance: var(--margin40);
}
.dist_50 {
  --distance: var(--margin50);
}
.dist_100 {
  --distance: var(--margin100);
}

/*----------------------------------------
font
----------------------------------------*/
body .fs32 {
  font-size: 3.2rem;
}
body .fs38 {
  font-size: 3.8rem;
}
@media (max-width: 520px) {
  body .fs18 {
    font-size: 1.6rem;
  }
  body .fs20,
  body .fs22 {
    font-size: 1.8rem;
  }
  body .fs24,
  body .fs26 {
    font-size: 2rem;
  }
  body .fs28,
  body .fs30,
  body .fs32 {
    font-size: 2.2rem;
  }
  body .fs35,
  body .fs38 {
    font-size: 2.4rem;
  }
  body .fs40 {
    font-size: 2.6rem;
  }
  body .fs45 {
    font-size: 2.8rem;
  }
  body .fs50 {
    font-size: 3rem;
  }
}

/* color */
.fc_wht {
  color: #fff;
}
.fc_main {
  color: var(--c_main);
}

/*----------------------------------------
background
----------------------------------------*/
.bg_wht {
  background-color: #fff;
}
.bg_main {
  background-color: var(--c_main);
}
.bg_base_10 {
  background-color: color-mix(in srgb, var(--base_color) 10%, #fff);
}

/* .bg_img */
*:has(> .bg_img) {
  position: relative;
}
.bg_img {
  position: absolute;
  z-index: -1;
  inset: 0;
}

/*----------------------------------------
[class*="btn_"]
----------------------------------------*/
[class*="btn_"] {
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  width: fit-content;
  min-height: 62px;
  margin: 0px auto;
  padding: 10px 30px;
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border-radius: 1000px;
  border: 1px solid var(--btn_color);
}
[class*="btn_"]:hover {
  opacity: 1;
  color: var(--btn_bg);
  background-color: var(--btn_color);
  border: 1px solid var(--btn_bg);
}
[class*="btn_"] p {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-family: var(--font_en);
  font-style: italic;
}
@media (max-width: 520px) {
  [class*="btn_"] {
    min-width: auto;
    width: 90%;
  }
}

/* [class*="btn_"] p */
[class*="btn_"] p::before,
[class*="btn_"] p::after {
  display: block;
  width: var(--size);
  height: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}
[class*="btn_"].R p::after {
  --size: 4.5em;
  --mask: url(../images/icon_arrow.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 72 / 8;
}
@media (max-width: 520px) {
  [class*="btn_"].R p::after {
    --size: 3em;
  }
}

/* .btn_A */
.btn_A {
  --btn_color: #fff;
  --btn_bg: var(--c_main);
}

/* .btn_B */
.btn_B {
  --btn_color: var(--base_color);
  --btn_bg: #fff;
}

/* .btn_C */
.btn_C {
  --btn_color: #fff;
  --btn_bg: var(--base_color);
  min-height: 45px;
  border-radius: 0px;
}
.btn_C p {
  font-weight: normal;
  font-style: normal;
}

/*----------------------------------------
.tit
----------------------------------------*/
/* .entry-title */
.entry-title {
  font-weight: 900;
  font-family: var(--font_jp);
  text-align: center;
}
.entry-title span.en {
  position: relative;
  z-index: -1;
  display: block;
  margin-bottom: -0.4em;
  font-size: clamp(1em, 10vw, 3em);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--base_color) 10%, #fff);
  mix-blend-mode: multiply;
}

.page_title {
  color: #fff;
  background-color: color-mix(in srgb, var(--base_color) 60%, #fff);
}
.page_title .entry-title span.en {
  color: color-mix(in srgb, var(--base_color) 30%, #fff);
}

/* .titX */
.titX {
  font-weight: 900;
}
.titX span.en {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8em;
  text-transform: uppercase;
  color: var(--c_main);
}
.titX span.en::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: currentColor;
}

/* .titA */
.titA span.en {
  font-size: 9.8rem;
  font-weight: 900;
  font-family: var(--font_en);
  font-style: italic;
  line-height: 1;
}
.titA span.jp {
  display: flex;
  align-items: baseline;
}
.titA span.jp::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--c_main);
}
.fc_wht.titA span.jp::before {
  background-color: #fff;
}
@media (max-width: 520px) {
  .titA span.en {
    font-size: 5rem;
  }
}

/* .titB */
.titB {
  padding: 20px 40px;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  border: 1px solid;
}
.titB span.en {
  font-size: 2.5em;
  font-family: var(--font_en);
  font-style: italic;
  line-height: 1.2;
}
.titB span.jp {
  display: block;
  color: var(--c_main);
}
.titB span.en + span.jp {
  margin-top: 10px;
}
@media (max-width: 520px) {
  .titB {
    padding: 20px;
    font-size: 1.6rem;
    text-align: left;
  }
}

/* .titC */
.titC {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 5px;
  font-weight: 900;
  border-bottom: 2px solid var(--c_sub);
}
.titC i {
  font-size: 5em;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--base_color) 20%, #fff);
  mix-blend-mode: multiply;
}
.titC span.en {
  font-family: var(--font_en);
  font-style: italic;
  line-height: 1;
  color: var(--c_main);
}
.titC span.jp {
  display: block;
  font-size: 1.5em;
}

/* .titD */
.titD {
  margin: 5px 0;
  padding-left: 10px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  border-left: 4px solid var(--c_main);
}

/* .txt_en */
.txt_en {
  font-weight: 900;
  font-family: var(--font_en);
  font-style: italic;
}

/*----------------------------------------
.richtext
----------------------------------------*/
.richtext {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  line-height: 2;
}
.richtext a:not([href^="tel"]) {
  text-decoration: underline;
  color: var(--c_main);
}
.richtext a:not([href^="tel"]):hover {
  text-decoration: none;
}
.richtext em {
  color: var(--c_main);
}

/*----------------------------------------
.splide
----------------------------------------*/
/* .splide__arrow */
.splide__arrow {
  background: var(--c_main);
}
.splide__arrow svg {
  fill: #fff;
}

/* .splide__pagination */
.splide__pagination {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 10px;
}
.splide__pagination__page {
  background: color-mix(in srgb, var(--c_main) 50%, #fff);
}
.splide__pagination__page.is-active {
  background: var(--c_main);
}

/* isNavigation: true, */
.splide__track--nav > .splide__list > .splide__slide,
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}

/* .overflow_splide */
.overflow_splide {
  overflow: hidden;
}
.overflow_splide .splide {
  width: min(90%, var(--base_width));
  margin-inline: auto;
}
.overflow_splide .splide__track {
  overflow: visible;
}
.overflow_splide .splide__arrow {
  position: relative;
  top: auto;
  transform: none;
}
.overflow_splide .splide__arrow--prev {
  left: auto;
}
.overflow_splide .splide__arrow--next {
  right: auto;
}
.overflow_splide .splide__arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/*----------------------------------------
.card_
----------------------------------------*/
/* .card_A */
.card_A.box_2c {
  --box: 47% 1fr;
}
.card_A .figure {
  clip-path: inset(0px round 10px);
}
.card_A .figure img {
  aspect-ratio: 3 / 2;
}
@media (min-width: 521px) {
  .card_A.box_2c.reverse {
    --box: 1fr 47%;
  }
}

/* .card_B */
.card_B.box_2c {
  --margin: 62px;
  --gap: 0px;
  margin-top: var(--margin);
  background-color: #fff;
  border-bottom: 8px solid var(--c_sub);
}
.card_B .figure {
  height: 100%;
  transform: translateY(calc(-1 * var(--margin)));
}
.card_B .wrap {
  padding: 40px 60px;
}
@media (max-width: 520px) {
  .card_B.box_2c {
    --margin: 0px;
  }
  .card_B .wrap {
    padding: 20px;
  }
}

/*----------------------------------------
.pnav_wrap
----------------------------------------*/
.pnav_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}
.pnav_wrap [class*="btn_"] {
  margin: 0;
}

/*----------------------------------------
[class*="table_"]
----------------------------------------*/
[class*="table_"] {
  --padding: 15px;
  --border: 1px solid color-mix(in srgb, var(--base_color) 50%, #fff);
}
[class*="table_"] table {
  width: 100%;
  text-align: left;
  border: var(--border);
  background-color: #fff;
}
[class*="table_"] caption {
  padding: 5px;
  text-align: center;
  border: 1px solid;
  border-bottom: none;
}
[class*="table_"] :is(th, td) {
  padding: var(--padding);
  vertical-align: middle;
  border: var(--border);
}
[class*="table_"] th {
  font-size: 1.6rem;
  background-color: color-mix(in srgb, var(--base_color) 10%, #fff);
}
[class*="table_"] tr:first-child th:not(:first-child),
[class*="table_"] .col-header {
  color: #fff;
  background-color: var(--base_color);
}
[class*="table_"] th:has(a) {
  padding: 0;
}
[class*="table_"] th:has(a) a {
  width: 100%;
  height: 100%;
  padding: var(--padding);
}
[class*="table_"] th:has(a) a:hover {
  color: #fff;
  background-color: var(--base_color);
}
[class*="table_"] td {
  font-size: 1.4rem;
}
[class*="table_"] td a {
  vertical-align: middle;
}
[class*="table_"] span {
  display: block;
  font-size: 0.8em;
  opacity: 0.5;
}

/* .scroll_wrap */
.scroll_wrap {
  overflow-y: hidden;
}
@media screen and (max-width: 520px) {
  .scroll_wrap > [class*="table_"] {
    width: var(--scroll_width);
  }
  *:not(.scroll_wrap) > [class*="table_"] :is(table, tbody, tr, th, td) {
    display: block;
    width: 100%;
    border: none;
  }
  *:not(.scroll_wrap) > [class*="table_"] table {
    border-top: var(--border);
    border-left: var(--border);
  }
  *:not(.scroll_wrap) > [class*="table_"] :is(th, td) {
    border-right: var(--border);
    border-bottom: var(--border);
  }
  *:not(.scroll_wrap) > [class*="table_"] th {
    width: 100%;
  }
}

/* .table_B */
.table_B :is(th, td) {
  text-align: center;
}

/*----------------------------------------
.check_list
----------------------------------------*/
.check_list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 5px;
}
.check_list li::before {
  content: var(--name);
  font-family: var(--icons);
  font-variation-settings: "FILL" 1;
  font-size: 1.5em;
  line-height: 1;
  color: var(--c_main);
}

/*----------------------------------------
.link_tel
----------------------------------------*/
.link_tel p {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.link_tel p::before {
  --size: 0.8em;
  --mask: url(../images/icon_tel.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;
}

/*----------------------------------------
.deco01
----------------------------------------*/
.deco01::before,
.deco01::after {
  content: "";
  position: absolute;
  display: block;
  height: auto;
  z-index: -1;
}
.deco01::before {
  top: 0;
  right: 0;
  width: 540px;
  aspect-ratio: 540 / 1360;
  background: url(../images/deco01.png) center center / cover no-repeat;
}
.deco01::after {
  left: 50px;
  bottom: 0;
  width: 430px;
  aspect-ratio: 430 / 430;
  background: url(../images/deco02.png) center center / cover no-repeat;
}

/*----------------------------------------
.deco02
----------------------------------------*/
.deco02::before {
  content: "";
  position: absolute;
  display: block;
  height: auto;
  z-index: -1;
  top: 0;
  right: 0;
  width: 266px;
  aspect-ratio: 266 / 507;
  background: url(../images/deco03.png) center center / cover no-repeat;
}

/*==================================================
03: style
==================================================*/
/*----------------------------------------
header
----------------------------------------*/
header {
  position: fixed;
  z-index: 10;
  top: 0px;
  width: 100%;
  padding: 10px;
  background-color: #fff;
}
header .header_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(100%, 1400px);
  margin-inline: auto;
}
.logo img {
  width: 300px;
  height: auto;
}
header a.logo {
  width: fit-content;
}
header .cta_wrap,
header .sitemap {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
header .cta_wrap {
  gap: 20px;
}
header .sitemap {
  margin-top: 20px;
}
.freedial_note {
  font-size: 1.5rem;
}
.freedial_note b {
  font-size: 1.2em;
  font-weight: 900;
}
.link_freedial p {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.link_freedial p::before {
  content: "";
  display: block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../images/icon_freedial.svg) center center / contain no-repeat;
}
header .link_freedial {
  font-size: 2.4rem;
}
header .btn_C {
  min-width: 160px;
}
header a {
  display: block;
}
@media (max-width: 520px) {
  header {
    --height: 60px;
    padding: 0;
  }
  header .logo {
    padding: 10px 25px;
    height: var(--height);
  }
  header .logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  header .cta_wrap {
    display: none;
  }
  header .sitemap {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    gap: 0px;
    margin-top: 0px;
  }
  header .sitemap a {
    padding: 10px 0;
  }
}

/* #hamburger */
header input[type="checkbox"],
#hamburger ~ label {
  display: none;
}
@media (max-width: 520px) {
  #hamburger ~ label {
    position: relative;
    display: block;
    width: var(--height);
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--base_color);
    z-index: 10;
  }
  #hamburger ~ label span {
    --space: 6px;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 80%;
    height: 2px;
    display: inline-block;
    background-color: #fff;
  }
  #hamburger ~ label span:nth-of-type(1) {
    top: calc(50% - var(--space));
  }
  #hamburger ~ label span:nth-of-type(2) {
    top: calc(50% + var(--space));
  }
  #hamburger:checked ~ label span {
    top: 50%;
  }
  #hamburger:checked ~ label span:nth-of-type(1) {
    rotate: -45deg;
  }
  #hamburger:checked ~ label span:nth-of-type(2) {
    rotate: 45deg;
  }

  /* .gnav_wrap */
  #hamburger ~ .gnav_wrap {
    visibility: hidden;
  }
  #hamburger:checked ~ .gnav_wrap {
    visibility: visible;
  }
  body:has(#hamburger:checked) {
    overflow: hidden;
  }
  header:has(#hamburger:checked) .logo {
    position: relative;
    z-index: -1;
  }

  #hamburger ~ .gnav_wrap {
    --width: 320px;
    position: fixed;
    z-index: -1;
    top: 0px;
    /* right: calc(-1 * var(--width)); */
    right: 0px;
    width: min(100%, var(--width));
    height: 100dvh;
    padding-block: calc(var(--height_header) + 20px);
    padding-inline: 20px;
    background-color: var(--base_bg);
    filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.3));
    overflow-y: scroll;
  }
}

/*----------------------------------------
.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;
    grid-auto-columns: 1fr;
    gap: 1px;
    background-color: #fff;
  }
  .fix_footer .wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 5px;
    color: #fff;
  }
  .fix_footer .wrap .link_contact {
    font-size: 1.4rem;
    background-color: var(--base_color);
  }
  .fix_footer .wrap .link_freedial {
    display: flex;
    flex-flow: column;
    font-size: 1.8rem;
    background-color: var(--c_main);
  }
}

/*----------------------------------------
footer
----------------------------------------*/
footer .wrap {
  display: flex;
  gap: 70px;
}
footer .link_freedial {
  font-size: 3.4rem;
}
footer .btn_C {
  width: 100%;
  margin: 0;
  border-radius: 6px;
}

/* .office_list */
footer .office_list dt {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .office_list dt::before {
  content: "";
  width: 0.6em;
  height: auto;
  aspect-ratio: 1 / 1.2;
  background-color: var(--c_sub);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

footer .map {
  flex: 1;
}
footer .map iframe {
  height: 100%;
}

footer .gnav_wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 20px;
}

footer .insta_list a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}
footer .insta_list a::before {
  content: "";
  display: block;
  width: 3em;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../images/icon_insta.png) center center / contain no-repeat;
}
@media (max-width: 520px) {
  footer .wrap {
    flex-flow: column;
    gap: 30px;
  }

  footer .map iframe {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/*----------------------------------------
article
----------------------------------------*/
/* .archive_wrap */
.archive_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  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: 30px;
}

/* .post_cat */
.post_info .post_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.post_info .post_cat span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 5px 15px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  color: var(--c_main);
  border-radius: 1000px;
  border: 1px solid var(--c_main);
}

/* time */
.post_info time {
  font-size: 1.4rem;
}

/* .archive_nav */
.archive_wrap aside {
  padding: 20px;
  background-color: color-mix(in srgb, var(--base_color) 10%, #fff);
}
.archive_nav ul {
  padding-left: 20px;
}
.archive_nav a {
  width: 100%;
  padding: 5px 0;
}

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

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

/*----------------------------------------
.smf-form
----------------------------------------*/
.smf-form {
  /* background-color: #fff; */
}
.smf-form .smf-item__col--label {
  --color: #fff;
  color: var(--color);
  background-color: color-mix(in srgb, var(--base_color) 80%, #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: 900;
  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__description {
  --_font-size: 0.8em;
  color: var(--color);
}
.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;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  width: fit-content;
  min-height: 62px;
  margin: 0px auto;
  padding: 10px 20px;
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border-radius: 1000px;
  border: 1px solid var(--btn_color);
}
@media (max-width: 520px) {
  .smf-action {
    flex-flow: column-reverse;
    gap: 10px;
  }
  .smf-button-control {
    width: 100%;
  }
}

.smf-placeholder[data-name="qualification02"],
.smf-placeholder[data-name="experience02"] {
  display: none;
}

/*----------------------------------------
.service_list
----------------------------------------*/
.service_list li {
  position: relative;
  padding: 60px 0;
}
.service_list li::before,
.service_list li:last-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  height: 1px;
  margin: 0 calc(-50vw + 50%);
  background-color: var(--base_color);
}
.service_list li::before {
  top: 0;
}
.service_list li:last-child::after {
  bottom: 0;
}

/*----------------------------------------
.advantage_list
----------------------------------------*/
.advantage_list {
  counter-reset: num 0;
}
.advantage_list .card_B.box_2c {
  --box: 54% 1fr;
}
@media (min-width: 521px) {
  .advantage_list li:nth-child(even) .card_B.box_2c {
    --box: 1fr 54%;
  }
  .advantage_list li:nth-child(even) .card_B.box_2c > *:first-child {
    order: 1;
  }
}
.advantage_list i {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.advantage_list i::before {
  content: "";
  display: block;
  width: 0.85em;
  height: 50%;
  margin-right: -10px;
  background-color: var(--c_main);
  clip-path: polygon(70% 0%, 100% 0%, 30% 100%, 0% 100%);
}
.advantage_list i::after {
  counter-increment: num 1;
  content: counter(num);
  font-size: 2em;
  line-height: 1;
}

/*----------------------------------------
.news_list
----------------------------------------*/
.news_list li {
  border-bottom: 1px solid var(--base_color);
}
.news_list li:first-child {
  border-top: 1px solid var(--base_color);
}
.news_list li a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}
.news_list li a::after {
  --size: 4.5em;
  --mask: url(../images/icon_arrow.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 72 / 8;
  display: block;
  width: var(--size);
  height: auto;
  margin-left: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: var(--c_main);
}
@media (max-width: 520px) {
  .news_list li a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
}

/*----------------------------------------
.recruit
----------------------------------------*/
.recruit .wrap {
  width: min(90%, 480px);
  margin-inline: auto;
  margin-left: 0;
}
@media (max-width: 520px) {
  .recruit {
    padding-top: 0;
  }
  .recruit .bg_img {
    position: relative;
  }
  .recruit .wrap {
    width: 100%;
    margin-top: 20px;
  }
}

/*----------------------------------------
.access_list
----------------------------------------*/
.access_list .card_B.box_2c {
  --box: 50% 1fr;
}
@media (min-width: 521px) {
  .access_list li:nth-child(even) .card_B.box_2c {
    --box: 1fr 50%;
  }
  .access_list li:nth-child(even) .card_B.box_2c > *:first-child {
    order: 1;
  }
}

@media (min-width: 521px) {
  .tel_wrap .btn_C {
    display: none;
  }
}
.tel_wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}
.tel_wrap .btn_C {
  min-width: auto;
  width: 100%;
  min-height: auto;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
}
.tel_wrap .btn_C p::before {
  --size: 1em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 18 / 18;
}

/*----------------------------------------
.tag_list
----------------------------------------*/
.tag_list {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 10px;
}
.tag_list p {
  padding: 5px 10px;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--base_color);
}

/*----------------------------------------
.work_list
----------------------------------------*/
.work_list .card_B.box_2c {
  --box: 40% 1fr;
}
@media (min-width: 521px) {
  .work_list li:nth-child(even) .card_B.box_2c {
    --box: 1fr 40%;
  }
  .work_list li:nth-child(even) .card_B.box_2c > *:first-child {
    order: 1;
  }
}

/*----------------------------------------
.mv
----------------------------------------*/
.mv {
  aspect-ratio: 1440 / 840;
}
.mv .catch {
  width: 80%;
}
.mv .mv_splide {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.mv .mv_splide * {
  height: 100%;
}

/*----------------------------------------
.step
----------------------------------------*/
.bg_step {
  margin: 0 calc(-50vw + 50%);
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--base_color) 20%, #fff);
}
[class*="step_list"] {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 50px;
}
[class*="step_list"]:has(i) {
  counter-reset: num 0;
}
[class*="step_list"]:has(i)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--c_main);
}
[class*="step_list"] li {
  position: relative;
  background-color: #fff;
}
[class*="step_list"] li i {
  display: block;
  padding: 8px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: var(--c_main);
}
[class*="step_list"] li i::after {
  counter-increment: num 1;
  content: counter(num);
}
[class*="step_list"] li dl {
  padding: 20px;
}
[class*="step_list"] li dl dd {
  margin-top: 10px;
}
@media (max-width: 520px) {
  [class*="step_list"] {
    grid-auto-flow: row;
    gap: 20px;
  }
  [class*="step_list"]:has(i)::before {
    display: none;
  }
}

/* .step_listA */
.step_listA li .figure {
  height: 80px;
  padding: 20px;
  padding-bottom: 0;
}
.step_listA li .figure img {
  object-fit: contain;
}

/* .step_listB */
.step_listB li .figure {
  height: 120px;
}
