@charset "UTF-8";
/* =============================================================

Custom Properties

* ============================================================= */
:root {
  /* ========================================
  color
  ======================================== */
  /* text color */
  --base-color: #333333;
  /* key color */
  --key-color: #003699;
  --key-color-sub: #b1ccff;
  --key-color-light: #e6efff;
  /* point color */
  --point-color: #cc0000;
  --point-color-light: #fdf2df;
  /* background color */
  --bg-color: #f4f4f4;
  /* border color */
  --border-color: #aaa;
  /* gradation color */
  --gradation-color: linear-gradient(90deg, #003699 0%, #171d6c 100%);
  /* color */
  --black: #333333;
  --grey:#505050;
  --grey-02: #939393;
  --light-grey:#ccc;
  --white:#fff;
  --shadow: 1px 1px 2px 0px rgba(0, 0, 0, .25);
  /* ========================================
  layouts
  ======================================== */
  --header-height: calc(60px + var(--slope-1px) * 20);
  --sticky-height: calc(74px + var(--slope-1px) * 19);
  --frame-width: calc(var(--outer-width) + var(--outer-padding)*2);
  --frame-width-px: calc(var(--frame-width) * 1px);
  --frame-overflow: calc((var(--vw) * 100 - var(--frame-width-px)) * .5);
  --outer-width: 1190;
  --outer-width-px: calc(var(--outer-width) * 1px);
  --outer-padding: calc((var(--vw) * 100 * .06442));
  --inner-width: 1040;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc((var(--vw) * 100 * 75/var(--outer-width)));
  /* utility */
  --vw: 1vw;
  --vh: 1vh;
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --base-border-radius: 10px;
  --ovall-radius: calc(1px / 0);
  --button-shadow: 1px 1px 2px 0px rgba(0, 0, 0, .25);
  /* ========================================
  font
  ======================================== */
  /* size */
  --line-height: 1.5;
  --line-space: (var(--line-height) - 1)/2;
  --leading-trim: calc((1em - 1lh) / 2);
  /* family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: "Inter", sans-serif;
  --decoration-font-family: "Poppins", sans-serif;
  /* ========================================
  icon
  ======================================== */
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path fill="%23fff" fill-rule="evenodd" d="M13.9697 9.00684L5.44727 16.9131L4.08691 15.4473L11.0303 9.00488L4.08691 2.55176L5.44824 1.08691L13.9697 9.00684Z"/></svg>');
  --icon-arrow-black: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path fill="%23333" fill-rule="evenodd" d="M13.9697 9.00684L5.44727 16.9131L4.08691 15.4473L11.0303 9.00488L4.08691 2.55176L5.44824 1.08691L13.9697 9.00684Z"/></svg>');
  --icon-cross: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><polygon points="16 8 10 8 10 2 8 2 8 8 2 8 2 10 8 10 8 16 10 16 10 10 16 10 16 8"/></svg>');
  --icon-close: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 25 25"><path fill="%23fff" d="M6.5972 20.2604 4.757 18.4029 10.6425 12.5 4.7571 6.5971l1.84-1.8575L12.5 10.6424l5.9029-5.9028L20.243 6.597 14.3576 12.5l5.8854 5.9029-1.8401 1.8575L12.5 14.3576l-5.9028 5.9028Z"/></svg>');
  --icon-external: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none"><path fill="%23fff" d="M16,1v13H5V1h11ZM7,12h7V3h-7v9ZM2,3h2v12h10v2H2V3Z"/></svg>');
  --icon-plus: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none"><path fill="%23fff" d="M15.5 8.2H9.8V2.5H8.2v5.7H2.5v1.6h5.7v5.7h1.6V9.8h5.7V8.2z"/></svg>');
}

@media screen and (max-width: 960px) {
  :root {
    --outer-padding: 20px;
  }
}

@media screen and (max-width: 960px) {
  :root {
    --inner-padding: 20px;
  }
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

*[data-intersection] {
  opacity: 0;
  transition: opacity 1s, transform .8s;
  transform: translateY(30px);
}

*[data-intersection][data-intersecting=true] {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================

Base

* ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--base-color);
  letter-spacing: .03em;
  font-size: calc(1.3rem + var(--slope-1px) * 4);
  font-family: var(--base-font-family);
  font-feature-settings: "palt";
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

:where(img, svg) {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--base-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

a.js-tel._inactive {
  color: var(--base-color);
  text-decoration: none;
}

button {
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

*[data-toggle-id] {
  display: none;
}

/* =============================================================

Loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  transition: opacity .4s ease-in .6s, visibility .4s ease-in .6s;
}

.l-loader:before {
  content: "";
  z-index: 1;
  display: block;
  width: 100%;
  height: 29px;
  background: url(../img/logo.png) 50% 50%/contain no-repeat;
  transition: opacity .4s ease-in .4s;
}

body.is-loaded .l-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.is-loaded .l-loader::before {
  opacity: 0;
}

/* =============================================================

Wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: clip;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
}

/* =============================================================

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  font-size: clamp(13px, -.33333px + 1.33333vw, 15px);

  --_color: var(--base-color);
}

.l-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-right: var(--header-height);
}

body.is-header-nav-open .l-header__inner {
  background: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 1100px) {
  .l-header__inner {
    align-items: stretch;
  }
}

/* l-header-logo
=============================== */
.l-header-logo {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  height: var(--header-height);
  max-width: 50%;
  max-width: 350px;
  margin: auto 0;
  padding-right: 60px;
  padding-left: 30px;
  border-radius: 0px 0px var(--header-height) 0px;
  background: var(--white);
}

@media screen and (max-width: 960px) {
  .l-header-logo {
    max-width: 250px;
    padding-right: 40px;
    padding-left: 20px;
  }
}

.l-header-logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  transition: opacity .25s;
}

.l-header-logo a img {
  min-width: 0%;
}

@media (any-hover: hover) {
  .l-header-logo a:where(:hover) {
    opacity: .8;
  }
}

.l-header-nav {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 0 15px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 200%;
}

@media screen and (max-width: 1302px) {
  .l-header-nav {
    flex-shrink: 0;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, auto);
    grid-auto-flow: column;
    gap: 10px;
    font-size: 1.2rem;
    -moz-column-count: 2;
         column-count: 2;
  }
}

/* l-header-menu
=============================== */
.l-header-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(8px, -86.7234px + 7.44681vw, 15px);
}

.l-header-menu .l-header-nav a {
  color: var(--base-color);
  text-decoration: none;
  transition: color .3s ease-out;
}

@media (any-hover: hover) {
  .l-header-menu .l-header-nav a:where(:hover) {
    color: color-mix(in srgb, var(--base-color) 10%, var(--key-color) 100%);
  }
}

@media screen and (max-width: 960px) {
  .l-header-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.l-header-contact {
  display: flex;
  display: inline-grid;
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1.14286em auto .5em;
  gap: 5px;
  width: 100%;
  height: 38px;
  max-width: 150px;
  border-radius: var(--ovall-radius);
  background: var(--point-color);
  text-decoration: none;
  font-size: calc(12px + var(--slope-1px) * 2);
  transition: background .3s ease-out, color .2s ease-out .1s;

  padding-inline: 20px 15px;
  padding-block: 10px;
}

.l-header-contact._democar {
  max-width: 175px;
}

.l-header-contact._contact {
  background: var(--key-color);
}

@media (any-hover: hover) {
  .l-header-contact._contact:where(:hover) {
    background: var(--base-color);
  }
}

.l-header-contact span {
  color: var(--white);
  word-break: keep-all;

  margin-block: var(--leading-trim);
}

.l-header-contact svg path {
  fill: var(--white);
}

@media (any-hover: hover) {
  .l-header-contact:where(:hover) {
    background: var(--base-color);
  }
}

/* l-header-toggle
=============================== */
.l-header-toggle {
  position: fixed;
  right: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  width: var(--header-height);
  height: var(--header-height);
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  color: var(--_color);
  font-weight: 600;
  font-size: 9px;
  font-family: var(--en-font-family);
  cursor: pointer;
  transition: color .25s ease-out, opacity .25s ease-out;
  -moz-appearance: none;
       appearance: none;
}

.l-header-toggle.is-deep {
  --_color: #ccc;
}

@media (any-hover: hover) {
  .l-header-toggle:where(:hover) {
    opacity: .8;
  }
}

.l-header-toggle > div {
  inset: 0;
  z-index: 1;
  width: 33px;
  margin: auto;
  transition: background .2s;
}

.l-header-toggle > div, .l-header-toggle > div:before, .l-header-toggle > div:after {
  position: absolute;
  display: block;
  height: 1.8px;
  border-radius: var(--ovall-radius);
  background: currentColor;
}

.l-header-toggle > div:before, .l-header-toggle > div:after {
  content: "";
  left: 0;
  width: 100%;
  transition: top .2s .2s, bottom .2s .2s, transform .2s, background .2s, width .2s;
}

.l-header-toggle > div:before {
  top: -9px;
}

.l-header-toggle > div:after {
  bottom: -9px;
}

.l-header-toggle > div > span {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 4em;
  text-align: center;
  font-weight: bold;
  font-size: 9px;
  line-height: 1;

  margin-inline: auto;
}

body.is-header-nav-open .l-header-toggle > div {
  background: transparent;
  transition: background .2s .2s;
}

body.is-header-nav-open .l-header-toggle > div:before, body.is-header-nav-open .l-header-toggle > div:after {
  transition: top .2s, bottom .2s, transform .2s .2s, background .2s .2s, width .2s .2s;
}

body.is-header-nav-open .l-header-toggle > div:before {
  top: 0;
  width: 100%;
  transform: rotate(-45deg);
}

body.is-header-nav-open .l-header-toggle > div:after {
  bottom: 0;
  width: 100%;
  transform: rotate(45deg);
}

/* =============================================================

Main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  min-height: 0%;
  max-width: calc(var(--outer-width-px) + var(--outer-padding) * 2);
  max-height: 100%;
  margin: 0 auto;
  padding: 0;
  padding: 0 var(--outer-padding);
}

body:not([data-id=index]) .l-main {
  max-width: calc(var(--inner-width-px) + var(--outer-padding) * 2);
}

.l-main-body {
  margin-bottom: calc(60px + var(--slope-1px) * 10);
}

/* heading
=============================== */
.l-main-heading {
  display: flex;
  flex-direction: column;
  max-width: var(--inner-width-px);
  margin-top: calc(30px + var(--slope-1px) * 20);
  margin-bottom: calc(53px + 25px);

  margin-inline: auto;
}

@media screen and (max-width: 560px) {
  .l-main-heading {
    margin-bottom: 52px;
  }
}

.l-main-heading__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 1em;
  letter-spacing: 0;
  font-size: calc(34px + var(--slope-1px) * 46);
}

@media screen and (max-width: 960px) {
  .l-main-heading__title {
    height: 1.25em;
  }
}

/* breadcrumbs
=============================== */
.l-main-breadcrumbs {
  padding-bottom: calc(19px + var(--slope-1px) * 2);
}

/* =============================================================

Footer

* ============================================================= */
/* l-footer
=============================== */
.l-footer {
  position: relative;
  width: 100%;
  color: #fff;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: calc(30px + var(--slope-1px) * 10);
  padding-top: calc(30px + var(--slope-1px) * 20);
  padding-bottom: calc(30px + var(--slope-1px) * 10);
  background: var(--gradation-color);

  padding-inline: var(--outer-padding);
}

@media screen and (max-width: 960px) {
  .l-footer__inner {
    padding-bottom: calc(var(--sticky-height) + 30px);
  }
}

.l-footer-wave {
  display: block;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  margin-bottom: -3px;
}

.l-footer-pagetop {
  position: absolute;
  top: 0;
  right: 1em;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 66px;
  height: 66px;
  aspect-ratio: 1;
  margin-left: auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gradation-color);
  filter: drop-shadow(.75px .75px 1.5px rgba(0, 0, 0, .25));
}

