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

Custom Properties

* ============================================================= */
:root {
  /* ========================================
  color
  ======================================== */
  /* text color */
  --base-color: #202020;
  /* key color */
  --key-color:  #E60020;
  --key-color-dark: color-mix(in srgb, var(--key-color) 84.4%, black);
  /* point color */
  --point-color: #404040;
  /* background color */
  --bg-color: #f4f4f4;
  /* border color */
  --border-color: #bfbfbf;
  /* ========================================
  layouts
  ======================================== */
  /* layouts */
  --inner-width: 500px;
  --inner-padding: 4%;
  --header-height: calc(57px + var(--slope-1px) * 10);
  /* utility */
  --vh: 1vh;
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --slope-2px: clamp(0px, -1.91327px + .5102vw, 2px);
  --slope-3px: clamp(0px, -2.8699px + .76531vw, 3px);
  --slope-4px: clamp(0px, -3.82653px + 1.02041vw, 4px);
  /* ========================================
  font
  ======================================== */
  /* size */
  --base-font-size: 16;
  --line-height: 1.75;
  --line-space: (var(--line-height) - 1)/2;
  /* family */
  --base-font-family: Lato, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --en-font-family: Lato, sans-serif;
  /* ========================================
  other
  ======================================== */
  /* easing */
  --easing-ease-out-cubic: cubic-bezier(.33, 1, .68, 1);
}

@media screen and (max-width: 500px) {
  :root {
    --inner-width: 100%;
  }
}

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

Base

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

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--base-color);
  letter-spacing: .03em;
  font-size: calc(1.5rem + var(--slope-1px));
  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;
}

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

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: url(../img/logo.png) 50% 50%/300px auto no-repeat var(--bg-color);
  perspective: 10rem;
  transition: all .4s ease-in;
}

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

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

Wrapper

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

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

Background

* ============================================================= */
.l-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: calc(50% - var(--inner-width) / 2) calc(50% - var(--inner-width) / 2);
  gap: var(--inner-width);
  width: 100%;
  height: calc(var(--vh) * 100);
  height: 100lvh;
  background: url(../img/bg.jpg) 50% 50%/cover no-repeat;
  color: #fff;
}

.l-background__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  padding: 0 20px;
}

@media screen and (max-width: 900px) {
  .l-background__main {
    display: none;
  }
}

.l-background__sub {
  position: relative;
}

@media screen and (max-width: 900px) {
  .l-background__sub {
    display: none;
  }
}

/* l-background-header
============================== */
.l-background-header {
  text-align: center;
}

.l-background-header__title {
  font-weight: bold;
  font-size: clamp(18px, 2.54936px + 1.71674vw, 26px);
  font-family: Lato, var(--base-font-family);
  line-height: 1;
}

.l-background-header__title a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.l-background-header__title a:hover {
  opacity: .75;
}

.l-background-header__title span {
  font-size: 1.15385em;
}

.l-background-header__lead {
  margin-top: 1.4em;
  font-size: clamp(13px, 9.13734px + .42918vw, 15px);
  line-height: 1.73333;
}

.l-background-header__lead > span {
  display: inline-block;
}

/* l-background-nav
============================== */
.l-background-nav {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.l-background-nav__item {
  border-bottom: 1px solid;
}

.l-background-nav__button {
  position: relative;
  display: block;
  padding: 18px 24px 18px 0;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(15px, 9.20601px + .64378vw, 18px);
  line-height: 1;
  transition: opacity .3s;
}

.l-background-nav__button:hover {
  opacity: .7;
}

.l-background-nav__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  display: block;
  width: 13px;
  height: 11px;
  margin: auto 0;
  background: url(../img/icon/arrow.svg) 50% 50%/contain no-repeat;
}

/* l-background-contact
============================== */
.l-background-contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 5px;
  margin-top: max(18px, 2.69461%);
  margin-right: max(18px, 2.69461%);
}

.l-background-contact__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 8.93333em;
  height: 2.53333em;
  border-radius: 1.26667em;
  background: var(--base-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background .3s;
}

.l-background-contact__button:hover {
  background: var(--key-color);
}

.l-background-contact__button > i {
  display: block;
  width: 17px;
  height: 16px;
}

