@charset "UTF-8";
/* ************************************** _
タイトル：screen.css
概要：岐阜県央 共通css（旧 screen の import 統合）
作成：2026.03.27
更新：2026.03.27
_ ************************************** */
/* ************************************** _
タイトル：_base.scss
概要：全ページ共通となるベースCSSファイル
_ ************************************** */
/* kill 'Browser standard style'
---------------------------------------------------------------------------- */
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0 !important;
  min-width: 0 !important;
  /*outline: 2px solid blue;*/
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dt, dd, li, table, th, td,
form, select, option, address, pre,
strong, em {
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Re style
---------------------------------------------------------------------------- */
a:link, a:visited {
  text-decoration: underline;
  color: #3688BA;
}

a:hover, a:active {
  text-decoration: underline;
  color: #003C79;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  image-rendering: -webkit-optimize-contrast !important;
}

hr {
  display: none;
}

p {
  margin-top: 0;
  padding-bottom: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul ul, ol ul, ul ol, ol ol, dl ul, dl ol, dl dl, td td, dt label {
  font-size: 100%;
}

table {
  border-collapse: collapse;
}

/* html5
---------------------------------------------------------------------------- */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

html, body {
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
}

@media screen and (max-width: 900px) {
  #page {
    background: #FFFFFF;
  }
}
/* 共通
---------------------------------------------------------------------------- */
.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .only-sp {
    display: block;
  }
  .only-pc {
    display: none;
  }
}
/* body 
---------------------------------------------------------------------------- */
body {
  padding: 0;
  color: #1a1a1a;
  font-size: 1em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  -webkit-text-size-adjust: none;
  position: relative;
}

@media screen and (max-width: 1160px) {
  body {
    line-height: 1.7;
  }
}
/* wrapper
---------------------------------------------------------------------------- */
#wrapper {
  margin: 0 auto;
  width: 100%;
  text-align: left;
  padding-top: 70px;
}

@media screen and (max-width: 1160px) {
  #wrapper {
    padding-top: 60px;
  }
}
/* header
---------------------------------------------------------------------------- */
#header {
  width: 100%;
  padding: 0 20px 0 20px;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0px 0px 24px 6px rgba(0, 0, 0, 0.15);
}

#header .inner {
  max-width: 1200px;
  height: 70px;
  margin: 0 auto 0 auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 980px) {
  #header .inner {
    height: 60px !important;
    display: block;
  }
}
/* ロゴ表示調整：20260217 */
#header .logo {
  display: block;
  margin: 0 auto 0 0;
  transition: all 0.3s;
  width: 341px;
}

@media screen and (max-width: 1100px) {
  #header .logo {
    width: 220px;
  }
}
@media screen and (max-width: 980px) {
  #header .logo {
    width: 270px;
    padding: 12px 0 0 0;
  }
}
#header .logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ロゴ表示調整 ここまで：20260217 */
/*ぱんくずリスト*/
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 0.7em 20px;
  /*background: #faf5f0;*/
  font-size: 0.8em;
}

.breadcrumbs > li:first-child:before {
  content: "";
  display: inline-block;
  width: 0.83333em;
  height: 1em;
  margin-right: 1em;
  background: url(../images/cmn_img/home.png) 50% bottom no-repeat;
  background-size: contain;
}

.breadcrumbs > li:not(:first-child):before {
  content: ">";
  margin: 0 1em;
}

.breadcrumbs li a {
  color: #1a1a1a;
  text-decoration: none;
}

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

/* レイアウト：1200px
---------------------------------------------------------------------------- */
#primary-contents {
  width: 71.7%;
  float: left;
  margin: 0 3.33% 80px 0;
}

@media screen and (max-width: 900px) {
  #primary-contents {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
}
#secondary-contents {
  width: 24%;
  float: left;
}

@media screen and (max-width: 900px) {
  #secondary-contents {
    width: 100%;
    /*float: none;*/
    margin: 0 0 40px 0;
  }
}
/*サイドメニュー*/
.side-menu-wrap {
  width: 100%;
  float: left;
  margin: 0 0 30px 0;
}

.side-menu-wrap h5 {
  margin: 0;
  padding: 10px 0 10px 0;
  font-size: 1em;
  font-weight: bold;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  text-indent: 1em;
}

.side-menu-wrap ul {
  margin: 0;
  padding: 0;
}

.side-menu-wrap li {
  background: #FFFFFF;
  margin: 0;
  text-indent: 1em;
  transition: all 0.3s;
}

.side-menu-wrap li a:hover {
  background: #ffe9e9;
}

.side-menu-wrap li a {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
  padding: 10px 0 10px 0;
  position: relative;
  transition: all 0.3s;
}

ul li.cat-item {
  border-bottom: 1px solid #CCCCCC;
}

ul.children > li {
  text-indent: 2em;
}

.side-menu-wrap li a:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: #1a1a1a 2px solid;
  border-right: #1a1a1a 2px solid;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* footer
---------------------------------------------------------------------------- */
#footer {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  color: #FFFFFF;
  background: #3b3938;
  position: relative;
  z-index: 2;
  clear: both;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 20px 0;
}

/*フッターナビゲーション*/
.footer-menu-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
  padding: 0 20px 0 20px;
}

.footer-menu {
  width: 23%;
}

.footer-menu--title {
  font-size: 1.1em;
  margin: 0 0 5px 0;
  /*border-bottom: 1px solid #767574;*/
}

.footer-menu .level1 {
  margin: 0 0 40px 0;
}

.footer-menu li {
  margin: 0 0 3px 0;
}

.footer-menu li > ul {
  margin: 0 0 0 0;
}

.footer-menu li > ul li {
  padding: 0 0 0 10px;
}

.footer-menu li > ul li::before {
  content: "-";
  display: inline-block;
  padding: 0 5px 0 0;
}

.footer-menu a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9em;
}

.footer-menu a:hover {
  color: #CCCCCC;
}

@media screen and (max-width: 900px) {
  .footer-inner,
  .footer-menu-wrap {
    display: none;
  }
}
/*フッターボトムリンク*/
.footer-bottom-menu {
  width: 100%;
  margin: 0 0 30px 0;
  padding: 0 20px 0 20px;
}

.footer-bottom-menu__list {
  display: flex;
  margin: 0 0 0 -3%;
}

.footer-bottom-menu__list li {
  width: 22.5%;
  border: 1px solid #666666;
  background: #3a3a3a;
  margin: 0 0 0 3%;
  position: relative;
  z-index: auto;
  transition: all 0.3s;
}

.footer-bottom-menu__list li:hover {
  border: 1px solid #cb0101;
  background: #cb0101;
}

.footer-bottom-menu__list li a {
  display: block;
  padding: 10px 20px 10px 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 0.9em;
  text-decoration: none;
}

.footer-bottom-menu__list--shop::before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 20px;
  width: 32px;
  height: 26px;
  background: url(../images/cmn_img/icon_shop.png) no-repeat center left;
}

.footer-bottom-menu__list--democar::before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 20px;
  width: 32px;
  height: 26px;
  background: url(../images/cmn_img/icon_democar.png) no-repeat center left;
}

.footer-bottom-menu__list--syaken::before {
  content: "";
  position: absolute;
  top: calc(50% - 14.5px);
  left: 20px;
  width: 32px;
  height: 26px;
  background: url(../images/cmn_img/icon_syaken.png) no-repeat center left;
}

.footer-bottom-menu__list--contact::before {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 20px;
  width: 32px;
  height: 26px;
  background: url(../images/cmn_img/icon_mail.png) no-repeat center left;
}

.footer-bottom-menu__list--contact {
  position: relative;
  z-index: 1;
}

.footer-bottom-menu__list--contact:hover::after {
  top: -70px;
}

/*コピーライトラッパー*/
#footer .copy {
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
  padding: 40px 0 40px 0;
  font-size: 0.8em;
  line-height: 2;
  background: #2f2d2d;
}