.l-footer-pagetop span {
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--en-font-family);
  line-height: 100%;
  /* 15px */
}

/* l-footer-contact
=============================== */
.l-footer-contact {
  display: flex;
  flex-direction: column;
  row-gap: calc(2px + var(--slope-1px) * 10);
  width: 100%;
  max-width: var(--inner-width-px);
  text-align: center;

  margin-inline: auto;
}

.l-footer-contact__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  gap: 5px 2em;
  height: 1em;
  color: #fff;
  font-size: calc(55px + var(--slope-1px) * 45);
}

.l-footer-contact-subtitle {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  font-style: normal;
  font-family: var(--decoration-font-family);
  line-height: 100%;
  opacity: .1;
  pointer-events: none;
}

.l-footer-contact__body {
  display: flex;
  flex-direction: column;
}

.l-footer-contact__button {
  display: flex;
  gap: 12px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-footer-contact__button {
    flex-direction: column;
  }
}

.l-footer-contact-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(7.5px + var(--slope-1px) * 2.5);
  margin-top: 1em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-weight: 700;
  font-style: normal;
  font-size: calc(20px + var(--slope-1px) * 8);
  line-height: 1.2;
  line-height: normal;
}

.l-footer-contact__text {
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-footer-contact__text {
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.l-footer-contact__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(25px + var(--slope-1px) * 20) calc(20px + var(--slope-1px) * 30);
  width: 100%;
}

@media screen and (max-width: 960px) {
  .l-footer-contact__body {
    flex-direction: column;
  }
}

/* l-footer-sitemap
=============================== */
.l-footer-sitemap {
  width: 100%;
  max-width: var(--inner-width-px);
  color: #fff;

  margin-inline: auto;
}

/* l-footer-info
=============================== */
.l-footer-info {
  display: grid;
  width: 100%;
  max-width: var(--inner-width-px);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;

  margin-inline: auto;
}

@media screen and (min-width: 961px) {
  .l-footer-info {
    grid-template-areas: "name follow" "name copy";
    border-top: 1px solid var(--white);

    padding-block: 30px;
  }
}

@media screen and (max-width: 960px) {
  .l-footer-info {
    grid-template-columns: 100%;
    grid-template-areas: "follow" "name" "copy";
    gap: 15px;
  }
}

.l-footer-info a {
  color: var(--white);
}

.l-footer-info__name {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  grid-area: name;
  width: 100%;
  margin-bottom: 1em;
  text-align: left;

  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .l-footer-info__name {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
}

.l-footer-info__follow {
  grid-area: follow;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-footer-info__follow {
    margin-inline: auto;
  }
}

.l-footer-info__copyright {
  grid-area: copy;
}

@media screen and (min-width: 961px) {
  .l-footer-info__copyright {
    margin-top: 1em;
    text-align: right;
  }
}

/* =============================================================

Sticky

* ============================================================= */
.l-sticky {
  right: 0;
  bottom: 5px;
  left: 0;
  z-index: 999;
  height: var(--sticky-height);
  opacity: 1;
  transition: opacity .3s ease-out;
  pointer-events: all;

  margin-inline: auto;
}

@media screen and (max-width: 960px) {
  .l-sticky {
    position: fixed;
    bottom: 0;
    opacity: 1;
  }
}

@media screen and (min-width: 961px) {
  .l-sticky {
    position: sticky;
  }
  .l-sticky.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}

.l-sticky-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: var(--gradation-color);
}

@media screen and (min-width: 961px) {
  .l-sticky-nav {
    margin-bottom: 15px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 960px) {
  .l-sticky-nav {
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}

.l-sticky-button {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  letter-spacing: .85px;
  font-weight: 700;
  font-style: normal;
  font-size: calc(10px + var(--slope-1px) * 8);
  line-height: 120%;
  transition: background .3s ease-out;

  padding-block: 15px;
  padding-inline: 2.38806%;
}

.l-sticky-button:not(:first-child):not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: calc(100% - 15px * 2);
  background: var(--white);
}

.l-sticky-button:last-child {
  background: var(--point-color);
}

@media (any-hover: hover) {
  .l-sticky-button:last-child:where(:hover) {
    background: color-mix(in lab, var(--point-color) 80%, var(--black));
  }
}

@media screen and (max-width: 960px) {
  .l-sticky-button {
    height: 100%;

    padding-inline: 0;
  }
}

.l-sticky-button__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .33333em;
  transition: transform .3s ease-out;
}

.l-sticky-button__inner p {
  margin-block: var(--leading-trim);
}

@media (any-hover: hover) {
  .l-sticky-button:where(:hover) {
    background: color-mix(in lab, var(--black) 20%, transparent);
  }
  .l-sticky-button:where(:hover) > * {
    transform: translateY(-.125em);
  }
}

.l-sticky-button svg {
  width: 2.22222em;
  height: 2.22222em;
  aspect-ratio: 1/1;
}

.l-sticky-button svg path {
  fill: var(--white);
}

/* =============================================================

Menu

* ============================================================= */
.l-global-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transition: transform .3s cubic-bezier(.65, 0, .35, 1);
  transform: translateX(100%);
}

@media screen and (max-width: 960px) {
  .l-global-menu {
    width: 100%;
  }
}

body.is-menu-nav-open .l-global-menu {
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
  transform: translateX(0);
}

