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

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

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

  --c_main: #37357d;
  --c_sub: #00f5d4;
  --c_acc: #ffc300;

  --font_jp: "Noto Sans JP";
  --font_en: "Poppins";
  --icons: "Material Symbols Outlined";

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

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

/* ----------------------------------------
common
---------------------------------------- */
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: calc(var(--height_header) + var(--section));
}
[id][class*="bg_"] {
  scroll-margin-top: var(--height_header);
}

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

/* .box_2c 按分 */
.box_2c {
  --gap: 50px;
  --box: 30% 1fr;
  --box_tereco: 1fr 30%;
  display: grid;
  grid-template-columns: var(--box);
  align-items: flex-start;
  gap: var(--gap);
}
@media (min-width: 521px) {
  .tereco li:nth-child(odd) .box_2c {
    --box: var(--box_tereco);
  }
  .tereco li:nth-child(odd) .box_2c > *:first-child,
  .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);
  grid-auto-rows: max-content;
  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 .fs38 {
  font-size: 3.8rem;
}
@media (max-width: 520px) {
  body .fs38 {
    font-size: 2.6rem;
  }
}
@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: 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_main_08 {
  background-color: color-mix(in srgb, var(--c_main) 8%, #fff);
}
.bg_sub {
  background-color: var(--c_sub);
}
section.bg_sub {
  --section: 100px;
}
@media (max-width: 520px) {
  section.bg_sub {
    --section: 50px;
  }
}

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

/* i.deco */
i.deco {
  position: absolute;
  top: 5px;
  font-size: min(13vw, 264px);
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 0.7;
  white-space: nowrap;
  z-index: -1;
}
i.deco.R {
  right: 0;
}
i.deco.L {
  left: 0;
}

.bg_main_08 i.deco {
  color: color-mix(in srgb, var(--c_main) 14%, transparent);
}
.bg_sub i.deco {
  color: color-mix(in srgb, #fff 50%, transparent);
}
@media (max-width: 520px) {
  i.deco {
    font-size: 16vw;
  }
}

/* ----------------------------------------
[class*="btn_"]
---------------------------------------- */
[class*="btn_"] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  width: fit-content;
  min-height: 60px;
  margin: 0px auto;
  padding: 10px;
  font-size: 2rem;
  font-family: var(--font_en), var(--font_jp);
  text-align: center;
  /* border: 1px solid var(--btn_color); */
  color: var(--btn_color);
  background-color: var(--btn_bg);
}
[class*="btn_"]:hover {
  opacity: 1;
  /* border: 1px solid var(--btn_bg); */
  background-color: var(--btn_color);
  color: var(--btn_bg);
}
[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%;
    min-height: 40px;
    font-size: 1.2rem;
  }
  [class*="btn_"].ml0 {
    margin-left: auto;
  }
}

/* [class*="btn_"].L.R */
[class*="btn_"].L::before,
[class*="btn_"].R::after {
  --size: 1em;
  --mask: url(../images/icon_arrow.svg) center center / contain no-repeat;
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  aspect-ratio: 1 / 1;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}

/* .btn_A */
.btn_A {
  --btn_color: var(--base_color);
  --btn_bg: var(--c_acc);
}

/* .btn_pdf */
.btn_pdf {
  --btn_color: #fff;
  --btn_bg: var(--c_acc);
}
.btn_pdf p::before {
  content: "picture_as_pdf";
  font-family: var(--icons);
  font-variation-settings:
    "FILL" 0,
    "wght" 200;
  font-size: 1.5em;
  line-height: 1;
}

/* .link_tel */
.link_tel p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.link_tel p::before {
  --size: 0.8em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  aspect-ratio: 1 / 1;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}

/* ----------------------------------------
.more
---------------------------------------- */
.more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.more::after {
  content: "arrow_circle_right";
  font-family: var(--icons);
  font-variation-settings:
    "FILL" 1,
    "wght" 200;
  font-size: 4em;
  line-height: 1;
  color: var(--c_main);
}
a:hover .more::after {
  transform: translateX(5px);
  transition: var(--transition);
}