.footer-logo {
  font-size: 1.2em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 980px) {
  #footer {
    /*スマホ用フッターサブメニュー分余白を設ける*/
    padding: 0 0 60px 0;
  }
  #footer .copy {
    padding: 20px 20px 20px 20px;
  }
}
/* ************************************** _
タイトル：_layout.scss
概要：レイアウト用CSSファイル
_ ************************************** */
/* 共通
---------------------------------------------------------------------------- */
/*文字選択*/
::-moz-selection {
  background: #cb0101;
  color: #FFF;
}
::selection {
  background: #cb0101;
  color: #FFF;
}

::-moz-selection {
  background: #cb0101;
  color: #FFF;
}

/*文章*/
.parag {
  margin: 0 0 30px 0;
}

.lead {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 900px) {
  .lead {
    font-size: 1.2em;
    margin: 0 0 20px 0;
  }
}
.underline {
  border-bottom: 1px solid #333333;
  padding-bottom: 5px;
  display: inline;
}

/*ブロック*/
.block {
  margin: 0 0 80px 0;
}

@media screen and (max-width: 768px) {
  .block {
    margin: 0 0 40px 0;
  }
}
/* ボタンデザイン：角丸タイプ
---------------------------------------------------------------------------- */
.btn-radius-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btn-radius {
  margin: 0 0 10px 0;
  max-width: 320px;
  border-radius: 40px;
  width: 100%;
  position: relative;
}

.btn-radius a {
  display: block;
  padding: 12px 0 12px 20px;
  color: #333333;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #cccccc;
  transition: all 0.3s;
}

.btn-radius a:hover {
  background: #cb0101;
  border: 1px solid #cb0101;
  color: #FFFFFF;
}

.btn-radius::before,
.btn-radius::after {
  content: "";
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.btn-radius::before {
  width: 20px;
  height: 20px;
  background: #cb0101;
  border-radius: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.btn-radius::after {
  width: 6px;
  height: 6px;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.btn-radius:hover::before {
  right: 8px;
}

.btn-radius:hover::after {
  right: 15px;
}

/* ボタンデザイン：アンダーラインタイプ
---------------------------------------------------------------------------- */
.btn-underline-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*トップページ：サービス*/
.index-service .btn-underline {
  width: 48%;
}

.btn-underline {
  margin: 0 0 10px 0;
  max-width: 350px;
  position: relative;
}

.btn-underline a {
  position: relative;
  border-bottom: 1px solid #cccccc;
}

.btn-underline a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s;
  background: #cb0101;
  z-index: 1;
}

.btn-underline a:hover::after {
  transform: scale(1, 1);
}

.btn-underline a {
  display: block;
  padding: 15px 0 15px 0;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  z-index: 1;
}

.btn-underline::before,
.btn-underline::after {
  content: "";
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.btn-underline::before {
  width: 20px;
  height: 20px;
  background: #cb0101;
  border-radius: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.btn-underline::after {
  width: 6px;
  height: 6px;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.btn-underline:hover::before {
  right: 8px;
}

.btn-underline:hover::after {
  right: 15px;
}

/*見出し*/
.title-wrap {
  margin: 0 0 40px 0;
  text-align: left;
}

h2.index-title {
  padding: 0 0 0 0;
  font-size: 1.8em;
  font-weight: bold;
  position: relative;
}

.title-white h2.index-title {
  color: #FFFFFF !important;
}

.index-sub-title {
  color: #b3080c;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
}

.index-sub-title::before {
  content: "ー";
}

.title-white .index-sub-title {
  color: #FFFFFF !important;
}

@media screen and (max-width: 900px) {
  .title-wrap {
    margin: 0 0 20px 0;
  }
  h2.index-title {
    font-size: 1.4em;
  }
  .index-sub-title {
    font-size: 0.8em;
  }
}
h3.headline {
  line-height: 2;
  font-size: 1.2em;
  margin: 0 0 50px 0;
  font-weight: bold;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

@media screen and (max-width: 900px) {
  h2.title {
    font-size: 1.4em;
    margin: 0 0 20px 0;
  }
  h2.title br {
    display: none;
  }
  h3.headline {
    line-height: 2;
    font-size: 1.2em;
    margin: 0 0 20px 0;
    font-weight: bold;
  }
}
/*アニメーション：fadeInUp*/
.css-fadeInUp {
  animation-name: fadeInUpAnime;
  animation-duration: 1.2s;
  animation-delay: 0.2s;
}

@keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.css-reveal {
  animation-name: revealAnime;
  animation-duration: 1s;
}

@keyframes revealAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下層 見出し*/
h2.under-title {
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.under-sub-title {
  color: #b3080c;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
}

.under-sub-title::before {
  content: "ー";
}

@media screen and (max-width: 900px) {
  h2.under-title {
    font-size: 1.4em;
  }
}
h3.under-title {
  font-size: 1.6em;
  font-weight: bold;
  margin: 0 0 20px 0;
  position: relative;
}

h3.under-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #b3080c;
  margin: 0 0 0 0;
}

@media screen and (max-width: 900px) {
  h3.under-title {
    font-size: 1.2em;
  }
}
h4.under-title {
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 30px 0;
  padding: 0 0 0 10px;
  border-left: 4px solid #c30307;
}

/*section*/
.section-wrap {
  width: 100%;
  /*overflow: hidden;*/
  margin: 40px 0 40px 0;
  padding: 40px 0 40px 0;
}

.section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.under .section {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}

@media screen and (max-width: 1230px) { /*1020px*/
  .section-wrap {
    margin-bottom: 30px;
    padding: 10px 10px 20px 10px;
  }
  .section {
    width: 100%;
    margin: 0 auto;
  }
  .under .section {
    width: 100%;
    margin: 0 auto;
  }
}
/*下層ページ内メニュー*/
.site-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px 0;
}

.site-menu li {
  width: 50%;
  text-align: center;
  background: #EEEEEE;
  padding: 15px 0 15px 0;
}

.site-menu li a {
  text-decoration: none;
  display: block;
  font-weight: bold;
  color: #999999;
}

.site-menu li.active {
  background: #d23030;
}

.site-menu li.active a {
  color: #FFFFFF;
}

/* カレンダー
---------------------------------------------------------------------------- */
.calendar-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.calendar-wrap #cal0 {
  width: 48%;
}

.calendar-wrap #cal0 .cal_ui {
  display: none;
}

.calendar-wrap #cal1 {
  width: 48%;
}

.calendar-wrap #cal1 .cal_ui {
  display: none;
}

.calendar-wrap .cal-info {
  width: 100%;
  text-align: center;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 900px) {
  .calendar-wrap {
    flex-direction: column;
    width: 100%;
  }
  .calendar-wrap #cal0 {
    width: 100%;
  }
  .calendar-wrap #cal1 {
    width: 100%;
    margin-top: 30px;
  }
}
/*カレンダー説明*/
.cal-explain-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  margin: 1% 0 0 -2%;
}

@media screen and (max-width: 900px) {
  .cal-explain-list {
    justify-content: center;
  }
}
.cal-explain-list li {
  position: relative;
  margin: 0 0 0 2%;
  padding: 0 0 0 25px;
  font-size: 0.8em;
}

.cal-explain-list li::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

/*イベント情報*/
.cal-explain-list__event::before {
  background: #a0d2eb;
}

/*休店日*/
.cal-explain-list__closed::before {
  background: #d1d1d1;
}

/*展示・試乗車*/
.cal-explain-list__democar::before {
  background: #a6eba0;
}

/*その他*/
.cal-explain-list__other::before {
  background: #f1f36a;
}

/* 下層ページ
---------------------------------------------------------------------------- */
/*カテゴリタイトル*/
.undercon-category-wrap {
  width: 100%;
  height: 250px;
  position: relative;
}

