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

Custom Properties

* ============================================================= */
:root {
  /* ========================================
  color
  ======================================== */
  /* text color */
  --base-color: #000;
  /* key color */
  --key-color: #4a60ed;
  /* point color */
  --point-color:  #000;
  /* background color */
  --bg-color: #f8f8f8;
  /* border color */
  --border-color: #cccccc;
  /* color */
  --black: #000;
  --grey:#888888;
  --light-grey:#f8f8f8;
  --white:#fff;
  /* ========================================
  layouts
  ======================================== */
  --header-height: calc(50px + var(--slope-1px) * 50);
  --sticky-height: calc(50px + var(--slope-1px) * 30);
  --outer-width: 1366;
  --outer-width-px: calc(var(--outer-width) * 1px);
  --outer-padding: max(4.3923865300146vw, 60px);
  --inner-width: 1150;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(24px + var(--slope-1px) * 30);
  --frame-width: calc(var(--inner-width-px) + var(--outer-padding)*2);
  --frame-overflow: calc((var(--vw) * 100 - var(--frame-width)) * .5);
  /* utility */
  --vw: 1vw;
  --vh: 1vh;
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --base-border-radius: 10px;
  --ovall-radius: calc(1px / 0);
  --TPL-button-radius: var(--ovall-radius);
  --transition-timing: 1000ms;
  --clip-path: 0 0 0 0;
  /* ========================================
  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: "Lato", sans-serif;
  /* ========================================
  icon
  ======================================== */
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 12"><path fill="%23fff" fill-rule="evenodd" d="M29.1,4L20.5.6h-.2c0,.1,2.9,4.9,2.9,4.9H.2v1h23l-2.9,4.7h.2c0,0,8.6-3.3,8.6-3.3,3-.7,6-1.3,8.9-2-3-.7-6-1.3-8.9-2Z"/></svg>');
  --icon-down: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 38"><path fill="%23fff" fill-rule="evenodd" d="M7.9,28.9l3.4-8.6v-.2c-.1,0-4.9,2.9-4.9,2.9V0h-1v23l-4.7-2.9v.2l3.3,8.6c.7,3,1.3,6,2,8.9.7-3,1.3-6,2-8.9,0,0,0,0,0,0Z"/></svg>');
  --icon-angle: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23fff" fill-rule="evenodd" d="M26.7076 12.7074L16.7076 22.7074C16.6147 22.8004 16.5044 22.8742 16.383 22.9245C16.2616 22.9748 16.1315 23.0007 16.0001 23.0007C15.8687 23.0007 15.7385 22.9748 15.6171 22.9245C15.4957 22.8742 15.3854 22.8004 15.2926 22.7074L5.29257 12.7074C5.10493 12.5198 4.99951 12.2653 4.99951 11.9999C4.99951 11.7346 5.10493 11.4801 5.29257 11.2924C5.48021 11.1048 5.7347 10.9994 6.00007 10.9994C6.26543 10.9994 6.51993 11.1048 6.70757 11.2924L16.0001 20.5862L25.2926 11.2924C25.3855 11.1995 25.4958 11.1258 25.6172 11.0756C25.7386 11.0253 25.8687 10.9994 26.0001 10.9994C26.1315 10.9994 26.2616 11.0253 26.383 11.0756C26.5044 11.1258 26.6147 11.1995 26.7076 11.2924C26.8005 11.3854 26.8742 11.4957 26.9245 11.617C26.9747 11.7384 27.0006 11.8686 27.0006 11.9999C27.0006 12.1313 26.9747 12.2614 26.9245 12.3828C26.8742 12.5042 26.8005 12.6145 26.7076 12.7074Z"/></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>');
}

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

@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(--white);
  font-size: 62.5%;
}

body {
  overflow-x: clip;
  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%;

  overscroll-behavior: none;
}

: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: #fff;
  perspective: 10rem;
  transition: all .4s ease-in;
}

body.is-loaded .l-loader {
  opacity: 0;
  transition: opacity .2s ease-in 2.2s;
  pointer-events: none;
}

body.is-loaded .l-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  margin: 0 auto auto;
  background: var(--key-color);
  animation: borderOpen 2s forwards;
}

.l-loader-active {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
  display: block;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: var(--key-color);
  border-left-color: var(--key-color);
  border-radius: 10px;
          animation: pace-spinner 400ms linear infinite;

  -webkit-animation: pace-spinner 400ms linear infinite;
     -moz-animation: pace-spinner 400ms linear infinite;
      -ms-animation: pace-spinner 400ms linear infinite;
       -o-animation: pace-spinner 400ms linear infinite;
}

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes borderOpen {
  0% {
    width: 0;
    height: 4px;
  }
  100% {
    width: 100%;
    height: 4px;
  }
}

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

Wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  background: var(--bg-color);

  container-type: inline-size;
}

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

Header

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

.l-header__inner {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr auto;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-color);
  transition: all .4s;
}

body.is-header-nav-open .l-header__inner {
  background: rgba(var(--bg-color), 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;
  justify-content: center;
  align-items: center;
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  height: 100%;
  margin: auto;
  background: var(--bg-color);
}

@media screen and (max-width: 960px) {
  .l-header-logo {
    justify-content: flex-start;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    width: 100%;
    padding-left: .35714em;
  }
}

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

@media screen and (max-width: 560px) {
  .l-header-logo a {
    width: 200px;
  }
}

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

.l-header-logo a:hover {
  opacity: .8;
}

/* l-header-menu
=============================== */
.l-header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.l-header-menu__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 4);
  height: 2.35294em;
  padding-inline: 1.58824em;
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  color: #fff;
  text-decoration: none;
  text-decoration: none;
  font-weight: bold;
  font-size: inherit;
  font-size: calc(10.2px + var(--slope-1px) * 6.8);
  transition: background .3s;
}

@media screen and (max-width: 960px) {
  .l-header-menu__button {
    display: none;
  }
}

.l-header-menu__button:hover {
  background: var(--base-color);
}

/* l-header-toggle
=============================== */
.l-header-toggle {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 7px;
  width: calc(var(--bar-width) + 20px * 2);
  height: var(--header-height);
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  font-weight: 600;
  font-family: var(--en-font-family);
  cursor: pointer;
  transition: opacity .25s;
  appearance: none;
}

@media screen and (min-width: 961px) {
  .l-header-toggle {
    --bar-width: 45px;
    --bar-gap: 6px;
    --bar-stroke: 1px;
  }
}

@media screen and (max-width: 960px) {
  .l-header-toggle {
    --bar-width: 30px;
    --bar-gap: 4px;
    --bar-stroke:  1px;
  }
}

.l-header-toggle:hover {
  opacity: .8;
}

.l-header-toggle > div {
  inset: 0;
  z-index: 1;
  width: var(--bar-width);
  margin: auto;
  transition: background .2s;
}

.l-header-toggle > div {
  position: absolute;
  display: block;
  height: var(--bar-stroke);
}

.l-header-toggle > div:before, .l-header-toggle > div:after {
  position: absolute;
  display: block;
  height: var(--bar-stroke);
  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: calc(var(--bar-gap) * -1);
}

.l-header-toggle > div:after {
  bottom: calc(var(--bar-gap) * -1);
}

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

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

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

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

/* l-header-nav
=============================== */
.l-header-nav {
  display: flex;
  flex-direction: row-reverse;
  gap: 2em;
}

@media screen and (max-width: 1100px) {
  .l-header-nav {
    z-index: 2;
    display: block;
    padding: calc(var(--header-height) + calc(10px + var(--slope-1px) * 10) * 2) 0 24px;
  }
}

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

Menu

* ============================================================= */
body.is-menu-nav-open .l-header-toggle-menu {
  background: #000;
}

.l-header-toggle-menu__inner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow-y: auto;
  width: calc(430px + 100px);
  height: calc(var(--vh) * 100);
  max-width: 100%;
  transition: transform .3s cubic-bezier(.65, 0, .35, 1);
  transform: translateX(100%);
}

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

@media screen and (max-width: 960px) {
  .l-header-toggle-menu__inner {
    width: 100%;
  }
  .l-header-toggle-menu__inner::before {
    content: none;
  }
}

.l-header-toggle-menu__head {
  position: relative;
  width: 100%;
  padding: calc(12px + var(--slope-1px) * 18);
  background: var(--key-color);
}

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

.l-header-toggle-menu__contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
}

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

@media screen and (max-width: 960px) {
  .l-header-toggle-menu__contact {
    padding-right: 52px;
  }
}

.l-header-toggle-menu__body {
  overflow-y: auto;
  height: 100%;
  padding-inline: calc(24px + var(--slope-1px) * 16);
  background: var(--key-color);
}

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

