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

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

  --base_width: 1100px;
  --base_color: #323232;
  --base_bg: #fff;

  --c_main: #069292;
  --c_sub: #fff8cd;
  --c_acc01: #ffeb75;
  --c_acc02: #f15a24;

  --c_line: #51ca1b;

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

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

a[href=""] {
  pointer-events: all;
}
.map iframe {
  aspect-ratio: 10 / 3;
}
@media (max-width: 520px) {
  .map iframe {
    aspect-ratio: 3 / 2;
  }
}

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

body .w350 {
  width: min(100%, 350px);
}

.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;
}
.grid_4c {
  --grid: 4;
}
.grid_5c {
  --grid: 5;
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1;
  }
  [class*="grid_"].sp_2c {
    --grid: 2;
  }
}

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

  /* .box_2c > .figure {
    width: 80%;
    margin-inline: auto;
  } */
}

/* .tereco */
.tereco > *:nth-child(even) .box_2c {
  grid-template-columns: 1fr var(--box);
}
@media (min-width: 521px) {
  .tereco > *:nth-child(even) .box_2c > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .tereco > *:nth-child(even) .box_2c {
    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
----------------------------------------*/
@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 {
    font-size: 2.2rem;
  }
  body .fs35 {
    font-size: 2.4rem;
  }
  body .fs40 {
    font-size: 2.6rem;
  }
  body .fs45 {
    font-size: 3rem;
  }
  body .fs50 {
    font-size: 3.4rem;
  }
}

body .fs36 {
  font-size: 2.4rem;
}
body .fs60 {
  font-size: min(6vw, 6rem);
  letter-spacing: -4px;
  line-height: 1.2;
}

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

/*----------------------------------------
background
----------------------------------------*/
.bg_wht {
  background-color: #fff;
}
.bg_main {
  background-color: color-mix(in srgb, var(--c_main) 10%, #fff);
}
.bg_grad {
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgb(from var(--c_main) r g b / 1) 100%
  );
}

/* .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: 300px;
  width: fit-content;
  min-height: 65px;
  margin: 0px auto;
  padding: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border: 2px solid var(--btn_bg);
  border-radius: 1000px;
}
[class*="btn_"]:hover {
  opacity: 1;
  transition: var(--transition);

  color: var(--btn_bg);
  background-color: var(--btn_color);
}
[class*="btn_"] p {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 520px) {
  [class*="btn_"] {
    min-width: auto;
    width: 90%;
  }
  [class*="btn_"].ml0 {
    margin-left: auto;
  }
}

/* [class*="btn_"].L.R */
[class*="btn_"].L::before,
[class*="btn_"].R::after {
  content: "→";
  /* font-family: var(--icons); */
  /* font-variation-settings: "FILL" 1; */
  font-size: 2.5rem;
  line-height: 1;
}

/* [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;
}

/* .btn_A */
.btn_A {
  --btn_color: var(--c_main);
  --btn_bg: #fff;
  min-width: clamp(300px, 100%, 450px);
  box-shadow: 4px 6px 0 0 var(--btn_color);
  border-color: var(--btn_color);
}
.btn_A:hover {
  box-shadow: none;
  transform: translate(4px, 6px);
}

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

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

/* .btn_line */
.btn_line {
  --btn_color: #fff;
  --btn_bg: var(--c_line);
}

/* .btn_mail */
.btn_mail {
  --btn_color: #fff;
  --btn_bg: var(--c_acc02);
}
.btn_mail p::before {
  --size: 25px;
  --mask: url(../images/icon_mail.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 20 / 16;
}

/*----------------------------------------
.link_
----------------------------------------*/
.link_tel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.link_tel::before {
  --size: 0.65em;
  --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;
}

/*----------------------------------------
.tit
----------------------------------------*/
/* .titX */
.titX {
  font-weight: bold;
  text-align: center;
}
.titX span.en {
  display: block;
  margin-bottom: -0.3em;
  font-size: 3em;
  font-style: italic;
  font-family: var(--font_en);
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--c_main) 15%, #fff);
  mix-blend-mode: multiply;
}
@media (max-width: 520px) {
  .titX span.en {
    font-size: 2em;
  }
}

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

/* .titZ */
.titZ {
  --size: 3px;
  --color: var(--c_main);
  position: relative;
  padding-bottom: 5px;
  font-weight: bold;
  border-bottom: var(--size) solid color-mix(in srgb, var(--color) 20%, #fff);
}
.titZ::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 20%;
  height: var(--size);
  background-color: var(--color);
}

/* .titA */
.titA {
  text-align: center;
}
.titA span.jp {
  font-weight: bold;
}
.titA span.en {
  display: block;
  font-size: 0.5em;
  font-family: var(--font_en);
  text-transform: uppercase;
  color: var(--c_main);
}

/* .titB */
.titB {
  padding: 4px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: var(--c_main);
}

/* .titC */
.titC {
  padding-left: 15px;
  font-weight: bold;
  border-left: 7px solid var(--c_main);
}

/*----------------------------------------
.balloon
----------------------------------------*/
.balloon {
  --size: 20px;
  --bg_color: var(--c_main);
  position: relative;
  width: min(90%, 780px);
  margin-inline: auto;
  padding: 17px;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--bg_color);
  border-radius: 1000px;
}
.balloon::before {
  content: "";
  position: absolute;
  width: calc(var(--size) * 1.5);
  height: var(--size);
  background-color: var(--bg_color);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

/* 下 */
.balloon.B {
  margin-bottom: var(--size);
}
.balloon.B::before,
.balloon.B::after {
  top: 100%;
  left: 50%;
  translate: -50% -1px;
  rotate: 180deg;
}
@media (max-width: 520px) {
  .balloon {
    font-size: 2rem;
    border-radius: 50px;
  }
}

/*----------------------------------------
.richtext
----------------------------------------*/
.richtext {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.richtext a:not([href^="tel"]) {
  text-decoration: underline;
  color: var(--c_acc02);
}
.richtext a:not([href^="tel"]):hover {
  text-decoration: none;
}
.richtext em {
  display: inline-block;
  padding: 0 5px;
  background: linear-gradient(
    to top,
    transparent 10%,
    color-mix(in srgb, var(--c_main) 50%, #fff) 10%,
    color-mix(in srgb, var(--c_main) 50%, #fff) 40%,
    transparent 40%
  );
}
.richtext strong {
  font-weight: bold;
}

/*----------------------------------------
header
----------------------------------------*/
header {
  --height_logo: 60px;
  position: fixed;
  z-index: 10;
  top: 0px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
header .header_wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(95%, 1400px);
  margin-inline: auto;
}
header h1 {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
}
header .logo img {
  width: auto;
  height: var(--height_logo);
  object-fit: contain;
}
header nav,
header .cta_nav,
header .g_nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
header .cta_nav {
  gap: 10px;
}
header .cta_nav [class*="btn_"] {
  min-width: 180px;
  min-height: 40px;
  padding: 5px;
  font-size: 1.6rem;
}
header [class*="btn_"] {
  min-width: auto;
  width: 100%;
}
header a {
  display: block;
}
header .sitemap a {
  padding: 5px 0;
}
@media (max-width: 980px) {
  header .pc {
    display: none;
  }
  header {
    --height_logo: 40px;
    padding: 10px;
  }
}

/* #hamburger */
header input[type="checkbox"],
#hamburger ~ label {
  display: none;
}
#hamburger ~ label {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  width: var(--height_logo);
  aspect-ratio: 1 / 1;
  border: 1px solid color-mix(in srgb, var(--base_color) 30%, #fff);
  border-radius: 1000px;
  z-index: 10;
}
#hamburger ~ label span {
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  width: 45%;
  height: 2px;
  display: inline-block;
  background-color: var(--base_color);
}
#hamburger ~ label span:nth-of-type(1) {
  top: 35%;
}
#hamburger ~ label span:nth-of-type(2) {
  top: 50%;
}
#hamburger ~ label span:nth-of-type(3) {
  top: 65%;
}
#hamburger:checked ~ label span {
  translate: -50% -50%;
}
#hamburger:checked ~ label span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  rotate: -45deg;
}
#hamburger:checked ~ label span:nth-of-type(2) {
  display: none;
}
#hamburger:checked ~ label span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  rotate: 45deg;
}

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