.undercon-category-height-wrap {
  width: 100%;
  height: 300px;
  position: relative;
}

.undercon-category-wrap-inner {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
}

.undercon-category-wrap::before,
.undercon-category-height-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.3); /*設定要変更*/
}

.undercon-category-wrap-inner .text-wrap {
  text-align: left;
  margin: 0 auto 0 20px;
  overflow: hidden;
}

.undercon-category-wrap h1.title,
.undercon-category-height-wrap h1.title {
  margin: 0 0 0 0;
  font-size: 2.2em;
  color: #FFFFFF;
  font-weight: bold;
  position: relative;
}

.undercon-category-wrap .sub-title,
.undercon-category-height-wrap .sub-title {
  color: #FFFFFF;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 900px) {
  .undercon-category-wrap,
  .undercon-category-height-wrap {
    height: 200px;
  }
  .undercon-category-wrap-inner .text-wrap,
  .undercon-category-height-wrap .text-wrap {
    margin: 0 auto 0 auto;
    text-align: center;
  }
  .undercon-category-wrap h1.title,
  .undercon-category-height-wrap h1.title {
    font-size: 1.54em;
  }
  .undercon-category-wrap .sub-title,
  .undercon-category-height-wrap .sub-title {
    font-size: 0.7em;
  }
}
/* 下層ページ：メインイメージ
---------------------------------------------------------------------------- */
/*その他*/
.under-mainimg-other {
  background: url(../images/cmn_img/bg_mainimg_other.jpg) no-repeat center center;
  background-size: cover;
}

/*Honda Cars 岐阜県央とは*/
.under-mainimg-aboutus {
  background: url(../images/aboutus/bg_mainimg_aboutus.jpg) no-repeat center center;
  background-size: cover;
}

/*展示・試乗車*/
.under-mainimg-democar {
  background: url(../democar/images/cmn_img/bg_mainimg_democar.jpg) no-repeat center center;
  background-size: cover;
}

/*中古車情報*/
.under-mainimg-usedcar {
  background: url(../stockcar/images/bg_mainimg_usedcar.jpg) no-repeat center center;
  background-size: cover;
}

/*ブログ*/
.under-mainimg-blog {
  background: url(../images/news/bg_mainimg_blog.jpg) no-repeat center center;
  background-size: cover;
}

/*サービストップ*/
.under-mainimg-service {
  background: url(../service/images/common/bg_mainimg_service.jpg) no-repeat center center;
  background-size: cover;
}

/*おすすめサービス*/
.under-mainimg-recommend {
  background: url(../service/images/common/bg_mainimg_recommend.jpg) no-repeat center center;
  background-size: cover;
}