.l-header-toggle-menu__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(6px + var(--slope-1px) * 4);
  width: fit-content;
  height: 2.35294em;
  padding-inline: 1.58824em;
  border-radius: var(--ovall-radius);
  background: var(--white);
  color: var(--key-color);
  text-decoration: none;
  text-decoration: none;
  font-weight: bold;
  font-size: inherit;
  font-size: calc(10.2px + var(--slope-1px) * 6.8);
  transition: background .3s, color .3s;
}

.l-header-toggle-menu__button svg path {
  fill: currentColor;
}

.l-header-toggle-menu__button:hover {
  background: var(--base-color);
  color: var(--white);
}

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

Main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
}

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

.l-main-body {
  position: relative;
  z-index: 0;
}

/* heading
=============================== */
.l-main-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1rem;
  max-width: calc(var(--outer-width-px) + var(--outer-padding) * 2);
  margin-inline: auto;
  margin-bottom: calc(45px + var(--slope-1px) * 45);
  padding-inline: var(--outer-padding);
  padding-top: calc(var(--header-height) + calc(23px + var(--slope-1px) * 20));
}

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

.l-main-title {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  gap: calc(15px + var(--slope-1px) * 15);
}

/* breadcrumbs
=============================== */
.l-main-breadcrumbs {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-main-breadcrumbs {
    align-self: flex-start;
    margin-left: 0;
  }
}

/* main banner
=============================== */
.l-main-banner {
  padding: 2.5em 0;
  background: var(--bg-color);
}

.l-main-banner__inner {
  width: 1200px;
  max-width: 91.21523%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .l-main-banner__inner {
    width: 550px;
  }
}

.l-main-banner-list {
  display: flex;
  flex-wrap: wrap;
  width: 101.66667%;
  margin: -.83333% -.83333%;
  padding-top: 1px;
}

.l-main-banner-list__item {
  width: 20%;
  padding: .81967% .81967%;
}

@media screen and (max-width: 960px) {
  .l-main-banner-list__item {
    width: 50%;
  }
}

/* c-category-nav-grid
============================== */
.l-main-category-nav-grid {
  display: flex;
  gap: var(--_border-width);
  width: calc(100cqi + var(--_border-width) *2);
  margin-inline: calc(50% - 50cqi - var(--_border-width));
  padding: var(--_border-width);

  --_border-width: 1px;
}

@media screen and (max-width: 960px) {
  .l-main-category-nav-grid {
    flex-direction: column;
  }
}

.l-main-category-nav-grid__item {
  flex: 1;
  box-shadow: 0 0 0 var(--_border-width) currentcolor;
}

@media screen and (max-width: 960px) {
  .l-main-category-nav-grid__item {
    border-top: 1px solid currentColor;
    box-shadow: unset;
  }
}

.l-page[data-category=car] .l-main-category-nav-grid__item[data-banner=car] {
  display: none;
}

.l-page[data-category=showroom] .l-main-category-nav-grid__item[data-banner=campaign],
.l-page[data-category=campaign] .l-main-category-nav-grid__item[data-banner=campaign],
.l-page[data-category=company] .l-main-category-nav-grid__item[data-banner=campaign],
.l-page[data-category=other] .l-main-category-nav-grid__item[data-banner=campaign] {
  display: none;
}

.l-page[data-id=welcome] .l-main-category-nav-grid__item[data-banner=campaign] {
  display: block;
}

.l-page[data-category=maintenance] .l-main-category-nav-grid__item[data-banner=maintenance] {
  display: none;
}

.l-page[data-id=welcome] .l-main-category-nav-grid__item[data-banner=welcome] {
  display: none;
}

.c-section + .l-main-category-nav-grid {
  margin-top: calc(45px + var(--slope-1px) * 45);
}

.c-section._bg + .l-main-category-nav-grid {
  margin-top: 0;
}

/* l-main-category-nav
============================== */
.l-main-category-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 6rem 1rem;
  width: 100%;
  padding: calc(10px + var(--slope-1px) * 20) 0;
  padding-block: 2.5rem calc(25px + var(--slope-1px) * 20);
  padding-inline: 2.5rem;
  color: var(--base-color);
  text-decoration: none;
  font-size: calc(16px + var(--slope-1px) * 8);
  line-height: 1;
  transition: background .3s ease-out;
}

@media screen and (max-width: 960px) {
  .l-main-category-nav {
    flex-direction: row;
  }
}

@media screen and (max-width: 560px) {
  .l-main-category-nav {
    justify-content: center;
  }
}

.l-main-category-nav:hover {
  background: var(--white);
}

