@charset "UTF-8";
/*==============================================
ここから下がドロワー設定項目
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.drawer-btn {
  top: 15px;
  right: 3.5%;
  bottom: auto;
  left: auto;
  background: var(--drawer-btn-bg);
}
.drawer-btn__main {
  width: 50px;
  height: 50px;
}
.drawer-btn__main span {
  width: 25px;
  height: 2px;
  background: var(--drawer-btn-bar-color, #fff);
}
.drawer-btn__main--top {
  top: 15px;
}
.drawer-btn__main--middle {
  top: 1px;
  bottom: 0;
}
.drawer-btn__main--bottom {
  top: 34px;
}
.drawer-btn__text {
  color: var(--drawer-btn-bar-color, #fff);
}

.drawer-btn__main.active .drawer-btn__main--top {
  -webkit-transform: translateY(8px) translateX(0px) rotate(45deg);
          transform: translateY(8px) translateX(0px) rotate(45deg);
  top: 50%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.drawer-btn__main.active .drawer-btn__main--middle {
  opacity: 0;
}
.drawer-btn__main.active .drawer-btn__main--bottom {
  top: 50%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

/*	drawer inbox
------------------------------------ */
.drawer-container {
  padding: 60px 5%;
  background-color: #fff;
  visibility: hidden;
  z-index: 1000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  position: fixed;
}
.drawer__logo {
  width: var(--logo-width);
  margin: 0 auto 7%;
}
.drawer__logo img {
  width: 100%;
}
.drawer-nav__item .drawer-nav__link.drawer-dropdown::after {
  display: none;
}
.drawer-nav__link {
  padding: 1.25em 1em;
  position: relative;
  font-weight: var(--font-weight-medium, 600);
  font-size: var(--drawer-link-font-size, _clamp(15, 18));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid rgb(var(--color-main-rgb)/0.3);
}
.drawer-nav__link::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid var(--drawer-main-color);
  border-right: 2px solid var(--drawer-main-color);
  position: absolute;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-nav__link:hover {
  color: var(--drawer-main-color);
  border-color: var(--color-main);
}
.drawer-nav__link:hover::after {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
}
.drawer-nav__link.current {
  color: var(--drawer-main-color);
  border-color: var(--color-main);
}
.drawer-nav__link.drawer-dropdown {
  padding: 0.75em 0.5em;
}
.drawer-nav__link.drawer-dropdown.current span:after {
  opacity: 0 !important;
}
.drawer-nav__link.drawer-dropdown span {
  display: block;
}
.drawer-nav__link.drawer-dropdown span:before {
  background: var(--drawer-main-color);
  width: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-nav__link.drawer-dropdown span:after {
  background: var(--drawer-main-color);
  height: 1em;
  right: calc(10px + 0.5em);
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-dropdown__list {
  margin: 0.5em 0;
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.drawer-dropdown__item .drawer-link {
  padding-left: 1.25em;
  font-size: 1.25rem;
}
.drawer-dropdown__item .drawer-link:before {
  border-left: unset;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 0.75em;
  border-bottom: 1px solid var(--drawer-main-color);
}
.drawer-dropdown__item .drawer-link span {
  padding: 0;
}

/*original custom code
-----------------------------------------*/
/* 
drawer-info
-------------------------*/
.drawer-info {
  margin-top: 10%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  width: 100%;
}
.drawer-info__address {
  font-size: 13px;
  margin-bottom: 16px;
  text-align: center;
}
.drawer-info__time-table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: var(--letter-spacing-regular);
  min-width: 408px;
}
.drawer-info__time-table thead th {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 0.25em 0.25em;
  text-align: center;
}
.drawer-info__time-table thead th:not(:first-child) {
  border-left: 2px solid var(--color-theme);
}
.drawer-info__time-table tbody th,
.drawer-info__time-table tbody td {
  background-color: var(--color-white);
  color: var(--color-main);
  padding: 0.5em 0.25em;
  text-align: center;
  vertical-align: middle;
}
.drawer-info__time-table tbody th:not(:first-child),
.drawer-info__time-table tbody td:not(:first-child) {
  border-left: 2px solid var(--color-theme);
}
.drawer-info__time-table tbody td > span {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  z-index: 1;
}
.drawer-info__time-table tbody td > span::after {
  content: "";
  width: 1em;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-bottom: 1px solid var(--color-main);
}
.drawer-info__time-table col {
  width: 48px;
}
.drawer-info__time-table col:first-child {
  width: 72px;
}
.drawer-info .over-scroll {
  width: 100%;
}
.drawer-info__flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  margin-top: 24px;
}
.drawer-info__actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  gap: 15px;
}
.drawer-info__btn {
  max-width: 370px;
  width: 100%;
}

.drawer-other-nav {
  margin-top: 30px;
}
.drawer-other-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
}
.drawer-other-nav__item:not(:last-child) {
  margin-right: 1em;
}

/*sns
---------------------------*/
/*住所
---------------------------*/