/* ----------------------------------------
.tit
---------------------------------------- */
/* .inc_heading */
.inc_heading .bg_img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: var(--c_main);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.inc_heading .wrap {
  display: flex;
  align-items: center;
  min-height: 320px;
}
.inc_heading h2 {
  font-size: 5.8rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 520px) {
  .inc_heading .wrap {
    min-height: 200px;
  }
  .inc_heading h2 {
    font-size: 3rem;
  }
}

/* .titX */
.titX {
  font-weight: bold;
  font-family: var(--font_jp);
  text-align: center;
}
.titX span.en {
  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(--c_main) 10%, #fff);
  mix-blend-mode: multiply;
}

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

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

/* .titA */
.titA {
  font-weight: bold;
  line-height: 1.2;
}
.titA span.en {
  display: block;
  font-size: 3.8em;
  font-family: var(--font_en);
  color: var(--c_main);
}
@media (max-width: 520px) {
  .titA span.en {
    font-size: 1.8em;
  }
}

/* .titB */
.titB {
  padding-left: 20px;
  border-left: 6px solid var(--c_acc);
}

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

/* ----------------------------------------
details
---------------------------------------- */
details summary {
  display: block;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary:hover {
  cursor: pointer;
}
details summary + * {
  overflow: hidden;
}

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

---------------------------------------- */
/* .card_A */
.card_A {
  --gap: 80px;
  --box: 47% 1fr;
}
@media (max-width: 520px) {
  .card_A {
    --gap: 30px;
  }
}

/* .card_B */
.card_B {
  --box: 49% 1fr;
}
.card_B.reverse {
  --box: 1fr 49%;
}

/* .card_C */
.card_C {
  --gap: 70px;
  --box: 58% 1fr;
}
@media (max-width: 520px) {
  .card_C {
    --gap: 30px;
  }
}

/* .card_D */
.card_D {
  --gap: 100px;
  --box: 45% 1fr;
}
@media (max-width: 520px) {
  .card_D {
    --gap: 30px;
  }
}

/* ----------------------------------------
[class*="table_"]
---------------------------------------- */
[class*="table_"] {
  --padding: 60px 30px;
  --border: 1px solid #333333;
}
[class*="table_"] table {
  width: 100%;
  text-align: left;
  border: var(--border);
  background-color: #fff;
}
[class*="table_"] :is(th, td) {
  border: var(--border);
  padding: var(--padding);
}
[class*="table_"] th {
  font-weight: bold;
  color: var(--c_main);
  background-color: color-mix(in srgb, var(--c_main) 8%, #fff);
}
@media screen and (max-width: 520px) {
  [class*="table_"] {
    --padding: 20px;
  }
  [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);
  }
}

/* ==================================================
03: style
================================================== */

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

/* ----------------------------------------
header
---------------------------------------- */
header a {
  display: block;
}
header {
  position: fixed;
  z-index: 10;
  top: 0px;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.3));
}
header .header_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(95%, 1400px);
  margin-inline: auto;
}
header .logo {
  width: 250px;
  height: auto;
}
header nav,
header .nav_wrap,
header .sitemap {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: center;
}
header .nav_wrap {
  gap: 50px;
}
header .sitemap a {
  padding: 10px 15px;
  white-space: nowrap;
}
header .btn_A {
  min-width: 200px;
}
@media (max-width: 520px) {
  header .logo {
    width: 130px;
  }
  header nav {
    gap: 10px;
  }
  header .nav_wrap {
    justify-content: flex-start;
    align-items: flex-start;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
  header .sitemap {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    width: 100%;
  }
  header .sitemap a,
  header .has_submenu,
  header .submenu {
    width: 100%;
  }
  header .btn_A {
    min-width: 72px;
  }
}

/* ----------------------------------------
.has_submenu
---------------------------------------- */
header .submenu a {
  font-size: 0.85em;
}
@media (min-width: 521px) {
  header .has_submenu {
    position: relative;
  }
  header .has_submenu > a,
  header .submenu a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  header .has_submenu > a::after,
  header .submenu a::after {
    font-family: var(--icons);
    font-size: 1.2em;
    line-height: 1;
  }
  header .has_submenu > a::after {
    content: "add";
    padding: 2px;
    color: var(--c_main);
    background-color: var(--c_sub);
    border-radius: 1000px;
  }
  header .has_submenu:hover > a::after {
    content: "remove";
    rotate: 180deg;
    transition: var(--transition);
  }
  header .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  header .has_submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
  }
  header .submenu a::after {
    content: "keyboard_arrow_right";
  }
  header .submenu a:hover::after {
    transform: translateX(5px);
    transition: var(--transition);
  }
}
@media (max-width: 520px) {
  header .submenu a {
    padding-left: 2em;
  }
}

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

  /* .nav_wrap */
  #hamburger ~ .nav_wrap {
    visibility: hidden;
  }
  #hamburger:checked ~ .nav_wrap {
    visibility: visible;
  }
  body:has(#hamburger:checked) {
    overflow: hidden;
  }

  .nav_wrap {
    --width: 320px;
    position: fixed;
    top: 0px;
    /* right: calc(-1 * var(--width)); */
    right: 0px;
    overflow-y: scroll;
    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) 10%, #fff);
    filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.3));
  }
}