.l-main-category-nav::after {
  content: "";
  position: relative;
  flex-shrink: 0;
  width: 3.33333em;
  height: 2.08333em;
  border-radius: var(--ovall-radius);
  background-color: var(--key-color);
  background-image: var(--icon-arrow);
  background-position: 50% 50%;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  transition: background .3s ease-out;
}

@media screen and (max-width: 960px) {
  .l-main-category-nav::after {
    width: 2.75em;
    height: 1.75em;
  }
}

.l-main-category-nav:hover::after {
  background-color: var(--base-color);
  background-position: 60% 50%;
}

.l-main-category-nav__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(3px + var(--slope-1px) * 12);
  width: 100%;
  margin-block: var(--leading-trim);
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 6);
}

.l-main-category-nav__text::after {
  content: attr(data-en);
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  margin-block: var(--leading-trim);
  font-weight: 700;
  font-size: calc(40px + var(--slope-1px) * 8);
  font-family: var(--en-font-family);
  line-height: 100%;
}

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

Footer

* ============================================================= */
/* l-contact
=============================== */
.l-contact {
  display: flex;
  flex-direction: column;
  row-gap: calc(16px + var(--slope-1px) * 11);
  width: 100%;
  max-width: var(--inner-width-px);
  margin-inline: auto;
  margin-bottom: calc(30px + var(--slope-1px) * 51);
  background: var(--key-color);
  text-align: center;
}

.l-contact__head {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: calc(10px + var(--slope-1px) * 20);
  color: var(--white);
}

.l-contact__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(3px + var(--slope-1px) * 4);
  gap: 7px;
  font-weight: bold;
  font-size: calc(45px + var(--slope-1px) * 45);
  font-family: var(--en-font-family);
  line-height: .92222;
}

.l-contact__title::before {
  content: attr(data-ja);
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}

.l-contact__text {
  text-align: center;
  font-weight: 700;
  font-size: calc(11px + var(--slope-1px) * 10);
  line-height: 1.66667;
}

@media screen and (max-width: 960px) {
  .l-contact__text {
    line-height: 1.54545;
  }
}

.l-contact__body {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2px;
  width: 100%;
}

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

.l-contact-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding-block: calc(32px + var(--slope-1px) * 66) calc(29px + var(--slope-1px) * 59);
  padding-inline: calc(10px + var(--slope-1px) * 10);
  background: #fff;
  text-decoration: none;
}

.l-contact-nav:hover .l-contact-nav__button {
  background: var(--key-color);
}

.l-contact-nav:hover .l-contact-nav__button::after {
  translate: .25em 0;
}

.l-contact-nav__head {
  width: 100%;
}

.l-contact-nav__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: calc(25px + var(--slope-1px) * 5);
}

.l-contact-nav__title {
  margin-top: var(--leading-trim);
  margin-bottom: calc(var(--leading-trim) + 5px);
  color: var(--key-color);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 700;
  font-style: normal;
  font-size: calc(22px + var(--slope-1px) * 18);
  line-height: 1.2;
}

.l-contact-nav__list {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: .82353em;
}

.l-contact-nav__list li {
  display: list-item;
  width: fit-content;
  margin-left: 1.5em;
  list-style: disc;
  letter-spacing: -.3px;
  font-weight: 400;
  font-size: calc(12px + var(--slope-1px) * 3);
  line-height: 175%;
}

.l-contact-nav__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 21.17647em;
  height: 3.17647em;
  max-width: 100%;
  border: 0;
  border-radius: var(--ovall-radius);
  background: var(--base-color);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background .3s ease-out;
}

@media screen and (max-width: 960px) {
  .l-contact-nav__button {
    height: 3.38462em;
    max-width: 100%;
  }
}

.l-contact-nav__button::after {
  content: "";
  position: absolute;
  right: .88235em;
  display: flex;
  flex-shrink: 0;
  width: 1.17647em;
  height: 1.17647em;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;
  transition: translate .3s ease-out;
}

@media screen and (max-width: 960px) {
  .l-contact-nav__button::after {
    right: 1.61538em;
  }
}

/* l-footer
=============================== */
.l-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-inline: var(--outer-padding);
  padding-top: calc(32px + var(--slope-1px) * 41);
  padding-bottom: calc(30px + var(--slope-1px) * -10);
  background: var(--key-color);
  color: var(--white);
}

/* l-footer-info
=============================== */
.l-footer-info {
  padding-inline: var(--inner-padding);
  color: var(--white);
  text-align: center;
  font-size: calc(10px + var(--slope-1px) * 2);
  line-height: 1.5;
}

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

.l-footer-info__name {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1em;
}