.l-background-contact__button > i :is(img, svg) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* l-background-float
============================== */
.l-background-float {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  margin-right: 2.99401%;
  margin-bottom: 2.99401%;
}

.l-background-float__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 5.71429em;
  height: 5.71429em;
  border-radius: 100%;
  background: #fff;
  color: var(--key-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all .3s;
}

.l-background-float__button:hover {
  transform: translateY(-3px);
}

.l-background-float__button > ._calendar {
  width: 17px;
  height: 17px;
}

.l-background-float__button > ._pagetop {
  width: 13px;
  height: 11px;
  transform: rotate(-90deg);
}

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

Inner

* ============================================================= */
.l-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: var(--inner-width);
  margin: 0 auto;
  padding-top: var(--header-height);
  background: #fff;
}

@media screen and (max-width: 900px) {
  body[data-id=index] .l-inner {
    padding-top: calc(var(--header-height) + 20px);
  }
}

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

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: var(--inner-width);
  margin: 0 auto;
}

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

.l-header__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 900px) {
  .l-header__inner:after {
    background: #fff;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, .16);
  }
}

/* header logo
=============================== */
.l-header-logo {
  position: relative;
  z-index: 4;
  display: none;
  width: 51.5942%;
  margin: auto 0;
}

@media screen and (max-width: 900px) {
  .l-header-logo {
    display: flex;
  }
}

.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%;
}

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

/* l-header-menu
=============================== */
.l-header-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.l-header-menu a {
  text-decoration: none;
}

.l-header-menu__toggle {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  max-width: 34px;
}

@media screen and (max-width: 500px) {
  .l-header-menu__toggle {
    display: block;
  }
}

.l-header-menu__nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow-y: auto;
  width: 100%;
  height: calc(var(--vh) * 100);
  padding-top: var(--header-height);
  background: #fff;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

body.is-header-nav-open .l-header-menu__nav {
  opacity: 1;
  pointer-events: auto;
}

/* l-header-toggle
=============================== */
.l-header-toggle {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  color: var(--key-color);
  cursor: pointer;
  transition: opacity .25s;
  appearance: none;
}

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

.l-header-toggle > div,
.l-header-toggle > div:before,
.l-header-toggle > div:after {
  position: absolute;
  display: block;
  height: 2px;
}

.l-header-toggle > div {
  top: 0;
  right: 0;
  bottom: 1em;
  left: 0;
  z-index: 1;
  width: 34px;
  margin: auto;
  background: transparent;
  font-size: 11px;
  transition: background .2s;
}

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

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

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

.l-header-toggle > div > span {
  position: absolute;
  bottom: -2em;
  left: 50%;
  font-weight: bold;
  line-height: 1;
  transform: translateX(-50%);
}

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

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

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

/* l-header-nav
=============================== */
.l-header-nav {
  width: 100%;
  padding: 0 var(--inner-padding) 24px;
}

@media screen and (max-width: 900px) {
  .l-header-nav {
    padding-top: 24px;
  }
}

/* l-header-nav-contact
============================== */
.l-header-nav-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity .8s ease-out, transform 1.2s var(--easing-ease-out-cubic);
  transform: translateY(20px);
  will-change: transition;
}

body.is-header-nav-open .l-header-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.l-header-nav-contact__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 2.53333em;
  border-radius: 1.26667em;
  background: var(--key-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background .3s;
}

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

.l-header-nav-contact__button > i {
  display: block;
  width: 17px;
  height: 16px;
}

.l-header-nav-contact__button > i :is(img, svg) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* l-header-nav-list
============================== */
.l-header-nav-list__item {
  border-bottom: 1px solid var(--border-color);
  opacity: 0;
  transition: opacity .8s ease-out, transform 1.2s var(--easing-ease-out-cubic);
  transform: translateY(20px);
  will-change: transition;
}

body.is-header-nav-open .l-header-nav-list__item {
  opacity: 1;
  transform: translateY(0);
}

.l-header-nav-list__item:first-child {
  transition-delay: .04s;
}

.l-header-nav-list__item:nth-child(2) {
  transition-delay: .08s;
}