#hamburger ~ .nav_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: color-mix(in srgb, var(--c_main) 5%, #fff);
  overflow-y: scroll;
}

/*----------------------------------------
.fix_footer
----------------------------------------*/
.fix_footer {
  display: none;
}
@media (max-width: 980px) {
  .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_main);
  }
  .fix_footer.over-footer .wrap a:nth-child(1) {
    font-weight: bold;
    color: var(--c_main);
    background-color: #fff;
  }

  .fix_footer .wrap a:nth-child(2) {
    background-color: var(--c_line);
  }
}

/*----------------------------------------
article
----------------------------------------*/
/* .archive_wrap */
.archive_wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.archive_wrap > *:first-child {
  flex: 1;
}
@media (max-width: 520px) {
  .archive_wrap {
    flex-flow: column;
  }
  .archive_wrap aside {
    width: 100%;
  }
}

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

/* .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: 80px;
  padding: 7px 15px;
  line-height: 1;
  color: #fff;
  background-color: #969696;
}
.post_info .post_cat span.method {
  color: var(--base_color);
  background-color: #fff;
  border: 1px solid var(--base_color);
}

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

/* .archive_nav */
.archive_wrap aside {
  padding: 20px;
  background-color: color-mix(in srgb, var(--c_main) 10%, #fff);
}
.archive_nav a {
  width: 100%;
  padding: 5px 0;
}
.archive_nav > li {
  padding: 5px 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--c_main) 50%, #fff);
}
.archive_nav ul a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 0.9em;
}
.archive_nav ul a::before {
  content: "arrow_right";
  font-size: 2em;
  font-family: var(--icons);
  line-height: 1;
  color: var(--c_main);
}
.archive_nav a:has(.figure) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}
.archive_nav a .figure {
  width: 100px;
}
.archive_nav a .figure img {
  aspect-ratio: 3 / 2;
}