.l-global-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 768" fill="none"><path fill="%23003699" fill-rule="evenodd" d="M0.067981 0H100V768H0.067981C0.067981 768 20.4623 688.952 20.4623 575.846C20.4623 485.313 0 464.291 0 384.698C0 305.105 20.4623 277.066 20.4623 192.077C20.4623 73.7769 0.067981 6.75142 0.067981 0Z"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 960px) {
  .l-global-menu::before {
    content: none;
  }
}

.l-global-menu__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: calc(21px + var(--slope-1px) * 9);
  color: #fff;
  text-decoration: none;
  font-size: calc(13px + var(--slope-1px) * 1);
  cursor: pointer;
  transition: opacity .2s, transform .3s cubic-bezier(.65, 0, .35, 1);
  pointer-events: all;

  margin-block: var(--leading-trim);
}

@media (any-hover: hover) {
  .l-global-menu__close:where(:hover) {
    opacity: .7;
  }
}

.l-global-menu__icon {
  position: relative;
  display: flex;
  width: 18px;
  height: 18px;
  aspect-ratio: 1;
  outline: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--White, #fff);
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  -moz-appearance: none;
       appearance: none;
}

.l-global-menu__icon > div {
  inset: 0;
  z-index: 1;
  width: 18px;
  margin: auto;
  background: transparent;
  transition: background .2s;
}

.l-global-menu__icon > div, .l-global-menu__icon > div:before, .l-global-menu__icon > div:after {
  position: absolute;
  display: block;
  height: 1.8px;
  border-radius: var(--ovall-radius);
}

.l-global-menu__icon > div:before, .l-global-menu__icon > div:after {
  content: "";
  left: 0;
  width: 100%;
  background: currentColor;
  transition: top .2s .2s, bottom .2s .2s, transform .2s, background .2s, width .2s;
}

.l-global-menu__icon > div:before {
  bottom: 0;
  transform: rotate(-45deg);
}

.l-global-menu__icon > div:after {
  bottom: 0;
  transform: rotate(45deg);
}

.l-global-menu__icon > div > span {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 4em;
  text-align: center;
  font-weight: bold;
  font-size: 9px;
  line-height: 1;

  margin-inline: auto;
}

body.is-header-nav-open .l-global-menu__icon > div {
  background: transparent;
  transition: background .2s .2s;
}

body.is-header-nav-open .l-global-menu__icon > div:before, body.is-header-nav-open .l-global-menu__icon > div:after {
  transition: top .2s, bottom .2s, transform .2s .2s, background .2s .2s, width .2s .2s;
}

body.is-header-nav-open .l-global-menu__icon > div:before {
  top: 0;
  width: 100%;
  transform: rotate(-45deg);
}

body.is-header-nav-open .l-global-menu__icon > div:after {
  bottom: 0;
  width: 100%;
  transform: rotate(45deg);
}

.l-global-menu__inner {
  overflow-y: auto;
  width: 430px;
  height: 100vh;
  max-width: 100%;
  margin-left: 100px;
  background: var(--gradation-color);
  transition: transform .3s cubic-bezier(.65, 0, .35, 1);
}

body.is-menu-nav-open .l-global-menu__inner {
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
  transform: translateX(0);
}

@media screen and (max-width: 960px) {
  .l-global-menu__inner {
    width: 100%;
    margin-left: 0;
  }
}

.l-global-menu__head {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  padding-bottom: 30px;
}

@media screen and (max-width: 960px) {
  .l-global-menu__head {
    width: 100%;
  }
}

.l-global-menu__contact {
  display: flex;
  gap: 10px;
}

@media screen and (min-width: 961px) {
  .l-global-menu__contact {
    padding-right: 30px;
  }
}

@media screen and (max-width: 960px) {
  .l-global-menu__contact {
    padding-inline: var(--outer-padding);
  }
}

.l-global-menu__contact > * {
  flex: 1 1;
}

.l-global-menu__body {
  width: 100%;
  padding-right: 30px;
}

@media screen and (max-width: 960px) {
  .l-global-menu__body {
    width: 100%;
    margin-left: 0;

    padding-inline: 20px;
  }
}

.l-global-menu__button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  height: 4.28571em;
  border-radius: var(--ovall-radius);
  background: var(--_bg-color);
  box-shadow: var(--button-shadow);
  color: var(--_color);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-style: normal;
  font-size: calc(13px + var(--slope-1px) * 1);
  line-height: 100%;
  transition: color .3s ease-out, background .3s ease-out;

  --_bg-color: var(--white);
  --_color: var(--base-color);
  --_icon-bg: var(--key-color);
}

@media (any-hover: hover) {
  .l-global-menu__button:where(:hover) {
    --_bg-color: var(--base-color);
    --_color: var(--white);
    --_icon-bg: var(--white);
  }
}

.l-global-menu__button._democar {
  --_bg-color: var(--point-color);
  --_color: var(--white);
  --_icon-bg:var(--white);
}

@media (any-hover: hover) {
  .l-global-menu__button._democar:where(:hover) {
    --_bg-color: var(--base-color);
    --_color: var(--white);
    --_icon-bg: var(--white);
  }
}

.l-global-menu__button svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
}

.l-global-menu__button svg path {
  fill: var(--_icon-bg);
}

@media screen and (max-width: 960px) {
  .l-global-menu__button {
    padding: 10px 10px;
  }
}

.l-global-menu__button::before {
  content: "";
  position: absolute;
  right: 10px;
  z-index: 1;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--_icon-bg);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-external) 50% 50%/contain no-repeat;

          mask: var(--icon-external) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 960px) {
  .l-global-menu__button::before {
    width: 1rem;
    height: 1rem;
  }
}

.l-global-menu__follow {
  display: flex;
  justify-content: center;
  align-items: center;

  padding-block: 30px;
}

/* =============================================================

Modal

* ============================================================= */
/* l-modal
=============================== */
.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100005;
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: calc(var(--vh) * 5) var(--inner-padding);
  background: rgba(0, 0, 0, .85);
  opacity: 0;
  pointer-events: none;
}

.l-modal.is-show {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-modal__inner {
  position: relative;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1040px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  margin: auto;
  opacity: 0;
  transition: all .6s .6s;
}

.l-modal.is-show .l-modal__inner {
  opacity: 1;
}

.l-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}

.l-modal__contents {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  width: 100%;
  max-height: calc(var(--vh) * 90);
  padding: calc(25px + var(--slope-1px) * 15) calc(20px + var(--slope-1px) * 20);
  border-radius: var(--base-border-radius);
  border-radius: 20px;
  background: #fff;
}

@media screen and (max-width: 960px) {
  .l-modal__contents {
    border-radius: calc(5px + var(--slope-1px) * 5);
  }
}

.l-modal__close {
  position: absolute;
  top: calc(5px + var(--slope-1px) * 2);
  right: calc(5px + var(--slope-1px) * 2);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 36px;
  height: 36px;
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--base-color);
  color: #fff;
  line-height: 1;
  transition: all .3s ease-out;
  -moz-appearance: none;
       appearance: none;

  -webkit-mask: var(--icon-close) 50% 50%/contain no-repeat;

          mask: var(--icon-close) 50% 50%/contain no-repeat;
}

.l-modal__close:hover {
  opacity: .7;
}

.l-modal__close span {
  display: none;
}

/* l-modal-contents
============================== */
.l-modal-contents {
  padding: 40px calc(20px + var(--slope-1px) * 20) calc(20px + var(--slope-1px) * 20);
}

.l-modal-contents__head {
  margin-bottom: calc(20px + var(--slope-1px) * 10);
  text-align: center;
}

/* ============================================================= *

Grid

* ============================================================= */
/* tile
=============================== */
.c-tile-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-tile-grid__item {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .c-tile-grid[data-col-tablet="1"] .c-tile-grid__item {
    width: 100%;
  }
}

/* ============================================================= *

Navigation

* ============================================================= */
/* breadcrumbs
=============================== */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
}

.c-breadcrumbs > li {
  display: flex;
  align-items: center;
  margin-top: calc(-1em * var(--line-space));
  margin-bottom: calc(-1em * var(--line-space));
}

.c-breadcrumbs > li + li:before {
  content: "";
  width: 1em;
  height: 1em;
  margin: 0 .5em;
  background: var(--base-color);

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

.c-breadcrumbs > li a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-breadcrumbs > li a:hover {
  text-decoration: none;
}

/* c-section-nav
=============================== */
.c-section-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25em;
  margin-bottom: calc(24px + var(--slope-1px) * 24);
  font-size: 12px;
}