.l-header-nav-list__item:nth-child(3) {
  transition-delay: .12s;
}

.l-header-nav-list__item:nth-child(4) {
  transition-delay: .16s;
}

.l-header-nav-list__item:nth-child(5) {
  transition-delay: .20s;
}

.l-header-nav-list__item:nth-child(6) {
  transition-delay: .24s;
}

.l-header-nav-list__item:nth-child(7) {
  transition-delay: .28s;
}

.l-header-nav-list__handle {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5625em 50px 1.5625em 0;
  background-image: radial-gradient(var(--base-color) 0% 50%, transparent calc(50% + 1px) 100%);
  background-position: calc(100% + 4px) center;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  font-weight: bold;
  font-size: 16px;
  transition: opacity .3s;
}

.l-header-nav-list__handle:hover {
  opacity: .7;
}

.l-header-nav-list__handle::before, .l-header-nav-list__handle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  display: block;
  width: 13px;
  height: 3px;
  margin: auto 0;
  border-radius: 3px;
  background: #fff;
}

.l-header-nav-list__handle::after {
  transition: transform .3s;
  transform: rotate(90deg);
}

.l-header-nav-list__handle.is-open::after {
  transform: rotate(0deg);
}

.l-header-nav-list__drawer {
  display: none;
}

/* l-header-page-nav
============================== */
.l-header-page-nav {
  padding-bottom: 10px;
  font-size: 15px;
}

.l-header-page-nav__item {
  margin-bottom: 1.4em;
  padding-left: 1em;
  line-height: 1;
}

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

Main

* ============================================================= */
/* l-main
=============================== */
.l-main {
  overflow: hidden;
  padding: 0 var(--inner-padding);
  transform: translate(0);
}

/* l-main-heading
============================== */
.l-main-heading {
  position: relative;
  color: #fff;
}

.l-main-heading > * {
  position: relative;
  z-index: 1;
}

.l-main-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 500px;
  height: 100%;
  background: var(--key-color);
  transform: translateX(-50%);
}

/* l-main-category-nav
============================== */
.l-main-category-nav {
  position: relative;
  padding: 25px 0;
}

.l-main-category-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  display: block;
  width: 500px;
  height: 100%;
  background: var(--bg-color);
  transform: translateX(-50%);
}

.l-main-category-nav__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

Footer

* ============================================================= */
/* l-footer-contact
=============================== */
.l-footer-contact {
  padding: 30px var(--inner-padding);
  background: var(--key-color);
  color: #fff;
  text-align: center;
}

.l-footer-contact__inner {
  padding: 50px;
  border-radius: 8px;
  background: var(--key-color-dark);
}

.l-footer-contact__title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
}

.l-footer-contact__text {
  margin-top: 1.375em;
  font-size: 16px;
  line-height: 1.5;
}

.l-footer-contact__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px auto 0;
}

.l-footer-contact__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .625em;
  overflow: hidden;
  width: 20.9375em;
  height: 3.5em;
  max-width: 100%;
  border: 1px solid #fff;
  border-radius: 1.75em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background .2s ease-out, color .2s ease-out;
}

.l-footer-contact__button > i {
  width: 1.0625em;
  height: 1.0625em;
}

.l-footer-contact__button > i :is(img, svg) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-footer-contact__button svg path {
  fill: #fff;
  transition: fill .1s ease-out;
}

.l-footer-contact__button:hover {
  background: #fff;
  color: var(--key-color-dark);
}

.l-footer-contact__button:hover svg path {
  fill: var(--key-color-dark);
}

/* l-footer-info
=============================== */
.l-footer-info {
  padding: 2.33333em var(--inner-padding);
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.l-footer-info a {
  color: currentColor;
}

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

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

Grid

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

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

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

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

Navigation

* ============================================================= */
/* c-breadcrumbs
=============================== */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 0;
  padding: 1.23077em 0 2.15385em;
  font-size: 13px;
  line-height: 1.5;
}

.c-breadcrumbs > li {
  display: flex;
  align-items: center;
}

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

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

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