/* .archive_list */
.archive_list {
  --gap: 20px;
}
.archive_list .figure img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background-color: #fff;
}

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

/*----------------------------------------
.smf-form
----------------------------------------*/
.smf-form .smf-item__col--label {
  --color: #fff;
  font-weight: bold;
  color: var(--color);
  background-color: var(--c_main);
}
.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 {
  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: #fff;
  --btn_bg: var(--c_main);
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  width: fit-content;
  min-height: 65px;
  margin: 0px auto;
  padding: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border: 2px solid var(--btn_bg);
  border-radius: 1000px;
}
@media (max-width: 520px) {
  .smf-action {
    flex-flow: column-reverse;
    gap: 10px;
  }
  .smf-button-control {
    width: 100%;
  }
}

/*----------------------------------------
footer
----------------------------------------*/
footer {
  position: relative;
  z-index: 0;
  background-color: var(--c_main);
}
footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 20px;
  bottom: 20px;
  display: block;
  width: min(60%, 350px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../images/deco_logo02.svg) right bottom / contain no-repeat;
}
.footer_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}
.footer_wrap .logo img {
  width: min(80%, 340px);
}
.footer_wrap .sns_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.footer_wrap .sns_wrap a img {
  width: 50px;
  height: 40px;
  object-fit: contain;
}
.footer_wrap .sitemap > * {
  padding: 20px 0;
  border-right: 1px solid color-mix(in srgb, var(--c_main) 40%, #fff);
}
.footer_wrap .sitemap > *:first-child {
  border-left: 1px solid color-mix(in srgb, var(--c_main) 40%, #fff);
}
.footer_wrap .sitemap a {
  display: block;
  padding: 10px 30px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .footer_wrap {
    grid-template-columns: 1fr;
  }
}

/*----------------------------------------
[class*="table_"]
----------------------------------------*/
[class*="table_"] {
  --width: 30%;
  --padding: 20px;
  --border: none;
}
[class*="table_"] table {
  width: 100%;
  text-align: left;
  border: var(--border);
  background-color: #fff;
}
[class*="table_"] :is(th, td) {
  padding: var(--padding);
  vertical-align: middle;
  border: var(--border);
}
[class*="table_"] th {
  width: var(--width);
  font-weight: bold;
}
@media screen and (max-width: 520px) {
  [class*="table_"] :is(table, tbody, tr, th, td) {
    display: block;
    width: 100%;
    border: none;
  }
  [class*="table_"] table {
    border-top: var(--border);
    border-left: var(--border);
  }
  [class*="table_"] :is(th, td) {
    border-right: var(--border);
    border-bottom: var(--border);
  }
}

/* .table_A */
.table_A {
  --border: 1px solid color-mix(in srgb, var(--c_main) 50%, #fff);
}
.table_A th {
  background-color: color-mix(in srgb, var(--c_main) 10%, #fff);
}

/* .table_B */
.table_B table {
  background-color: var(--c_acc01);
}
.table_B td {
  font-size: 2em;
  font-weight: bold;
  color: var(--c_acc02);
}

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

----------------------------------------*/
.cardA {
  --box: 56%;
}
.cardB {
  --box: 40%;
}

.noteA {
  padding: 20px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--c_main) 60%, #fff);
}
@media (max-width: 520px) {
  .noteA > .figure {
    width: 80%;
    margin-inline: auto;
  }
}

/*----------------------------------------
.splide
----------------------------------------*/
[class*="_splide"] {
  background-color: #fff;
}

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

.main_splide .figure img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.thumb_splide .figure img {
  aspect-ratio: 1 / 1;
}

/*----------------------------------------
.check_list
----------------------------------------*/
.check_list li::before {
  content: "check_circle";
  font-family: var(--icons);
  font-variation-settings: "FILL" 1;
  font-size: 1.2em;
  vertical-align: middle;
  color: var(--c_acc02);
}