.c-section-nav__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  gap: .27273em;
  color: var(--base-color);
  color: var(--base-color);
  text-align: right;
  font-weight: 400;
  font-style: normal;
  line-height: 24.5px;
  /* 204.167% */

  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-section-nav__item::after {
  content: "";
  position: relative;
  top: .125em;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--key-color);

  -webkit-mask-image: var(--icon-arrow);

          mask-image: var(--icon-arrow);
  rotate: 90deg;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center 50%;
          mask-position: center 50%;
}

/* c-button
=============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3em;
  max-width: 20em;
  outline: none;
  border: var(--_border);
  border-radius: var(--ovall-radius);
  /* color */
  background: var(--_bg-color);
  box-shadow: var(--button-shadow);
  color: var(--_color);
  text-decoration: none;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 4);
  transition: background .3s ease-out, color .2s ease-out .1s;
  transition: background .3s ease-out, color .2s ease-out;
  -moz-appearance: none;
       appearance: none;

  --_bg-color: var(--white);
  --_color: var(--key-color);
  --_border: solid var(--key-color) 3px;
  --_icon-bg: var(--key-color);
  padding-block: calc(10px + var(--slope-1px) * 10);
  padding-inline: 15px;
}

@media screen and (max-width: 960px) {
  .c-button {
    height: 3.38462em;
    max-width: 100%;
    font-weight: 700;
  }
}

.c-button::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  display: flex;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--_icon-bg);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

.c-button:has(svg) {
  --_color: var(--base-color);
  --_border: 3px solid var(--key-color);
  --_icon-bg: var(--key-color);
}

@media (any-hover: hover) {
  .c-button:has(svg):where(:hover) {
    --_bg-color: var(--key-color);
    --_color: var(--white);
    --_icon-bg: var(--white);
  }
}

.c-button.is-current {
  --_bg-color: var(--key-color);
  --_color: var(--white);
  --_icon-bg: var(--white);
}

.c-button._text-black {
  border: none;

  --_color: var(--base-color);
  --_border: 3px solid var(--white);
  --_icon-bg: var(--key-color);
}

@media (any-hover: hover) {
  .c-button._text-black:where(:hover) {
    --_bg-color: var(--base-color);
    --_color: var(--white);
    --_icon-bg: var(--white);
  }
}

.c-button._white {
  --_border: 3px solid var(--white);
}

.c-button._point-color {
  --_icon-bg: var(--white);
  --_border: none;
  --_bg-color: var(--point-color);
  --_color: var(--white);
}

@media (any-hover: hover) {
  .c-button._point-color:where(:hover) {
    --_bg-color: var(--base-color);
  }
}

.c-button._key-color {
  --_bg-color: var(--key-color);
  --_color: var(--white);
}

.c-button._external::after {
  background: var(--_icon-bg);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-external) 50% 50%/contain no-repeat;

          mask: var(--icon-external) 50% 50%/contain no-repeat;
}

@media (any-hover: hover) {
  .c-button._external:where(:hover)::after {
    background: var(--white);
  }
}

.c-button._plus {
  padding-inline: 15px 25px;
}

.c-button._plus::after {
  background: var(--_icon-bg);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-plus) 50% 50%/contain no-repeat;

          mask: var(--icon-plus) 50% 50%/contain no-repeat;
}

@media (any-hover: hover) {
  .c-button._plus:where(:hover)::after {
    background: var(--white);
  }
}

@media (any-hover: hover) {
  .c-button:where(:hover) {
    --_icon-bg: var(--white);
    --_bg-color: var(--key-color);
    --_color: var(--white);
  }
}

.c-button.js-scroll::after {
  top: 0;
  bottom: 0;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;

  margin-block: auto;
  rotate: 90deg;
}

.c-button._full {
  max-width: 100%;
}

.c-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  margin-right: 1em;

  margin-block: var(--leading-trim);
}

.c-button span svg {
  width: 1.5em;
  height: 1.5em;
  transition: all .3s ease-out;
}

.c-button span svg path {
  fill: var(--_icon-bg);
}

/* c-button-wrap
============================== */
.c-button-wrap {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
}

@media (any-hover: hover) {
  .c-button-wrap:where(:hover) .c-button._text-black {
    --_bg-color: var(--base-color);
    --_color: var(--white);
    --_icon-bg: var(--white);
  }
}

.c-button-wrap:has(.c-button-wrap__label) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: -.25em;

  margin-inline: auto;
}

.c-button-wrap__label {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.15lh;
  max-width: 514px;
  border-radius: var(--ovall-radius);
  background: var(--point-color);
  color: var(--white);
  font-weight: 500;
  font-size: calc(13px + var(--slope-1px) * 2);

  margin-inline: auto;
  padding-inline: 2px;
  margin-block: var(--leading-trim);
  padding-inline: 30px;
}

.c-button-wrap__label:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 5px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);

  margin-inline: auto;
}

/* container */
.c-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: calc(40px + var(--slope-1px) * 10);
}

.c-button-container:first-child {
  padding-top: 0;
}

.c-button-container > .c-button:first-child:last-child {
  width: 60rem;
}

.c-button-container._flexible .c-button {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 1.5em;
}

/* banner
=============================== */
.c-banner {
  display: block;
  border: 1px solid var(--border-color);
  transition: opacity .2s;
}

@media (any-hover: hover) {
  .c-banner:where(:hover) {
    opacity: .7;
  }
}

/* follow
=============================== */
.c-follow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  /* 15px */
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 15px 25px;
  border-radius: var(--ovall-radius);
  background: var(--grey);
  color: var(--white);
  text-align: right;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  font-size: calc(14px + var(--slope-1px) * 1);
  font-family: var(--en-font-family);
  line-height: 100%;
  transition: background .3s ease-out, color .2s ease-out;
}

.c-follow-button img {
  width: 30px;
  height: 30px;
}

@media (any-hover: hover) {
  .c-follow-button:where(:hover) {
    background: var(--black);
  }
}

/* detailed banner
=============================== */
.c-detailed-banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid var(--border-color);
  background: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

@media (any-hover: hover) {
  .c-detailed-banner:where(:hover) {
    opacity: .7;
  }
}

.c-detailed-banner__image {
  width: 50%;
}

.c-detailed-banner__image img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .c-detailed-banner__image {
    order: -1;
    width: 100%;
  }
}

.c-detailed-banner__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 2.5% 3.33333%;
  font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  .c-detailed-banner__text {
    width: 100%;
    padding: 2.66667em;
  }
}

.c-detailed-banner__head {
  margin-top: calc(-1em * var(--line-space));
  margin-bottom: calc(-1em * var(--line-space));
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.73333em;
}

.c-detailed-banner__body {
  margin-top: calc(-1em * var(--line-space) + 2.13333em);
  margin-bottom: calc(-1em * var(--line-space));
  line-height: var(--line-height);

  --line-height: 2;
  --line-space: (var(--line-height) - 1)/2;
}

/* tab
=============================== */
.c-tab {
  overflow: hidden;
  margin-bottom: 6.25%;
}

.c-tab__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: calc(3px + var(--slope-1px) * 6);
  width: 100%;
  margin: auto;
  border-bottom: 2px solid var(--key-color);

  padding-inline: calc(6px + var(--slope-1px) * 30);
}

.c-tab__item {
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 50%;
  margin-bottom: -2px;
}

.c-tab__button {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  min-height: 3.5em;
  padding: 1em .25em;
  outline: none;
  border: 1px solid var(--key-color);
  border-bottom-width: 2px;
  border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
  background: var(--key-color);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: calc(16px + var(--slope-1px) * 4);
  line-height: 1.2;
  cursor: pointer;
  transition: background .25s;
}

.c-tab__button:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: 2;
  display: block;
  width: calc(100% + 4px);
  border-bottom: 2px solid var(--key-color);
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .c-tab__button {
    font-size: .98214em;
  }
}

.c-tab__button span {
  display: block;
  margin-bottom: 1em;
  font-size: .8em;
}

.c-tab__button em {
  font-size: 1.4em;
}

.c-tab__button.is-current {
  border: 2px solid var(--key-color);
  background: var(--bg-color);
  color: var(--base-color);
}

.c-tab__button.is-current:after {
  width: 100%;
  border-bottom: 2px solid var(--bg-color);
}

/* for tab.js view control */
.js-tab-channel {
  display: none;
}

.js-tab-channel.is-current {
  display: block;
}

/* ============================================================= *

Section

* ============================================================= */
.c-section {
  max-width: var(--inner-width-px);

  margin-inline: auto;
}

.c-section:not(:first-child) {
  margin-top: calc(50px + var(--slope-1px) * 50);
}

.c-button-container + .c-section._bg {
  margin-top: 30px;
}

.c-section._no-space {
  margin-top: 0;
}