/* サービスの一部は service.css で設定中 */
/*店舗情報：トップ*/
.under-mainimg-shop {
  background: url(../images/shop/cmn_img/bg_mainimg_shop.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：西岐阜店*/
.under-mainimg-shop-nishigifu {
  background: url(../images/shop/nishigifu/bg_mainimg_shop-nishigifu.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：各務原那加店*/
.under-mainimg-shop-naka {
  background: url(../images/shop/naka/bg_mainimg_shop-naka.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：美濃加茂新池店*/
.under-mainimg-shop-shinike {
  background: url(../images/shop/shinike/bg_mainimg_shop-shinike.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：関若草店*/
.under-mainimg-shop-wakakusa {
  background: url(../images/shop/wakakusa/bg_mainimg_shop-wakakusa.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：関旭ヶ丘店*/
.under-mainimg-shop-asahigaoka {
  background: url(../images/shop/asahigaoka/bg_mainimg_shop-asahigaoka.jpg) no-repeat center center;
  background-size: cover;
}

/*店舗情報：飛騨高山店*/
.under-mainimg-shop-hidatakayama {
  background: url(../images/shop/hidatakayama/bg_mainimg_shop-hidatakayama.jpg) no-repeat center center;
  background-size: cover;
}

/* 環境保全活動
---------------------------------------------------------------------------- */
.environment-title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 50px 0;
}

@media screen and (max-width: 900px) {
  .environment-title {
    font-size: 1.4em;
  }
  .environment-title br {
    display: none;
  }
}
dl.environment-list {
  margin: 0 0 30px 0;
}

dl.environment-list dt {
  margin: 0 0 5px 0;
}

ul.environment-point {
  margin: 5px 0 0 0;
}

ul.environment-point li {
  list-style: decimal;
  margin: 0 0 0 20px;
}

.sign {
  /*float: right;*/
  text-align: right;
  margin: 0 0 50px 0;
}

/* プライバシー・ポリシー
---------------------------------------------------------------------------- */
.privacy ol.list1 {
  width: 100%;
}

.privacy ol.list1 li {
  margin: 0 0 20px 30px;
  list-style-type: decimal;
}

.privacy ol.list1 ol.list2 {
  width: 100%;
  margin: 0 0 30px 0;
}

.privacy ol.list1 ol.list2 li {
  margin: 0 0 10px 30px;
  list-style-type: lower-roman;
}

.privacy .sign {
  text-align: right;
  margin: 0 0 40px 0;
  color: inherit;
}

/* 展示・試乗車（CESシステム）
---------------------------------------------------------------------------- */
/*
展示・試乗車システム箇所は　/css/democar.css
*/
/* 採用情報
---------------------------------------------------------------------------- */
.side-banner {
  display: flex;
  flex-direction: column;
}

.side-banner li {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
  .side-banner li {
    text-align: center;
  }
}
/* 勧誘方針
---------------------------------------------------------------------------- */
.kajyo-list li {
  text-indent: -1em;
  padding-left: 1em;
}

/* 所有権解除
---------------------------------------------------------------------------- */
.alert-txt {
  color: #cb0101;
}

/* 会社概要
---------------------------------------------------------------------------- */
.syaze-wrap {
  display: flex;
  position: relative;
  justify-content: space-between;
  z-index: auto;
  margin: 0 0 80px 0;
}

.syaze-wrap::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 87.5%;
  height: 85%;
  background: #f8f8f8;
  z-index: -1;
}

.syaze-wrap__txtwrap {
  margin: 0 0 0 2%;
  width: 63%;
}

.syaze-wrap__txtwrap--message {
  font-size: 1.8em;
  margin: 0 0 70px 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.heighlight {
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: rgba(247, 217, 217, 0.7);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.syaze-wrap__txtwrap--txt {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1040px) {
  .syaze-wrap__txtwrap {
    max-width: 450px;
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 900px) {
  .syaze-wrap {
    flex-direction: column;
  }
  .syaze-wrap::before {
    width: 100%;
  }
  .syaze-wrap__txtwrap {
    max-width: none;
    margin: 0 0 30px 0;
    width: 100%;
  }
  .syaze-wrap__txtwrap--message {
    text-align: center;
    font-size: 1.6em;
    margin: 0 0 40px 0;
  }
  .syaze-wrap__txtwrap--txt br {
    display: none;
  }
  .syaze-wrap__imgwrap {
    text-align: center;
    margin: 0 auto;
  }
  .company-table th {
    white-space: nowrap;
    width: 120px !important;
  }
}
/* Honda Cars 岐阜県央とは
---------------------------------------------------------------------------- */
.aboutus-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 70px 0;
}

.reverse {
  flex-direction: row-reverse;
}

.aboutus-wrap__imgarea {
  max-width: 550px;
  width: 100%;
  margin: 0 8% 0 0;
}

.reverse .aboutus-wrap__imgarea {
  margin: 0 0 0 8%;
}

.aboutus-wrap__txtarea {
  max-width: 550px;
  width: 100%;
}

.aboutus-wrap__txtarea--subtitle {
  color: #cb0101;
  font-size: 0.8em;
  font-weight: bold;
}

.aboutus-wrap__txtarea--title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.aboutus-wrap__txtarea--lead {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.aboutus-wrap__txtarea--txt {
  margin: 0 0 20px 0;
}

.aboutus-wrap__txtarea--list dt {
  font-weight: bold;
}

.aboutus-wrap__txtarea--list dd {
  margin: 0 0 30px 0;
}

.aboutus-wrap__txtarea--list dd:last-child {
  margin: 0 0 0 0;
}

@media screen and (max-width: 900px) {
  .aboutus-wrap {
    flex-direction: column;
  }
  .aboutus-wrap__imgarea {
    max-width: none;
    text-align: center;
    margin: 0 0 30px 0;
  }
  .aboutus-wrap__imgarea img {
    max-height: 400px;
  }
  .reverse .aboutus-wrap__imgarea {
    margin: 0 0 30px 0;
  }
  .aboutus-wrap__txtarea {
    max-width: none;
  }
  .aboutus-wrap__txtarea--title {
    font-size: 2em;
  }
  .aboutus-wrap__txtarea--lead {
    font-size: 1.2em;
  }
}
/* 岐阜県へお引越しのお客様へ
---------------------------------------------------------------------------- */
.move-wrap__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 0 -3%;
}

.move-wrap__list li {
  width: 30%;
  margin: 0 0 0 3%;
}

.move-wrap__list--img {
  margin: 0 0 20px 0;
}

.move-wrap__list--title {
  font-weight: bold;
  margin: 0 0 5px 0;
}

.move-wrap__list--txt {
  margin: 0 0 30px 0;
}

.move-wrap .btn-underline-list {
  display: block;
}

.move-wrap .btn-underline {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .move-wrap__list {
    flex-direction: column;
    margin: 0 0 0 0;
  }
  .move-wrap__list li {
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px auto;
  }
}
/* ************************************** _
タイトル：_navi.scss
概要：ナビゲーション
_ ************************************** */
/* 901px以上の指定
---------------------------------------------------------------------------- */
@media screen and (min-width: 981px) {
  ul#globalnavi {
    display: flex;
    align-items: center;
    margin: 0 0 0 0;
  }
  ul#globalnavi > li {
    list-style: none;
    text-align: center;
    font-size: 0.9em;
  }
  ul#globalnavi > li > a {
    color: #333333;
    font-weight: bold;
    padding: 30px 10px 30px 10px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
  }
  ul#globalnavi li a:hover {
    color: #CCCCCC;
  }
  .disabled-link {
    cursor: default;
  }
}
/*ドロップダウンメニュー*/
@media screen and (min-width: 981px) {
  ul#globalnavi > li > .drop-menu {
    display: none;
    transition: all;
  }
  ul#globalnavi > li:hover .drop-menu {
    display: block;
    position: absolute;
    top: 65px; /*.headerの高さ -5px*/
    left: 0;
    width: 100vw !important;
    margin: 0 0 0 0;
    text-align: left;
    /*background: rgba(255, 255, 255, 1);*/
    background: #cb0101;
    /*border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;*/
    box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.15);
    animation: fadeIn forwards 0.5s;
    z-index: 999;
  }
  .drop-menu_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .drop-menu__title {
    /*width: 30%;*/
    position: relative;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.4em;
    line-height: 1;
    margin: 0 0 0 0;
    padding: 0 0 0 23px;
    font-weight: bold;
  }
  .drop-menu__title::before {
    content: "";
    position: absolute;
    top: calc(50% - 8.5px);
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
  }
  .drop-menu__title:hover::before {
    background: #950d0d;
    border: 2px solid #950d0d;
  }
  .drop-menu__title:hover::after {
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
  }
  .drop-menu__title::after {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: 5.5px;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 2px solid #cb0101;
    border-right: 2px solid #cb0101;
    transform: rotate(45deg);
    transition: all 0.3s;
  }
  .drop-menu__list {
    /*width: 65%;*/
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: left;
    border-left: 1px solid #950d0d;
    padding: 20px 0 0 5%;
  }
  .drop-menu__list li {
    /*width: 48%;*/
    width: 33%;
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 0 0 23px;
  }
  .drop-menu__list li::before {
    content: "";
    position: absolute;
    top: calc(0.5em - 3px);
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
  }
  .drop-menu__list li:after {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 5.5px;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 2px solid #cb0101;
    border-right: 2px solid #cb0101;
    transform: rotate(45deg);
    transition: all 0.3s;
  }
  .drop-menu__title a,
  .drop-menu__list li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .drop-menu__title a:hover,
  .drop-menu__list li a:hover {
    text-decoration: underline;
    color: #FFFFFF !important;
  }
  .drop-menu__title a:hover::before,
  .drop-menu li:hover::before {
    background: #950d0d;
    border: 2px solid #950d0d;
  }
  .drop-menu__title a:hover::after,
  .drop-menu li:hover::after {
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
  }
}
/* スマートフォンメニューボタン
---------------------------------------------------------------------------- */
/*.menu-btn{ display: none; }*/
.mburger {
  display: none !important;
}

.mm-navbar {
  padding: 10px !important;
  margin-right: 20px;
}

/* 900px以下の指定
---------------------------------------------------------------------------- */
@media screen and (max-width: 980px) {
  ul#globalnavi {
    display: none;
  }
  .sub-menu {
    display: none;
  }
  /*mmenuのメニュータイトル*/
  .mm-navbar__title {
    padding: 10px 0 10px 0;
  }
  .mburger {
    display: block !important;
    color: #333333 !important;
    --mb-button-size: 60px;
    --mb-bar-height: 4px;
    --mb-bar-spacing: 7px;
    position: absolute !important;
    top: 0;
    right: 0 !important;
  }
  .menu-wrap {
    width: 100%;
    border: none;
  }
  .drop-menu__title {
    display: none;
  }
  /*
  .drop-menu__list{}
  .drop-menu__list li{}
  .drop-menu__list li a{
  	display: block;
  	padding: 10px 10px 10px 20px;
  }
  */
}
/*フッターサブメニュー*/
.sub-menu {
  display: none;
}

@media screen and (max-width: 980px) {
  .sub-menu {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    margin: 0;
    position: fixed !important;
    bottom: 0;
    z-index: 99 !important;
  }
  .sub-menu li {
    margin: 0 0 0 0;
    width: 25%;
    height: 60px;
  }
  .sub-menu li {
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }
  .sub-menu li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0.6em;
    text-align: center;
    text-decoration: none;
    color: #333333;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .sub-menu li:last-child {
    border-bottom: none;
  }
  .sub-menu__red {
    background: #e20000;
    transition: all 0.3s;
  }
  .sub-menu__red:hover {
    background: #ff0000;
  }
  .sub-menu__red .txt {
    color: #FFFFFF;
    margin: 3px 0 0 0;
  }
  .sub-menu__white {
    background: #FFFFFF;
    transition: all 0.3s;
    border-bottom: 1px solid #cccccc;
  }
  .sub-menu__white:hover {
    background: #ffe9e9;
  }
  .sub-menu li .txt {
    font-weight: bold;
    margin: 3px 0 0 0;
  }
}
/* ************************************** _
タイトル：_table.scss
概要：テーブルのCSSファイル
_ ************************************** */
/* 共通項目
---------------------------------------------------------------------------- */
table, th, tr, td {
  border-collapse: collapse;
}

/* 罫線ありテーブル
---------------------------------------------------------------------------- */
.ruledLine {
  width: 100%;
  margin: 0 auto 0 auto;
}

.ruledLine th {
  vertical-align: top;
  background: #f7f7f7;
  padding: 15px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  width: 270px;
  text-align: left;
  vertical-align: middle;
}

.ruledLine td {
  padding: 15px;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (max-width: 900px) {
  .ruledLine th {
    width: auto;
    /*white-space:nowrap;*/
    padding: 10px;
  }
  .ruledLine td {
    padding: 10px;
  }
}
@media screen and (max-width: 900px) {
  .scroll-table-wrap {
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0 0;
    margin-bottom: 30px;
  }
  .scroll-table-wrap .PriceComparisonTable {
    width: 1000px;
    margin-bottom: 10px;
  }
}
/* テーブルの行揃え
---------------------------------------------------------------------------- */
/*2列の場合********************************************************/
/*左・左*/
.lineStyleLeftLeft th {
  text-align: left;
}

.lineStyleLeftLeft td {
  text-align: left;
}

/*左・右*/
.lineStyleLeftRight th {
  text-align: left;
}

.lineStyleLeftRight td {
  text-align: right;
}

/*左・センター*/
.lineStyleLeftCenter th {
  text-align: left;
}

.lineStyleLeftCenter td {
  text-align: center;
}

/*右・左*/
.lineStyleRightLeft th {
  text-align: right;
}

.lineStyleRightLeft td {
  text-align: left;
}

/*右・右*/
.lineStyleRightRight th {
  text-align: right;
}

.lineStyleRightRight td {
  text-align: left;
}

/*右・センター*/
.lineStyleRightCenter th {
  text-align: right;
}

.lineStyleRightCenter td {
  text-align: center;
}

/*センター・左*/
.lineStyleCenterLeft th {
  text-align: center;
}

.lineStyleCenterLeft td {
  text-align: left;
}

/*センター・右*/
.lineStyleCenterRight th {
  text-align: center;
}

.lineStyleCenterRight td {
  text-align: right;
}

/*センター・センター*/
.lineStyleCenterCenter th {
  text-align: center;
}

.lineStyleCenterCenter td {
  text-align: center;
}

/* テーブルの横幅設定
---------------------------------------------------------------------------- */
.maxWidth {
  width: 500px;
}

.middleWidth {
  width: 250px;
}

.narrowWidth {
  width: 100px;
}

/* ************************************** _
タイトル：_modules.scss
概要：汎用classのCSSファイル
_ ************************************** */
/* float clear
---------------------------------------------------------------------------- */
.clearLeft {
  clear: left;
}

.clearRight {
  clear: right;
}

.clearBoth {
  clear: both;
  margin-bottom: 20px;
}

/* float
---------------------------------------------------------------------------- */
.fL {
  float: left;
}

.fR {
  float: right;
}

/* margin
---------------------------------------------------------------------------- */
.first {
  margin: 0 0 10px 0;
}

.text {
  margin: 0 0 10px 0;
}

.title {
  margin: 0 0 10px 0;
}

.mb5 {
  margin: 0 0 5px 0;
}

.mb10 {
  margin: 0 0 10px 0;
}

.mb60 {
  margin: 0 0 60px 0;
}

.btn_center {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  padding: 0 20px;
}

/* align
---------------------------------------------------------------------------- */
.alignLeft {
  text-align: left !important;
}

.alignCenter {
  text-align: center !important;
}

.alignRight {
  text-align: right !important;
}

/* font size
---------------------------------------------------------------------------- */
.small {
  font-size: 0.8em;
}

/* ロールオーバーエフェクト
---------------------------------------------------------------------------- */
.alpha a:hover img,
.alpha a:hover {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70); /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* IE 8 */
  transition: opacity 0.3s ease-out;
}

/* font color
---------------------------------------------------------------------------- */
.b {
  font-weight: bold;
}

.attention, .required {
  color: #b21212 !important;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

/* ************************************** _
タイトル：_cal.scss
概要：カレンダーCSSファイル
_ ************************************** */
.cal {
  background: #FFFFFF;
  /*max-width: 500px;*/
  margin: 0 auto 0 auto;
  padding: 0 0 10px 0;
}

div.cal_wrapper {
  width: 100%;
  /*padding: 10px;	*/
}

div.cal_wrapper table.cal {
  width: 100%;
}

@media screen and (max-width: 900px) {
  div.cal_wrapper {
    max-width: none;
    width: 100%;
    margin: 0 auto 20px auto;
    font-size: 1em;
  }
  div.cal_wrapper table.cal {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 320px) {
  div.cal_wrapper {
    font-size: 0.8em;
  }
}
/*年月タイトル*/
div.cal_wrapper table.cal tr th p {
  /*float: left;*/
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  padding: 5px;
  margin: 0;
  background: #f4f4f4;
}

div.cal_wrapper table.cal tr th div.cal_ui {
  float: right;
}

/*prev、next*/
div.cal_wrapper table.cal tr th div.cal_ui input {
  border: none;
  font-size: 1em;
  margin: 0;
  background: none;
  height: 40px;
  /*background: #eeeeee;*/
  background-color: #FFF;
  /*border-radius: 3px;*/
  cursor: pointer;
}

div.cal_wrapper table.cal tr td {
  /*font-size: 10px;*/
  text-align: center;
  padding: 2px;
  background: #f9f9f9; /*背景色*/
}

/*曜日エリア*/
div.cal_wrapper table.cal tr.headline td {
  padding: 5px 0px 3px 0;
  /*color: #FFF;*/
  /*background: #2ea831;*/
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  font-size: 1em !important;
}

/*日*/
div.cal_wrapper table.cal tr td div {
  position: relative;
  padding: 10px 5px;
  font-size: 1em;
  text-align: center;
  background-color: #FFF;
  border-radius: 3px;
}

@media screen and (max-width: 900px) {
  div.cal_wrapper table.cal tr td div {
    padding: 10px 7px;
  }
}
div.cal_wrapper table.cal tr td div span {
  display: none;
  position: absolute;
  top: 20px;
  left: 0px;
  width: 180px;
  background-color: #FFF;
  text-align: left;
  padding: 5px;
  z-index: 10;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  box-shadow: 1px 1px 3px #666;
  border: 1px solid #EEEEEE;
}

/*土曜日の表示だけずらす*/
div.cal_wrapper table.cal tr td div.Fri span,
div.cal_wrapper table.cal tr td div.Sat span {
  left: -120px;
}

/* 以下、クラス指定するときのアレ */
div.cal_wrapper table.cal tr td div.Sat {
  color: #00F;
}

div.cal_wrapper table.cal tr td div.Sun {
  color: #F00;
}

/*イベント*/
div.cal_wrapper table.cal tr td div.Event {
  color: #FFFFFF;
  background: #a0d2eb;
}

/*展示・試乗車情報*/
div.cal_wrapper table.cal tr td div.Democar {
  color: #FFFFFF;
  background: #a6eba0;
}

/*休店日*/
div.cal_wrapper table.cal tr td div.Holiday {
  color: #B3B3B3;
  font-weight: bolder;
  background: #D1D1D1;
}

/*その他*/
div.cal_wrapper table.cal tr td div.Other {
  color: inherit;
  font-weight: bolder;
  background: #f1f36a;
}

/*通常営業*/
div.cal_wrapper table.cal tr td div.Eigyou {
  color: inherit;
  background: #FFFFFF;
}

div.cal_wrapper table.cal tr td div.Today {
  font-weight: bolder;
}

/*過去の日*/
div.cal_wrapper table.cal tr td div.backward {
  color: #CCC;
  font-weight: normal;
  background-color: #FFF;
  border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.pointer {
  cursor: pointer;
}

div.cal_wrapper table.cal tr td div.pointer:hover {
  background-color: #EEE;
}

/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
:root {
  --mm-line-height:20px;
  --mm-listitem-size:44px;
  --mm-navbar-size:44px;
  --mm-offset-top:0;
  --mm-offset-right:0;
  --mm-offset-bottom:0;
  --mm-offset-left:0;
  --mm-color-border:rgba(0, 0, 0, 0.1);
  --mm-color-button:rgba(0, 0, 0, 0.3);
  --mm-color-text:rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
  --mm-color-background:#f3f3f3;
  --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
  --mm-shadow:0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  line-height: 20px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  z-index: 0;
  overscroll-behavior: auto;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-line-height);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  text-decoration: none;
  color: inherit;
}

[dir=rtl] .mm-menu {
  direction: rtl;
}

.mm-panel {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  box-sizing: border-box;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s ease;
}

.mm-panel:after {
  height: 44px;
}

.mm-panel:not(.mm-hidden) {
  display: block;
}

.mm-panel:after {
  content: "";
  display: block;
  height: var(--mm-listitem-size);
}

.mm-panel_opened {
  z-index: 1;
  transform: translate3d(0, 0, 0);
}

.mm-panel_opened-parent {
  transform: translate3d(-30%, 0, 0);
}

.mm-panel_highest {
  z-index: 2;
}

.mm-panel_noanimation {
  transition: none !important;
}

.mm-panel_noanimation.mm-panel_opened-parent {
  transform: translate3d(0, 0, 0);
}

.mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel__content {
  padding: 20px 20px 0;
}

.mm-panels {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  position: relative;
  height: 100%;
  flex-grow: 1;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  transform: translate3d(-100%, 0, 0);
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  transform: translate3d(30%, 0, 0);
}

.mm-listitem_vertical > .mm-panel {
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px;
  transform: none !important;
}

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none;
}

.mm-listitem_opened > .mm-panel {
  display: block;
}

.mm-listitem_vertical > .mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto;
}

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent;
}