/*----------------------------------------
.fix_footer
----------------------------------------*/
.fix_footer {
  display: none;
}
@media (max-width: 520px) {
  .fix_footer {
    display: block;
    visibility: hidden;
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    padding: 1px;
    background-color: var(--c_main);
  }
  .scroll .fix_footer {
    visibility: visible;
  }
  .fix_footer .wrap {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1px;
  }
  .fix_footer .wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 5px;
    background-color: #fff;
    color: var(--c_main);
  }
}

/* ----------------------------------------
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: 10px;
}

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

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

/* .archive_list */
.archive_list {
  --gap: 20px;
}
.archive_list li {
  background-color: #fff;
  border: 1px solid var(--c_main);
}
.archive_list li a {
  width: 100%;
  height: 100%;
}
.archive_list li h3 {
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: var(--c_main);
}
.archive_list li .wrap {
  padding: 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);
  border: 1px solid var(--c_main);
  color: var(--c_main);
}
.nav-links span.current,
.nav-links a:hover {
  background-color: var(--c_main);
  color: #fff;
}
.nav-links span.dots {
  border: none;
  background-color: transparent;
}

/* ----------------------------------------
.smf-form
---------------------------------------- */
.smf-form {
  background-color: #fff;
}
.smf-form .smf-item__col--label {
  --color: var(--c_main);
  font-weight: bold;
  background-color: color-mix(in srgb, var(--c_main) 8%, #fff);
  color: var(--color);
}
.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"]
  [data-validations*="required"]
  .smf-checkbox-control::after {
  content: "必須";
  padding: 2px 5px;
  background-color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  color: crimson;
  border: 1px solid crimson;
}
.smf-form
  [data-name="agree"]
  [data-validations*="required"]
  .smf-checkbox-control::after {
  margin-left: 10px;
  background-color: crimson;
  color: #fff;
}
.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;
  justify-content: center;
  align-items: 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: var(--c_acc);
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  width: fit-content;
  min-height: 60px;
  margin: 0px auto;
  padding: 10px;
  font-size: 2rem;
  font-family: var(--font_en), var(--font_jp);
  text-align: center;
  /* border: 1px solid var(--btn_color); */
  color: var(--btn_color);
  background-color: var(--btn_bg);
  font-weight: bold;
}
@media (max-width: 520px) {
  .smf-action {
    flex-flow: column-reverse;
    gap: 10px;
  }
  .smf-button-control {
    width: 100%;
  }
}

/* ----------------------------------------
.mv
---------------------------------------- */
.mv {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  aspect-ratio: 1920 / 840;
  padding-bottom: 100px;
  font-weight: bold;
}
.mv .catch {
  font-size: min(3.8vw, 7.2rem);
  line-height: 1.2;
}
.mv .catch span {
  display: block;
  font-size: min(2.4vw, 4.6rem);
  font-family: var(--font_en);
}
.mv .catch em {
  color: var(--c_sub);
}

.mv .fade_splide {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.mv .fade_splide * {
  height: 100%;
}
.mv .fade_splide::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: var(--c_main);
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 1;
}
.mv .fade_splide::after {
  content: "SIMOTEC SIMOTEC";
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: min(18vw, 332px);
  font-family: var(--font_en);
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  opacity: 0.3;
  mix-blend-mode: overlay;
  z-index: 2;
}
@media (max-width: 520px) {
  .mv {
    aspect-ratio: 375 / 600;
  }
  .mv .catch {
    font-size: 3.4rem;
  }
  .mv .catch span {
    font-size: 2.3rem;
  }
  .mv .fade_splide::after {
    font-size: min(44vw, 166px);
  }
}

