@charset "UTF-8";

:root {
  /* color */
  --color-bk: #1C1C1C;
  --color-key: #11477D;
  --color-blue: #69D1F0;
  --color-gray01: #F4F6F8;
  --color-gray02: #CCC;
  --color-gray03: #7E7E7E;
  --color-line: #E8E8E8;
  --color-link: #04AADB;
  /* Gradient */
  --grad: linear-gradient(90deg, #11477d 0%, #3ea5cc 100%);
  --grad-mds: linear-gradient(90deg, #11477d 0%, #69D1F0 100%);
  /* font */
  --en: "Montserrat", sans-serif;
}

body {
  color: var(--color-bk);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: min(3.721vw,16px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  position: relative;
  transition: .3s all;
}
#wrap {
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  margin: 0;
}
figure {
  margin: 0;
}
@media screen and (max-width: 767px) {
  body.active #wrap{
    position: fixed;
    width: 100%;
  }
  .-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .-sp {
    display: none;
  }
}

/*--------------------------------------------------*/

/* header

/*--------------------------------------------------*/

.b-header {
  display: flex;
  width: 100%;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: .5s ease-out;
  transform: translateY(0);
}
.b-header.hide {
  transform: translateY(-110%);
  transition: .3s ease-out;
}
.b-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  filter: drop-shadow(0 2px 2px rgb(0 0 0 / .1));
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.b-header li {
  display: block;
}
@media screen and (max-width: 767px) {
  .b-header {
    height: 55px;
  }
  main {
    margin-top: 55px;
  }
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 80px;
  }
}