.mm-listitem_opened > .mm-listitem__btn:after {
  transform: rotate(225deg);
  right: 19px;
}

.mm-btn {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  width: 50px;
  padding: 0;
}

.mm-btn:after, .mm-btn:before {
  border: 2px solid rgba(0, 0, 0, 0.3);
  border: 2px solid var(--mm-color-button);
}

.mm-btn_next:after, .mm-btn_prev:before {
  content: "";
  border-bottom: none;
  border-right: none;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

.mm-btn_close:after, .mm-btn_close:before {
  content: "";
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px;
}

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px;
}

[dir=rtl] .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

[dir=rtl] .mm-btn_prev:before {
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
  right: auto;
}

[dir=rtl] .mm-btn_close:before {
  left: 25px;
}

[dir=rtl] .mm-btn_close:after {
  left: 18px;
}

.mm-navbar {
  min-height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: flex;
  min-height: var(--mm-navbar-size);
  border-bottom: 1px solid var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.mm-navbar > * {
  min-height: 44px;
}

@supports (position: sticky) {
  .mm-navbar_sticky {
    position: sticky;
    top: 0;
    z-index: 1;
  }
}
.mm-navbar > * {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.mm-navbar__btn {
  flex-grow: 0;
}

.mm-navbar__title {
  flex: 1 1 50%;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.mm-navbar__title:not(:last-child) {
  padding-right: 0;
}

.mm-navbar__title > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
  padding-left: 0;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title:last-child {
  padding-right: 50px;
}

[dir=rtl] .mm-navbar {
  flex-direction: row-reverse;
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listitem {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.mm-listitem:after {
  content: "";
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
}

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none;
}

.mm-listitem__btn, .mm-listitem__text {
  padding: 12px;
  display: block;
  padding: calc((var(--mm-listitem-size) - var(--mm-line-height)) / 2);
  padding-left: 0;
  padding-right: 0;
  color: inherit;
}

.mm-listitem__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  flex-grow: 1;
  flex-basis: 10%;
}

.mm-listitem__btn {
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 50px;
  position: relative;
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-listitem_selected > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
}

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px;
}

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px;
}

[dir=rtl] .mm-listitem__btn {
  padding-left: 50px;
  border-left-width: 0;
  border-left-style: none;
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-page {
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  transition: transform 0.4s ease;
  z-index: 1;
}

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative;
}

.mm-wrapper_opened .mm-page {
  min-height: 100vh;
}

.mm-wrapper_background .mm-page {
  background: inherit;
}

.mm-menu_offcanvas {
  position: fixed;
  right: auto;
  z-index: 0;
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
  display: none;
}

.mm-menu_offcanvas {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper__blocker {
  background: rgba(3, 2, 1, 0);
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.mm-wrapper_blocking {
  overflow: hidden;
}

.mm-wrapper_blocking body {
  overflow: hidden;
}

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block;
}

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative;
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%;
}

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important;
}

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important;
}