.c-section._bg {
  position: relative;
  border-radius: var(--base-border-radius);
  background: var(--white);

  margin-block: calc(75px + var(--slope-1px) * 25);
  padding-block: calc(30px + var(--slope-1px) * 20);
  padding-inline: calc(20px + var(--slope-1px) * 25);
}

.c-section._bg:first-child {
  margin-top: 0;
}

.c-section._bg:last-child {
  margin-bottom: 0;
}

.c-section._bg > * {
  position: relative;
  z-index: 1;
}

.c-section__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: calc(30px + var(--slope-1px) * 25);
}

.c-section__head._no-space {
  margin-bottom: 0;
}

.c-section__foot {
  display: flex;
  justify-content: center;
  margin-top: calc(40px + var(--slope-1px) * 10);
}

/* inner section
=============================== */
.c-inner-section + .c-inner-section {
  margin-top: 6rem;
}

.c-inner-section__head {
  margin-bottom: 2.5rem;
}

/* ============================================================= *

Table

* ============================================================= */
@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

/* scroll container
=============================== */
.c-table-container {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 15px) 0 0/50px 100%, linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fff 15px) right/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) right/20px 100%;
  background-color: #fff;
  background-attachment: local, scroll, local, scroll;
  background-repeat: no-repeat;

  container-type: inline;
}

.c-table-container + .c-table-container {
  margin-top: 5rem;
}

.c-table-container > * {
  min-width: 560px;
}

/* data table
=============================== */
.c-data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  font-size: calc(12px + var(--slope-1px) * 3);
}

.c-data-table._fixed {
  table-layout: fixed;
}

.c-data-table th,
.c-data-table td {
  padding: 1em .75em;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.c-data-table thead {
  width: 100%;
}

.c-data-table thead th {
  background: var(--grey);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.c-data-table thead th em {
  display: block;
  font-size: 1.06667em;
}

.c-data-table thead th em span {
  display: inline;
  padding-left: .5em;
  font-size: .875em;
}

.c-data-table thead th > span {
  display: block;
  margin-top: .25em;
  font-size: .93333em;
}

.c-data-table thead td {
  font-size: .86667em;
}

.c-data-table tbody {
  width: 100%;
}

.c-data-table tbody th {
  background: var(--key-color);
  color: var(--white);
  font-weight: 700;
}

.c-data-table tbody th[rowspan] {
  width: 2.66667em;
  padding: 1.2em .33333em;
  background: var(--grey);
  color: #fff;
}

.c-data-table tbody th[rowspan] span {
  display: inline-block;
  min-height: 1em;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.c-data-table tbody td em {
  color: var(--key-color);
  font-weight: bold;
}

/* profile table
=============================== */
.c-profile-table {
  width: 100%;
  border-collapse: collapse;
}

.c-profile-table th,
.c-profile-table td {
  padding: 1.41176em 0;
  border-bottom: 1px solid var(--border-color);
}

.c-profile-table th {
  width: 9.375em;
  padding-right: 1.25em;
  color: var(--key-color);
  font-weight: 600;
  /* 24px */
  font-size: calc(15px + var(--slope-1px) * 1);
  line-height: 150%;
}

@media screen and (max-width: 560px) {
  .c-profile-table th {
    width: 6.66667em;
  }
}

.c-profile-table th span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: var(--white);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;

  margin-block: var(--leading-trim);
  padding-block: .25em;
  padding-inline: .5em;
}

.c-profile-table td {
  width: calc(100% - 8.33333em);
  font-weight: 400;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 150%;
  /* 27px */
}

@media screen and (max-width: 560px) {
  .c-profile-table td {
    width: calc(100% - 6.25em);
  }
}

/* ============================================================= *

Text

* ============================================================= */
/* lead
=============================== */
.c-lead {
  text-align: left;
}

.c-lead > p {
  margin-top: calc(-1em * var(--line-space));
  margin-bottom: calc(-1em * var(--line-space));
}

.c-lead > p em {
  font-weight: bold;
  font-size: 1.33333em;
}

.c-lead > p + p {
  margin-top: 1em;
}

.c-lead._center {
  text-align: center;
}

.c-lead._center\:desktop {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .c-lead._center\:desktop {
    text-align: left;
  }
}

.c-lead._has-wbr {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* notes
=============================== */
.c-notes {
  margin-top: 1.5em;
  font-size: 1.3rem;
}

.c-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-notes > li + li {
  margin-top: .25em;
}

.c-notes > li:before {
  content: "\203b";
}

.c-notes._dot > li:before {
  content: "\30fb";
}

.c-notes._square > li:before {
  content: "\25a0";
}

.c-notes._star > li:before {
  content: "\2605";
}

.c-notes > li._dot:before {
  content: "\30fb";
}

.c-notes > li._square:before {
  content: "\25a0";
}

.c-notes > li._star:before {
  content: "\2605";
}

/* ============================================================= *

Title

* ============================================================= */
/* c-page-title
============================== */
.c-page-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--leading-trim);
  text-align: left;
  text-shadow: -1px 0 var(--white), 0 1px var(--white), 1px 0 var(--white), 0 -1px var(--white), -1px -1px var(--white), 1px -1px var(--white), -1px 1px var(--white), 1px 1px var(--white);
  font-weight: 700;
  font-size: calc(28px + var(--slope-1px) * 8);
  line-height: 1.25;
}

@media screen and (max-width: 960px) {
  .c-page-title {
    justify-content: center;
    align-items: center;
    text-align: center;

    margin-inline: auto;
  }
}

.c-page-subtitle {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 1.375em;
  margin: auto;
  color: var(--key-color-sub);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  font-family: var(--decoration-font-family);
  line-height: 100%;
}

@media screen and (min-width: 961px) {
  .c-page-subtitle {
    right: auto;
    left: calc(-1 * .375em);
  }
}

@media screen and (max-width: 960px) {
  .c-page-subtitle {
    right: 0;
    left: 0;

    margin-inline: calc(-1 * var(--outer-padding));
  }
}

/* c-section-title
============================== */
.c-section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: calc(24px + var(--slope-1px) * 8);
  line-height: 1.25;

  margin-inline: auto;
  margin-block: var(--leading-trim);
}

.c-section-title._has-wbr {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* c-sub-title
============================== */
.c-sub-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  color: var(--base-color);
  font-weight: bold;
  font-weight: 700;
  font-size: calc(18px + var(--slope-1px) * 2);
  line-height: 1.5;
}

.c-sub-title:before {
  content: "\25cf";
  color: var(--key-color);
}

/* detailed title
=============================== */
.c-detailed-title {
  font-weight: bold;
  font-size: 2rem;
}

/* ============================================================= *

Blog

* ============================================================= */
.c-blog-container__table {
  width: 100%;
}

.c-blog-container__td > article + article {
  margin-top: 8.5rem;
}

.c-blog-container img {
  display: inline;
}

.c-blog-container article + .blog__paging {
  margin-top: 1em;
}

.c-blog-container .blog__paging + article {
  margin-top: 1em;
}

.c-blog-container .blog__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75em 2em;
  width: 100%;
  padding: 1.58824em;
  border-radius: var(--base-border-radius);
  background: var(--white);
}

@media screen and (max-width: 960px) {
  .c-blog-container .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-blog-container .blog__title {
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 6);
  line-height: 1;
}

.c-blog-container .blog__date {
  color: var(--grey);
  font-weight: bold;
  font-size: calc(13px + var(--slope-1px) * 4);
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .c-blog-container .blog__date {
    margin-left: auto;
  }
}

.c-blog-container .blog__body {
  word-break: break-all;

  padding-block: calc(15px + var(--slope-1px) * 15);
}

.c-blog-container .blog__body img {
  height: auto;
  max-width: 1200px;
}

@media screen and (max-width: 960px) {
  .c-blog-container .blog__body img {
    max-width: 100%;
  }
}

.c-blog-container .blog__paging {
  text-align: right;
}

/* =============================================================

calendar

* ============================================================= */
/* c-calendar
============================== */
.c-calendar {
  position: relative;
  display: block;
}

.c-calendar__body {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(20px + var(--slope-1px) * 10);
}

.c-calendar__body > *:last-child {
  display: none;
}

.c-calendar._next .c-calendar__body > * {
  display: none;
}

.c-calendar._next .c-calendar__body > *:last-child {
  display: block;
}

.c-calendar__control {
  position: absolute;
  top: calc(20px + var(--slope-1px) * 10);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--en-font-family);
}

.c-calendar__control > button {
  position: relative;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.0rem;
  height: 3.0rem;
  outline: none;
  border: 0;
  background: var(--icon-arrow-black) 52.5% 50%/50% no-repeat;
  color: transparent;
  text-decoration: none;
  font-size: 0;

  margin-block: auto;
}

.c-calendar__control > button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--base-color);
  border-radius: 50%;
}