/* c-button
=============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .625em;
  overflow: hidden;
  width: 20.9375em;
  height: 3.5em;
  max-width: 100%;
  border: 1px solid var(--color);
  border-radius: 1.75em;
  color: var(--text-color);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all .3s ease-out;

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

.c-button._white {
  --color: #fff;
}

.c-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: .625em;
  bottom: 0;
  display: block;
  width: 2.25em;
  height: 2.25em;
  margin: auto 0;
  border-radius: 50%;
  background: url(../img/icon/arrow.svg) 50% 50% / 36.11111% auto no-repeat var(--color);
  transition: all .3s ease-out;
}

.c-button svg path {
  fill: var(--text-color);
  transition: all .3s ease-out;
}

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

  --text-color: #fff;
}

.c-button:hover:after {
  background-color: var(--text-color);
  background-image: url(../img/icon/arrow-black.svg);
}

.c-button._white:after {
  background-image: url(../img/icon/arrow-black.svg);
}

.c-button._white:hover {
  --text-color: #333;
}

.c-button._white:hover:after {
  background-image: url(../img/icon/arrow.svg);
}

/* container */
.c-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}

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

.c-button-container + .c-button-container {
  padding-top: 1rem;
}

.c-button-container > .c-button:first-child:last-child {
  width: 360px;
}

/* c-card-nav
============================== */
.c-card-nav {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  text-align: center;
  text-decoration: none;
}

.c-card-nav__image {
  overflow: hidden;
  width: 100%;
}

.c-card-nav__image > img {
  width: 100%;
  transition: all .3s;
}

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

.c-card-nav__text {
  padding: 1em 0;
  font-weight: bold;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 1;
}

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

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

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

.c-tab__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 2px solid;
}

.c-tab__item {
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: calc(50% - 6px);
  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.61111em;
  padding: 1em .25em;
  outline: none;
  border: 1px solid var(--border-color);
  border-bottom-width: 2px;
  border-radius: .5em .5em 0 0;
  background: #efefef;
  color: var(--base-color);
  text-align: center;
  text-decoration: none;
  font-size: calc(14px + var(--slope-1px) * 2);
  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;
  transform: translateX(-50%);
}

@media screen and (max-width: 500px) {
  .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: #fff;
}

.c-tab__button.is-current:after {
  width: 100%;
  border-bottom: 2px solid #fff;
}

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

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

/* c-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 {
  order: -1;
  width: 100%;
}

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

.c-detailed-banner__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: calc(30px + var(--slope-1px) * 10);
  font-size: 1.5rem;
}

.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.4em;
}

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

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

Section

* ============================================================= */
/* c-section
============================== */
.c-section {
  position: relative;
  padding: 48px 0;
}

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

.c-section:not(._bg) + .c-section:not(._bg) {
  padding-top: 0;
}

.c-section._bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 500px;
  height: 100%;
  background: var(--bg-color);
  transform: translateX(-50%);
}

.c-section > :where(*) {
  position: relative;
  z-index: 1;
}

.c-section__head._flex {
  display: flex;
}

.c-section__foot {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* c-inner-section
============================== */
.c-inner-section:not(:first-child) {
  margin-top: calc(30px + var(--slope-1px) * 10);
}

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

Table

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

/* c-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: #666;
  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: #666;
  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;
}

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

.c-profile-table th,
.c-profile-table td {
  padding: 1.33333em 0;
  border-bottom: 1px solid #d6d6d6;
}

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

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

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

Text

* ============================================================= */
/* c-lead
=============================== */
.c-lead {
  font-size: 16px;
  line-height: 1.75;
}

.c-lead:not(:last-child) {
  margin-bottom: 1.125em;
}

.c-lead em {
  font-weight: bold;
  font-size: 1.25em;
}

/* c-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;
  flex-wrap: wrap;
  align-items: center;
  gap: .5em;
  width: calc(100% + 20px);
  padding: .71429em 0;
  font-size: calc(26px + var(--slope-1px) * 2);
  line-height: 1;
}

.c-page-title:after {
  content: attr(data-en);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  height: 1.33333em;
  margin-left: auto;
  padding: 0 .5em;
  background: #fff;
  color: var(--key-color);
  font-weight: bold;
  font-size: calc(13px + var(--slope-1px) * 2);
  font-family: Lato;
}

/* c-section-title
============================== */
.c-section-title {
  display: flex;
  width: calc(100% + 20px);
  margin-bottom: .78571em;
  padding: .5em calc(.5em + 20px) .5em .5em;
  border-left: 4px solid var(--key-color);
  background: var(--bg-color);
  font-weight: 500;
  font-size: calc(24px + var(--slope-1px) * 2);
  line-height: 1;
}

/* c-pickup-title
============================== */
.c-pickup-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: .78571em;
  font-weight: 500;
  font-size: calc(26px + var(--slope-1px) * 2);
  line-height: 1;
}