.l-footer-info__copyright {
  margin-top: 1em;
}

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

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);
  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) * 5);
  right: calc(5px + var(--slope-1px) * 5);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 44px;
  height: 44px;
  outline: none;
  border: 0;
  border-radius: 50%;
  background: var(--base-color);
          mask: var(--icon-close) 50% 50%/contain no-repeat;
  color: #fff;
  line-height: 1;
  transition: all .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

  -webkit-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: 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: calc(11px + var(--slope-1px) * 4);
}

.c-breadcrumbs > li {
  display: flex;
  align-items: center;
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
}

.c-breadcrumbs > li + li:before {
  content: ">";
  margin: 0 1em;
}

.c-breadcrumbs > li a {
  font-weight: 400;
  font-style: normal;
  line-height: 1;

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

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

/* c-button
=============================== */
.c-button {
  position: relative;
  display: inline grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  min-height: 3.15789em;
  max-width: 18.94737em;
  padding-block: calc(8px + var(--slope-1px) * 6);
  padding-inline: 1em;
  outline: none;
  border: 0;
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(10.75px + var(--slope-1px) * 8.25);
  transition: background .3s ease-out;
  appearance: none;
}

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

.c-button::before {
  content: "";
}

.c-button::after {
  content: "";
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-self: flex-end;
  width: 1.8875em;
  height: .535em;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;
  transition: translate .3s ease-out, background .3s ease-out;
}

@media screen and (max-width: 960px) {
  .c-button::after {
    right: 1.05116em;
  }
}

.c-button:hover {
  background: var(--black);
}

.c-button:hover::after {
  translate: .25em 0;
}

.c-button.js-scroll::after {
  content: "";
  position: absolute;
  right: .88235em;
  display: flex;
  flex-shrink: 0;
  width: 1.17647em;
  height: 1.17647em;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 960px) {
  .c-button.js-scroll::after {
    right: 1.61538em;
  }
}

.c-button._black {
  background: var(--black);
  color: var(--white);
}

.c-button._black::after {
  content: "";
  background: var(--white);
  mask: var(--icon-arrow) 50% 50%/contain no-repeat;
}

.c-button._black:hover {
  background: color-mix(in oklab, var(--black) 60%, transparent 40%);
}

.c-button._large {
  height: 3.76471em;
}

@media screen and (max-width: 960px) {
  .c-button._large {
    height: 3.84615em;
  }
}

.c-button._large::after {
  right: 2.05882em;
}

@media screen and (max-width: 960px) {
  .c-button._large::after {
    content: none;
  }
}

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

.c-button span, .c-button div, .c-button p {
  display: block;
  text-align: center;
  word-break: auto-phrase;
  line-height: normal;
}

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

.c-button-wrap:has(.c-button-wrap__label) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(5px + var(--slope-1px) * 5);
  margin-inline: auto;
}

.c-button-wrap:has(.c-button-wrap__label) .c-button {
  color: #fff;
}

.c-button-wrap__label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 1lh;
  margin-block: var(--leading-trim);
  margin-inline: auto;
  padding-inline: 2px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 2);
}

.c-button-wrap__label:before, .c-button-wrap__label:after {
  position: relative;
}

.c-button-wrap__label:before {
  content: "\00ff3c";
}

.c-button-wrap__label:after {
  content: "\00ff0f";
}

/* container */
.c-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  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: fit-content;
  padding: 0 1.5em;
}

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

.c-banner:hover {
  opacity: .7;
}

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

.c-detailed-banner: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 {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.73333em;
}

.c-detailed-banner__body {
  /* -0.5em for line-height offset */
  margin-top: 1.63333em;
  margin-bottom: -.5em;
  line-height: 2;
}

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

.c-tab__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: calc(100% + .75em);
  margin: 0 -.375em;
  border-bottom: 2px solid;
}

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