.c-calendar__control > button._prev {
  transform: rotate(180deg);
}

@media (any-hover: hover) {
  .c-calendar__control > button:where(:hover) {
    opacity: .7;
    transition: all .3s;
  }
}

.c-calendar__control > button.is-disabled {
  opacity: .3;
  transition: none;
  pointer-events: none;
}

/* c-calendar-notes
============================== */
.c-calendar-notes__item {
  display: inline-block;
}

.c-calendar-notes__item .cal_close01 {
  color: var(--light-grey);
  font-style: normal;
}

/* c-calendar-box
============================== */
.c-calendar-box {
  display: flex;
  flex-direction: column;
}

.c-calendar-box__head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5em;
  width: 100%;
  margin-bottom: .9375em;
  font-weight: bold;
}

.c-calendar-box__head .cal_month {
  position: relative;
  padding-top: .03em;
  font-weight: 500;
  font-style: normal;
  font-size: calc(40px + var(--slope-1px) * 8);
  font-family: "Inter", sans-serif;
  line-height: .7;
}

.c-calendar-box__head .cal_year {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 18px;
  padding: 3px 39px;
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  color: var(--white);
  font-weight: 400;
  font-size: calc(14px + var(--slope-1px) * 1);
  font-family: var(--en-font-family);
  line-height: .7;
}

.c-calendar-box__body {
  width: 100%;
  margin-bottom: auto;
}

.c-calendar-box__foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .c-calendar-box__foot {
    justify-content: flex-start;
  }
}

.c-calendar-box .cal {
  width: 100%;
  padding-top: .03em;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Inter", sans-serif;
  line-height: .7;
}

.c-calendar-box .cal th > div {
  padding-top: .03em;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-family: "Inter", sans-serif;
  line-height: .7;

  padding-block: .75em;
}

.c-calendar-box .cal td {
  padding: 3px;
  text-align: center;
}

.c-calendar-box .cal td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: .5em;
  border-radius: 50%;
  font-weight: 500;

  margin-inline: auto;
}

.c-calendar-box .cal td .cal_sat {
  color: #227cbd;
}

.c-calendar-box .cal .cal_sun,
.c-calendar-box .cal .cal_holiday {
  color: #de0000;
}

.c-calendar-box .cal td .cal_close01 {
  background: var(--border-color);
  color: #fff;
}

/* ============================================================= *

Maintenance

* ============================================================= */
/* service
=============================== */
.c-maintenance-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.c-maintenance-service:not(:first-child) {
  margin-top: 2.8125em;
  margin-bottom: calc(60px + var(--slope-1px) * 40);
}

@media screen and (max-width: 960px) {
  .c-maintenance-service {
    gap: 30px;
  }
}

@media screen and (max-width: 560px) {
  .c-maintenance-service {
    grid-template-columns: 100%;
  }
}

.c-maintenance-service__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 560px) {
  .c-maintenance-service__item {
    align-items: center;
  }
}

.c-maintenance-service-block {
  display: block;
  text-align: center;
  text-decoration: none;
}

.c-maintenance-service-block__lead {
  display: inline;
  margin-top: calc(-1em * var(--line-space));
  margin-bottom: calc(-1em * var(--line-space) + 1.2em);
  text-align: center;
  font-size: calc(15px + var(--slope-1px) * 1);
}

.c-maintenance-service-block__lead span {
  display: inline;
}

.c-maintenance-service-block__lead span::before {
  content: "：";
  display: inline;
  width: 1em;
  height: 1em;
}

.c-maintenance-service-block__lead::before {
  content: "●";
  display: inline;
  width: 1em;
  height: 1em;
  color: var(--_color);
}

._ciao .c-maintenance-service-block__lead::before {
  --_color: #0068b6;
}

._mamoru .c-maintenance-service-block__lead::before {
  --_color: #8dc21f;
}

.c-maintenance-service-block__banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid var(--grey);
  border-radius: var(--base-border-radius);
  background: var(--white);
  transition: opacity .2s;

  padding-inline: calc(1.5rem + 1.8rem);
}

.c-maintenance-service-block__banner::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  display: flex;
  flex-shrink: 0;
  width: calc(15px + var(--slope-1px) * 3);
  height: calc(15px + var(--slope-1px) * 3);
  background: var(--base-color);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

@media (any-hover: hover) {
  .c-maintenance-service-block:where(:hover)__banner {
    opacity: .7;
  }
}

.c-maintenance-service-block__desc {
  margin-top: calc(-1em * var(--line-space) + 1em);
  margin-bottom: calc(-1em * var(--line-space));
  font-size: calc(15px + var(--slope-1px) * 1);
}

/* ============================================================= *

Inspection

* ============================================================= */
/* inspection fig
=============================== */
.c-inspection-fig {
  position: relative;
  max-width: 1080px;
  margin: 0 auto -1.875em;
  padding-bottom: 1.875em;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.c-inspection-fig__notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1em;
}

.c-inspection-fig__notes > li {
  margin: .25em 0;
}

.c-inspection-fig__notes > li:not(:first-child) {
  margin-left: 1.5em;
}

.c-inspection-fig__notes > li > span:after {
  content: "…";
  padding: 0 .25em;
  color: var(--base-color);
}

.c-inspection-fig__notes > li._option > span {
  color: var(--key-color);
}

.c-inspection-fig-image {
  position: relative;
  flex-grow: 0 !important;
}

.c-inspection-fig-image img {
  display: block;
  width: 100%;
  max-width: 532px;
}

.c-inspection-fig-image span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}

.c-inspection-fig-image i {
  position: absolute;
  display: block;
  border-width: 0;
  border-style: solid;
  color: var(--grey);
}

.c-inspection-fig-image i._option {
  color: var(--grey);
}

.c-inspection-fig-image i._option > * {
  color: inherit;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig-image {
    display: none;
  }
}

.c-inspection-fig-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 960px) {
  .c-inspection-fig-box {
    display: block;
    margin-left: 0 !important;
  }
  .c-inspection-fig-box > * {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.c-inspection-fig-box > * {
  flex-grow: 1;
}

.c-inspection-fig-box[data-col="1"] {
  flex-direction: column;
  align-items: stretch;
}

.c-inspection-fig-box[data-col="1"] > * {
  width: 100%;
}

.c-inspection-fig-box[data-col="1"] > *:not(:last-child) {
  margin-bottom: 1.875em;
}

.c-inspection-fig-box[data-col="2"] > * {
  width: 49%;
}

.c-inspection-fig-box[data-col="2"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="3"] > * {
  width: 32%;
}

.c-inspection-fig-box[data-col="3"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="3"] > *[data-flex="2"] {
  width: 66%;
}

.c-inspection-fig-box[data-col="4"] > * {
  width: 23.5%;
}

.c-inspection-fig-box[data-col="4"] > *:not(:first-child) {
  margin-left: 2%;
}

.c-inspection-fig-box[data-col="4"] > *[data-flex="2"] {
  width: 49%;
}

.c-inspection-fig-box[data-col="4"] > *[data-flex="3"] {
  width: 74.5%;
}

/* inspection check
=============================== */
.c-inspection-check {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 1.875em;
}

@media screen and (min-width: 961px) {
  .c-inspection-fig-image + .c-inspection-check {
    margin-bottom: 0;
  }
}

.c-inspection-check__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  margin-bottom: .75em;
  background: var(--grey);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

.c-inspection-check__list {
  text-align: left;
  font-size: 1.4rem;
}

.c-inspection-check__list li {
  position: relative;
  width: 100%;
  margin-top: .5em;
  padding-left: 1.2em;
  line-height: 1.6;
}

.c-inspection-check__list li:hover {
  text-decoration: none;
}

.c-inspection-check__list li:before {
  content: "\25cf";
  position: absolute;
  top: 0;
  left: 0;
  opacity: .2;
}

.c-inspection-check__list._2col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.c-inspection-check__list._2col li {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .c-inspection-check__list._2col li {
    width: 100%;
  }
}

/* ============================================================= *

Showroom

* ============================================================= */
/* c-showroom-list
============================== */
.c-showroom-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 22px;
  margin-top: calc(15px + var(--slope-1px) * 15);
}

/* c-showroom-nav
============================== */
.c-showroom-nav {
  display: flex;
  overflow: hidden;
  border-radius: var(--base-border-radius);
  background: var(--white);
  text-decoration: none;
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav {
    flex-direction: column;
  }
}

.c-showroom-nav__image {
  overflow: hidden;
  width: 396px;
  aspect-ratio: 396 / 248;
  background: var(--black);
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__image {
    width: 100%;
    border-right: 0;
  }
}

.c-showroom-nav__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .3s;
}