[class*=mm-menu_columns-] {
  transition-property: width;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  transition-property: width, transform;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  transform: translate3d(0, 0, 0);
}

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0;
}

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0;
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(0, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(0, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-440px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px;
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(880px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-880px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px;
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(1320px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-1320px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(500%, 0, 0);
}

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px;
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(1760px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-1760px, 0, 0);
  }
}
[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  transition-property: width, min-width, max-width, transform;
}

.mm-counter {
  color: rgba(0, 0, 0, 0.3);
  display: block;
  padding-left: 20px;
  float: right;
  text-align: right;
  color: var(--mm-color-text-dimmed);
}

.mm-listitem_nosubitems > .mm-counter {
  display: none;
}

[dir=rtl] .mm-counter {
  text-align: left;
  float: left;
  padding-left: 0;
  padding-right: 20px;
}

.mm-divider {
  position: relative;
  min-height: 20px;
  padding: 4.3px;
  background: #f3f3f3;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-height: var(--mm-line-height);
  padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-line-height)) * 0.5);
  padding-right: 10px;
  padding-left: 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.mm-divider:before {
  background: rgba(0, 0, 0, 0.05);
}

@supports (position: sticky) {
  .mm-divider {
    position: sticky;
    z-index: 2;
    top: 0;
  }
  .mm-navbar_sticky:not(.mm-hidden) ~ .mm-listview .mm-divider {
    top: var(--mm-navbar-size);
  }
}
.mm-divider:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--mm-color-background-highlight);
}

.mm-wrapper_dragging .mm-menu, .mm-wrapper_dragging .mm-slideout {
  transition-duration: 0s !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.mm-wrapper_dragging .mm-menu {
  pointer-events: none !important;
}

.mm-wrapper_dragging .mm-wrapper__blocker {
  display: none !important;
}

.mm-menu_dropdown {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
}

.mm-wrapper_dropdown .mm-slideout {
  transform: none !important;
  z-index: 0;
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2;
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none;
}

.mm-menu_tip-bottom:before, .mm-menu_tip-left:before, .mm-menu_tip-right:before, .mm-menu_tip-top:before {
  content: "";
  background: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: -1;
  transform: rotate(45deg);
}

.mm-menu_tip-left:before {
  left: 22px;
}

.mm-menu_tip-right:before {
  right: 22px;
}

.mm-menu_tip-top:before {
  top: -8px;
}

.mm-menu_tip-bottom:before {
  bottom: -8px;
}

:root {
  --mm-iconbar-size:50px;
}

.mm-menu_iconbar-left .mm-navbars_bottom, .mm-menu_iconbar-left .mm-navbars_top, .mm-menu_iconbar-left .mm-panels {
  margin-left: 50px;
  margin-left: var(--mm-iconbar-size);
}

.mm-menu_iconbar-right .mm-navbars_bottom, .mm-menu_iconbar-right .mm-navbars_top, .mm-menu_iconbar-right .mm-panels {
  margin-right: 50px;
  margin-right: var(--mm-iconbar-size);
}

.mm-iconbar {
  width: 50px;
  border-color: rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  box-sizing: border-box;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
}

.mm-menu_iconbar-left .mm-iconbar, .mm-menu_iconbar-right .mm-iconbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mm-menu_iconbar-left .mm-iconbar {
  border-right-width: 1px;
  left: 0;
}

.mm-menu_iconbar-right .mm-iconbar {
  border-left-width: 1px;
  right: 0;
}

.mm-iconbar__bottom, .mm-iconbar__top {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  box-sizing: border-box;
  display: block;
  padding: 12.5px 0;
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none;
}

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-iconpanel-size:50px;
}