/* ----------------------------------------
.awards_list
---------------------------------------- */
.awards_list dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 10px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  color: var(--c_main);
  border-bottom: 1px solid #333333;
}
.awards_list dt span {
  padding-left: 20px;
  font-size: 3.6rem;
  border-left: 4px solid currentColor;
}
.awards_list dd {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}
.awards_list dd .figure {
  width: min(100%, 392px);
}
.awards_list dd .richtext {
  flex: 1;
}
@media (max-width: 520px) {
  .awards_list dt,
  .awards_list dd {
    flex-flow: column;
    gap: 20px;
  }
  .awards_list dt {
    align-items: flex-start;
    line-height: 1.4;
  }
}

/* ----------------------------------------
.numbers_list
---------------------------------------- */
.numbers_list li {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 20px;
  padding: 20px;
  line-height: 1;
  font-weight: bold;
  font-family: var(--font_en), var(--font_jp);
  color: var(--c_main);
  background-color: #fff;
}
.numbers_list li .title {
  width: 100%;
  padding: 10px;
  font-size: 2.2rem;
  text-align: center;
  background-color: var(--c_acc);
}
.numbers_list li > .figure {
  width: 136px;
  height: auto;
  aspect-ratio: 136 / 100;
}
.numbers_list li .text {
  font-size: 4rem;
}
.numbers_list li .text span {
  font-size: 3em;
  letter-spacing: -1px;
}
@media (max-width: 520px) {
  .numbers_list li {
    gap: 10px;
  }
  .numbers_list li > .figure {
    width: 80px;
  }
  .numbers_list li .title,
  .numbers_list li .text {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------
footer
---------------------------------------- */
footer .logo {
  width: min(100%, 500px);
}
footer .sitemap {
  column-count: 3;
  column-gap: 50px;
}
footer .sitemap a {
  display: block;
  padding: 6px;
}
.sns_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.sns_wrap .figure {
  width: 40px;
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (max-width: 520px) {
  footer .sitemap {
    display: none;
  }
}

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

---------------------------------------- */
/* .info */
.info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info dt {
  font-size: 7.2rem;
  font-family: var(--font_en);
}

/* .interview  */
.interview_main .figure img {
  max-height: 620px;
}
.interview dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--c_main);
}
.interview dt::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
}
.interview .card_B .figure img {
  aspect-ratio: 600 / 340;
}
@media (max-width: 520px) {
  .interview dt {
    font-size: 2rem;
  }
}

/* ----------------------------------------
.schedule_list
---------------------------------------- */
.schedule_list li {
  --size: 0.7em;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--size);
}
.schedule_list .time {
  position: relative;
  padding-right: calc(var(--size) * 2);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--c_main);
}
.schedule_list .time::before,
.schedule_list li:not(:last-child) .time::after {
  position: absolute;
  top: 0.5em;
}
.schedule_list .time::before {
  right: 0;
  content: "circle";
  font-family: var(--icons);
  font-variation-settings: "FILL" 1;
  font-size: 0.7em;
  line-height: 1;
}
.schedule_list li:not(:last-child) .time::after {
  right: 0.35em;
  content: "";
  z-index: -1;
  width: 1px;
  height: 100%;
  background-color: var(--c_main);
}
.schedule_list .time p {
}
.schedule_list li:not(:last-child) dl {
  padding-bottom: 30px;
}
.schedule_list li .figure img {
  aspect-ratio: 460 / 340;
}
@media (max-width: 520px) {
  .schedule_list .time {
    font-size: 2rem;
  }
}

/* ----------------------------------------
.benefits_list
---------------------------------------- */
.benefits_list li {
  position: relative;
  padding: 50px 0;
}
.benefits_list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--c_main) 20%,
    color-mix(in srgb, #000 25%, #fff) 20%
  );
  mix-blend-mode: multiply;
}
.benefits_list li .figure img {
  aspect-ratio: 600 / 340;
}
