@charset 'Shift_JIS';

:root {
    --btob-global-color: #051978;
    --btob-global-hover-color: #6F90E9;
    --btob-global-bgcolor1: #F6F7FC;
}
/*===============================================
 Header
=================================================*/
.btob-header {
    background-color: white;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    font-size: 14px;
    font-family: none;
}
.btob-header p, .btob-header th, .btob-header td, .btob-header dt, .btob-header dd, .btob-header li, .btob-header form {
	font-size: 100%;
}
.btob-header * {
    box-sizing: border-box;
}
.btob-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}
.btob-header .header-inner {
    display: flex;
    align-items: center;
}
.btob-header img {
    max-width: 100%;
}
@media (min-width: 768px) {
    .btob-header .header-inner {
        margin-left: clamp(10px , 1.8vw , 50px);
        margin-right: clamp(10px , 1.8vw , 50px);
    }
    .btob-header .logo {
        width: 200px;
        margin-right: auto;
    }
}
.menu-inner__product-img { margin: 0; }
/* ナビゲーション */
.btob-header .header-nav .link-btn {
    font-weight: bold;
    font-size: clamp(14px, 1.2vw, 20px);
    color: black;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
    cursor: pointer;
}
@media (min-width: 768px) {
	.btob-header .header-nav {
	    display: flex;
	    gap: clamp(10px , 2vw , 48px);
	    align-items: center;
	}
    .btob-header .header-nav .link-btn {
        position: relative;
    }
    .btob-header .header-nav .link-btn::after{
        content: '';
        width: 0;
        height: 3px;
        display: block;
        background-color: #0E07A4;
        position: absolute;
        bottom: -0.83vw;
        left: -10%;
        transition: 0.3s width ease-in-out;
    }
    .btob-header .header-nav .link-btn.is-active,
    .btob-header .header-nav .link-btn:hover {
        color:#0E07A4;
    }
    .btob-header .header-nav .link-btn.is-active::after,
    .btob-header .header-nav .link-btn:hover::after{
        width: 120%;
    }
}
@media (max-width: 767px) {
    .btob-header .nav {
      display: none;
      position: fixed;
      top: 69px;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      z-index: 1000;
      overflow: auto;
    }
    .btob-header .nav.is-open {
        display: block;
    }
    .btob-header .nav .header-nav>li:first-child{
        border-top: 1px solid #B9B9B9;
    }
    .btob-header .nav .header-nav>li + li {
        border-top: 1px solid #B9B9B9;
    }
    .btob-header .header-nav .link-btn {
        padding: 5.33vw 6.4vw;
        font-size: 4.8vw;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-weight: 500;
        text-align: left;
        position: relative;
        display: block;
        width: 100%;
        font-family: "Yu Gothic Medium", YuGothic, sans-serif;
    }
    .btob-header .header-nav .link-btn:not(.hover-btn)::after{
        content: '';
        width: 10px;
        height: 10px;
        display: block;
        border-top: 2px solid #033824;
        border-right: 2px solid #033824;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%) rotate(45deg);
    }
    .btob-header .header-nav .link-btn.hover-btn::before,
    .btob-header .header-nav .link-btn.hover-btn::after {
        content: '';
        width: 14px;
        height: 2px;
        display: block;
        background-color: #033824;
        position: absolute;
        top: 50%;
        right: 20px;
    }
    .btob-header .header-nav .link-btn.hover-btn::after {
        transform: rotate(90deg);
        transition: 0.3s transform ease-in-out;
    }
    .btob-header .header-nav .link-btn.hover-btn.is-active:after{
        transform: rotate(0);
        transition: 0.3s transform ease-in-out;
    }
    .header-nav-menu {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        background-color: #F6F7FC;
    }
    .header-nav-menu .menu-inner {
        padding: 1em;
    }
    .btob-header__info {
        margin-left: auto;
    }
    .btob-header__info-tel {
        font-size: 0;
        position: relative;
        text-align: center;
        background: url(/cms/images/common/icon_tell_blue.png) center 15% no-repeat;
        background-size: auto 16px;
        transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
        padding: 0;
        display: flex;
        text-decoration: none;
        color: #111;
        flex-direction: column;
        align-items: center;
        aspect-ratio: 1;
        height: 45px;
    }
     .btob-header__info-tel::after {
        content: "TEL";
        margin-top: auto;
        font-size: 12px;
        font-weight: bold;
        color: black;
        line-height: 1;
    }
}
/* ナビゲーション:見出し */
.btob-header .menu-inner__title {
  text-align: justify;
  color: var(--btob-global-color);
  border-bottom: 1px solid var(--btob-global-color);
  line-height: 1.8;
  font-weight: bold;
  font-size: clamp(14px,4.4vw,28px);
  margin-bottom: 30px;
}
.menu-inner__subtitle {
    font-weight: 600;
    font-size: 20px;
}
/* ナビゲーション:間隔 */
.btob-header .menu-inner__section {
    overflow: hidden;
}
.btob-header .menu-inner__section + .menu-inner__section {
  margin-top: 15px;
}
/* ナビゲーション:バナーボタン */
.btob-header .menu-inner__products {
  display: flex;
  align-items: normal;
}
.btob-header .menu-inner__products .swiper-slide {
    height: auto;
}
.btob-header .menu-inner__products .menu-inner__product-item a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: white;
  height: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
  padding: clamp(5px , 2vw , 20px);
  border-radius: 10px;
  color: black;
  font-weight: bold;
}
/* ナビゲーション:ボタン */
.btob-header .menu-inner__problems {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0.2em;
}
.btob-header .menu-inner__problems .problem-item a {
  display: inline-block;
  background: var(--btob-global-bgcolor1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
  transition: 0.3s all;
  padding: 20px 2em 20px 1em;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  position: relative;
}
.btob-header .menu-inner__problems .problem-item a::before {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 100%;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: var(--btob-global-color);
}
.btob-header .menu-inner__problems .problem-item a::after {
	content: '';
	width: 4px;
	height: 4px;
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 3px);
	right: 18px;
}
@media (min-width: 768px) {
	.btob-header .menu-inner__products .menu-inner__product-item a:hover {
		box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.38);
	}
	.btob-header .menu-inner__problems .problem-item a:hover {
		background-color: var(--btob-global-color);
		color: white;
	}
	.btob-header .menu-inner__problems .problem-item a:hover::before {
		background-color: white;
	}
	.btob-header .menu-inner__problems .problem-item a:hover::after {
		border-color: var(--btob-global-color);
	}
}
@media (max-width: 767px) {
    .btob-header .menu-inner__problems {
      gap: 10px;
    }
    .btob-header .menu-inner__problems .problem-item,
    .btob-header .menu-inner__problems .problem-item a {
        width: 100%;
    }
    .btob-header .menu-inner__problems .problem-item a {
        background-color: white;
        padding: 1em;
        font-size: 14px;
    }
}
/* ナビゲーション:リンクボタン */
.menu-inner__footer-link {
  text-align: right;
  margin-top: 30px;
}
.menu-inner__footer-link a {
  color: var(--btob-global-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.menu-inner__footer-link a::after {
  content: "";
  width: 33px;
  height: 16px;
  background: url(/cms/images/common/icon_arrow_line_blue.png) center / auto 100% no-repeat;
  display: inline-block;
  align-items: baseline;
}
@media (min-width: 768px) {
  .menu-inner__footer-link a:hover {
	  color: var(--btob-global-hover-color);
  }
  .btob-header .header-nav .header-nav-menu {
    transition: .3s ease;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.70);
    position: fixed;
    top: 100px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 10;
  }
  .btob-header .header-nav .header-nav-menu .menu-inner {
    background-color: white;
    padding: clamp(30px , 2vw , 60px) clamp(60px , 5vw , 90px);
    width: 90%;
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-size: 18px;
    max-height: calc(100vh - 200px);
    overflow: auto;
  }
  .btob-header .header-nav .close-btn {
    appearance: none;
    background-color: transparent;
    outline: 0;
    border: 0;
    position: absolute;
    right: clamp(60px , 3vw , 60px);
    background: url(/cms/images/common/icon_closebtn.png) right center / auto 100% no-repeat;
    padding-right: 2.2em;
    cursor: pointer;
  }
  .btob-header .header-nav .is-hover .header-nav-menu.is-hover {
    opacity: 1;
    visibility: visible;
  }
}
/* ナビゲーション:製品 */
.btob-header .nav-products .menu-inner__products {
  justify-content: center;
  gap: clamp(20px, 3vw ,100px);
  padding: 0 0.2em;
}
.btob-header .nav-products .menu-inner__products img {
    max-width: 80%;
}
@media (max-width: 767px) {
    .btob-header .nav-products .menu-inner__products .is-text {
        font-size: clamp(10px,3vw,20px);
        text-align: center;
    }
}
/* ナビゲーション:お役立ち資料 */
.btob-header .nav-useful .menu-inner__slider_wrap.swiper {/* overflow: hidden; */position: relative;padding: .5em;}
.btob-header .nav-useful .menu-inner__products.is_slider:not(.swiper-wrapper) {
    padding: 20px 1em;
}
.btob-header .nav-useful .menu-inner__products.is_slider .menu-inner__product-item:not(.swiper-slide) {
    width: 100%;
    min-width: 300px;
}
.btob-header .nav-useful .menu-inner__products.is_slider .menu-inner__product-item .is-text {
    font-weight: normal;
    text-align: justify;
    font-size: 14px;
}
.btob-header .menu-inner__slider_wrap .swiper-button-next,
.btob-header .menu-inner__slider_wrap .swiper-button-prev {
    background: transparent;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
}
.btob-header .menu-inner__slider_wrap .swiper-button-next {
    right: 0;
}
.btob-header .menu-inner__slider_wrap .swiper-button-prev {
    left: 0;
}
.btob-header .menu-inner__slider_wrap .swiper-button-next::before,
.btob-header .menu-inner__slider_wrap .swiper-button-prev::before {
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--btob-global-color);
}
.btob-header .menu-inner__slider_wrap .swiper-button-next::after,
.btob-header .menu-inner__slider_wrap .swiper-button-prev::after {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.btob-header .menu-inner__slider_wrap .swiper-button-prev::after {
    transform: rotate(-135deg);
    left: 20%;
}
.btob-header .menu-inner__slider_wrap .swiper-button-next::after {
    right: 20%;
}
/* ナビゲーション:導入事例 */
.menu-flex-wrap .article-list .menu-inner__products {
    flex-direction: column;
    gap: 30px;
    padding: 0.2em;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item,
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item a {
    width: 100%;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item a {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .menu-inner__product-img {
    flex: 1;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .product-link-detial {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
    flex: 1.4;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .company-name {
    display: flex;
    gap: 10px;
    align-items: center;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .company-name .name-logo { width: 30%; }
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .detail-link-btn {
    text-align: right;
    font-size: 16px;
    font-weight: normal;
    padding-right: 30px;
    background:  url(/cms/images/common/icon_arrow_blue.png) center right / auto 100% no-repeat;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item .tag-list .tag-item {
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 0.5em;
    font-size: 12px;
}
.menu-nav-btn .menu-inner__subtitle {
    border-bottom: 1px solid #B9B9B9;
    padding: 10px;
}
.menu-nav-btn ul li a {
    font-size: 24px;
    padding: 20px 10px 20px 20px;
    display: block;
    color: #7C7C7C;
    font-weight: 600;
    position: relative;
    overflow: visible;
}
.menu-nav-btn ul li.active a {
    background-color: #296CFF;
    color: white;
}
.menu-nav-btn ul li.active a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -15px;
  background: #296cff;
  height: 30px;
  width: 20px;
   clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.menu-nav-btn ul +.menu-inner__subtitle {
    border-top: 1px solid #B9B9B9;
    padding: 20px 10px;
}
.menu-nav-btn ul li + li {
    border-top: 1px solid #B9B9B9;
}
.menu-nav-btn ul:last-child li:last-child {
    border-bottom: 1px solid #B9B9B9;
}
.menu-flex-wrap .menu-nav-btn .link-btn-blue {
    display: block;
    padding: 20px 30px 20px 20px;
    border-radius: 0.6em;
    background: linear-gradient(180deg,rgba(50, 74, 232, 1) 0%, rgba(29, 43, 136, 1) 75%, rgba(16, 26, 93, 1) 100%);
    color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.38);
    position: relative;
    font-weight: bold;
    font-size: 24px;
    margin: 0 0 35px;
    transition: .3s all;
}
.menu-flex-wrap .menu-nav-btn .link-btn-blue::after {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    margin: auto;
}
@media (min-width: 768px) {
    .menu-flex-wrap {
        display: flex;
        gap: 40px;
    }
    .menu-flex-wrap .menu-nav-btn {
        flex: 1;
    }
    .menu-flex-wrap .article-list {
        flex: 2;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap:not(.active) {
        display: none;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap.active {
        flex-direction: column;
        gap: 30px;
    }
    .menu-flex-wrap .menu-nav-btn .link-btn-blue:hover {
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.38);
        background: linear-gradient(0deg,rgba(50, 74, 232, 1) 0%, rgba(29, 43, 136, 1) 75%, rgba(16, 26, 93, 1) 100%);
    }
}
@media (max-width: 767px) {
    .menu-flex-wrap > * + * {
        margin-top: 20px;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap .handle-title {
        cursor: pointer;
        text-align: justify;
        margin: 0 0 10px;
        padding: 2.13vw 4.27vw 2.13vw 0;
        font-size: 4.267vw !important;
        font-weight: bold;
        position: relative;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap .handle-title::before,
    .menu-flex-wrap .article-list .menu-inner--wrap .handle-title::after {
        content: '';
        width: 14px;
        height: 2px;
        display: block;
        background-color: #033824;
        position: absolute;
        top: 50%;
        right: 0;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap .handle-title::after {
        transform: rotate(90deg);
        transition: 0.3s transform ease-in-out;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap .handle-title.active::after {
        transform: rotate(0);
        transition: 0.3s transform ease-in-out;
    }
    .menu-flex-wrap .article-list .menu-inner--wrap.active {
        display: block;
    }
    .menu-flex-wrap .article-list .menu-inner__products {
        flex-wrap: nowrap;
        overflow: auto;
        white-space: nowrap;
        flex-direction: row;
        gap: 0 30px;
    }
    .menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item a {
        flex-direction: column;
    }
    .menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item,
    .menu-flex-wrap .article-list .menu-inner__products .menu-inner__product-item a {
        width: 78vw;
        white-space: normal;
        padding: 0.6em;
        font-size: 14px;
    }
    .menu-flex-wrap .article-list .menu-inner_detail {
        height: 0;
        overflow: hidden;
    }
	.menu-flex-wrap .menu-nav-btn .link-btn-blue {
        padding: 10px 20px 10px 10px;
		font-size: 20px;
	}
    .menu-nav-btn ul {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        white-space: nowrap;
        flex-direction: row;
        gap: 0 10px;
    }
    .menu-nav-btn ul li a {
        font-size: 14px;
        padding: 10px;
        overflow: visible;
        margin-bottom: 10px;
    }
    .menu-nav-btn ul li+li,
    .menu-nav-btn ul:last-child li:last-child {
        border: 0;
    }
    .menu-nav-btn ul li.active a::after {
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        height: 10px;
        top: auto;
        bottom: -8px;
        margin: auto;
        right: 0;
        left: 0;
    }
}
/* 電話番号 */
@media (min-width: 768px) {
  .btob-header .header-inner>.btob-header__info{
    margin-left: clamp(10px , 4.1vw , 50px);
  }
  .btob-header__info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .btob-header__info-tel{
    padding-left: clamp(16px, 3vw, 35px);
    color: var(--btob-global-color);
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: bold;
    text-align: left;
    position: relative;
    line-height: 1.5em;
    background: url(/cms/images/common/icon_tell_blue.png) center left / auto clamp(12px, 3vw, 25px) no-repeat;
  }
}
#header .btob-header__request:visited, #header .btob-header__request:link, #header .btob-header__info-tel {
  color: var(--btob-global-color);
}
/* 電話番号:リンク */
.btob-header__branch a,
.btob-header__branch a:hover {
  color: #111;
}
@media (min-width: 768px) {
  .btob-header__branch a:hover {
    opacity: 0.8;
    transition: 0.3s;
  }
}
/* 資料請求 */
.btob-header .header-inner>.btob-header__info-request {
    margin-left: clamp(10px , 3vw , 30px);
    margin-right: 10px;
}
.btob-header__info-request a {
    max-width: 157px;
    min-height: 44px;
    padding: 0 clamp(10px, 1.5vw, 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btob-global-color);
    font-size: clamp(14px, 1rem , 20px);
    font-weight: bold;
    border: 2px solid var(--btob-global-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btob-header__info-request a::after {
    background: var(--btob-global-color);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.btob-header__info-request a:hover {
    color: #FFF;
}
.btob-header__info-request a:hover::after {
    transform: scale(1, 1);
}
.global-header__request a:visited {
    color: var(--btob-global-color);
}
/* お問い合わせ */
@media (min-width: 768px) {
.btob-header__info-contact a {
  max-width: 157px;
  min-height: 44px;
  padding: 0 clamp(10px, 1.5vw, 35px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 1rem , 20px);
  font-weight: bold;
  border: 2px solid #EE5917;
  border-radius: 30px;
  background-color: #EE5917;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btob-header__info-contact a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btob-header__info-contact a:hover {
  color: #111;
}
.btob-header__info-contact a:hover:after {
  transform: scale(1, 1);
}
}
@media (max-width: 767px) {
    .btob-header__info-contact {
        font-size: 0;
        margin-left: 10px;
    }
    .btob-header__info-contact a {
        display: block;
        position: relative;
        text-align: center;
        background: url(/cms/sp/img/common/ico_hd_contact.png) center 14% no-repeat;
        background-size: 20px 16px;
        transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
        padding: 0;
        display: flex;
        text-decoration: none;
        color: #111;
        flex-direction: column;
        align-items: center;
        height: 45px;
    }
    .btob-header__info-contact a::after {
        content: "CONTACT";
        margin-top: auto;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    }
    .btob-header__menubtn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }
    .btob-header__menubtn .drawer-hamburger {
        position: static;
    }
    .btob-header__menubtn .drawer-hamburger::after {
        content: "MENU";
        position: absolute;
        left: 50%;
        margin: 0 0 0 -1.3em;
        font-size: 9px;
        font-family: 'Roboto', sans-serif;
        transition: .2s;
        letter-spacing: -0.07em;
        color: #000;
    }
    /* メニューアイコン */
    .drawer-toggle {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        background-color: rgba(255, 255, 255, 0.7);
        border: none;
        border-radius: 0 0 0 10px;
        color: #111;
        z-index: 100;
        height: 45px;
    }
    .drawer-toggle-icon {
        width: 6.4vw;
        aspect-ratio: 1;
        display: block;
        position: relative;
    }
    .drawer-toggle-icon::before,
    .drawer-toggle-icon::after {
        content: "";
        width: 100%;
        height: 2px;
        display: block;
        background: #033824;
        border-radius: 1px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .drawer-toggle:not(.is-active) .drawer-toggle-icon::after {
        margin-top: auto;
    }
    .drawer-toggle:not(.is-active) .drawer-toggle-icon::before {
        margin-top: auto;
        margin-bottom: 5px;
    }

    button.drawer-toggle::after {
        content: "MENU";
        font-size: 12px;
        font-weight: bold;
        display: block;
        margin-top: auto;
        line-height: 1;
    }
    .drawer-toggle.is-active .drawer-toggle-icon::before {
        transform: rotate(45deg);
        transition: 0.3s transform ease-in-out;
    }
    .drawer-toggle.is-active .drawer-toggle-icon::after {
        transform: rotate(-45deg);
        transition: 0.3s transform ease-in-out;
    }
    .btob-header .header-inner {
        margin-left: 10px;
        margin-right: 10px;
    }
    .btob-header .header-inner .logo {
        max-width: 40%;
    }
}
@media (min-width: 768px) {
  .btob-header .is-sp { display: none!important; }
}
@media (max-width: 767px) {
  .btob-header .is-pc { display: none!important; }
}