.mm-panel_iconpanel-1 {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size) * 1);
}

.mm-panel_iconpanel-2 {
  width: calc(100% - 100px);
  width: calc(100% - var(--mm-iconpanel-size) * 2);
}

.mm-panel_iconpanel-3 {
  width: calc(100% - 150px);
  width: calc(100% - var(--mm-iconpanel-size) * 3);
}

.mm-panel_iconpanel-first ~ .mm-panel {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size));
}

.mm-menu_iconpanel .mm-panels > .mm-panel {
  left: auto;
  transition-property: transform, width;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  transform: unset;
}

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0;
}

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: 0.6;
  bottom: -100000px;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: 0;
  right: auto;
  transition-property: transform, width;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
  outline: 0;
}

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%;
}

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0;
}

.mm-navbars_top {
  flex-shrink: 0;
}

.mm-navbars_top .mm-navbar:not(:last-child) {
  border-bottom: none;
}

.mm-navbars_bottom {
  flex-shrink: 0;
}

.mm-navbars_bottom .mm-navbar {
  border-bottom: none;
}

.mm-navbars_bottom .mm-navbar:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--mm-color-border);
}

.mm-btn:not(.mm-hidden) + .mm-navbar__searchfield .mm-searchfield__input {
  padding-left: 0;
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
  padding-right: 0;
}

.mm-navbar__breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mm-navbar__breadcrumbs > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 6px;
}

.mm-navbar__breadcrumbs > a {
  text-decoration: underline;
}

.mm-navbar__breadcrumbs:not(:last-child) {
  padding-right: 0;
}

.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  padding-left: 0;
}

.mm-navbar_tabs > * {
  padding: 0 10px;
  border: 1px solid transparent;
}

.mm-navbar__tab_selected {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  color: var(--mm-color-text);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: var(--mm-color-border);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar_tabs {
  border-bottom: none;
}

.mm-navbars_top .mm-navbar_tabs > * {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar__tab_selected {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent;
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
  border-top: none;
}

.mm-navbars_bottom .mm-navbar_tabs > * {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
}

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent;
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-searchfield {
  height: 44px;
  display: flex;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden;
}

.mm-searchfield input {
  height: 30.8px;
  line-height: 30.8px;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.75);
}

.mm-searchfield input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * 0.7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  border: none !important;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * 0.7);
  box-shadow: none !important;
  outline: 0 !important;
  font: inherit;
  font-size: inherit;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text);
}

.mm-searchfield input::-ms-clear {
  display: none;
}

.mm-searchfield__input {
  display: flex;
  flex: 1;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
  padding: 50px 0;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
}

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel_search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-left: none !important;
}

.mm-searchfield__cancel {
  line-height: 44px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  transition: margin 0.4s ease;
}

.mm-searchfield__cancel-active {
  margin-right: 0;
}

.mm-listitem_nosubitems > .mm-listitem__btn {
  display: none;
}

.mm-listitem_nosubitems > .mm-listitem__text {
  padding-right: 10px;
}

.mm-listitem_onlysubitems > .mm-listitem__text:not(.mm-listitem__btn) {
  z-index: -1;
  pointer-events: none;
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 5;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block;
}

.mm-sectionindexer ~ .mm-panel {
  padding-right: 0;
}

.mm-sectionindexer_active {
  right: 0;
}

.mm-sectionindexer_active ~ .mm-panel {
  padding-right: 20px;
}

.mm-menu_selected-hover .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem__text, .mm-menu_selected-parent .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem__text {
  transition: background-color 0.4s ease;
}

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected:not(:hover) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-sidebar-collapsed-size:50px;
  --mm-sidebar-expanded-size:440px;
}

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
  position: relative;
}

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
  transition-property: width, transform;
}

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  box-sizing: border-box;
  min-height: 100vh;
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: flex !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 50px);
  transform: translate3d(50px, 0, 0);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size);
  min-width: 0 !important;
  max-width: 100000px !important;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none;
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible;
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none !important;
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  width: calc(100% - 440px);
  transform: translate3d(440px, 0, 0);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.mm-menu_opened .mm-menu__blocker {
  display: none;
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(0, 0, 0);
}

input.mm-toggle {
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 34px) / 2);
  border: none !important;
  background: var(--mm-color-border);
  border-radius: 34px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

input.mm-toggle:before {
  background: #f3f3f3;
}

input.mm-toggle:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 34px;
  background: var(--mm-color-background);
  transition: transform 0.2s ease;
}

input.mm-toggle:checked {
  background: #4bd963;
}

input.mm-toggle:checked:before {
  transform: translateX(24px);
}

input.mm-check {
  margin-top: 2px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  background: 0 0 !important;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 40px) / 2);
}

input.mm-check:before {
  content: "";
  display: block;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  border-left: 3px solid;
  border-bottom: 3px solid;
  border-color: var(--mm-color-text);
  opacity: 0.3;
  transform: rotate(-45deg);
  transition: opacity 0.2s ease;
}

input.mm-check:checked:before {
  opacity: 1;
}

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
  float: left;
}

.mm-menu_border-none .mm-listitem:after {
  content: none;
}

.mm-menu_border-full .mm-listitem:after {
  left: 0 !important;
}

.mm-menu_fx-menu-slide {
  transition: transform 0.4s ease;
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  transform: translate3d(-30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  transform: translate3d(0, 0, 0);
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate3d(30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  transition-property: none;
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(10000px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-10000px, 0, 0);
  }
}
.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel {
  display: flex;
  flex-direction: column;
}

.mm-menu_listview-justify .mm-panels > .mm-panel:after {
  content: none;
  display: none;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem {
  flex: 1 0 auto;
  min-height: 50px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text {
  box-sizing: border-box;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0;
}

.mm-listview_inset .mm-listitem {
  padding: 5px 0;
}

.mm-menu_multiline .mm-listitem__text {
  text-overflow: clip;
  white-space: normal;
}

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0;
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0.3;
  transition: opacity 0.4s ease 0.4s;
}

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
  background: inherit;
}

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
  background: #000;
}

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
  background: #fff;
}

.mm-menu_popup {
  transition: opacity 0.4s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  transform: translate3d(-50%, -50%, 0);
}

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0;
}

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1;
}

.mm-menu_position-right {
  left: auto;
  right: 0;
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-440px, 0, 0);
  }
}
.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  transition: transform 0.4s ease;
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1;
}

.mm-menu_position-front {
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_position-front.mm-menu_position-right {
  transform: translate3d(100%, 0, 0);
}

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu_position-top {
  transform: translate3d(0, -100%, 0);
}

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-menu_position-bottom {
  transform: translate3d(0, 100%, 0);
  top: auto;
}

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  transform: translate3d(0, 0, 0);
}

.mm-menu_shadow-page:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
}

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none;
}

.mm-menu_shadow-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-panels .mm-panels > .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: var(--mm-shadow);
}

.mm-menu_theme-white {
  --mm-color-border:rgba( 0,0,0, 0.1 );
  --mm-color-button:rgba( 0,0,0, 0.3 );
  --mm-color-text:rgba( 0,0,0, 0.7 );
  --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
  --mm-color-background:#fff;
  --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 );
}

.mm-menu_theme-dark {
  --mm-color-border:rgba( 0,0,0, 0.3 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.85 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#333;
  --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
  --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 );
}