.c-pickup-title:before {
  content: attr(data-en);
  position: relative;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.33333em;
  padding-right: .5em;
  padding-left: 20px;
  background: var(--key-color);
  color: #fff;
  font-weight: bold;
  font-size: calc(13px + var(--slope-1px) * 2);
  font-family: Lato;
}

/* c-detailed-title
============================== */
.c-detailed-title {
  margin-bottom: .5em;
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 2);
}

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

Blog

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

.c-blog-container__td > article + article {
  margin-top: 50px;
}

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

.c-blog-container article {
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-color);
}

.c-section._bg .c-blog-container article {
  --bg-color: #fff;
}

.c-blog-container .blog__header {
  padding: 20px;
  background: #333;
  color: #fff;
}

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

.c-blog-container .blog__date {
  margin-top: .4em;
  color: #b0b0b0;
  font-weight: bold;
  font-size: calc(14px + var(--slope-1px) * 1);
  line-height: 1;
}

.c-blog-container .blog__body {
  padding: 20px;
  word-break: break-all;
}

.c-blog-container .blog__body img {
  height: auto;
  max-width: 100%;
}

.c-blog-container .blog__paging {
  margin-top: 3rem;
  text-align: right;
}

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

Calendar

* ============================================================= */
.c-calendar-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: var(--inner-width);
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: padding .4s ease-in-out, opacity .4s ease-in-out, left .1s linear .4s;
  pointer-events: none;
}

.c-calendar-container.is-visible {
  opacity: 1;
  transition: padding .4s ease-in-out, opacity .4s ease-in-out;
  pointer-events: auto;
}

.c-calendar-container__inner {
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--inner-width);
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, .8);
}

.c-calendar-container__inner > div {
  position: relative;
}

.c-calendar-container__close {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.c-calendar-container__close:before, .c-calendar-container__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 141.42136%;
  height: 2px;
  background: #fff;
}

.c-calendar-container__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.c-calendar-container__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

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

.c-calendar__container {
  display: flex;
}

.c-calendar__container > * {
  margin: 0 1.5em;
}

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

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

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

.c-calendar__arrow {
  position: absolute;
  top: 3.5em;
  right: 3.5em;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-calendar__arrow > button {
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto 0;
  margin: 0 .8rem;
  outline: none;
  border: 0;
  border-bottom: 3px solid;
  background: transparent;
  color: var(--key-color);
  text-decoration: none;
  font-size: 0;
}

.c-calendar__arrow > button._prev {
  border-left: 3px solid;
  transform: rotate(45deg);
}

.c-calendar__arrow > button._next {
  border-right: 3px solid;
  transform: rotate(-45deg);
}

.c-calendar__arrow > button:hover {
  opacity: .7;
  transition: all .3s;
}

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

.c-calendar-notice__item {
  display: inline-block;
  padding: .5em;
}

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

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

.c-calendar-box {
  display: flex;
  flex-direction: column;
  padding: 2em 2em 1.5em;
  background: #fff;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, .2);
}

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

.c-calendar-box__head .cal_month {
  position: relative;
  font-size: 3.33333em;
  line-height: .8;
}

.c-calendar-box__head .cal_month i {
  position: absolute;
  bottom: 0;
  left: calc(100% + 3.5em);
  font-style: normal;
  font-size: .3em;
  line-height: 1;
}

.c-calendar-box__head .cal_year {
  margin-left: .5em;
  line-height: 1;
}

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

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

.c-calendar-box .cal {
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: regular;
  font-family: "Roboto Condensed", sans-serif;
}

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

.c-calendar-box .cal th > div {
  padding: .77778em 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  line-height: .7;
}

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

.c-calendar-box .cal td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  margin: 0 auto;
  padding: .75em;
}

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