.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.61111em;
  padding: 1em .25em;
  outline: none;
  border: 1px solid var(--grey);
  border-bottom-width: 2px;
  border-radius: .5em .5em 0 0;
  background: var(--grey);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.125em;
  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(--base-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(--base-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:not(:first-child) {
  margin-top: calc(90px + var(--slope-1px) * 90);
}

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

.c-section._bg {
  position: relative;
  margin-block: calc(45px + var(--slope-1px) * 45);
  padding-block: calc(45px + var(--slope-1px) * 45) calc(60px + var(--slope-1px) * 60);
  border-image: linear-gradient(var(--white) 0 0) fill 0//0 100vi;
}

.c-section._bg[data-bg=key] {
  border-image: linear-gradient(var(--key-color) 0 0) fill 0//0 100vi;
  color: var(--white);
}

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

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

.c-section._bg:has(+ .l-main-category-nav-grid) {
  margin-bottom: 0;
  padding-bottom: calc(90px + var(--slope-1px) * 90);
}

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

.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

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

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

.c-table-container > * {
  min-width: 58em;
}

/* 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: 1.5rem;
}

.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 th {
  background: var(--base-color);
  color: #fff;
}

.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 th {
  background: var(--bg-color);
}

.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 {
  width: 16.66667%;
}

.c-data-table tbody td em {
  color: #0068b7;
  font-weight: bold;
}

/* profile table
=============================== */
.c-profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: calc(12px + var(--slope-1px) * 6);
}

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

.c-profile-table th {
  width: 10.27778em;
  padding-right: 1em;
  font-weight: bold;
}

.c-profile-table td {
  width: calc(100% - 10.27778em);
}

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

Text

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

.c-lead > p {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
}

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

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

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

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

/* notes
=============================== */
.c-notes {
  margin-top: 1.5em;
  font-size: calc(12px + var(--slope-1px) * 2);
}

.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-block: var(--leading-trim);
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 7);
  line-height: 1.2;
}

.c-page-subtitle {
  margin-block: var(--leading-trim);
  font-weight: 700;
  font-style: normal;
  font-size: calc(50px + var(--slope-1px) * 60);
  font-family: var(--en-font-family);
  line-height: normal;
}

/* c-section-title
============================== */
.c-section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(3px + var(--slope-1px) * 4);
  font-weight: 700;
  font-size: calc(14px + var(--slope-1px) * 6);
  line-height: normal;
}

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

.c-section-title::after {
  content: attr(data-en);
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  gap: calc(7.5px + var(--slope-1px) * 2.5);
  text-transform: uppercase;
  font-weight: 700;
  font-size: calc(45px + var(--slope-1px) * 45);
  font-family: var(--en-font-family);
  line-height: .92222;
}

/* c-sub-title
============================== */
.c-sub-title {
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 8);
}

/* detailed title
=============================== */
.c-detailed-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  font-weight: bold;
  font-weight: bold;
  font-size: calc(14px + var(--slope-1px) * 6);
  line-height: 1;
}

.c-detailed-title:before {
  content: "";
  display: block;
  width: calc(24px + var(--slope-1px) * 8);
  height: 1px;
  background: currentColor;
}

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

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 {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25em;
  width: 100%;
}

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

.c-blog-container .blog__title {
  display: flex;
  flex-direction: column;
  gap: .55556em;
  font-weight: bold;
  font-size: calc(15px + var(--slope-1px) * 21);
  line-height: 1;
}

.c-blog-container .blog__title:after {
  content: "";
  display: block;
  width: calc(24px + var(--slope-1px) * 8);
  height: 1px;
  background: currentColor;
}

.c-blog-container .blog__date {
  font-weight: 600;
  font-size: calc(11.5px + var(--slope-1px) * 10.5);
  line-height: 1;
}

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

.c-blog-container .blog__body {
  padding-block: calc(30px + var(--slope-1px) * 15);
  word-break: break-all;
}

.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: repeat(2, 1fr);
  gap: calc(20px + var(--slope-1px) * 10);
}

@media screen and (max-width: 960px) {
  .c-calendar__body {
    grid-template-columns: 100%;
  }
  .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);
  right: calc(20px + var(--slope-1px) * 10);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 961px) {
  .c-calendar__control {
    display: none;
  }
}

.c-calendar__control > button {
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25px + var(--slope-1px) * 10);
  height: calc(25px + var(--slope-1px) * 10);
  margin-block: auto;
  outline: none;
  border: 0;
  background: var(--key-color);
  mask: var(--icon-arrow) 50% 50%/contain no-repeat;
  color: transparent;
  text-decoration: none;
  font-size: 0;
}

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

.c-calendar__control > button: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;
  padding: .5em;
}

.c-calendar-notes__item .cal_close04 {
  color: #aaa;
}

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

/* c-calendar-box
============================== */
.c-calendar-box {
  display: flex;
  flex-direction: column;
  padding: calc(20px + var(--slope-1px) * 10);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.c-calendar-box__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: .5em;
  width: 100%;
  margin-bottom: 1.11111em;
  font-weight: bold;
}

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

.c-calendar-box__head .cal_month i {
  display: none;
}