.c-showroom-nav:hover .c-showroom-nav__image img {
  opacity: .8;
  transform: scale(1.03);
}

.c-showroom-nav__contents {
  position: relative;
  flex-grow: 1;
  padding: 30px;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__contents {
    padding: 0;
  }
}

.c-showroom-nav__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 30px;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: calc(23px + var(--slope-1px) * 7) calc(23px + var(--slope-1px) * 7) 0;
  }
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__body {
    padding: 0 calc(23px + var(--slope-1px) * 7) calc(23px + var(--slope-1px) * 7);
  }
}

.c-showroom-nav__title {
  font-weight: bold;
  font-size: calc(22px + var(--slope-1px) * 6);
}

.c-showroom-nav__type {
  padding: .25em 1em;
  border-radius: 5px;
  background: var(--bg-color);
  font-size: calc(14px + var(--slope-1px));
}

.c-showroom-nav__address {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .5em;
  margin-top: 1em;
  line-height: 1;
}

.c-showroom-nav__data {
  display: flex;
  margin-top: 12px;
  line-height: 1;
}

.c-showroom-nav__data > dt {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: .3em;
}

.c-showroom-nav__data > dt > svg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
}

.c-showroom-nav__tel {
  display: flex;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  color: var(--key-color) !important;
  font-weight: bold;
  font-size: calc(13px + var(--slope-1px) * 8);
}

.c-showroom-nav__tel img, .c-showroom-nav__tel svg {
  width: calc(20px + var(--slope-1px) * 4);
  height: calc(20px + var(--slope-1px) * 4);
}

.c-showroom-nav__tel svg path {
  fill: currentColor;
}

.c-showroom-nav__more {
  position: absolute;
  right: 1.875em;
  bottom: 1.75em;
  display: flex;
  align-items: center;
  color: var(--key-color);
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__more {
    position: static;
    justify-content: center;
    height: 2.875em;
    padding-left: 22px;
    background: var(--key-color);
    color: var(--white);
  }
}

.c-showroom-nav__more:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: var(--key-color);

  -webkit-mask: var(--icon-arrow) 50% 50%/contain no-repeat;

          mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav__more:after {
    background: var(--white);
  }
}

/* ============================================================= *

Sitemap

* ============================================================= */
/* l-footer-sitemap
============================== */
.l-footer-sitemap .c-sitemap__inner {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "showroom campaign company" "car maintenance company" "car maintenance contact";
  grid-auto-flow: column;
  gap: 40px 60px;
}

@media screen and (max-width: 960px) {
  .l-footer-sitemap .c-sitemap__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: solid 1px;
  }
}

.l-footer-sitemap .c-sitemap__inner > * {
  flex: 1 1;
}

@media screen and (max-width: 960px) {
  .l-footer-sitemap .c-sitemap__inner {
    flex-direction: column;
  }
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="showroom"] {
  grid-area: showroom;
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="car"] {
  grid-area: car;
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="campaign"] {
  grid-area: campaign;
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="maintenance"] {
  grid-area: maintenance;
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="company"] {
  grid-area: company;
}

.l-footer-sitemap .c-sitemap__inner .c-sitemap-box[data-category="contact"] {
  grid-area: contact;
}

/* l-menu__sitemap
============================== */
.l-global-menu__body .c-sitemap__inner {
  display: flex;
  flex-direction: column;
  border-top: solid 1px;
  color: var(--white);
  -moz-column-gap: 1.76471em;
       column-gap: 1.76471em;
}

.l-global-menu__body .c-sitemap__inner > * {
  flex: 1 1;
}

.l-global-menu__body .c-sitemap__inner .c-sitemap-box__body {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: calc(13px + var(--slope-1px) * 1);
  line-height: 1.2;

  padding-block: 1.53846em;
  padding-inline: 1.15385em;
}

.l-global-menu__body .c-sitemap__inner .c-sitemap-box__body.is-hidden {
  display: none !important;
}

.l-global-menu__body .c-sitemap-box {
  align-self: flex-start;
  width: 100%;
  border-bottom: 1px solid;
}

/* c-sitemap-box
============================== */
.c-sitemap-box {
  align-self: flex-start;
}

@media screen and (max-width: 960px) {
  .c-sitemap-box {
    width: 100%;
    border-bottom: 1px solid;
  }
}

.c-sitemap-box__toggle {
  position: relative;
  display: block;
  width: 100%;
  margin-top: var(--leading-trim);
  margin-bottom: 15px;
  padding-bottom: calc(15px + var(--leading-trim));
  outline: none;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 50%, transparent 50%);
  border-radius: 0;
  background: transparent;
  color: currentColor;
  text-align: left;
  text-decoration: none;
  font-weight: bold;
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 1);
  line-height: 1.5;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
}

.l-global-menu__body .c-sitemap-box__toggle {
  width: 100%;
  margin-bottom: 0;
  border-bottom: 0;
  pointer-events: auto;

  padding-block: 1.53846em;
}

.l-global-menu__body .c-sitemap-box__toggle:before, .l-global-menu__body .c-sitemap-box__toggle:after {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  display: block;
  width: 14px;
  height: 1.75px;
  margin: auto 0;
  background: #fff;
}

.l-global-menu__body .c-sitemap-box__toggle::after {
  transition: all .2s ease-out;
  transform: rotate(0deg);
}

.l-global-menu__body .c-sitemap-box__toggle.is-toggle:after {
  transform: rotate(90deg);
}

@media screen and (max-width: 960px) {
  .c-sitemap-box__toggle {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 0;
    pointer-events: auto;

    padding-block: 1.53846em;
  }
  .l-footer-sitemap .c-sitemap-box__toggle:before, .l-footer-sitemap .c-sitemap-box__toggle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    display: block;
    width: 14px;
    height: 1.75px;
    margin: auto 0;
    background: #fff;
  }
  .l-footer-sitemap .c-sitemap-box__toggle::after {
    transition: all .2s ease-out;
    transform: rotate(90deg);
  }
  .l-footer-sitemap .c-sitemap-box__toggle.is-toggle:after {
    transform: rotate(0deg);
  }
}

.c-sitemap-box__link {
  position: relative;
  display: block;
  width: 100%;
  margin-top: var(--leading-trim);
  margin-bottom: 15px;
  padding-bottom: calc(15px + var(--leading-trim));
  outline: none;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 50%, transparent 50%);
  border-radius: 0;
  background: transparent;
  color: currentColor;
  text-align: left;
  text-decoration: none;
  font-weight: bold;
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 1);
  line-height: 1.5;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (min-width: 961px) {
  .l-footer-sitemap .c-sitemap-box__link {
    margin-top: var(--leading-trim);
    margin-bottom: 15px;
    padding-bottom: calc(15px + var(--leading-trim));
    line-height: 1.5;
  }
}

.l-global-menu__body .c-sitemap-box__link {
  width: 100%;
  margin-bottom: 0;
  border-bottom: 0;
  pointer-events: auto;

  padding-block: 1.53846em;
}

.l-global-menu__body .c-sitemap-box__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;
  transition: transform .3s;

  margin-block: auto;
}

.l-global-menu__body .c-sitemap-box__link.is-toggle:after {
  transform: rotate(-180deg);
}

@media screen and (max-width: 960px) {
  .c-sitemap-box__link {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 0;
    pointer-events: auto;

    padding-block: 1.53846em;
  }
  .c-sitemap-box__link:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 18px;
    height: 18px;
    background: var(--icon-arrow) 50% 50%/contain no-repeat;
    transition: transform .3s;

    margin-block: auto;
  }
  .c-sitemap-box__link.is-toggle:after {
    transform: rotate(-180deg);
  }
}

.l-footer-sitemap .c-sitemap-box__body {
  font-weight: 400;
}

@media screen and (min-width: 961px) {
  .l-footer-sitemap .c-sitemap-box__body {
    display: block !important;
    font-size: calc(13px + var(--slope-1px) * 1);
    line-height: 1.2;
  }
}

@media screen and (max-width: 960px) {
  .l-footer-sitemap .c-sitemap-box__body {
    display: none;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: calc(13px + var(--slope-1px) * 1);
    line-height: 1.2;

    padding-block: 1.53846em;
    padding-inline: 1.15385em;
  }
}

/* c-sitemap-pages
============================== */
.c-sitemap-pages {
  display: grid;
  gap: 1em;
  font-weight: 400;
}