.c-calendar-box .cal td .cal_close04 {
  background-color: #aaa;
  color: #fff;
}

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

Maintenance

* ============================================================= */
/* c-maintenance-service
=============================== */
.c-maintenance-service {
  display: flex;
  flex-wrap: wrap;
  width: 103.57143%;
  margin: -1.78571% -1.78571%;
  padding-top: 1px;
}

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

.c-maintenance-service__item {
  width: 50%;
  padding: 1.72414% 1.72414%;
}

.c-maintenance-service__item:first-child:last-child {
  width: 100%;
}

.c-maintenance-service__item:first-child:last-child .c-maintenance-service-block__banner {
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
}

/* c-maintenance-service-block
=============================== */
.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;
  font-weight: bold;
  font-size: .9375em;
}

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

.c-maintenance-service-block__banner {
  border: 4px solid var(--border-color);
  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

* ============================================================= */
/* c-inspection-fig
=============================== */
.c-inspection-fig {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  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(--point-color);
}

.c-inspection-fig-image {
  position: relative;
  display: none;
  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: #666;
}

.c-inspection-fig-image i._option {
  color: #666;
}

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

.c-inspection-fig-box {
  display: flex;
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  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%;
}

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

.c-inspection-check__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  margin-bottom: .75em;
  background: #666;
  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%;
  width: 100%;
}

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

Showroom

* ============================================================= */
/* c-showroom-list
============================== */
.c-showroom-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 27px;
}

/* c-showroom-nav
============================== */
.c-showroom-nav {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-size: calc(15px + var(--slope-1px));
  line-height: 1.5;
}

.c-showroom-nav__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 460 / 240;
  border-radius: 8px;
}

.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;
  padding: 1.25em 0 3.125em;
  border-bottom: 1px solid var(--border-color);
}

.c-showroom-nav__contents:after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 18px;
  display: block;
  width: 13px;
  height: 11px;
  background: url(../img/icon/arrow-red.svg) 50% 50%/contain no-repeat;
}

.c-showroom-nav__head {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1;
}

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

.c-showroom-nav__tel {
  margin-top: 1em;
  line-height: 1;
}

.c-showroom-nav__tel em {
  color: var(--key-color);
  font-size: 1.3125em;
}

.c-showroom-nav__info {
  margin-top: 1em;
}

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

Slider

* ============================================================= */
/* c-info-slider
============================== */
.c-info-slider {
  margin-bottom: 26px;
}

.c-info-slider__list {
  overflow: visible;
  width: 78.26087%;
  transform: translateX(-10px);
}

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

.c-info-slider__item {
  padding: 0 10px;
}

.c-info-slider img {
  border-radius: 8px;
}

.c-info-slider__control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

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

Topics

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

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

.c-topics .topics-link__head {
  margin-bottom: .5em;
  color: #888;
  font-weight: bold;
  font-size: .9375em;
  line-height: 1;
}

.c-topics .topics-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: block;
  width: 13px;
  height: 11px;
  margin: auto 0;
  background: url(../img/icon/arrow-red.svg) 50% 50%/contain no-repeat;
}

/* c-topics-list
============================== */
.c-topics-list__item {
  border-top: 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: center;
  align-items: center;
  gap: 1em;
  overflow: visible;
  width: 100%;
  padding: .5em;
  outline: none;
  border: 0;
  background: none;
  color: currentColor;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color .3s;
  appearance: none;
}

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

.c-topics-toggle::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 7em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 80%);
}

.c-section._bg .c-topics-toggle::before {
  background: linear-gradient(to bottom, rgba(244, 244, 244, 0) 0%, #f4f4f4 80%);
}

.c-topics-toggle.is-show::before {
  opacity: 0;
}

.c-topics-toggle::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  background: url(../img/icon/down.svg) 50% 50%/contain no-repeat;
  transition: transform .3s;
}

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

.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(--key-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(--key-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: 500px) {
  .u-tablet-block {
    display: block !important;
  }
}

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

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

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

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

@media screen and (max-width: 500px) {
  .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;
}