.c-calendar-box__head .cal_year {
  padding-top: .03em;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;
}

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

.c-calendar-box__foot {
  width: 100%;
  margin-top: 1em;
}

.c-calendar-box .cal {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: regular;
}

.c-calendar-box .cal th {
  padding-bottom: .75em;
}

.c-calendar-box .cal th > div {
  padding-block: .75em;
  padding-top: .03em;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .7;

  border-block: 1px solid var(--border-color);
}

.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;
  margin-inline: auto;
  padding: .5em;
  border-radius: 50%;
  font-weight: 500;
}

.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(--key-color);
  color: #fff;
}

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

Maintenance

* ============================================================= */
/* service
=============================== */
.c-maintenance-service {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  column-gap: 20px;
}

.c-maintenance-service:not(:first-child) {
  margin-top: 4.375em;
}

.c-maintenance-service__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.c-maintenance-service__item .c-maintenance-service-block {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}

.c-maintenance-service__item:first-child:last-child {
  margin: 0 auto;
}

.c-maintenance-service:has(li:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}

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

.c-maintenance-service-block__lead {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: .825em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: bold;
  font-size: .9375em;
}

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

.c-maintenance-service-block__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #e5e5e5;
  background: var(--white);
  transition: opacity .2s;
}

.c-maintenance-service-block:hover .c-maintenance-service-block__banner {
  opacity: .7;
}

.c-maintenance-service-block__desc {
  /* -0.375em for line-height offset */
  margin-top: .625em;
  margin-bottom: -.375em;
  font-size: .875em;
}

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

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: 1px solid var(--base-color);
  border-radius: 25px 25px 25px 0px;
  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%;
  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: 2.5rem;
}

@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 {
    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) 0;
  }
}

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

.c-showroom-nav__type {
  padding: 8px;
  border: 1px solid;
  border-radius: 5px;
  color: var(--base-color);
  font-size: calc(11px + var(--slope-1px) * 3);
  line-height: 1;
}

.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: fit-content;
  margin-top: 1em;
  color: var(--key-color) !important;
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 3);
}

.c-showroom-nav__tel + .c-showroom-nav__tel{
  margin-top: .3em;
}

.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::after {
  content: "";
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
  width: 5em;
  height: 3.125em;
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: var(--ovall-radius);
  background-color: var(--key-color);
  background-image: var(--icon-arrow);
  background-position: 50% 50%;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  transition: background .3s ease-out;
}

@media screen and (max-width: 960px) {
  .c-showroom-nav::after {
    width: 3.38462em;
    height: 2.15385em;
  }
}

.c-showroom-nav:hover::after {
  background-color: var(--base-color);
  background-position: 60% 50%;
}

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

Sitemap

* ============================================================= */
/* l-header-toggle-menu
============================== */
.l-header-toggle-menu__body .c-sitemap__inner {
  display: flex;
  flex-direction: column;
  color: var(--white);
  column-gap: 1.76471em;
}

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

.l-header-toggle-menu__body .c-sitemap__inner .c-sitemap-box__body {
  display: none;
  margin-bottom: 15px;
  padding-block: 1.53846em;
  font-weight: 400;
  font-size: calc(13px + var(--slope-1px) * 1);
  line-height: 1.2;
}

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

.l-header-toggle-menu__body .c-sitemap-box {
  align-self: flex-start;
  width: 100%;
}

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

.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;
  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;
  appearance: none;
}

.l-header-toggle-menu .c-sitemap-box__toggle {
  width: 100%;
  margin-bottom: 0;
  padding-block: 1.53846em;
  border-bottom: 0;
  pointer-events: auto;
}

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

.l-header-toggle-menu .c-sitemap-box__toggle::after {
  transition: all .2s ease-out;
  transform: rotate(90deg);
}

.l-header-toggle-menu .c-sitemap-box__toggle.is-open:after {
  transform: rotate(0deg);
}

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

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

.l-header-toggle-menu .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::before {
  content: "";
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: .8em;
  height: 1px;
  background: currentColor;
}

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

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

Slider

* ============================================================= */
.c-slider__control {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  width: calc(100% - var(--inner-padding));
  max-width: 1208px;
  margin-inline: auto;
}

.c-slider-arrows {
  display: flex;
  grid-column: 3/4;
  grid-row: 1/2;
  gap: calc(10px + var(--slope-1px) * 10);
}

.c-slider-arrow {
  width: calc(44px + var(--slope-1px) * 36);
  height: calc(27px + var(--slope-1px) * 23);
  border-radius: var(--ovall-radius);
  background: var(--base-color);
  color: var(--white);
}