/* siteName 
----------------------------------------------------*/
.b-header .b-siteName {
  margin: 0;
  line-height: 1;
}
.b-header .b-siteName span,
.b-header .b-siteName a {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  body .b-header::after {
    content: "";
    display: block;
    width: 100dvw;
    height: 100dvh;
    background: rgb(0 0 0 / .5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    opacity: 0;
    transition: .3s all;
  }
  body:not(.active) .b-header::after {
    pointer-events: none;
    visibility: hidden;
  }
  body.active .b-header::after {
    opacity: 1;
  }
  .b-header .b-siteName {
    width: min(37.21vw,160px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
  }
}
@media screen and (min-width: 768px) {
  .b-header .b-siteName {
    width: min( 18vw,172px);
    margin-left: 20px;
  }
}

/* glovalNavigation 
----------------------------------------------------*/
/* layout */

@media screen and (max-width: 767px) {
  .b-glovalNavigation {
    position: fixed;
    width: 69.767vw;
    max-width: 300px;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: .5s all;
    background: #fff;
  }
  .b-glovalNavigationInner {
    height: 100dvh;
    overflow: hidden auto;
  }
  body.active .b-glovalNavigation {
    transform: translateX(0);
  }
  body:not(.active) .b-glovalNavigation {
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 768px) {
  .b-glovalNavigationInner,
  .b-gnavInner {
    display: flex;
  }
  .b-glovalNavigation {
    margin-left: auto;
    margin-right: 10px;
  }
  .b-glovalNavigationInner {
    align-items: center;
  }
}

/* childBox layout
---------------------------*/
@media screen and (max-width: 767px) {
  .b-gnav .b-childBox:not(.active),
  .b-gnav .b-3rdLinks:not(.active) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-item {
    position: relative;
  }
  .b-gnav .b-childBox,
  .b-gnav .b-3rdLinks {
    position: absolute;
    top: 100%;
    z-index: 1;
    opacity: 0;
    transform: .3s all;
  }
  .b-gnav .b-childBox {
    left: calc(50% - min(1.75vw,20px));
    transform: translateX(-50%);
    background: var(--color-gray01);
    filter: drop-shadow(0 3px 6px rgb(0 0 0 / .1));
    border-radius: 0 0 10px 10px;
    padding: 30px min(2vw,30px) 10px;
    transition: .3s all;
  }
  .b-gnav .b-childBox:not(.active),
  .b-gnav .b-3rdLinks:not(.active) {
    pointer-events: none;
    visibility: hidden;
  }
  .b-gnav .b-childBox.active {
    opacity: 1;
  }
  .b-gnav .b-3rdLinks.active {
    opacity: 1;
  }
}

/* linkItem
---------------------------*/
.b-gnav .b-navButton {
  display: flex;
  align-items: center;
  font-size: min(4.186vw,18px);
  font-weight: 700;
  line-height: 1;
  transition: .3s all;
}
.b-gnav .b-navButton.current {
  color: var(--color-blue);
}
.b-gnav .b-linkItem,
.b-gnav .b-subItem a {
  display: flex;
  align-items: center;
  position: relative;
}
.b-gnav .b-linkItem::after,
.b-gnav .b-subItem a::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  border-top: 2px solid var(--color-gray02);
  border-right: 2px solid var(--color-gray02);
  position: absolute;
  top: 50%;
  transform-origin: center center;
  transform: translateY(-50%) rotate(45deg);
}
.b-gnav .b-subItem.m-blank > a::after {
  width: 1em;
  background: url(../images/ic-blank.svg) center center / contain no-repeat;
  border-width: 0;
  transform: translateY(-50%) rotate(0);
  right: 15px;
}
@media screen and (max-width: 767px) {
  .b-gnav .b-navButton {
    height: 4em;
    padding-left: min(4.651vw,20px);
    border-bottom: 1px solid var(--color-line);
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .b-gnav .b-navButton button {
    aspect-ratio: 1/1;
    width: min(6.977vw,30px);
    margin-right: min(2.325vw,10px);
    position: relative;
  }
  .b-gnav .b-navButton button::before,
  .b-gnav .b-navButton button::after {
    content: "";
    width: 50%;
    height: 2px;
    background: var(--color-key);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: .3s all;
  }
  .b-gnav .b-navButton button::after {
    transform: translate(-50%,-50%) rotate(-90deg);
  }
  .b-gnav .b-navButton.active button::after {
    transform: translate(-50%,-50%) rotate(0);
  }
  .b-gnav .b-navButton .e-arw {
    display: block;
    aspect-ratio: 1/1;
    width: min(6.977vw,10px);
    margin-right: 20px;
    border-top: 2px solid var(--color-key);
    border-right: 2px solid var(--color-key);
    transform-origin: center center;
    transform: rotate(45deg)
  }
  .b-gnav .b-linkItem,
  .b-gnav .b-subItem a {
    justify-content: space-between;
    padding-left: min(4.651vw,20px);
  }
  .b-gnav .b-linkItem::after,
  .b-gnav .b-subItem a::after {
    right: 20px;
    width: min(6.977vw,4px);
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-navButton {
    height: 80px;
    font-size: 14px;
    margin-right: min(2.5vw,40px);
    transition: .3s all;
  }
  .b-gnav .b-navButton button,
  .b-gnav .b-navButton .e-arw {
    display: none;
  }
  .b-gnav .b-navButton:hover,
  .b-gnav .b-navButton.active {
    color: var(--color-blue);
  }
  .b-gnav .b-linkItems .b-linkItem,
  .b-gnav .b-subLink .b-subItem a {
    padding: 1.1em 1.5em 1.1em 20px;
    transition: .3s all;
  }
  .b-gnav .b-linkItems .b-linkItem:hover,
  .b-gnav .b-subLink .b-subItem a:hover,
  .b-gnav .b-subLink .b-subItem > a.active {
    background: var(--color-key);
    color: #fff;
  }
  .b-gnav .b-linkItems .b-linkItem::after,
  .b-gnav .b-subLink .b-subItem a::after {
    width: 5px;
    border-color: var(--color-key);
  }
  .b-gnav .b-subItem.m-blank > a::after {
    width: 15px;
    right: 8px;
    background: url(../images/ic-blank-bl.svg) center center / contain no-repeat;
  }
  .b-gnav .b-subItem.m-blank > a:hover::after {
    background: url(../images/ic-blank-w.svg) center center / contain no-repeat;
  }
  .b-gnav .b-linkItems .b-linkItem:hover::after,
  .b-gnav .b-subLink .b-subItem a:hover::after,
  .b-gnav .b-subLink .b-subItem > a.active::after{
    border-color: #fff;
  }
  .b-gnav .b-linkItems .b-linkItem,
  .b-gnav .b-subLink .b-subItem {
    color: var(--color-key);
  }
  .b-gnav .b-item.m-casestudy,
  .b-gnav .b-item.m-blog,
  .b-gnav .b-item.m-information {
    display: none;
  }
}

/* linkItems */
.b-gnav .b-linkItem {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .b-gnav .b-linkItem {
    height: 4em;
    font-size: min(3.256vw,14px);
    border-bottom: 1px solid var(--color-line);
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-linkItems {
    display: flex;
    align-items: flex-start;
  }
  .b-gnav .b-linkItem {
    width: 240px;
    font-size: 15px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .b-gnav .b-linkItem::after {
    right: 18px;
  }
}

/* subItems*/
.b-gnav .b-subItem a {
  line-height: 1.5;
}
.b-gnav .b-subItem .e-sub {
  display: block;
  font-size: .8em;
  margin-left: -.55em;
}
@media screen and (max-width: 767px) {
  .b-gnav .b-subLink {
    padding: 10px 0 15px;
    border-bottom: 1px solid var(--color-line)
  }
  .b-gnav .b-subItem a {
    padding-top: .5em;
    padding-bottom: .5em;
    font-size: min(3.256vw,14px);
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-subLink {
    margin-top: 5px;
  }
  .b-gnav .b-subItem {
    position: relative;
  }
  .b-gnav .b-subItem a {
    width: 200px;
    font-size: 13px;
    margin-left: 20px;
    border-radius: 10px;
    padding-left: 10px;
  }
  .b-gnav .b-subItem a::after {
    right: 10px;
  }
}

/* 3rdLinks */
@media screen and (max-width: 767px) {
  .b-gnav .b-3rdLinks {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--color-line);
  }
  .b-gnav .b-3rdLinks .b-3rdItem a {
    font-size: min(3.023vw,13px);
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-3rdLinks {
    padding-top: .5em;
    padding-bottom: .8em;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgb(0 0 0 / .1));
    top: 85%;
    left: 3em;
  }
  .b-gnav .b-3rdLinks .b-3rdItem {
    font-size: 13px;
  }
  .b-gnav .b-3rdLinks .b-3rdItem a {
    width: 180px;
    margin-left: 0;
    border-radius: 0;
    padding-top: .5em;
    padding-bottom: .5em;
    color: var(--color-bk);
  }
  .b-gnav .b-3rdLinks .b-3rdItem a::after {
    border-color: var(--color-gray02);
  }
}

/* products **********************/
@media screen and (max-width: 767px) {
  .b-gnav .b-item.m-products .b-childBox.active {
    display: flex;
    flex-direction: column-reverse;
  }
  .b-gnav .b-item.m-products .b-subLink {
    padding: 0;
  }
  .b-gnav .b-item.m-products .b-subItem {
    border-bottom: 1px solid var(--color-line);
  }
  .b-gnav .b-item.m-products .b-subItem a {
    padding-left: min(2.326vw,10px);
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a::after {
    display: none;
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a button {
    position: relative;
    aspect-ratio: 1/1;
    margin-right: min(3.488vw,15px);
    width: 1em;
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a button::before,
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a button::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gray02);
    position: absolute;
    top: 50%;
    transition: .3s all;
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a button::before {
    transform: translateY(-50%);
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a button::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .b-gnav .b-item.m-products .b-subItem:not(.m-noHas) > a.active button::after {
    transform: translateY(-50%) rotate(0);
  }
  .b-gnav .b-item.m-products .b-subLink .e-img {
    width: 40px;
    margin-right: min(2.326vw,10px);
    border-radius: 6px;
    overflow: hidden;
  }
  .b-gnav .b-item.m-products .b-subLink .e-txt {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .b-gnav .b-item.m-products .b-childBox {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 30px;
  }
  .b-gnav .b-item.m-products .b-subLink {
    width: 460px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .b-gnav .b-item.m-products .b-subLink .e-img {
    display: none;
  }
  .b-gnav .b-item.m-products .b-subLink .b-subItem > a {
    width: 220px;
    height: 100%;
  }
  .b-gnav .b-item.m-products .b-subLink .b-subItem:nth-child(2n-1) a {
    margin-left: 0;
  }
  .b-gnav .b-item.m-products .b-3rdLinks a {
    width: 220px;
  }
  .b-gnav .b-item.m-products .b-subLink .b-subItem:nth-child(2n) .b-3rdLinks {
    left: calc(20px + 3em);
  }
}

/* productsNav */

@media screen and (max-width: 767px) {
  .b-productsNav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-productsNav {
    width: 300px;
    position: absolute;
    z-index: 5;
  }
  .b-productsNav .e-mds {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    background: var(--color-gray01);
    border-bottom: var(--color-line);
    padding: 1em;
  }
  .b-productsNav .b-subLink {
    padding: 0;
  }
  .b-productsNav .b-subItem {
    display: block;
    border-bottom: 1px solid var(--color-line);
    position: relative;
  }
  .b-productsNav .b-subItem > a {
    display: flex;
    align-items: center;
    background: #fff;
    height: 60px;
    padding-left: min(2.326vw,10px);
    position: relative;
    line-height: 1.5;
    transition: .3s all;
  }
  .b-productsNav .b-subItem > a:hover,
  .b-productsNav .b-subItem > a.active {
    background: var(--color-gray01);
  }
  .b-productsNav .b-subLink .e-img {
    width: 40px;
    min-width: 40px;
    margin-right: min(2.326vw,10px);
    border-radius: 6px;
    overflow: hidden;
  }
  .b-productsNav .b-subLink .e-txt {
    margin-left: 0;
    margin-right: auto;
    font-size: 14px;
  }
  .b-productsNav .b-subItem > a .e-sub {
    display: block;
    font-size: 12px;
    margin-left: -.5em;
    letter-spacing: -.01em;
  }
  .b-productsNav .b-subItem > a button,
  .b-productsNav .b-subItem > a .e-arw,
  .b-productsNav .b-subItem > a .e-blank {
    display: block;
    aspect-ratio: 1/1;
    width: 13px;
    position: relative;
    margin-right: 15px;
  }
  /* button */
  .b-productsNav .b-subItem > a button::before,
  .b-productsNav .b-subItem > a button::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gray02);
    position: absolute;
    top: 50%;
    transform-origin: center center;
    transform: translate(0,-50%);
    transition: .3s all;
  }
  .b-productsNav .b-subItem > a button::after {
    transform: translate(0,-50%) rotate(90deg);
  }
  .b-productsNav .b-subItem.active > a button::after {
    transform: translate(0,-50%) rotate(0);
  }
  /* e-arw */
  .b-productsNav .b-subItem > a .e-arw {
    width: 6px;
    border-top: 2px solid var(--color-gray02);
    border-right: 2px solid var(--color-gray02);
    transform: rotate(45deg);
  }
  /* e-blank */
  .b-productsNav .b-subItem > a .e-blank {
    width: 14px;
    background: url(../images/ic-blank.svg) center center / contain no-repeat;
  }
  
  /* 3rdLinks */
  .b-productsNav .b-3rdLinks {
    min-width: 250px;
    padding: 10px 0;
    position: absolute;
    z-index: 1;
    left: calc(100% - 20px);
    top: 10px;
    background: #fff;
    border-radius: 10px;
    filter: drop-shadow(0 3px 6px rgb(0 0 0 / .16));
    opacity: 0;
    transform: .3s all;
  }
  .b-productsNav .b-3rdLinks:not(.active) {
    pointer-events: none;
    visibility: hidden;
  }
  .b-productsNav .b-3rdLinks.active {
    opacity: 1;
  }
  .b-productsNav .b-3rdItem {
    display: block;
  }
  .b-productsNav .b-3rdItem a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: .5em 1em .5em 20px;
    font-size: 13px;
    line-height: 1.5;
    transition: .3s all;
  }
  .b-productsNav .b-3rdItem a:hover {
    background: var(--color-gray01);
  }
  .b-productsNav .b-3rdItem a::after {
    content: "";
    aspect-ratio: 1/1;
    width: 4px;
    margin-left: auto;
    margin-right: calc(15px);
    border-top: 2px solid var(--color-gray02);
    border-right: 2px solid var(--color-gray02);
    transform: translateX(1em) rotate(45deg);
  }
}


/* industrial **********************/
@media screen and (min-width: 768px) {
  .b-gnav .b-item.m-industrial .b-childBox {
    display: flex;
    flex-wrap: wrap;
    width: calc(130px*3 + 20px*2 + 60px);
  }
  .b-gnav .b-item.m-industrial .b-linkItem {
    width: 130px;
  }
  .b-gnav .b-item.m-industrial .b-linkItems {
    margin-left: 20px;
  }
  .b-gnav .b-item.m-industrial .b-linkItems:nth-child(3n+1) {
    margin-left: 0;
  }
  .b-gnav .b-item.m-industrial .b-linkItem::after {
    right: 10px;
  }
}


/* contactLinksontact
---------------------------*/
.b-contactLinks a {
  display: inline-flex;
}
.b-contactLinks .e-txt {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.b-contactLinks .e-img {
  display: block;
  aspect-ratio: 1/1;
}
.b-contactLinks .b-catalog .e-img {
  background: url(../images/ic-catalog-w.svg) center center / contain no-repeat;
}
.b-contactLinks .b-contact .e-img {
  background: url(../images/ic-mail-w.svg) center center / contain no-repeat;
}
@media screen and (max-width: 767px) {
  .b-header > .b-contactLinks {
    display: flex;
    margin-left: auto;
  }
  .b-header > .b-contactLinks a {
    display: flex;
    aspect-ratio: 1/1;
    width: min(15vw,55px);
    align-items: center;
    justify-content: center;
  }
  .b-header > .b-contactLinks .e-img {
    width: 55%;
  }
  .b-header > .b-contactLinks .b-catalog .e-img {
    background: url(../images/ic-catalog-bl.svg) center center / contain no-repeat;
  }
  .b-header > .b-contactLinks .b-contact .e-img {
    background: url(../images/ic-mail-bl.svg) center center / contain no-repeat;
  }
  .b-glovalNavigationInner .b-contactLinks {
    display: flex;
    padding: 20px min(4.651vw,20px);
    background: var(--color-gray01);
    color: #fff;
    text-align: center;
  }
  .b-glovalNavigationInner .b-contactLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    width: 50%;
    flex-direction: column;
    line-height: 1.3125;
    font-weight: 700;
    padding-top: 3px;
  }
  .b-glovalNavigationInner .b-contactLinks .e-img {
    width: 25%;
    margin-top: 3px;
  }
  .b-glovalNavigationInner .b-contactLinks .b-catalog {
    background: var(--color-blue);
    border-radius: 10px 0 0 10px;
  }
  .b-glovalNavigationInner .b-contactLinks .b-contact {
    background: var(--color-key);
    border-radius: 0 10px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .b-header > .b-contactLinks {
    display: none;
  }
  .b-contactLinks a {
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    width: 55px;
    border-radius: 10px;
    transition: .3s all;
  }
  .b-contactLinks .e-txt {
    display: none;
  }
  .b-contactLinks .e-img {
    width: 30px;
  }
  .b-contactLinks .b-catalog .e-img {
    background: url(../images/ic-catalog-bl.svg) center center / contain no-repeat;
  }
  .b-contactLinks .b-contact .e-img {
    background: url(../images/ic-mail-bl.svg) center center / contain no-repeat;
  }
  .b-contactLinks .b-catalog:hover {
    background: var(--color-blue);
  }
  .b-contactLinks .b-catalog:hover .e-img {
    background: url(../images/ic-catalog-w.svg) center center / contain no-repeat;
  }
  .b-contactLinks .b-contact:hover {
    background: var(--color-key);
  }
  .b-contactLinks .b-contact:hover .e-img {
    background: url(../images/ic-mail-w.svg) center center / contain no-repeat;
  }
}


/* menu - close
----------------------------------------------------*/
.b-menuBtn button,
.b-closeBtn button {
  aspect-ratio: 1/1;
  position: relative;
}

/* menu*/
.b-menuBtn,
.b-menuBtn button {
  height:100%;
}
.b-menuBtn {
  position: absolute;
  left: 0;
  top: 0;
}
.b-menuBtn button span {
  display: block;
  width: 33%;
  height: 2px;
  background: var(--color-key);
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
}
.b-menuBtn button span:nth-child(1) {
  top: 40%;
}
.b-menuBtn button span:nth-child(2) {
  top: 50%;
}
.b-menuBtn button span:nth-child(3) {
  top: 62%;
}
/* close */
.b-closeBtn {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 10px;
  margin-top: 15px;
}
.b-closeBtn button {
  aspect-ratio: 1/1;
  width: 30px;
  position: relative;
}
.b-closeBtn button span {
  display: block;
  width: 60%;
  height: 2px;
  background: #fff;
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
}
.b-closeBtn button span:nth-child(1) {
  transform: translate(-50%,-50%) rotate(45deg);
}
.b-closeBtn button span:nth-child(2) {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  body:not(.active) .b-closeBtn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-menuBtn,
  .b-closeBtn{
    display: none;
  }
}

/*--------------------------------------------------*/

/* footer

/*--------------------------------------------------*/
.b-footer {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #11477d 0%, #69D1F0 100%);
  color: #fff;
  font-size: 13px;
}
.b-footerInner {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: auto;
}
.b-footer .e-pageTop {
  width: 16px;
  position: absolute;
  z-index: 1;
  top: -47px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .b-footer {
    padding: 60px 0 50px;
  }
  .b-footer .b-siteLinks {
    padding: 0 5px;
  }
}
@media screen and (min-width: 768px) {
  .b-footer {
    padding: 80px 0 70px;
    background: var(--grad);
  }
  .b-footerInner {
    width: calc(100% - 80px);
    display: flex;
    flex-direction: row-reverse;
  }
}

/* siteDiscription
-------------------------------------*/
.b-footer .b-siteName {
  width: 172px;
}
.b-footer .b-siteName .e-logo{
  margin-bottom: .8em;
}
.b-footer .b-siteName a,
.b-footer .b-siteName span {
  display: block;
}
.b-footer .b-address {
  margin-top: 25px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.b-footer .b-address dt {
  font-family: var(--en);
  font-weight: 700;
}
.b-footer .b-address dd {
  font-size: 14px;
  line-height: 1.57;
}
.b-footer .b-address .e-address {
  margin: .4em 0;
}
.b-footer .b-address .e-tel,
.b-footer .b-address .e-fax {
  font-family: var(--en);
}
.b-footer .b-address .e-tel span,
.b-footer .b-address .e-fax span {
  display: inline-block;
  width:2.5em;
}
.b-footer .b-contcontactLinksacts a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #fff;
  border-radius: 100px;
}
.b-footer .b-contcontactLinksacts a::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.6em;
  min-width: 1.6em;
  margin: 0 5px 0 13px;
}
.b-footer .b-contcontactLinksacts a.b-catalog::before {
  background: url(../images/ic-catalog-w.svg) center center / contain no-repeat;
}
.b-footer .b-contcontactLinksacts a.b-contact::before {
  background: url(../images/ic-mail-w.svg) center center / contain no-repeat;
}
.b-footer .e-copyright {
  display: block;
  font-family: var(--en)
}
.b-footer .b-snss .b-snsItem {
  width: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .b-footer .b-siteDiscription {
    border-top: 1px solid #7EB7D4;
    margin-top: 30px;
    padding: 40px 5px 0;
  }
  .b-footer .b-contcontactLinksacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .b-footer .b-contcontactLinksacts a {
    width: 180px;
    height: 3em;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .b-footer .b-siteDiscription {
    margin-left: 0;
    margin-right: auto;
  }
  .b-footer .b-contcontactLinksacts {
    margin-top: 15px;
  }
  .b-footer .b-contcontactLinksacts a {
    width: 180px;
    height: 35px;
    margin-bottom: 10px;
    transition: .3s all;
  }
  .b-footer .b-contcontactLinksacts a:hover {
    background: #fff;
    color: var(--color-key);
  }
  .b-footer .b-contcontactLinksacts a.b-catalog:hover::before {
    background: url(../images/ic-catalog-bl.svg) center center / contain no-repeat;
  }
  .b-footer .b-contcontactLinksacts a.b-contact:hover::before {
    background: url(../images/ic-mail-bl.svg) center center / contain no-repeat;
  }
}

/* linksBox
-------------------------------------*/

.b-footer .b-siteLinks li,
.b-footer .b-banners a {
  display: block;
}
@media screen and (min-width: 768px) {
  .b-footer .b-linksBox {
    width: calc(100% - 240px);
    max-width: 590px;
    margin-right: 0;
    margin-left: auto;
  }
}

/* siteLinks */
.b-footer .b-siteLinks dt {
  margin-bottom: 1em;
  position: relative;
}
.b-footer .b-siteLinks dt::before {
  content: "";
  display: block;
  aspect-ratio: 1/1.2;
  width: .5em;
  background: #fff;
  clip-path: polygon(0 0,100% 50%,0 100%);
  position: absolute;
  left: 0;
  top: .66em;
  opacity: .7;
}
.b-footer .b-siteLinks dt a {
  font-weight: 700;
  font-size: 14px;
}
.b-footer .b-siteLinks dt,
.b-footer .b-siteLinks dd li {
  padding-left: 15px;
}
.b-footer .b-policys a {
  text-decoration: underline;
  opacity: .7;
}
@media screen and (max-width: 767px) {
  .b-footer .b-siteLinks {
  }
  .b-footer .b-siteLinks .b-item,
  .b-footer .b-siteLinks .b-item.m-other dt {
    margin-bottom: 25px;
  }
  .b-footer .b-siteLinks .b-item {
    margin-bottom:;
  }
  .b-footer .b-siteLinks .b-item.m-other {
    margin-bottom: 0;
  }
  .b-footer .b-siteLinks .b-item:not(.m-industrial) dd {
    display: none;
  }
  .b-footer .b-siteLinks .b-item.m-industrial ul {
    display: flex;
    flex-wrap: wrap;
  }
  .b-footer .b-siteLinks .b-item.m-industrial li {
    width: calc( 100% / 3 );
    margin-bottom: .75em;
  }
  .b-footer .b-siteLinks .b-inner03 .b-item,
  .b-footer .b-siteLinks .b-policys {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .b-footer .b-siteLinks .b-inner03 .b-item dt,
  .b-footer .b-siteLinks .b-policys a {
    width: 50%;
    width: min( 41.8604vw,50%);
  }
  .b-footer .b-siteLinks .b-policys {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .b-footer .b-siteLinks {
    display: flex;
    justify-content: space-between;
    margin-top: -45px;
  }
  .b-footer .b-siteLinks a {
    transition: .3s all;
  }
  .b-footer .b-siteLinks .b-item,
  .b-footer .b-policys {
    margin-top: 42px;
  }
  .b-footer .b-siteLinks .b-item {
    margin-bottom:;
  }
  .b-footer .b-siteLinks a:hover {
    color: var(--color-blue);
  }
  .b-footer .b-siteLinks .b-inner02 {
    margin-left: min(3vw,50px);
    margin-right: auto;
  }
  .b-footer .b-siteLinks dd li {
    margin-bottom: .75em;
  }
  .b-footer .b-policys a {
    display: block;
    margin-bottom: .75em;
  }
  .b-footer .b-policys a:hover {
    opacity: 1;
    text-decoration: none;
  }
}

/* banners */
.b-footer .b-banners {
  display: flex;
}
.b-footer .b-banners a {
  width: min( 41.8604vw,180px);
}
@media screen and (max-width: 767px) {
  .b-footer .b-banners {
    padding: 0 5px;
  }
}
@media screen and (max-width: 430px) {
  .b-footer .b-banners {
    justify-content: space-between;
  }
}
@media screen and (min-width: 431px ) and (max-width: 767px) {
  .b-footer .b-banners {
    justify-content: center;
  }
  .b-footer .b-banners a+a{
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .b-footer .b-banners {
    justify-content: flex-end;
    margin-top: 30px;
  }
  .b-footer .b-banners a {
    margin-left: 25px;
  }
}


/*--------------------------------------------------*/

/* parts

/*--------------------------------------------------*/
.container {
  width: calc(100% - min(11.62vw,50px));
  max-width: 1000px;
  margin: auto;
}
.b-contentsBox {
  padding: 50px 0 200px;
}
@media screen and (min-width: 768px) {
  .container {
    width: calc(100% - 80px);
  }
  .b-contentsBox {
    padding: 50px 0 290px;
  }
}


/* sp 100vw
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .m-sp100 {
    width: 100dvw;
    margin-left: 50%;
    transform: translateX(-50dvw);
    padding-left: min(5.814vw, 25px);
    padding-right: min(5.814vw, 25px);
  }
}

/* pageTtlBox
----------------------------------------------------*/
.b-pageTtlBox {
  padding: 0 10px;
  margin-bottom: 110px;
  position: relative;
  z-index: 5;
}
.b-pageTtlBox::before,
.b-pageTtlBox::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 110px);
  position: absolute;
  top: 0;
  left: 0;
}
.b-pageTtlBox::before {
  background: #69D1F0;
  z-index: -2;
  opacity: .1;
  clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 calc(100% - 145px) );
}
.b-pageTtlBox::after {
  background:linear-gradient(-90deg, #F4F6F8 0%, #fff 100%);
  z-index: -1;
  clip-path: polygon( 0 0, 100% 0, 100% calc(100% - 145px), 0 100% );
}
@media screen and (min-width: 768px) {
  .b-pageTtlBox {
    margin-bottom: 145px;
    padding-bottom: 60px;
  }
  .b-pageTtlBox::before,
  .b-pageTtlBox::after {
    height: calc(100% + 145px);
  }
}
/* none */
.b-pageTtlBox.m-none {
  padding-bottom: 0;
  margin-bottom: 0;
}
.b-pageTtlBox.m-none::before,
.b-pageTtlBox.m-none::after,
.b-pageTtlBox.m-none .b-enTtl {
  display: none;
}

/* pankuzu
----------------------------------------------------*/
.b-pankuzu {
  line-height: 1.3;
  font-size: 13px;
  color: var(--color-gray03);
  padding: 20px;
  margin-bottom: 30px;
}
.b-pageTtlBox.m-none .b-pankuzu {
  margin-bottom: 0;
}
.b-pankuzu .e-home {
  width: 16px;
}
.b-pankuzu a:hover {
  color: var(--color-blue);
}
.b-pankuzu li:not(.e-home) a::before,
.b-pankuzu span::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: .3em;
  margin-right: 1.5em;
  margin-left: 1em;
  border-top: 2px solid var(--color-gray02);
  border-right: 2px solid var(--color-gray02);
  transform-origin: center center;
  transform: translateY(-2px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .b-pankuzu {
    margin-bottom: 65px;
  }
  .b-pageTtlBox.m-none .b-pankuzu {
    margin-bottom: 30px;
  }
}

/* ttl -en
----------------------------------------------------*/
.b-enTtl {
  text-align: center;
  font-weight: 700;
}
.b-enTtl .b-en {
  display: inline-block;
  font-family: var(--en);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1;
}
.b-enTtl .b-jp {
  margin-top: .5em;
  color: var(--color-key);
  line-height: 1.5;
}
/* ttl */
.b-enTtl.m-ttl .b-en {
  background: var(--grad-mds);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .b-enTtl.m-ttl .b-en {
    font-size: min(15.8vw,65px);
  }
  .b-enTtl.m-ttl .b-jp {
    font-size: min(5.116vw,22px);
  }
}
@media screen and (min-width: 768px) {
  .b-enTtl.m-ttl .b-en {
    font-size: 120px;
  }
  .b-enTtl.m-ttl .b-jp {
    font-size: 22px;
  }
}
/* ttl min */
@media screen and (max-width: 767px) {
  .b-enTtl.m-ttl.m-min .b-en {
    font-size: min(9.767vw,42px);
  }
  .b-enTtl.m-ttl.m-min .b-jp {
    font-size: min(4.651vw,20px);
  }
}
@media screen and (min-width: 768px) {
  .b-enTtl.m-ttl.m-min .b-en {
    font-size: 80px;
  }
  .b-enTtl.m-ttl.m-min .b-jp {
    font-size: 20px;
  }
}

/* mds */
.b-enTtl.m-mds .b-en {
  background: linear-gradient(90deg, #69D1F0 0%, #11477d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .b-enTtl.m-mds .b-en {
    font-size: min(9.767vw,42px);
  }
  .b-enTtl.m-mds .b-jp {
    font-size: min(4.651vw,20px);
  }
}
@media screen and (min-width: 768px) {
  .b-enTtl.m-mds .b-en {
    font-size: 80px;
  }
  .b-enTtl.m-mds .b-jp {
    font-size: 20px;
  }
}

/* sectionMds
----------------------------------------------------*/
.e-sectionMds {
  font-size: min(5.1162vw,22px);
  line-height: 1.5;
  margin-bottom: 1em;
}

/* tags
----------------------------------------------------*/
.b-tags {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: -.01em;
  margin-top: 15px;
}
.b-tags li {
  margin-right: 4px;
  margin-bottom: 4px;
}
.b-tags li a,
.b-tags li span {
  display: block;
  font-size: min(2.791vw,12px);
  line-height: 1;
  border: 1px solid var(--color-gray02);
  color: var(--color-gray03);
  border-radius: 100px;
  padding: .3em 1em .45em;
}
@media screen and (min-width: 768px) {
  .b-tags li a {
    transition: .3s all;
  }
  .b-tags li a:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff;
  }
}

/* m-blog */
.b-tags.m-blog li a,
.b-tags.m-blog li span {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: var(--color-key);
}
@media screen and (min-width: 768px) {
  .b-tags.m-blog li a:hover {
    background: #fff;
    color: var(--color-blue);
  }
}

/* link
----------------------------------------------------*/
.b-linkButtons {
  text-align: center;
}
.b-linkButtons .b-item {
  display: inline-block;
  min-width: 320px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  padding: 1.75em 2em;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
}
.b-linkButtons .b-item::before,
.b-linkButtons .b-item::after {
  content: "";
  display: block;
  position: absolute;
}
.b-linkButtons .b-item::after {
  aspect-ratio: 1/1;
  width: 25px;
  background: url(../images/ic-arw-sblue.svg) center center / contain no-repeat;
  right: 1.5em;
  top: 50%;
  transform: translate(0,-50%);
}
.b-linkButtons .b-item .e-txt {
  padding: 0 2em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 400px) {
  .b-linkButtons .b-item {
    min-width: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .b-linkButtons .b-item,
  .b-linkButtons .b-item::before {
    transition: .3s all;
  }
  .b-linkButtons .b-item::before {
    width: 100%;
    height: 300px;
    background: var(--color-blue);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
  .b-linkButtons .b-item:hover {
    color: #fff;
  }
  .b-linkButtons .b-item:hover::before {
    opacity: 1;
  }
  .b-linkButtons .b-item:hover::after {
    background: url(../images/ic-arw-w.svg) center center / contain no-repeat;
  }
}
/* cont */
.b-linkButtons .b-item.m-cont {
  padding: 1.125em 2em;
}
/* noarw */
.b-linkButtons .b-item.m-noarw {
  min-width:360px;
  padding: 1.438em 3em;
}
.b-linkButtons .b-item.m-noarw::after {
  display: none !important;
}
/* sub */
.b-linkButtons .b-item.m-sub {
  min-width: 360px;
  padding: .75em 3em;
  background: #fff;
  color: var(--color-key);
  border: 1px solid var(--color-key);
}
.b-linkButtons .b-item.m-sub  .e-txt {
  padding: 0;
}
.b-linkButtons .b-item.m-sub::after {
  background: url(../images/ic-arw-blue.svg) center center / contain no-repeat;
  right: 1em;
}
@media screen and (min-width: 768px) {
  .b-linkButtons .b-item.m-sub:hover {
    color: #fff;
    border-color: var(--color-blue);
  }
  .b-linkButtons .b-item.m-sub:hover::after {
    background: url(../images/ic-arw-w.svg) center center / contain no-repeat;
  }
}
/* beta */
.b-linkButtons .b-item.m-beta {
  padding: 1.125em 2em;
  background: var(--color-key);
}

/* lists
----------------------------------------------------*/
.b-lists .b-img {
  aspect-ratio: 310 / 195;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.b-lists .b-img img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

.b-lists .b-more {
  width: 100%;
  padding: 0 0 90px;
  position: relative;
  z-index: 1;
}
.b-lists .b-more::before {
  content: "";
  display: block;
  width: 120%;
  height: 200px;
  background: linear-gradient(0, rgb(255 255 255 / 1) 0%, rgb(255 255 255 / 0) 100%);
  position: absolute;
  z-index: 2;
  bottom: calc(100% + 45px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .b-lists .b-img img {
    transition: .5s ease;
  }
  .b-lists .b-postItem a:hover .b-img img {
    transform: scale(1.1);
  }
}
.b-lists .e-postTtl {
  font-size: min(3.721vw,16px);
  line-height: 1.5;
  font-weight: 500;
}
.b-lists .b-postItem .b-txt {
  font-size: min(3.256vw,14px);
  font-weight: 400;
  line-height: 1.71;
  margin-top: 15px;
}
.b-lists .b-postItem .b-tags {
  margin-top: 15px;
}

/* panel */
.b-lists.m-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.b-lists.m-panels .b-postItem {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .b-lists.m-panels .b-postItem {
    width: calc( (100% -  20px ) / 2 );
    margin-right: 20px;
  }
  .b-lists.m-panels .b-postItem:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .b-lists.m-panels .b-postItem {
    width: calc( (100% -  35px * 2 ) / 3 );
    margin-right: 35px;
  }
  .b-lists.m-panels .b-postItem:nth-child(3n) {
    margin-right: 0;
  }
}

/* post */
.b-lists.m-post .b-postItem a {
  display: block;
  border-bottom: 1px solid var(--color-line);
  padding: .5em 0 1.5em;
}
.b-lists.m-post .b-postItem dl {
  display: flex;
  flex-direction:  column-reverse;
}
.b-lists.m-post .b-postItem .b-postDetail {
  display: flex;
  align-items: center;
  margin-bottom: .5em;
}
.b-lists.m-post .b-postItem time {
  display: inline-block;
  margin-top: .9em;
  margin-right: 1em;
  font-size: min(3.023vw,13px);
}
@media screen and (min-width: 768px) {
  .b-lists.m-post .b-postItem a .e-postTtl {
    transition: .3s all;
  }
  .b-lists.m-post .b-postItem a:hover .e-postTtl {
    color: var(--color-blue);
  }
}


/* othersList
----------------------------------------------------*/
.b-othersList {
  border-top: 1px solid var(--color-line);
  padding-top: 50px;
}
.b-othersList .b-2ndList {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .b-othersList {
    padding-top: 90px;
  }
  .b-othersList .b-2ndList {
    margin-top: 90px;
  }
}

/* caption
----------------------------------------------------*/
figcaption,
.e-caption {
  font-size: min(3.256vw,14px);
  line-height: 1.5;
  font-weight: 400;
}


/* single common
----------------------------------------------------*/
.b-post .b-ttls {
  margin-bottom: 80px;
}

/* extension
----------------------------------------------------*/
.m-extension {
  font-weight: 400;
}
.m-extension em,
.m-extension strong,
.m-extension b {
  font-weight: 700;
}
.m-extension p {
  line-height: 2em;
  margin-bottom: 1.3em;
}
.m-extension ul,
.m-extension ol {
  margin-bottom: 1.3em;
}
.m-extension li {
  line-height: 1.5;
  margin-bottom: .3em;
}
.m-extension ul li {
  position: relative;
  padding-left: 1.3em;
}
.m-extension ul li::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 8px;
  background: var(--color-blue);
  border-radius: 50%;
  position: absolute;
  left: .2em;
  top: .58em;
}
.m-extension ol {
  list-style-type: decimal;
  margin-left: 1.3em;
}
.m-extension ol li {
  display: list-item;
  list-style-type: inherit;
  list-style-position: initial;
  padding-left: .3em;
}
.m-extension ol li::marker{
  font-family: car(--en);
  font-weight: 700;
  color: var(--color-blue);
}
.m-extension iframe {
  aspect-ratio: 560 / 315; 
  width: 100%;
}

/* b-contactCommon
----------------------------------------------------*/
.b-contactCommon {
  background: var(--color-gray01);
  margin-top: -145px;
  padding-top: 200px;
  padding-bottom: 100px;
  clip-path: polygon(0 145px, 100% 0, 100% 100%, 0 100% );
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.b-contactCommon::before {
  height: 145px;
  clip-path: polygon(0 0, 100% 0, 100% 100% );
}
.b-contactCommon::before {
  content: "";
  display: block;
  width: 100%;
  background: var(--color-blue);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: .1;
}
.b-contactCommon .b-enTtl {
  margin-bottom: 40px;
}
.b-contactCommon .b-enTtl.m-ttl .b-jp {
  color: var(--color-bk);
  font-size: min(5.581vw,26px);
}
.b-contactCommon .e-lead {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.b-contactCommon .b-linkButtons {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .b-contactCommon {
    padding-bottom: 140px;
  }
}

/* b-searchBox
----------------------------------------------------*/
.b-searchform {
  display: flex;
  align-items: center;
}
.b-searchform .inner {
  display: flex;
  align-items: center;
  width: 450px;
  background: #fff;
  border: 2px solid var(--color-gray02);
  border-radius: 500px;
  position: relative;
  white-space: normal;
}
.b-searchform .inner::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: url(../images/ic-search.svg) center center / contain no-repeat;
}
.b-searchform input {
  border: 0;
  background: 0 none;
  padding: .8em;
  margin: 0;
}
.b-searchform button {
  font-size: min(3.2566vw,14px);
  padding: .5em 0;
}
@media screen and (min-width: 768px) {
  .b-searchform .inner::before {
    width: 22px;
    min-width: 22px;
    margin-left: 15px;
  }
  .b-searchform label {
    width: 100%;
  }
  .b-searchform button {
    min-width: 80px;
    margin-right: 10px;
    margin-left: auto;
  }
}

/* gnav */
@media screen and (max-width: 767px) {
  .b-gnav .b-searchBox {
    padding: 15px min(4.651vw,20px) 20px;
    background: var(--color-gray01);
    border-bottom: 1px solid var(--color-line);
  }
  .b-gnav .b-searchform .inner {
    display: block;
    width: 100%;
    border: 0 none;
    background: none;
  }
  .b-gnav .b-searchform .inner::before {
    display: none;
  }
  .b-gnav .b-searchform label {
    display: block;
    position: relative;
  }
  .b-gnav .b-searchform label::before {
    content: "";
    display: block;
    aspect-ratio: 1/1;
    width: min(5.116vw,22px);
    background: url(../images/ic-search.svg) center center / contain no-repeat;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .b-gnav .b-searchform input {
    display: block;
    background: #fff;
    border: 2px solid var(--color-gray02);
    border-radius: 100px;
    padding-left: 40px;
    position: relative;
  }
  .b-gnav .b-searchBox button {
    width: 100%;
    min-width: auto;
    margin-top: 10px;
  }
}

/* contentsBox*/
.b-contentsBox .b-searchBox {
  background: var(--color-gray01);
}
.b-contentsBox .b-searchform .inner{
  width: 100%;
}
.b-contentsBox .b-searchform .inner::before {
    width: 22px;
    min-width: 22px;
    margin-left: 15px;
  }
.b-contentsBox .b-searchform button {
    min-width: 80px;
    margin-right: 10px;
    margin-left: auto;
  }
@media screen and (max-width: 767px) {
  .b-contentsBox .b-searchBox {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 768px) {
  .b-contentsBox .b-searchBox {
    padding: 30px;
    margin-bottom: 45px;
    border-radius: 10px;
  }
}



main {
  min-height: 1000px;
}