.mm-menu_theme-black {
  --mm-color-border:rgba( 255,255,255, 0.25 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.75 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#000;
  --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
  --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
  --mm-shadow:none;
}

body.modal-open .mm-slideout {
  z-index: unset;
}

/*!
 * mburger CSS v1.3.3
 * mmenujs.com/mburger
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  --mb-button-size:60px;
  --mb-bar-width:0.6;
  --mb-bar-height:4px;
  --mb-bar-spacing:10px;
  --mb-animate-timeout:0.4s;
}

.mburger {
  background: 0 0;
  border: none;
  border-radius: 0;
  color: inherit;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  height: var(--mb-button-size);
  padding: 0 0 0 var(--mb-button-size);
  margin: 0;
  line-height: var(--mb-button-size);
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
}

.mburger b {
  display: block;
  position: absolute;
  left: calc(var(--mb-button-size) * (1 - var(--mb-bar-width)) / 2);
  width: calc(var(--mb-button-size) * var(--mb-bar-width));
  height: var(--mb-bar-height);
  border-radius: calc(var(--mb-bar-height) / 2);
  background: currentColor;
  color: inherit;
  opacity: 1;
}

.mburger b:nth-of-type(1) {
  bottom: calc(50% + var(--mb-bar-spacing));
  transition: bottom 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.mburger b:nth-of-type(2) {
  top: calc(50% - var(--mb-bar-height) / 2);
  transition: opacity 0.2s ease;
}

.mburger b:nth-of-type(3) {
  top: calc(50% + var(--mb-bar-spacing));
  transition: top 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.mm-wrapper_opened .mburger b:nth-of-type(1) {
  bottom: calc(50% - var(--mb-bar-height) / 2);
  transform: rotate(45deg);
}

.mm-wrapper_opened .mburger b:nth-of-type(2) {
  opacity: 0;
}

.mm-wrapper_opened .mburger b:nth-of-type(3) {
  top: calc(50% - var(--mb-bar-height) / 2);
  transform: rotate(-45deg);
}

.mburger--collapse b:nth-of-type(1) {
  transition: bottom 0.2s ease, margin 0.2s ease, transform 0.2s ease;
  transition-delay: 0.2s, 0s, 0s;
}

.mburger--collapse b:nth-of-type(2) {
  transition: top 0.2s ease, opacity 0s ease;
  transition-delay: 0.3s, 0.3s;
}

.mburger--collapse b:nth-of-type(3) {
  transition: top 0.2s ease, transform 0.2s ease;
}

.mm-wrapper_opened .mburger--collapse b:nth-of-type(1) {
  bottom: calc(50% - var(--mb-bar-spacing) - var(--mb-bar-height));
  margin-bottom: calc(var(--mb-bar-spacing) + var(--mb-bar-height) / 2);
  transform: rotate(45deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0.1s), calc(var(--mb-animate-timeout) + 0.3s), calc(var(--mb-animate-timeout) + 0.3s);
}

.mm-wrapper_opened .mburger--collapse b:nth-of-type(2) {
  top: calc(50% + var(--mb-bar-spacing));
  opacity: 0;
  transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + 0.2s);
}

.mm-wrapper_opened .mburger--collapse b:nth-of-type(3) {
  top: calc(50% - var(--mb-bar-height) / 2);
  transform: rotate(-45deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0.3s), calc(var(--mb-animate-timeout) + 0.3s);
}

.mburger--spin b:nth-of-type(1) {
  transition-delay: 0.2s, 0s;
}

.mburger--spin b:nth-of-type(2) {
  transition-duration: 0s;
  transition-delay: 0.2s;
}

.mburger--spin b:nth-of-type(3) {
  transition-delay: 0.2s, 0s;
}

.mm-wrapper_opened .mburger--spin b:nth-of-type(1) {
  transform: rotate(135deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + 0.2s);
}

.mm-wrapper_opened .mburger--spin b:nth-of-type(2) {
  transition-delay: calc(var(--mb-animate-timeout) + 0s);
}

.mm-wrapper_opened .mburger--spin b:nth-of-type(3) {
  transform: rotate(225deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + 0.2s);
}

.mburger--squeeze b:nth-of-type(1) {
  transition-delay: 0.1s, 0s;
}

.mburger--squeeze b:nth-of-type(2) {
  transition-delay: 0.1s;
}

.mburger--squeeze b:nth-of-type(3) {
  transition-delay: 0.1s, 0s;
}

.mm-wrapper_opened .mburger--squeeze b:nth-of-type(1) {
  transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + 0.1s);
}

.mm-wrapper_opened .mburger--squeeze b:nth-of-type(2) {
  transition-delay: calc(var(--mb-animate-timeout) + 0s);
}

.mm-wrapper_opened .mburger--squeeze b:nth-of-type(3) {
  transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + 0.1s);
}

.mburger--tornado b:nth-of-type(1) {
  transition: bottom 0.2s ease, transform 0.2s ease;
  transition-delay: 0.2s;
}

.mburger--tornado b:nth-of-type(2) {
  transition: opacity 0s ease, transform 0.2s ease;
  transition-delay: 0.1s, 0.1s;
}

.mburger--tornado b:nth-of-type(3) {
  transition: top 0.2s ease, transform 0.2s ease;
  transition-delay: 0s;
}

.mm-wrapper_opened .mburger--tornado b:nth-of-type(1) {
  transform: rotate(-135deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0s);
}

.mm-wrapper_opened .mburger--tornado b:nth-of-type(2) {
  opacity: 0;
  transform: rotate(-135deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0.4s), calc(var(--mb-animate-timeout) + 0.1s);
}

.mm-wrapper_opened .mburger--tornado b:nth-of-type(3) {
  transform: rotate(-225deg);
  transition-delay: calc(var(--mb-animate-timeout) + 0.2s);
}

/* ************************************** _
タイトル：_scroll-hint.scss
概要：scroll-hint アニメーション
_ ************************************** */
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* ************************************** _
タイトル：_modal-announcement.scss
概要：全ページ共通 モーダル表示CSSファイル
_ ************************************** */
/* =====================================
  会社統合案内モーダル
  ※ class汚染を避けるため site-merge-modal 系で統一
===================================== */
.site-merge-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-merge-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.site-merge-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.site-merge-modal__dialog {
  position: relative;
  width: min(1080px, 100% - 48px);
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(90px, 10vh, 140px) 64px clamp(70px, 10vh, 140px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  z-index: 1;
}

.site-merge-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #333333;
  background: transparent;
  cursor: pointer;
  color: transparent;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.site-merge-modal__close::before,
.site-merge-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  transform-origin: center;
}

.site-merge-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-merge-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-merge-modal__close:hover {
  opacity: 0.85;
}

.site-merge-modal__close:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.site-merge-modal__head {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.site-merge-modal__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #CB0101;
}

.site-merge-modal__eyebrow span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  font-weight: 600;
}

.site-merge-modal__eyebrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 2px;
  background-color: #CB0101;
  border-radius: 0;
  transform: translateY(-50%);
}

.site-merge-modal__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333333;
  line-height: 1.4;
}

.site-merge-modal__body {
  max-width: 840px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2.1;
  color: #333333;
  text-align: center;
}

.site-merge-modal__body p {
  margin: 0 0 14px;
}

.site-merge-modal__body p:last-child {
  margin-bottom: 0;
}

.site-merge-modal__body p span {
  font-weight: bold;
}

@media (max-width: 768px) {
  .site-merge-modal__dialog {
    width: calc(100% - 24px);
    padding: 32px 16px 28px;
    max-height: calc(100svh - 32px);
    overflow: hidden;
  }
  .site-merge-modal__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .site-merge-modal__close::before,
  .site-merge-modal__close::after {
    width: 22px;
  }
  .site-merge-modal__head {
    margin-bottom: 24px;
  }
  .site-merge-modal__eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .site-merge-modal__eyebrow span {
    padding: 0 10px;
  }
  .site-merge-modal__title {
    font-size: 18px;
    line-height: 1.4;
  }
  .site-merge-modal__body {
    max-width: none;
    font-size: 14px;
    line-height: 1.9;
    max-height: calc(100svh - 220px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }
  .site-merge-modal__body p {
    margin-bottom: 12px;
  }
  .site-merge-modal__body p br {
    display: none;
  }
}
/*# sourceMappingURL=_maps/screen.css.map */