.c-slider-arrow svg {
  width: 50%;
  height: 50%;
}

.c-slider-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/4;
  grid-row: 1/2;
  gap: 1em;
  text-align: center;
  font-weight: 700;
  font-size: calc(12px + var(--slope-1px) * 9);
  font-family: var(--en-font-family);
  line-height: normal;
}

/* c-info-slider
============================== */
.c-info-slider {
  z-index: 50;
  color: var(--white);

  --item-width: 410;
}

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

.c-info-slider__list {
  position: relative;
  left: 50%;
  overflow: visible;
  width: calc(var(--item-width) * 1px * var(--item-min-count));
  margin-inline: auto;
  transform: translateX(-50%);

  --item-min-count: 5;
}

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

  --item-min-count: 1;
}

@media screen and (max-width: 960px) {
  .c-info-slider__list {
    max-width: calc(100% / 375 * var(--item-width) * var(--item-min-count));
  }
}

.c-info-slider__list .slick-list {
  overflow: visible;
}

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

.c-info-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  transform: scale(.90244);
}

@media screen and (max-width: 960px) {
  .c-info-slider__item img {
    transform: scale(.93458);
  }
}

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

@media screen and (min-width: 961px) {
  .c-info-slider__item a:hover img {
    transform: scale(.92683);
  }
}

.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(--white);
}

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

/* c-blog-slider
============================== */
.c-blog-slider__control {
  position: relative;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(18.25px + var(--slope-1px) * 6.75);
  width: 100%;
  height: 32px;
  color: var(--key-color);
}

.c-blog-slider__pager {
  display: flex;
  gap: .5em;
  font-size: calc(15px + var(--slope-1px));
}

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

Topics

* ============================================================= */
/* c-topics
============================== */
.c-topics .topics-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5em 2em;
  padding: 1.2em calc(60px + var(--slope-1px) * 20) 1.2em calc(20px + var(--slope-1px) * 40);
  text-decoration: none;
  font-size: calc(11px + var(--slope-1px) * 9);
  transition: color .3s;
}

@media screen and (max-width: 960px) {
  .c-topics .topics-link {
    flex-direction: column;
    padding: 1.36364em calc(60px + var(--slope-1px) * 20) 1.36364em calc(20px + var(--slope-1px) * 40);
  }
}

.c-topics .topics-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(20px + var(--slope-1px) * 40);
  bottom: 0;
  display: flex;
  flex-shrink: 0;
  justify-self: flex-end;
  width: 1.8875em;
  height: .535em;
  margin-block: auto;
  background: var(--base-color);
  mask: var(--icon-arrow) 50% 50%/contain no-repeat;
  transition: translate .3s ease-out, background .3s ease-out;
}

.c-topics .topics-link:hover {
  color: var(--key-color);
}

.c-topics .topics-link:hover::after {
  translate: .25em;
}

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

.c-topics .topics-link__head .topics-link__label {
  width: fit-content;
  word-break: auto-phrase;
  font-size: calc(11px + var(--slope-1px) * 9);
}

.c-topics .topics-link__head .topics-link__category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10em;
  padding-block: .46667em;
  border-radius: var(--ovall-radius);
  background: var(--key-color);
  color: var(--white);
  font-size: calc(10px + var(--slope-1px) * 7);
}

.c-topics__foot {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* c-topics-list
============================== */
.c-topics-list {
  display: flex;
  flex-direction: column;
  gap: calc(10px + var(--slope-1px) * 8);
}

.c-topics-list__item {
  overflow: hidden;
  border: 1px solid var(--base-color);
  border-radius: 25px 25px 25px 0px;
  background: var(--white);
}

@media screen and (max-width: 960px) {
  .c-topics-list__item {
    border-radius: 10px 10px 10px 0px;
  }
}

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

/* c-topics-toggle
============================== */
.c-topics-toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8em;
  height: 3.17647em;
  padding-block: calc(13px + var(--slope-1px) * 2);
  padding-inline: 15px;
  outline: none;
  border: 0;
  background: transparent;
  color: var(--base-color);
  text-decoration: none;
  font-weight: bold;
  font-size: calc(10px + var(--slope-1px) * 10);
  transition: transform .3s ease-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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 {
  width: 100cqi;
  margin-inline: calc(50% - 50cqi);
}

/* u-inner-width
============================== */
.u-inner-width {
  max-width: 990px;
  margin-right: auto;
  margin-left: auto;
}

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