.l-global-menu__body .c-sitemap-pages {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 960px) {
  .c-sitemap-pages {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-sitemap-pages:not(:first-child) {
  margin-top: 1.25em;
}

.c-sitemap-pages > li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .5em;
  color: currentColor;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: anywhere;
  letter-spacing: 0;
  line-height: 1.222;
  transition: transform .2s, color .2s;
}

.c-sitemap-pages > li a[target="_blank"]::after {
  content: "";
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  background: var(--white);
  transition: background .3s ease-out;

  -webkit-mask: var(--icon-external) 50% 50%/contain no-repeat;

          mask: var(--icon-external) 50% 50%/contain no-repeat;
}

@media screen and (min-width: 961px) {
  .c-sitemap-pages > li a {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 961px) and (any-hover: hover) {
  .c-sitemap-pages > li a:where(:hover) {
    color: color-mix(in srgb, var(--white) 100%, var(--key-color) 40%);
    transform: translateX(.2em);
  }
}

/* ============================================================= *

Slider

* ============================================================= */
/* c-info-slider
============================== */
.c-info-slider {
  z-index: 50;

  --item-width: 420;
}

@media screen and (max-width: 960px) {
  .c-info-slider {
    --item-width: 335;
  }
}

.c-info-slider__list {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;

  margin-inline: auto;
  --item-min-count: 1;
}

.c-info-slider__list.no-slide {
  border-left: 1px solid var(--base-color);

  --item-min-count: 1;
}

.c-info-slider__list .slick-list {
  overflow: hidden;
  max-width: var(--item-width);
}

.c-info-slider__item {
  aspect-ratio: 1 / 1;
}

.c-info-slider__item a {
  display: block;
}

.c-info-slider__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity .4s;
}

@media screen and (any-hover: hover) and (min-width: 961px) {
  .c-info-slider__item a:where(:hover) img {
    opacity: .8;
  }
}

.c-info-slider__control {
  position: relative;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(18.25px + var(--slope-1px) * 6.75);
  width: 100%;
  height: calc(24px + var(--slope-1px) * 8);
  margin-top: 1.1rem;
  color: var(--key-color);
}

.c-info-slider__control .slick-dots > li button {
  border: 1px solid var(--white);
}

.c-info-slider__control .slick-dots > li.slick-active button {
  background: var(--white);
}

.c-info-slider__pager {
  display: flex;
  gap: .5em;
}

/* ============================================================= *

Topics

* ============================================================= */
/* c-topics
============================== */
.c-topics .topics-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.13333em 2.35294em;
  text-decoration: none;
  font-size: calc(15px + var(--slope-1px) * 1);
  transition: color .3s;

  padding-block: 1.76471em 1em;
}

@media screen and (max-width: 960px) {
  .c-topics .topics-link {
    flex-direction: column;
  }
}

@media (any-hover: hover) {
  .c-topics .topics-link:where(:hover) {
    color: var(--key-color);
  }
}

.c-topics .topics-link__head {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: var(--key-color);
  line-height: 1;
}

.c-topics .topics-link__head .topics-link__label {
  word-break: auto-phrase;
  font-size: calc(15px + var(--slope-1px) * 2);
}

@media screen and (min-width: 961px) {
  .c-topics .topics-link__head .topics-link__label {
    width: 6.05882em;
  }
}

.c-topics__foot {
  margin-top: 1.875em;
}

/* c-topics-list
============================== */
.c-topics-list__item {
  border-bottom: 1px solid var(--border-color);
}

.c-topics-list__item[data-toggle-id] {
  display: none;
}

/* c-topics-toggle
============================== */
.c-topics-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25em;
  overflow: visible;
  width: 100%;
  padding-top: 0;
  padding-right: .9375em;
  outline: none;
  border: 0;
  background: none;
  color: var(--base-color);
  font-size: calc(15px + var(--slope-1px) * 1);
  line-height: 1;
  cursor: pointer;
  transition: color .3s;
  transition: color .2s ease-out;
  -moz-appearance: none;
       appearance: none;
}

@media (any-hover: hover) {
  .c-topics-toggle:where(:hover) {
    color: #000;
  }
}

.c-topics-toggle:before, .c-topics-toggle:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: .625em;
  height: 1.5px;
  margin: auto 0;
  background: currentColor;
}

.c-topics-toggle:after {
  transition: all .2s ease-out;
  transform: rotate(90deg);
}

.c-topics-toggle.is-show:after {
  transform: rotate(0deg);
}

.c-topics-toggle ._text-show {
  display: none;
}

.c-topics-toggle.is-show ._text-hide {
  display: none;
}

.c-topics-toggle.is-show ._text-show {
  display: block;
}

/* ============================================================= *

Scroll Bar

* ============================================================= */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  width: auto !important;
  height: auto !important;
  margin: 0;
  padding: 0;
  direction: inherit;
}

.simplebar-offset {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  box-sizing: inherit !important;
  margin: 0;
  padding: 0;
  resize: none !important;
  direction: inherit !important;
}

.simplebar-content-wrapper {
  position: relative;
  display: block;
  box-sizing: border-box !important;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  direction: inherit;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  position: relative;
  z-index: -1;
  float: left;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
  overflow: hidden;
  box-sizing: inherit !important;
  width: 100%;
  height: 100%;
  max-width: 1px;
  max-height: 1px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.simplebar-height-auto-observer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  overflow: hidden;
  box-sizing: inherit;
  width: 1000%;
  height: 1000%;
  min-width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.simplebar-track {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  background: rgba(200, 200, 200, .3);
  /* pointer-events: none; */
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
       user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 0;
  left: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  content: '';
  position: absolute;
  right: 2px;
  left: 2px;
  border-radius: 12px;
  background: var(--base-color);
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  bottom: 3px;
  left: 0;
  overflow: visible;
  width: 100%;
  height: 6px;
  max-width: 952px;
  margin: 0 auto;
}

.simplebar-track.simplebar-horizontal.is-fixed {
  position: fixed;
  top: auto;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: auto;
  right: auto;
  bottom: -3px;
  left: 0;
  width: auto;
  height: 12px;
  min-width: 10px;
  min-height: 0;
  margin: auto 0;
  border-radius: 12px;
  background: var(--base-color);
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  position: fixed;
  visibility: hidden;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 500px;
  height: 500px;
  opacity: 0;
  direction: rtl;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ============================================================= *

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-tablet-block {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-tablet-inline-block {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-inline-block {
    display: inline-block !important;
  }
}

.u-tablet-flex {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .u-tablet-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 960px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
}

.u-mobile-inline-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-inline-block {
    display: inline-block !important;
  }
}

.u-mobile-flex {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 560px) {
  .u-mobile-none {
    display: none !important;
  }
}

/* text align
====================================== */
.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

/* display
====================================== */
.u-d-block {
  display: block !important;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

/* position
====================================== */
.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

/* clear
====================================== */
.u-clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}

/* other
====================================== */
.u-strong {
  font-weight: bold !important;
}

.u-pointer {
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.u-color-honda {
  color: #cc0000 !important;
}

.u-color-ciao {
  color: #0068b6 !important;
}

.u-color-mamoru {
  color: #8fc31f !important;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

/* animationn
====================================== */
.u-no-transition {
  transition: none !important;
}

/* u-wide-width
============================== */
.u-wide-width {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .u-wide-width {
    width: calc(100% + var(--outer-padding) * 2);
  }
}

/* u-inner-width
============================== */
.u-inner-width {
  max-width: var(--inner-width-px);

  margin-inline: auto;
}

/* u-trim
============================== */
.u-trim {
  margin-block: var(--leading-trim);
}

/*�@animation
============================== */
.u-seagull {
  transform-origin: center;
  animation: seagull 10s ease-in-out infinite alternate-reverse;
}

.u-dolphin {
  transform-origin: bottom right;
  animation: dolphin 4s ease-in-out infinite alternate-reverse;
}

.u-yacht {
  transform-origin: bottom;
  animation: yacht 6s ease-in-out infinite alternate-reverse;
}

.u-crab {
  animation: crab var(--animation-duration) cubic-bezier(.215, .61, .355, 1) infinite var(--animation-delay);

  --animation-duration: 3s;
  --animation-delay: 1s;
}

.u-on-wave {
  transform-origin: bottom;
  animation: yacht 4s ease-in-out infinite alternate-reverse;
}

@keyframes seagull {
  0% {
    transform: rotate(0deg) translateY(-3%) translateX(-5%) scale(1);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg) scale(1.05);
  }
  80% {
    transform: rotate(0deg) translateY(3%) translateX(5%);
  }
}

@keyframes yacht {
  0% {
    transform: translateY(-4%) rotate(-2deg);
  }
  100% {
    transform: translateY(4%) rotate(2deg);
  }
}

@keyframes dolphin {
  0% {
    transform: rotate(0deg);
  }
  8.33333% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(4deg);
  }
  33.33333% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes crab {
  0% {
    transform: rotate(0deg);
  }
  8.33333% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(4deg);
  }
  33.33333% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
