/* 基本のパーツの調整 */
.d-slider {
  position: relative;
}

.d-slider .swiper-slide {}

.d-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.d-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  opacity: 1 !important;
}

.d-slider .swiper-pagination-bullet:nth-of-type(n+2) {
  margin-left: 10px;
}

.d-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #062d4b;
  border-color: #062d4b;

}

.d-slider [class^="swiper-button-"] {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.d-slider [class^="swiper-button-"]::before {
  background: #727c8e;
  content: '';
  display: inline-block;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.d-slider [class^="swiper-button-"]::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  border: 2px solid #0a314e;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
}

.d-slider .swiper-button-next {
  right: 10px;

}

.d-slider .swiper-button-next::after {
  border-left: 0;
  border-bottom: 0;

}

.d-slider .swiper-button-prev {
  left: 10px;
}

.d-slider .swiper-button-prev::after {
  border-top: 0;
  border-right: 0;
}

/*サービスソリューション等で使用*/
.search-list {
  position: relative;
  z-index: 5;
}

.search-list>.body>* {
  width: 100%;

}

/* background: red; */
.search-list .partsItem .headding {
  border: 1px solid #e6e6e7;
  border-radius: 4px;
  width: 100%;
  height: 117px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 0.3s ease-in-out;
  overflow: hidden;

}

.search-list .partsItem .headding::before,
.search-list .partsItem .headding::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background: #999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.search-list .partsItem .headding::after {
  transform: translateY(-50%) rotate(-90deg);
}

.search-list .partsItem .headding>* {
  padding: 1rem 2rem 1rem 5.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-list .partsItem .headding>*:hover {
  opacity: 1;
}

.search-list .partsItem .headding>*::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fafafa;
  border-radius: 50%;
  width: 6.2rem;
  height: 6.2rem;
  left: 20px;
  z-index: 2;
}

.search-list .partsItem .headding>*::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  background: var(--color-green03);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.search-list .partsItem .headding>* img:nth-of-type(1) {
  width: 3.5rem;
  height: 3.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3.3rem;
  z-index: 3;
}

.search-list .partsItem.is-hover .headding {
  background: var(--color-green02) !important;

  overflow: hidden;
}

.search-list .partsItem.is-hover .headding>*::before {
  background: #fff;
}

.search-list .partsItem.is-hover .headding>*::after {
  opacity: 1;
}

.search-list .partsItem>.body {
  position: relative;
}

.search-list .partsItem>.body>dd {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.search-list .partsItem>.body {
  position: relative;
}

.search-list .partsItem>.body>dd>.inner {
  padding: 3rem 2rem 3rem;
  border: 2px solid var(--color-green03);
  background: var(--color-green05);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: relative;
}

.search-list .partsItem>.body>dd>.inner ul>li {
  height: 5rem;
  background: #fff;
  border: 1px solid #dddddd;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.search-list .partsItem>.body>dd>.inner ul>li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  position: relative;
  color: #666666;
}

.search-list .partsItem>.body>dd>.inner ul>li a::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  border-bottom: 2px solid var(--color-green03);
  border-right: 2px solid var(--color-green03);
  transform: translateY(-50%) rotate(-45deg);
  right: 2rem;
}

.search-list .partsItem>.body>dd>.inner ul>li a::after {
  content: '';
  display: block;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 4px;
  transform: translateX(-50%);
  background: var(--color-green03);
  opacity: 0;
  position: absolute;
  transition: 0.3s ease-in-out;
}

.search-list .partsItem>.body>dd>.inner ul>li a:hover {
  opacity: 1;
}

.search-list .partsItem>.body>dd>.inner ul>li a:hover::after {
  opacity: 1;
}

.search-list .partsItem>.body>dd>.inner::before,
.search-list .partsItem>.body>dd>.inner::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  background: var(--color-green03);
  height: 17.32051px;
  width: 20px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.search-list .partsItem>.body>dd>.inner::after {
  top: 4px;
  background: var(--color-green05);
}

/*ホバー時・オンクリック時の処理*/
/*デザインのバリエーション調整*/
.search-list .search-box02 form input[type='submit'] {
  background: var(--bg-grad-green02);
  flex-shrink: 0;
  font-size: 2rem;
}

/*カテゴリーから探す*/
.search-list .partsItem.-cat .headding img:nth-of-type(2) {
  height: 3.6rem;
  width: auto;
}

/*目的・課題から探す*/
.search-list .partsItem.-task .headding img:nth-of-type(2) {
  height: 3.6rem;
  width: auto;
}

.search-list .partsItem.-task>.body>dd {
  left: auto;
  right: 0;
}

/*部門別に探す*/
.search-list .partsItem.-deport .headding img:nth-of-type(2) {
  height: 3.6rem;
  width: auto;
}

/*ケーススタディから探す*/
.search-list .partsItem.-case .headding::before {
  width: 11px;
  height: 11px;
  background: none;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-50%) rotate(-45deg);
  right: 25px;
}

.search-list .partsItem.-case .headding::after {
  display: none;
}

.search-list .partsItem.-case .headding img:nth-of-type(2) {
  height: 3.6rem;
  width: auto;
}

.search-list .partsItem.-keyword .headding img:nth-of-type(2) {
  height: 3.6rem;
  width: auto;
}

/*サービスソリューション等で使用*/
/*body*/
.service-list>.body {
  padding: 0 2rem;

}

/*item*/
.service-list .partsItem {
  font-size: 1.4rem;
}

.service-list .partsItem dt {
  text-align: center;
  font-family: var(--font-maru-gochic);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0;
}

.service-list .partsItem dt img {
  display: inline-block;
  height: 2.2rem;
}

.service-list .partsItem dd {
  margin-top: 20px;
  color: #666;


}

.service-list .partsItem p {
  margin-top: 17px;
  line-height: 1.6;
}

.headding-box {
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.16);
}

.headding-box>.body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11.6rem;
  position: relative;
  /* overflow: hidden; */
}

.headding-box>.body::before {
  content: '';
  display: block;
  width: 100vw;
  min-width: 1920px;
  height: 11.6rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url('../img/common/bg_headding.png') no-repeat;
  background-size: cover;
}

.headding-box>.body .d-headding01 {
  position: relative;
  z-index: 2;
}

.headding-box .local-nav {
  padding: 2rem 0;
}

.headding-box .local-nav ul {

  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.headding-box .local-nav ul a {
  color: var(--color-txt-link);
  line-height: 1;
}

.headding-box .local-nav ul a>span {
  display: inline-block;
  position: relative;
}

.headding-box .local-nav ul a>span::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  opacity: 0;
}

.headding-box .local-nav ul a:hover {
  opacity: 1;
  color: var(--color-red);
}

.headding-box .local-nav ul a:hover>span::after {
  opacity: 1;
}

#VcArea-InnerMV .breadcrumb {
  margin-top: 15px;
  margin-bottom: 40px;
}
@media(max-width: 768px) {
  #VcArea-InnerMV .breadcrumb {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}

.breadcrumb>div {
  color: #333333;
  font-size: 1.4rem;

  width: var(--v-width-sp);
  margin: 0 auto;

    display: flex;
    flex-wrap: wrap;	
}

.breadcrumb>div a {
  padding-right: 1.5rem;
  margin-right: 1rem;
  position: relative;
  color: #999;
}

.breadcrumb>div a::after {
  content: '';
  display: block;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #accea6;
  border-bottom: 2px solid #accea6;
  position: absolute;
}

.hero-box>.inner>.linkBtn {
  width: 200px;
  margin: 0 0 0 auto;
}

.hero-box>.inner>.videoItem {
  width: 100%;
  height: calc(185 * (100vw / var(--base-width-sp)));
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.hero-box>.inner>.videoItem video {
  width: 101%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-box>.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.news-box>.body .partsItem dl>dt>p:nth-of-type(2),
.news-box02>.body .partsItem dl>dt>p:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 2.5rem;
  border: 2px solid;
  border-radius: 1.25rem;
  font-size: 1.2rem;
}

.news-box>.body>*:nth-of-type(n+2),
.news-box02>.body>*:nth-of-type(n+2) {
  margin-top: 40px;
}

.news-box .partsItem,
.news-box02 .partsItem {
  padding: 0 40px 0;
}

.news-box .partsItem>dl,
.news-box02 .partsItem>dl {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.news-box .partsItem>dl dt,
.news-box02 .partsItem>dl dt {
  display: flex;
  flex-shrink: 0;
  margin-right: 25px;
}

.news-box .partsItem>dl dt p:nth-of-type(1),
.news-box02 .partsItem>dl dt p:nth-of-type(1) {
  margin-right: 20px;
  color: #999;
}

.news-box .partsItem>dl dd a,
.news-box02 .partsItem>dl dd a {
  display: inline-block;
  transition: 0s;
}

.news-box .partsItem>dl dd a:hover,
.news-box02 .partsItem>dl dd a:hover {
  opacity: 1;
  color: var(--color-red);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.news-box02>.body .partsItem dl dt p {
  margin-right: 0;
}

.tab-selector-news {
  display: flex;
  justify-content: space-between;
}

.tab-selector-news .itemSelector {
  padding: 1rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
}

.tab-selector-news .itemSelector::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #ddd;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tab-selector-news .itemSelector.is-active::before {
  background: var(--color-red);
}

.tab-selector-news+.content_area {
  margin-top: 60px;
}

.pickup-list .body,
.pickup-list02 .body {}

.pickup-list .partsItem,
.pickup-list02 .partsItem {
  border-radius: 10px;
  font-size: 1.4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .16);
  overflow: hidden;
}

.pickup-list .partsItem dt,
.pickup-list02 .partsItem dt {
  text-align: center;
  font-size: 1.6rem;
}

.pickup-list .partsItem dt img,
.pickup-list02 .partsItem dt img {
  display: inline-block;
}

.pickup-list .partsItem dd,
.pickup-list02 .partsItem dd {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem;
}

.pickup-list .partsItem .p-headding,
.pickup-list02 .partsItem .p-headding {
  letter-spacing: 0;
  line-height: 1.5;
}

.pickup-list .partsItem p:not(.d-btn):not(.p-headding),
.pickup-list02 .partsItem p:not(.d-btn):not(.p-headding) {
  font-size: 1.8rem;
  line-height: 1.6;
}

.pickup-list .partsItem dd>a,
.pickup-list02 .partsItem dd>a {
  padding: 0 0 0 10px;
  /* margin: 1rem 0 0 auto; */
  margin: auto 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  height: 3rem;
  border: 1px solid #DDDDDD;
  border-radius: 1.8rem;
  line-height: 1;
  font-size: 1.1rem;
}

.pickup-list .partsItem dd>a::after,
.pickup-list02 .partsItem dd>a::after {
  margin: 0 0 0 5px;
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('../img/common/icon_arrow_right_red.png') no-repeat;
  background-size: contain;
  position: relative;
}

.pickup-list02 .partsItem dl {
  display: block;
}

.pickup-list02 .partsItem dl dt {
  width: 100%;
}

.pickup-list02 .partsItem dl dd {
  padding: 2rem 2rem 2rem;
}

.pickup-list02 .partsItem p:not(.d-btn):not(.p-headding) {
  font-size: 1.4rem;
}

.pickup-list02 .partsItem *+p:not(.d-btn):not(.p-headding) {
  margin-top: 1rem;
}

.pickup-list02 .partsItem .btnWrap {
  padding-top: 2rem;
}

.pickup-list02 .d-btn a {
  min-height: 4.6rem;
  font-size: 1.5rem;
}

.pickup-list02 .d-btn+.d-btn {
  margin-top: 1rem;
}

.pickup-list02 *+.btnWrap {
  margin-top: auto;
}

.card-slider .slick-dots {
  margin: 10px auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  bottom: auto;
}

.card-slider .slick-dots>li {
  padding: 0;
  margin: 0;

  overflow: hidden;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  background: none;
  position: relative;
}

.card-slider .slick-dots>li:nth-of-type(n+2) {
  margin-left: 12px;
}

.card-slider .slick-dots>li>button {
  width: 100%;
  height: 100%;
  background: #ddd;
}

.card-slider .slick-dots>li>button::before {
  display: none;
}

.card-slider .slick-dots>li.slick-active {
  background: none;
}

.card-slider .slick-dots>li.slick-active>button {
  background: #c4d703;
}

.card-slider>.body,
.card-list>.body {
  width: 100%;
  margin: 40px auto 0;

}

.card-slider>.body .slide-arrow.slick-arrow,
.card-list>.body .slide-arrow.slick-arrow {
  width: 40px;
  height: 40px;
  background: #C4D700;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.card-slider>.body .slide-arrow.slick-arrow::before,
.card-list>.body .slide-arrow.slick-arrow::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
}

.card-slider>.body .slide-arrow.slick-arrow.prev-arrow,
.card-list>.body .slide-arrow.slick-arrow.prev-arrow {
  left: -60px;
}

.card-slider>.body .slide-arrow.slick-arrow.prev-arrow::before,
.card-list>.body .slide-arrow.slick-arrow.prev-arrow::before {
  left: calc(50% + 1.5px);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.card-slider>.body .slide-arrow.slick-arrow.next-arrow,
.card-list>.body .slide-arrow.slick-arrow.next-arrow {
  right: -60px;
}

.card-slider>.body .slide-arrow.slick-arrow.next-arrow::before,
.card-list>.body .slide-arrow.slick-arrow.next-arrow::before {
  left: calc(50% - 1.5px);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.card-slider>.body .listItem,
.card-list>.body .listItem {
  width: calc(280 * (100vw / var(--base-width-sp)));
  margin-right: 1.5rem;
  height: auto !important;
  overflow: hidden;
  border-radius: 1.6rem;

  box-shadow: 0 0 10px rgba(0, 0, 0, .16);
}

.card-slider>.body .listItem dl,
.card-list>.body .listItem dl {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.card-slider>.body .listItem dl dt,
.card-list>.body .listItem dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 200px;
}

.card-slider>.body .listItem dl dd,
.card-list>.body .listItem dl dd {
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  padding: 20px 15px 20px;
  text-align: right;
  height: calc(100% - 200px);
  font-size: 1.4rem;

}

.card-slider>.body .listItem dl dd p,
.card-list>.body .listItem dl dd p {
  text-align: left;
}

.card-slider>.body .listItem dl dd p:nth-of-type(1),
.card-list>.body .listItem dl dd p:nth-of-type(1) {
  font-size: 1.8rem;
  font-weight: 500;
}

.card-slider>.body .listItem dl dd p~p,
.card-list>.body .listItem dl dd p~p {
  margin-top: 5px;
}

.card-slider>.body .listItem dl dd .iconList,
.card-list>.body .listItem dl dd .iconList {
  margin-top: 10px;
}

.card-slider>.body .listItem dl dd a,
.card-list>.body .listItem dl dd a {
  margin-top: auto;
  display: block;
  font-size: 1.6rem;
  cursor: pointer;
}

.card-slider>.body .listItem dl dd a::after,
.card-list>.body .listItem dl dd a::after {
  margin: 0 0 0 5px;
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-red);
  border-right: 2px solid var(--color-red);
  transform: rotate(45deg);
  top: 0;
  position: relative;
}

.card-slider>.body .listItem dl dd a::before,
.card-list>.body .listItem dl dd a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.card-slider>.body .slick-list,
.card-list>.body .slick-list {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.card-slider>.body .slick-track,
.card-list>.body .slick-track {
  display: flex;
}

.card-slider>.body .slick-slide,
.card-list>.body .slick-slide {}

.card-slider>.body .iconList,
.card-list>.body .iconList {
  display: flex;
}

.card-slider>.body .iconList span,
.card-list>.body .iconList span {
  padding: 0 10px;
  margin: 0 10px 10px 0;
  display: inline-flex;
  font-size: 1.2rem;
  background: #EEEEEE;
}

.card-slider>.body .iconList span.bg-green,
.card-list>.body .iconList span.bg-green {
  background: #D5E8D1;
}

.column-list>.body>*:nth-of-type(n+2),
.column-list02>.body>*:nth-of-type(n+2) {}

.column-list .partsItem,
.column-list02 .partsItem {

  border-bottom: 1px dotted #bdbdbd;
}

.column-list .partsItem dl,
.column-list02 .partsItem dl {
  position: relative;
  padding: 1rem 0 2rem;
}

.column-list .partsItem dl dt,
.column-list02 .partsItem dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  font-size: 1.6rem;
  position: relative;
  flex-shrink: 0;
}

.column-list .partsItem dl dt::before,
.column-list02 .partsItem dl dt::before {
  content: '';
  display: block;
  width: 6rem;
  height: 6rem;
  background: #f1f4ef;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.column-list .partsItem dl dd,
.column-list02 .partsItem dl dd {
  margin: 0;
  font-size: 1.6rem;
}

.column-list .partsItem dl dd a,
.column-list02 .partsItem dl dd a {
  font-size: 1.4rem;
}

.column-list .partsItem .iconList,
.column-list02 .partsItem .iconList {
  margin-top: 6px;
}

.column-list .partsItem .iconList span,
.column-list02 .partsItem .iconList span {
  display: inline-block;
  padding: 5px 10px 5px;
  margin: 0 10px 0 0;
  background: #f3f3f3;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  box-sizing: border-box;
  font-size: 1.4rem;
  white-space: nowrap;
  line-height: 1;
}

.column-list02>.body {}

.column-list02 .partsItem dl dt::before {
  display: none;
}

.pickup-news-box {
  padding: 6.5rem 2rem 2rem;
  border-radius: 1rem;
  background: rgb(233, 238, 232, 0.5);
  margin: 3rem 0 0;
}

.pickup-news-box .d-fig {
  margin: 0 auto 0;

  flex-shrink: 0;
}

.pickup-news-box .body dl {
  padding: 2rem 0 0;
}

.pickup-news-box .body dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 28px;
  color: #fff;
  background: #137201;
  border-radius: 14px;
  line-height: 1;
  font-size: 1.4rem;
}

.pickup-news-box .body dl dd {
  margin-top: 10px;
  font-size: 1.4rem;
}

.pickup-news-box .body dl dd a {
  transition: 0s;
}

.pickup-news-box .body dl dd a:hover {
  opacity: 1;
  color: var(--color-red);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.info-box {
  padding: 20px 0 20px;
  border: 1px solid #999;
  border-radius: 5px;
  width: calc(100% - 50px);
  max-width: 1200px;
  margin: 0 auto;
}

.info-box>.inner>.listBody>.infoHeadding {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-red);
  font-weight: bold;
}

.info-box>.inner>.listBody>.infoHeadding>span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 1.5rem;
}

.info-box>.inner>.listBody>.infoHeadding>span::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url('../img/common/icon_caution.png') no-repeat;
  background-size: contain;
}

.info-box>.inner>.listBody>.infoList {
  padding: 1rem 0 1rem;

}

.info-box>.inner>.listBody>.infoList .infoItem>.dateTxt {

  color: #666;
  font-size: 1.5rem;
}

.info-box>.inner>.listBody>.infoList .infoItem>.descTxt {
  font-size: 1.4rem;

}

.info-box>.inner>.listBody>.infoList>*:nth-of-type(n+2) {
  margin-top: 5px;
}

.block-list>.body {}

.search-box {
  overflow: hidden;
}

.search-box form {
  display: block;
  width: 100%;
  height: 100%;
}

.search-box form input[name='search'] {
  padding: 5px 10px 5px 20px;
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(41, 39, 36, 0.04);
  border-radius: 18px;
}

.search-box02 form {
  display: flex;
}

.search-box02 form input[name='search'] {
  padding: 5px 20px;
  display: block;
  width: 460px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

.search-box02 form input[type='submit'] {
  width: 64px;
  height: 30px;
  background: var(--bg-grad-green);
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
}

#pagetop {
  width: 5rem;
  height: 5rem;
  right: -1rem;
  position: fixed;
  bottom: 60px;
  z-index: 10;
}

#pagetop a {
  cursor: pointer;
}

.tab-selector-box {
  border: 1px solid #eee;
  border-top: none;
  border-radius: 1.5rem;
  overflow: hidden;
}

.tab-selector {
  display: flex;
  width: 100%;
  font-family: var(--font-maru-gochic);
}

.tab-selector .itemSelector {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  min-height: 5.5rem;
  position: relative;
  z-index: 2;
}

.tab-selector .itemSelector.is-active {

  background: #fff;
}

.tab-selector .itemSelector.is-active::before {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background: #529845;
  position: absolute;
  top: 0;
  left: 0;
}

.tab-selector+.content_area {
  width: 100%;
}

.tab-selector+.content_area .contentItem {
  display: none;
}

.tab-selector+.content_area .contentItem.is-active {
  display: block;
}

.tab-selector-box03 {
  overflow: hidden;
  border-radius: 1.6rem;
}

.tab-selector03 {
  flex-shrink: 0;
}

.tab-selector03 .itemSelector {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eeeeee;
  border-bottom: 1px solid #fff;
  width: 100%;
  min-height: 5rem;
  color: #999999;
  font-size: 1.8rem;
}

.tab-selector03 .itemSelector.is-active {
  background: #287e16;
  border-color: #287e16;
  color: #fff;
}

.tab-selector03+.content_area {
  padding: 2rem 2rem 2rem;
  width: 100%;
  border: 2px solid #287e16;

  border-radius: 0 0 1.6rem 1.6rem;
}

.tab-selector03+.content_area .contentItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
}

.tab-selector03+.content_area .contentItem>a {
  background: #68a45b;
  border-color: #68a45b;
  color: #fff;
}

.tab-selector03+.content_area .contentItem {
  display: none;
}

.tab-selector03+.content_area .contentItem.is-active {
  display: block;
}

/* 基本のヘッダーの調整 */
.d-nav-list>ul .linkItem {
  display: flex;
}

.d-nav-list>ul .linkItem span {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.d-nav-list>ul .linkItem span img {
  flex-shrink: 0;

}

.d-nav-list>ul .linkItem.-dl span {
  width: 15px;
}

.d-nav-list>ul .linkItem.-contact span {
  width: 21px;
}

.d-nav-list.-list01 {
  flex-shrink: 0;
}

.d-nav-list.-list01>ul>li:nth-of-type(n+2) {
  margin-left: 20px;
}

/*
  PC：メガメニュー
  SP：ハンバーガーメニュー
  */
.d-nav-list.-list02>ul>li>a {
  padding: 0 15px 0;
  display: flex;
  align-items: center;
}

.d-nav-list.-list02>ul>li>a span {}

.d-nav-list.-list02 .d-nav-list-body>.navItem {
  transition: 0.3s ease-in-out;
}

.d-nav-list.-list02 .d-nav-list-body>.navItem>a>span {
  display: inline-block;
  position: relative;
}

.d-nav-list.-list02 .d-nav-list-body>.navItem>a>span::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.d-nav-list.-list02 .d-nav-list-body>.navItem.is-hover>a {
  opacity: 1;
}

.d-nav-list.-list02 .d-nav-list-body>.navItem.is-hover>a>span {
  color: var(--color-red);
}

.d-nav-list.-list02 .d-nav-list-body>.navItem.is-hover>a>span::before {
  opacity: 1;
}

.d-sub-nav {
  width: 100%;
  z-index: 10;
  transition: 0.3s ease-in-out;
  opacity: 1;
}

.d-sub-nav>dl>dt {

  font-size: 1.8rem;
  width: 100%;
  position: relative;

}

.d-sub-nav>dl>dd {
  display: none;
}

.d-sub-nav>dl>dd>.d-fig {
  width: 220px;
  flex-shrink: 0;
}

.d-sub-nav>dl>dd>.subWrap {
  width: 100%;
}

.d-sub-nav>dl>dd>.subWrap>.navList>.navItem>a {
  position: relative;

  font-size: 1.4rem;

}

.d-sub-nav>dl>dd>.subWrap .search-box02 {
  margin-top: 15px;
}

.d-sub-nav.-grpInfo>dl>dd>.d-fig {}

.d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList {
  justify-content: space-between;
}

.d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem a {
  display: block;
}

.d-sub-nav.-sHolder>dl>dd>.d-fig {}

.d-sub-nav.-recruit>dl>dd>.d-fig {}

.d-sub-nav.-recruit>dl>dd>.subWrap>.navList {
  justify-content: space-between;
}

.d-sub-nav.-recruit>dl>dd>.subWrap>.navList>.navItem a {
  display: block;
  width: 100%;
}

.is-active .d-sub-nav {}

.is-active.is-hover .d-sub-nav {
  opacity: 1;
  transition: 0.3s ease-in-out;
  z-index: 2;
  pointer-events: all;
}

.tel-numBox {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;

}

.tel-numBox p {
  flex-shrink: 0;
}

.tel-numBox p>a {
  padding: 0 0 0 24px;
  color: #fff;
  position: relative;
  letter-spacing: 0.05em;
}

.tel-numBox p>a>span {
  font-size: 19px;
  letter-spacing: 0;
}

.tel-numBox p>a>span:nth-child(1) {
  margin-right: 5px;
  font-size: 13px;
}

.tel-numBox p>a::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.tel-numBox p:nth-of-type(n+2) {
  margin-left: 10px;
}

.tel-numBox .telItem>a::before {
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_tel_wh.png) no-repeat center / contain;
}

.tel-numBox .faxItem>a::before {
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_fax_wh.png) no-repeat center / contain;
}

.menu-modal {
  width: 100vw;
  padding: 0 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 10;
  background: #062d4b;
  display: block;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
}

.menu-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  width: calc(100vw + 4px);	
}
@media (min-width: 769px) {
  .menu-modal {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: none;
    width: auto;
    padding: 0;
    z-index: 1;
  }
}

.menu-modal__content {
  padding: 20px 26px 30px 38px;
  height: calc(100dvh - 60px);
  /* max-height: 100%; */
  overflow-x: hidden;
  overflow-y: auto;
  /* background: #062d4b; */

}

.menu-modal__btn {
  width: 60px;
  height: 60px;
  background: #062d4b;
  position: absolute;
  top: 0;
  right: 2px;
  transform: translateY(-100%);
  overflow: hidden;
  text-indent: -100vw;
  white-space: nowrap;
}

.menu-modal__btn::before,
.menu-modal__btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}

.menu-modal__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.global-search {
  width: 100%;
  display: block;
}

.global-search>form {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.global-search>form>input[type=search] {
  width: 100%;
  padding: 5px 10px 5px 30px;
  background: #f7f7f6;
  height: 30px;
  border-radius: 15px;
}

.global-search>form>input[type=submit] {
  display: block;
  width: 26px;
  height: 26px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  text-indent: 200%;
  background: url(../img/common/icon_search.png) no-repeat center / contain;
}

/* .global-search>form>input[type=submit]::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon_search.png) no-repeat center / contain;
} */

.js-nav-switch-sp,
.js-nav-switch {
  position: relative;
}

.js-nav-switch-sp::before,
.js-nav-switch::before,
.js-nav-switch-sp::after,
.js-nav-switch::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 2px;
  background: #efff47;
  transition: 0.3s ease-in-out;
}

.js-nav-switch-sp::after,
.js-nav-switch::after {
  transform: translateY(-50%) rotate(-90deg);
}

.js-nav-switch-sp.is-open::after,
.js-nav-switch.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}
@media (min-width: 769px) {
  .js-nav-switch-sp > a,
  .js-nav-switch > a {
    pointer-events: none;
  }
}
.global-sub-nav>.navList>li {
  padding: 10px 0;
  border-bottom: 1px solid #123753;
  flex-shrink: 0;
  letter-spacing: 0;
}

.global-sub-nav>.navList>li a {
  color: #fff;
}

.global-sub-nav>.global-search {
  display: none;
}

.global-nav .navList a {
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
}

.global-nav .navList.-lv2 a {
  font-size: 1.4rem;
}

.global-nav>.navList>li {
  padding: 0 20px 0;
  letter-spacing: 0;
}

.global-nav>.navList>li a {
  position: relative;
}

.global-nav>.navList>li:nth-of-type(1) {
  /* padding-left: 0; */
}

.global-nav>.navList>li:last-of-type {
  /* padding-right: 0; */
}

.global-nav .navList.-lv1>li {
  padding: 10px 0;
  border-bottom: 1px solid #123753;
}

.global-nav .navList.-lv1>li>p>a {
  display: flex;
  padding: 0 20px 0;
}
@media(max-width: 768px){
  .global-nav .navList.-lv1>li>p>a {
    padding-left: 0;
  }
}

.global-nav .navList.-lv1>li>.navListLayer {
  display: none;
}

.global-nav .navList.-lv1>li>.navListLayer>.navHeader {
  display: none;
}

.global-nav .navList.-lv1>li>.navListLayer>.navList {
  padding-top: 5px;

}

/* display: none; */
.global-nav .navList.-lv2 {
  padding-left: 35px;
}

.global-nav .navList.-lv1>li:nth-of-type(1) {}

.global-nav .navList.-lv1>li:nth-of-type(2) {}

.global-nav .navList.-lv1>li:nth-of-type(3) {}

.global-nav .navList.-lv1>li:nth-of-type(4) {}

.global-nav-wrap {
  display: flex;
  flex-direction: column;

}

.function-frame {
  width: 100%;
  height: 60px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.function-frame>.logo {
  width: 80px;
  margin: 0;
}
@media(max-width: 768px){
  .function-frame>.logo {
    width: 180px;
  }
}

.function-frame>.menuBtn {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 22px;
  margin: 0 0 0 auto;
  position: relative;
}
@media(max-width: 768px){
  .function-frame>.menuBtn {
    width: 45px;
  }
}

.function-frame>.menuBtn>span {
  display: block;
  width: 100%;
  height: 3px;
  background: #999999;
}

.function-frame>.menuBtn>span:nth-of-type(1) {}

.function-frame>.menuBtn>span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.function-frame>.menuBtn>span:nth-of-type(3) {
  margin-top: auto;
}

.function-frame .function-sub-frame {
  margin-left: auto;
}

.function-frame .tel-numBox {
  margin-top: 30px;
}

.function-frame .sns-list {
  margin: 20px 0 0;
  justify-content: center;
}

.d-header>.inner {
  width: 100%;
  padding: 0;
  margin: 0 auto 0;
}

/* 基本のフッターーの調整 */
.sns-list {
  display: flex;
  justify-content: flex-end;
}

.sns-list>.snsItem {
  width: 20px;
}

.sns-list>.snsItem:nth-of-type(n+2) {
  margin-left: 10px;
}

.footer-linkBox02 {
/*   width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 10; */
  position: fixed;
  bottom: 20px;
  z-index: 10000;
  width: 100%;
}

.footer-linkBox02>.pageTop {
  width: 4rem;
  bottom: 0;
  right: 0;
  position: absolute;
}

.footer-linkBox02>.returnAddress {
  display: none;
  width: 15rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.d-wrapper.topPage .footer-linkBox02>.returnAddress {
  display: block;
}

.footer-linkBox {
  padding: 0 23px 0;
  display: block;
  position: relative;
}

.footer-linkBox>li {
  width: 100%;
}

.footer-linkBox>li a {
  padding: 0 15px 0;
  height: 100px;
  display: flex;
  align-items: center;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  box-shadow: 5px 5px 15px #e6e6e6;
  background: #fff;
}

.footer-linkBox>li a img {
  width: 6rem;
  margin-right: 2.5rem;
}

.footer-linkBox>li a::before,
.footer-linkBox>li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.footer-linkBox>li a::before {
  width: 25px;
  height: 25px;
  background: #e3e5e8;
  right: 15px;
  border-radius: 50%;
}

.footer-linkBox>li a::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid #0a2c47;
  border-right: 2px solid #0a2c47;
  transform: translateY(-50%) rotate(45deg);
  right: 25px;
}

.footer-linkBox>li:nth-of-type(n+2) {
  margin: 1.5rem auto 0;
}

.link-branch>.treeItemLayer {
  display: none;
  padding: 0 0rem 0 4.5rem;
  margin-top: 0.5rem;
}

.link-branch a {
  color: #fff;
}

.link-branch.-lv01 {
  padding: 0.5rem 0;
  border-bottom: 1px solid #123753;

}

.link-branch.-lv01>p>a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.link-branch.-lv02>a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.link-branch.-lv02:nth-of-type(n+2) {
  margin-top: 10px;
}

.footer-link-tree {
  padding: 0 2.7rem 0 4rem;

}

.footer-link-tree .treeItem .sns-list {
  /* display: none; */
  margin: 0 0 0 auto;
}

.footer-link-tree .treeItem:nth-of-type(1) {}

.footer-navFrame02 {
  padding: 0 0 270px;
  background: #062d4b;
  display: flex;
  flex-direction: column;
}

.footer-navFrame02 a {
  color: #fff;
}

.footer-navFrame02>.inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer-navFrame02>.inner>.logo {
  display: none;
}

.footer-navFrame02>.inner>.logo02 {
  width: 72px;
  order: 3;
  /* margin: -3rem 0 0 4rem; */
  margin: 2rem 0 0 4rem;
}

.footer-navFrame02>.inner>.sns-list {
  margin-right: 2.7rem;
  margin-top: 3rem;
  order: 2;
}

.footer-navFrame02>.inner>.navList {
  display: block;
  padding: 0 2.7rem 0 4rem;
  margin: 0;
  font-size: 1.5rem;
  order: 1;
}

.footer-navFrame02>.inner>.navList>.navItem {
  padding: 1.5rem 0;
  border-bottom: 1px solid #123753;
  letter-spacing: 0;
  line-height: 1;
}

.footer-navFrame02>.inner>.copyright {
  margin: 2rem 0 0;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}

.footer-navFrame01 {
  padding: 20px 0 0;
  border-top: 8px solid #f1ff59;
  background: #062d4b;
  position: relative;
  margin-top: 7.5rem;

}

.footer-navFrame01::before {
  content: '';
  display: block;
  width: 100%;
  height: 140px;
  background: url('../img/common/bg_footer02.png') no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: -1;
}

.footer-navFrame01>.inner {
  width: 100%;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;

}

.footer-navFrame01>.inner>.footer-link-tree {}

.d-footer>.inner {
  margin: 7rem auto 0;
}

.d-footer>.snsItem {}

/* グロナビ */
/* セクション */
.d-section {
  position: relative;
}

.d-section .d-headding02-02 {
  text-align: center;
}

.d-section>.inner {
  /*   padding: 4.5rem 0 5rem; */
    padding: 0 0 5rem;
    margin: 9rem auto 0;
  }
.d-section>.inner > *:first-child {
  margin-top: 0;
}

.d-section>.imgIcon {
  display: block;
  width: 24px;
  height: 12px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.d-section>.imgIcon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: var(--color-red02);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.d-section .linkBtn {
  width: 280px;
  margin: 3rem auto 0;
}

.d-section.-news .d-heading02>span>.imgIcon {
  left: auto;
  right: -20px;
  transform: translate(100%, -50%);
}

.d-section.-pickup>.inner {
  padding: 0;
  margin-top: 7rem;
}

.d-section.-product {
  margin-top: 5rem;
  /* background: url(../img/top/bg_product02.png) no-repeat center / cover; */
  background: #062d4b;
  overflow: hidden;
}
@media (min-width: 769px) {

.d-section.-product::before {
  content: '';
  display: block;
  background: url(../img/top/bg_product01.png) no-repeat right / contain;
  width: 1158px;
  height: 650px;
  /*       min-width: 1165px;
      min-height: 600px; */
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}
}
.d-section.-product>.inner {
  padding: 1rem 0 9rem;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}

.d-section.-product .d-heading02>span>.imgIcon {
  left: auto;
  right: -20px;
  transform: translate(100%, -50%);
}

.d-section.-logo>.inner {
  padding: 0;
  margin-top: 3rem;
}

.d-section.-about>.inner {
  padding-bottom: 0;
  margin-top: 3rem;
}
.d-section.-about {
	overflow: hidden;
}

.bg-parts.-top01 {
  width: 100%;
  min-width: 1920px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 769px) {

.bg-parts.-top01::before {
  content: '';
  display: block;
  position: absolute;
  width: 425px;
  height: 877px;
  top: 0;
  right: 0;
  background: url(../img/top/bg_01.png) no-repeat center center/contain;

}

.bg-parts.-top02 {
  width: 100%;
  min-width: 1920px;
  position: absolute;
  top: 59.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.bg-parts.-top02::before {
  content: '';
  display: block;
  position: absolute;
  width: 120px;
  height: 78px;
  top: 00;
  left: 15.4rem;
  background: url(../img/top/bg_02.png) no-repeat center center/contain;
}

.bg-parts.-top03 {
  width: 100%;
  min-width: 1920px;
  position: absolute;
  top: 80.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.bg-parts.-top03::before {
  content: '';
  display: block;
  position: absolute;
  width: 356px;
  height: 716px;
  top: 0;
  left: 0;
  background: url(../img/top/bg_03.png) no-repeat center center/contain;
}

.bg-parts.-top04 {
  width: 100%;
  min-width: 1920px;
  position: absolute;
  top: 2600px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.bg-parts.-top04::before {
  content: '';
  display: block;
  position: absolute;
  width: 80px;
  height: 136px;
  top: 0;
  left: 200px;
  background: url(../img/top/bg_04.png) no-repeat center center/contain;
}
}
@media (min-width: 769px) {
  .d-section.-product::after {
    content: '';
    display: block;
    border-top: 70px solid #fff;
    border-right: 100vw solid transparent;
    position: absolute;
    top: 0;
    left: 0;
  }

  .d-section.-product>.inner {
    padding: 12rem 0 8.1rem;
    margin: 0 auto 0;
  }

  .d-section.-logo>.inner {
    margin-top: 0;
	 padding-top: 25px;
  }

  .d-section.-about>.inner {
    margin-top: 9rem;
  }
}

@media (min-width: 769px) and (min-width: 1200px) {
  .d-section.-product::after {
    border-top: 95px solid #fff;
  }
}

@media (min-width: 769px) and (min-width: 1920px) {
  .d-section.-product::after {
    border-top: calc(106 * (100vw / var(--base-width-pc))) solid #fff;
  }
}


@media (min-width:769px) {
  .search-list>.body {
    width: calc(100% - 50px);
    max-width: 1030px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  .search-list>.body>* {
    width: calc((100% / 2) - (60px / 2));

  }

  .search-list>.body>*:not(:nth-of-type(2n)) {
    margin-right: calc((60 / 1080) * 100%);
  }

  .search-list>.body>*:nth-of-type(n+3) {
    margin-top: 20px;
  }

  .search-list .partsItem .headding>* {
    padding: 5px 20px 5px 110px;
  }

  .search-list .partsItem .headding>*::before {
    width: 80px;
    height: 80px;
  }

  .search-list .partsItem .headding>* img:nth-of-type(1) {
    width: 43px;
    height: 44px;
    left: 38px;
  }

  .search-list .partsItem>.body>dd {
    width: 100vw;
    max-width: 1030px;
    padding-top: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
  }

  .search-list .partsItem>.body>dd>.inner {
    padding: 50px;
  }

  .search-list .partsItem>.body>dd>.inner ul {
    display: flex;
    flex-wrap: wrap;
  }

  .search-list .partsItem>.body>dd>.inner ul>li {
    width: calc((100% / 2) - (20px / 2));
    height: 8rem;
  }

  .search-list .partsItem>.body>dd>.inner ul>li:not(:nth-of-type(2n)) {
    margin-right: calc((20 / 980) * 100%);
  }

  .search-list .partsItem>.body>dd>.inner ul>li:nth-of-type(n+3) {
    margin-top: 10px;
  }

  .search-list .partsItem>.body>dd>.inner ul>li a {
    font-size: 2rem;
  }

  .search-list .partsItem>.body>dd>.inner ul>li a::before {
    width: 12px;
    height: 12px;
    right: 30px;
  }

  .search-list .partsItem>.body>dd>.inner::before,
  .search-list .partsItem>.body>dd>.inner::after {
    left: 254px;
    transform: translateY(-100%);
  }

  .search-list .partsItem>.body>dd>.inner::after {
    top: 4px;
  }

  .search-list .partsItem.is-hover dd {
    opacity: 1;
    pointer-events: all;
  }

  .search-list .search-box02 form input[type='search'] {
    width: 100%;
    height: 5rem;
    margin-right: 2rem;
  }

  .search-list .search-box02 form input[type='submit'] {
    width: 11rem;
    height: 5rem;
    font-size: 2rem;
    border-radius: 2.5rem;
  }

  .search-list .partsItem.-cat .headding img:nth-of-type(2) {
    height: 47px;
  }

  .search-list .partsItem.-task .headding img:nth-of-type(2) {
    height: 47px;
  }

  .search-list .partsItem.-task>.body>dd>.inner::before,
  .search-list .partsItem.-task>.body>dd>.inner::after {
    left: auto;
    right: 254px;
  }

  .search-list .partsItem.-deport .headding img:nth-of-type(2) {
    height: 47px;
  }

  .search-list .partsItem.-case .headding img:nth-of-type(2) {
    height: 47px;
  }

  .search-list .partsItem.-keyword .headding img:nth-of-type(2) {
    height: 47px;
  }

  .service-list>.body {
    padding: 0;
    display: flex;
    flex-wrap: wrap;

  }

  .service-list>.body>* {
    width: calc((100% / 3) - (160px / 3));
  }

  .service-list>.body>*:not(:nth-of-type(3n)) {
    margin-right: calc((80 / 970) * 100%);
  }

  .service-list>.body>*:nth-of-type(n+4) {
    margin-top: 44px;
  }

  .service-list .partsItem dt {
    font-size: 2.2rem;
  }

  .headding-box>.body::before {}

  .headding-box .local-nav {
    padding: 2rem 0;
  }

  .headding-box .local-nav ul {
    width: var(--v-width-pc);
  }

  .headding-box .local-nav ul li {
    line-height: 1;
    padding: 0 2rem;
  }

  .headding-box .local-nav ul li:nth-of-type(n+2) {
    border-left: 1px solid var(--color-txt-link);
  }

  .breadcrumb>div {
    width: var(--v-width-pc);
    max-width: 120rem;
  }

  .hero-box>.inner>.videoItem {
    height: 491px;
    border-radius: 1.6rem 1.6rem 0 1.6rem;
  }

  .news-box>.body .partsItem dl>dt>p:nth-of-type(2),
  .news-box02>.body .partsItem dl>dt>p:nth-of-type(2) {
    width: 140px;
    height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.4rem;
  }

  .news-box .partsItem>dl,
  .news-box02 .partsItem>dl {
    font-size: 1.6rem;
  }

  .tab-selector-news {
    height: 3rem;
  }

  .tab-selector-news .itemSelector {
    width: 100%;
    padding-bottom: 15px;
  }

  .pickup-list>.body,
  .pickup-list02>.body {
    display: flex;
    flex-wrap: wrap;
  }

  .pickup-list>.body>*,
  .pickup-list02>.body>* {
    width: calc((100% / 3) - (120px / 3));
  }

  .pickup-list>.body>*:not(:nth-of-type(3n)),
  .pickup-list02>.body>*:not(:nth-of-type(3n)) {
    margin-right: 60px;
  }

  .pickup-list>.body>*:nth-of-type(n+4),
  .pickup-list02>.body>*:nth-of-type(n+4) {
    margin-top: 40px;
  }

  .pickup-list .partsItem dt,
  .pickup-list02 .partsItem dt {
    font-size: 1.8rem;
  }

  .pickup-list .partsItem dd,
  .pickup-list02 .partsItem dd {
    width: auto;
    padding: 10px 15px 15px;
    font-size: 1.8rem;
  }

  .pickup-list .partsItem dd>a,
  .pickup-list02 .partsItem dd>a {
    padding: 0 0 0 10px;
    margin: 25px 0 0 auto;
    width: 9.8rem;
    height: 3.6rem;
    border-radius: 1.8rem;
    font-size: 1.4rem;
  }

  .pickup-list02 .partsItem dl dd {
    display: flex;
    flex-direction: column;
  }

  .card-slider .slick-dots {
    display: none;
  }

  .card-slider>.body,
  .card-list>.body {
    width: 1060px;
    margin: 40px auto 0;

  }

  .card-slider>.body .listItem,
  .card-list>.body .listItem {
    width: 32rem;
    margin-right: 3rem;
  }

  .card-list>.body ul {
    display: flex;
    flex-wrap: wrap;
  }

  .card-list>.body ul>*:nth-of-type(n+4) {
    margin-top: 2rem;
  }

  .column-list .partsItem dl,
  .column-list02 .partsItem dl {
    display: flex;
    padding: 1.3rem 5rem 2rem;
  }

  .column-list .partsItem dl dd,
  .column-list02 .partsItem dl dd {
    width: 100%;
    margin-left: 50px;
    /* display: flex; */
  }

  .column-list .partsItem dl dd a,
  .column-list02 .partsItem dl dd a {
    font-size: 1.6rem;
    transition: 0s;
  }

  .column-list .partsItem dl dd a::before,
  .column-list02 .partsItem dl dd a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .column-list .partsItem dl dd a:hover,
  .column-list02 .partsItem dl dd a:hover {
    opacity: 1;
    color: var(--color-red);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .pickup-news-box {
    padding: 40px 60px 20px;
    border-radius: 5px;
    margin: 60px 0;
  }

  .pickup-news-box .body {
    display: flex;
  }

  .pickup-news-box .d-fig {
    margin: 0 50px 0 0;
  }

  .pickup-news-box .body dl {
    padding: 15px 0 0;
  }

  .info-box>.inner>.listBody {
    display: flex;
  }

  .info-box>.inner>.listBody>.infoHeadding {
    width: 216px;
    border-right: 1px solid #ddd;
  }

  .info-box>.inner>.listBody>.infoList .infoItem {
    display: flex;
  }

  .info-box>.inner>.listBody>.infoList .infoItem>.dateTxt {
    padding: 0 3rem;
    font-size: 1.4rem;
  }

  #pagetop {
    width: 10rem;
    height: 10rem;
    right: -2rem;
  }

  .tab-selector {}

  .tab-selector .itemSelector {
    width: 100%;
  }

  .tab-selector .itemSelector.is-active {
    margin: 0 !important;
  }

  .tab-selector .itemSelector:not(:last-of-type) {
    margin-right: 2px;
  }

  .tab-selector-box03 {
    display: flex;
  }

  .tab-selector03 .itemSelector {
    width: 28.5rem;
    min-height: 6.8rem;
  }

  .tab-selector03+.content_area {
    padding: 2.5rem 6rem;
    width: 100%;
    border: 2px solid #287e16;
    border-left: none;
  }

  .tab-selector03+.content_area .contentItem a {
    width: calc((100% / 2) - (40px / 2));
  }

  .tab-selector03+.content_area {
    border-radius: 0 1.6rem 1.6rem 0;
  }

  .tab-selector03+.content_area .btnList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }

  .tab-selector03+.content_area .btnList>*:not(:nth-of-type(2n)) {
    margin-right: 2rem;
  }

  .tab-selector03+.content_area .btnList>*:nth-of-type(n+3) {
    margin-top: 1.5rem;
  }

  .d-nav-list {
    display: flex;
  }

  .d-nav-list>ul {
    display: flex;
  }

  .d-nav-list.-list02>ul {
    padding-right: 50px;

  }

  .d-nav-list.-list02>ul>li:nth-of-type(n+2) {
    border-left: 1px solid #ccc;
  }

  .d-sub-nav {
    background: rgb(255, 255, 255, 0.93);
    border-radius: 0 0 0 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    max-width: 960px;
    height: 240px;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }

  .d-sub-nav>dl {
    padding: 10px 44px 10px;
  }

  .d-sub-nav>dl>dt {
    padding-bottom: 10px;

  }

  .d-sub-nav>dl>dt::before,
  .d-sub-nav>dl>dt::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
  }

  .d-sub-nav>dl>dt::before {
    width: 266px;
    left: 0;
    z-index: 2;
    background: #c0c98a;
  }

  .d-sub-nav>dl>dt::after {
    right: 0;
    z-index: 1;
    background: #ebebeb;
  }

  .d-sub-nav>dl>dd {
    display: flex;
    padding: 25px 0 0;
  }

  .d-sub-nav>dl>dd>.subWrap {
    width: 535px;
    margin: 0 30px 0 70px;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList {
    display: flex;
    flex-wrap: wrap;

  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem:not(:nth-of-type(3n)) {
    margin-right: auto;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem:nth-of-type(n+4) {
    margin-top: 5px;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem>a {
    padding-right: 20px;

  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem>a:hover {
    color: #d55e5e;
    opacity: 1;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem>a::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url('../img/common/icon_arrow_right_green.png') no-repeat 0 0 / contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  .d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem {
    width: calc((100%/3) - (60px/3));
  }

  .d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem:nth-of-type(3n+1) a {
    width: calc((100 / 158) * 100%);
  }

  .d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem:nth-of-type(3n+2) a {
    width: calc((120 / 158) * 100%);
  }

  .d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem:nth-of-type(3n) a {
    width: 100%;
  }

  .d-sub-nav.-grpInfo>dl>dd>.subWrap>.navList>.navItem:not(:nth-of-type(3n)) {
    margin-right: calc((30 / 535) * 100%);
  }

  .d-sub-nav.-recruit>dl>dd>.subWrap>.navList>.navItem {
    width: calc((100%/3) - (60px/3));

  }

  .d-sub-nav.-recruit>dl>dd>.subWrap>.navList>.navItem:not(:nth-of-type(3n)) {
    margin-right: calc((30 / 535) * 100%);
  }

  .tel-numBox {
    display: block;

  }

  .tel-numBox p>a {
    display: flex;
    align-items: center;
    padding: 3px 18px 3px 38px;
    height: 30px;
    border: 1px solid #d0d0d0;
    border-radius: 15px;
    font-size: 12px;
    color: #333;
  }

  .tel-numBox p>a>span {
    font-size: 16px;
  }

  .tel-numBox p>a>span:nth-child(1) {
    margin-right: 5px;
    font-size: 12px;
  }

  .tel-numBox p>a::before {
    left: 20px;
  }

  .tel-numBox p:nth-of-type(n+2) {
    margin: 10px 0 0;
  }

  .tel-numBox .telItem>a::before {
    background: url(../img/common/icon_tel_gray.png) no-repeat center / contain;
  }

  .tel-numBox .faxItem>a::before {
    background: url(../img/common/icon_fax_gray.png) no-repeat center / contain;
  }

  .menu-modal {
    padding: 0;
    width: auto;
    margin-left: auto;
    position: static;
    background: none;
    opacity: 1;
    pointer-events: all;
    left: 0;
    bottom: 0;
    transform: none;
    z-index: 1;
  }

  .menu-modal__overlay {
    /* width: 100%; */
  }

  .menu-modal__container {
    /* width: 100%; */
  }

  .menu-modal__content {
    padding: 0;
    height: auto;
    overflow: visible;
    /* background: none; */

  }

  .menu-modal__btn {
    display: none !important;
  }

  .global-search {
    width: 100%;
    max-width: 220px;
    flex-shrink: 0;
  }

  .global-search>form>input[type=submit] {
    width: 15px;
    height: 16px;
    top: calc(50% + 2px);
  }

  .js-nav-switch-sp::before,
  .js-nav-switch::before,
  .js-nav-switch-sp::after,
  .js-nav-switch::after {
    display: none !important;
  }

  .js-nav-switch-sp+.navListLayer {
    display: none !important;
  }

  .global-sub-nav {
    width: 100%;
    max-width: 455px;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    order: 1;
  }

  .global-sub-nav>.navList {
    display: flex;

  }

  .global-sub-nav>.navList>li {
    padding: 0;
    border: 0;
  }

  .global-sub-nav>.navList>li a {
    color: #333;
  }

  .global-sub-nav>.navList>li:nth-of-type(n+2) {
    margin-left: 12px;
  }

  .global-sub-nav>.global-search {
    display: block;
    margin-left: 20px;
  }

  .global-nav {
    padding: 0;
    margin-top: 13px;
    font-size: 17px;
    order: 2;
  }

  .global-nav .navList a {
    color: #333;
  }

  .global-nav .navList.-lv2 a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .global-nav>.navList {
    display: flex;
  }

  .global-nav>.navList>li {
    padding: 0 20px 0;
  }

  .global-nav>.navList>li:nth-of-type(n+2)>p>a {
    position: relative;
  }

  .global-nav>.navList>li:nth-of-type(n+2)>p>a::before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }

  .global-nav .navList.-lv1>li {
    padding: 0;
    border: 0;
  }


  .global-nav .navList.-lv1>li:nth-of-type(1)>p>a {
    padding-left: 0;
  }

  .global-nav .navList.-lv1>li:last-of-type>p>a {
    padding-right: 0;
  }

  .global-nav .navList.-lv1>li>.navListLayer {
    padding: 30px 64px 35px;
    border-radius: 5px;
    background: #102d49;
    /* display: block; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    z-index: 100;
  }

  .global-nav .navList.-lv1>li>.navListLayer>.navHeader {
    padding-left: 25px;
    display: block;
    position: relative;
    color: #fff;
    & a {
      color: #fff;
    }
  }

  .global-nav .navList.-lv1>li>.navListLayer>.navHeader::before,
  .global-nav .navList.-lv1>li>.navListLayer>.navHeader::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;

  }

  .global-nav .navList.-lv1>li>.navListLayer>.navHeader::before {
    background: #2973a9;
    z-index: 2;
  }

  .global-nav .navList.-lv1>li>.navListLayer>.navHeader::after {
    left: 9px;
    background: #efff47;
    z-index: 1;
  }

  .global-nav .navList.-lv1>li>.navListLayer>.navList {
    margin-top: 10px;

  }

  .global-nav .navList.-lv2 {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
  }

  .global-nav .navList.-lv2>li {
    position: relative;
  }

  .global-nav .navList.-lv2>li a {
    color: #fff;
    position: static;
  }

  .global-nav .navList.-lv2>li a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .function-sub-frame {
    width: 100%;
    padding: 1rem 0 0;
    display: flex;
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .function-frame {
    padding: 0;
    height: auto;
    z-index: 2;
  }

  .function-frame>.menuBtn {
    display: none !important;
  }

  .function-frame>.menuBtn {
    display: none !important;
  }

  .function-frame .tel-numBox {
    margin: 1rem 0 0 1rem;
  }

  .function-frame .sns-list {
    display: none;
  }

  .d-header>.inner {
    width: 100%;
    padding: 13px 0 15px 10px;
    max-width: 1200px;
    display: flex;
  }

  .d-bnrList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 50px);
    max-width: 1125px;
    margin: 0 auto;
    position: relative;
    right: -45px;
  }

  .d-bnrList>* {
    width: 236px;
    margin-right: 45px;
    margin-bottom: 20px;
  }

  .sns-list {
    justify-content: flex-start;
  }

  .footer-linkBox02>.pageTop {
    width: 7rem;
  }

  .footer-linkBox02>.returnAddress {
    width: 20rem;
  }

  .footer-linkBox {
    display: flex;
    justify-content: center;
  }

  .footer-linkBox>li {
    width: 390px;
  }

  .footer-linkBox>li a {
    font-size: 1.6rem;
  }

  .footer-linkBox>li a img {
    width: 5rem;
    margin-right: 1rem;
  }

  .footer-linkBox>li:nth-of-type(n+2) {
    margin: 0 0 0 2rem;
  }

  .link-branch>.treeItemLayer {
    display: block;
    padding: 0;
    margin-top: 0.8rem;
  }

  .link-branch.-lv01 {
    padding: 0;
    border: 0;
    margin-top: 0.8rem;

  }

  .footer-link-tree {
    display: flex;
    flex-wrap: wrap;
	  justify-content: space-between

  }

  .footer-link-tree .treeItem .sns-list {
    margin: 20px 0 0;
  }
	.footer-link-tree .treeItem{
		margin-left: 10px;
		margin-right: 10px;
	}


  .footer-navFrame02 {
    display: block;
    padding: 0;
    background: none;
  }

  .footer-navFrame02 a {
    color: var(--color-main);
  }

  .footer-navFrame02>.inner {
    margin: 0 auto 0;
    flex-direction: row;
    align-items: center;
    /*width: 1200px;*/
    padding: 13px 0 13px;
  }

  .footer-navFrame02>.inner>.logo {
    display: block;
    width: 159px;
  }

  .footer-navFrame02>.inner>.logo02 {
    width: 105px;
    margin: 0 0 0 30px;

  }

  .footer-navFrame02>.inner>.sns-list {
    display: none !important;
  }

  .footer-navFrame02>.inner>.navList {
    display: flex;
    padding: 0;
	  margin-left: auto;
    font-size: 1.4rem;
  }

  .footer-navFrame02>.inner>.navList>.navItem {
    padding: 0;
    border: 0;
  }

  .footer-navFrame02>.inner>.navList>.navItem:nth-of-type(n+2) {
    border-left: 1px solid var(--color-main);
    padding-left: 10px;
    margin-left: 10px;
  }

  .footer-navFrame02>.inner>.copyright {
    margin: 0 0 0 auto;
    color: var(--color-main);
    font-size: 1.1rem;
    text-align: left;
  }

  .footer-navFrame01 {
    padding: 0;
    margin-top: 11.6rem;

  }



  .footer-navFrame01>.inner::before {
    content: '';
    display: block;
    width: 517px;
    height: 387px;
    background: url('../img/common/bg_footer01.png') no-repeat center / contain;
    position: absolute;
    bottom: 0;
    left: 150px;
    transform: translateX(-100%);
    z-index: -1;
  }

  .d-footer>.inner {
    margin: 12rem auto 0;
  }

  .d-section>.inner {
    padding: 0;
    margin: 8.7rem auto 0;
    width: calc(100% - 50px);
    max-width: 1200px;
  }

  .d-section .linkBtn {
    margin: 6rem auto 0;
  }
}


@media (min-width:1200px) {
	  .footer-navFrame02>.inner>.logo02 {
    width: 105px;
    margin: 0 0 0 125px;

  }

  .footer-navFrame02>.inner>.copyright {
    font-size: 1.5rem;
  }
	
  .global-nav .navList.-lv1>li>p>a {
    padding: 1rem 1.8rem 1rem;
    letter-spacing: 0.1em;
  }
	
  .footer-linkBox>li a {
    font-size: 1.8rem;
  }	
	  .function-frame .tel-numBox {
    margin: 1rem 0 0 7.5rem;
  }
  .footer-linkBox>li a img {
    width: 9rem;
    margin-right: 1.5rem;
  }	
  .footer-navFrame02>.inner>.navList {
    margin: 0 0 0 157px;
  }	
  .footer-linkBox {
    padding: 0;
  }

  .footer-navFrame02>.inner {
    width: 1200px;
    padding: 13px 0 13px;
  }
  .footer-navFrame01>.inner {
    width: 1200px;

  }	
    .footer-link-tree {
        padding: 7rem 5.5rem 8rem 9.5rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }	

  .d-section.-product {
    margin-top: 11.1rem;
  }
	
	  .footer-link-tree .treeItem:nth-of-type(2) {
    margin-left: 12.3rem;
  }

  .footer-link-tree .treeItem:nth-of-type(3) {
    margin-left: 9.8rem;
  }

  .footer-link-tree .treeItem:nth-of-type(4) {
    margin-left: 11.4rem;
  }

  .footer-link-tree .treeItem:nth-of-type(5) {
    margin-left: auto;
  }
}

@media (min-width: 1920px) {
  .d-section.-product::before {
    /*  width: calc(2316 * (100vw / var(--base-width-pc))); */
    /* height: calc(1300 * (100vw / var(--base-width-pc))); */
  }
}

@media (min-width:1920px) {
  .footer-linkBox>li a {}
}

@media (max-width: 768.98px) {
  .footer-navFrame02>.inner>.copyright {
    order: 10;
  }

  .d-section.-news>.inner {
    padding: 0;
    margin: 6rem auto 0;
  }
}

@media (max-width: 768px) {
.js-nav-switch-sp>a,
.js-nav-switch>a {
  pointer-events: auto;
}
.js-nav-switch {
  padding-right: 40px;
}

  .search-list>.body {
    padding: 0 1.5rem 0;
  }

  .search-list>.body>*:nth-of-type(n+2) {
    margin-top: 2rem;
  }

  .search-list .partsItem>.body>dd {
    display: none;
    /* height: auto; */
    /* max-height: 0; */
    /*           overflow: hidden;
          transition: 0.8s ease-in-out; */
  }

  .search-list .partsItem>.body>dd>.inner {
    margin-top: 2rem;
  }

  .search-list .partsItem>.body>dd>.inner ul>li:nth-of-type(n+2) {
    margin-top: 2rem;
  }

  .search-list .partsItem>.body>dd>.inner::before,
  .search-list .partsItem>.body>dd>.inner::after {
    left: 50%;
    transform: translate(-50%, -100%);
  }

  .search-list .partsItem.is-hover dd {
    /*   max-height: 150vh;
          transition: 1s ease-in-out 0.5s; */
  }

  .search-list .search-box02 form {
    display: block;
  }

  .search-list .search-box02 form input[type='search'] {
    width: 100%;
    height: 5rem;
    margin: 0 auto 0;
  }

  .search-list .search-box02 form input[type='submit'] {
    width: 7rem;
    display: block;
    margin: 1rem 0 0 auto;
    height: 3rem;
    border-radius: 1.5rem;
    font-size: 1.6rem;
  }

  .service-list>.body>*:nth-of-type(n+2) {
    margin-top: 3rem;
  }

  .service-list .partsItem dt img {
    height: 1.8rem;
  }

  .service-list .partsItem dl dd {
    margin-top: 1.5rem;
    display: flex;
  }

  .service-list .partsItem dl dd img {
    width: 16rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
  }

  .service-list .partsItem dl dd p {
    margin-top: 0;
  }

  .headding-box .local-nav ul {
    flex-wrap: wrap;
  }

  .headding-box .local-nav ul li {
    width: 50%;
    text-align: center;
    line-height: 1;
    padding: 0 2rem;
  }

  .headding-box .local-nav ul li:nth-of-type(2n) {
    border-left: 1px solid var(--color-txt-link);
  }

  .headding-box .local-nav ul li:nth-of-type(n+3) {
    margin-top: 1.5rem;
  }

  .news-box .partsItem>dl,
  .news-box02 .partsItem>dl {
    flex-wrap: wrap;
  }

  .news-box .partsItem>dl dt p:nth-of-type(1),
  .news-box02 .partsItem>dl dt p:nth-of-type(1) {
    line-height: 2.5rem;
  }

  .news-box .partsItem>dl dd,
  .news-box02 .partsItem>dl dd {
    width: 100%;
  }

  .tab-selector-news {
    padding: 0 2.5rem;
    flex-wrap: wrap;
  }

  .tab-selector-news .itemSelector:nth-of-type(n+3) {
    margin-top: 1rem;
  }

  .pickup-list>.body,
  .pickup-list02>.body {
    width: calc(330 * (100vw / var(--base-width-sp)));
    margin: 0 auto;
  }

  .pickup-list>.body>*:nth-of-type(n+2),
  .pickup-list02>.body>*:nth-of-type(n+2) {
    margin-top: 1rem;
  }

  .pickup-list .partsItem dl,
  .pickup-list02 .partsItem dl {
    display: flex;
  }

  .pickup-list .partsItem dt,
  .pickup-list02 .partsItem dt {
    width: calc((140 / 330) * 100%);
    flex-shrink: 0;
  }

  .pickup-list .partsItem dd,
  .pickup-list02 .partsItem dd {
    padding: 0.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
  }

  .pickup-list02 .partsItem dl dd {
    padding: 2rem 2rem 2rem;
  }

  .pickup-list02 .partsItem:nth-of-type(n+2) {
    margin-top: 2rem;
  }

  .card-list>.body ul>*,
  .card-list>.body ul .listItem {
    width: 100%;
  }

  .card-list>.body ul>*:nth-of-type(n+2),
  .card-list>.body ul .listItem:nth-of-type(n+2) {
    margin-top: 2rem;
  }

  .column-list .partsItem dl dd,
  .column-list02 .partsItem dl dd {
    margin: -1.5rem 0 0;
  }

  .pickup-news-box .d-fig {
    width: calc(220 * (100vw / var(--base-width-sp)));
  }

  .info-box {
    padding: 0 1.5rem 2rem;
    width: calc(100% - 30px);
  }

  .info-box>.inner>.listBody>.infoHeadding {
    padding: 1rem 0 1rem;
    border-bottom: 2px solid #ddd;
  }

  .tab-selector {
    flex-wrap: wrap;
  }

  .tab-selector .itemSelector {
    width: calc((100% / 2) - (2px / 2));
    border-bottom: 1px solid #eee;
  }

  .tab-selector .itemSelector:nth-of-type(2n+1) {
    border-right: 1px solid #eee;
  }

  .tab-selector .itemSelector:nth-of-type(2n) {
    border-left: 1px solid #eee;
  }

  .tab-selector .itemSelector.is-active {}

  .tab-selector .itemSelector:not(:nth-of-type(2n)) {
    margin-right: 2px;
  }

  .tab-selector03+.content_area {
    border-top: none;
  }

  .tab-selector03+.content_area .btnList {
    margin-top: 1rem;
  }

  .tab-selector03+.content_area .btnList>*:nth-of-type(n+2) {
    margin-top: 1rem;
  }

  .d-nav-list>ul .linkItem {
    margin: 0;
  }

  .d-nav-list>ul .linkItem:nth-of-type(1) {
    display: none;
  }

  .d-nav-list>ul .linkItem.-contact {
    overflow: hidden;
    width: 2.6rem;
    height: 1.6rem;
    position: relative;
    margin: 0;
  }

  .d-nav-list>ul .linkItem.-contact>span {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .d-nav-list>ul .linkItem.-contact a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
  }

  .d-nav-list.-list02>ul>li>a {
    display: none;
  }

  .d-nav-list.-list02 .d-nav-list-body>.navItem:nth-of-type(n+2) {
    border-top: 1px solid #727C8E;

  }

  .d-sub-nav {
    width: 100%;
  }

  .d-sub-nav>dl>dt {
    display: flex;
    align-items: center;
    min-height: 5.5rem;

  }

  .d-sub-nav>dl>dt::before,
  .d-sub-nav>dl>dt::after {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0);
    background: #bbc600;
    transition: 0.3s ease-in-out;
  }

  .d-sub-nav>dl>dt::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .d-sub-nav>dl>dt.is-open::after {
    transform: translateY(-50%) rotate(0);
  }

  .d-sub-nav>dl>dd>.subWrap {
    /* padding: 10px 0 2rem; */
    padding: 0 0 2rem;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem {
    min-height: 22px;

  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem:nth-of-type(n+2) {
    margin-top: 1rem;
  }

  .d-sub-nav>dl>dd>.subWrap>.navList>.navItem>a {
    width: 100%;
    padding-left: 4rem;

  }

  .global-nav .navList.-lv2>li:nth-of-type(n+2) {
    margin-top: 3px;
  }

  .d-bnrList {
    padding: 0 calc(70 * (100vw / var(--base-width-sp)));
  }

  .d-bnrList .bnrItem:nth-of-type(n+2) {
    margin-top: 2rem;
  }

  .d-section .d-headding02-02 {
    height: 6rem;
  }

  .d-section .d-headding02-02 img {
    width: auto;
    height: 100%;
  }

  .d-section>.inner {
    width: calc(375 * (100vw / var(--base-width-sp)));
  }
}


/* ==================== add ==================== */
@media(max-width: 768px){
  .bg-parts {
    min-width: unset !important;
  }
}
/* header sticky */
.d-wrapper {
  overflow: unset !important;
  height: auto !important;
  #header {
    position: sticky;
    top: 0;
    z-index: 100000;
    background-color: var(--color-base);
  }
  #header.compact {
    .inner {
      padding-top: 10px;
      padding-bottom: 5px;
      .function-frame {
        .logo {
          width: 150px;
          img[src*="/logo.png"] {
            display: none;
          }
          img[src*="/logo_sp.png"] {
            display: block;
          }
        }
        .function-sub-frame {
          padding-top: 0;
          .global-nav-wrap {
            .global-nav {
              margin-top: 5px;
              .navList.-lv1 {
                & > li > p > a {
                  padding-top: 0;
                  padding-bottom: 5px;
                }
              }
            }
          }
          .tel-numBox {
            display: flex;
            & p {
              margin: 0 0 0 10px;
              & > a {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0;
                width: 30px;
                &::before {
                  position: static;
                  transform: none;
                }
                & span {
                  display: none;
                }
              }
            }
          }
        }
      }
    }
  }
}

/* sp header site search */
@media(max-width: 768px){
  #header .logo + .global-search {
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 0 15px;
    & > span.btn {
      position: absolute;
      top: 2px;
      right: 15px;
      display: block;
      width: 24px;
      height: 24px;
      background-image: url(../img/common/icon_search.png);
      background-repeat: no-repeat;
      background-size: 24px 24px;
      background-position: center center;
    }
    & > span.btn.off {
      display: none;
    }
    & > form {
      visibility: hidden;
    }
    & > form.on {
      visibility: visible;
    }
    & > form > input[type=search] {
      padding-left: 35px;
    }
    & > form > input[type=submit] {
      width: 20px;
      height: 20px;
    }
  }
}

/* header products megamenu */
@media(min-width: 769px){
	.d-header.compact .tel-numBox{
		display: none!important;
	}
	
  #header .global-nav .navList.-lv2.-products {
    justify-content: space-between;
    gap: unset;
    & a::after {
      content: none;
    }
    & li.cat {
      margin: 0;
      padding: 0;
      width: calc(100% - 280px);
      background-image: url(../img/common/dot_vertical.png);
      background-repeat: repeat-y;
      background-position: right 0;

      & > p {
        margin-bottom: 10px;
        & a {
          font-size: 1.8rem;
          &::before {
            content: '';
            display: inline-block;
            margin-right: 5px;
            width: 16px;
            height: 16px;
            background-image: url(../img/common/icon_search_w.png);
            background-repeat: no-repeat;
            vertical-align: -1px;
          }
        }
      }

      & ul.subcat {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
        & li {
          margin-right: 15px;
          margin-bottom: 15px;
          width: 176px;
          height: 46px;
          & a {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
            background-color: var(--color-base);
            font-size: 1.2rem;
            line-height: 1.5;
            color: var(--color-main);
            &::before {
              content: '';
              position: absolute;
              top: 50%;
              right: 3px;
              display: block;
              transform: translateY(-50%);
              border-radius: 50%;
              width: 18px;
              height: 18px;
              background: #727c8e;
              opacity: .1;
            }
            &::after {
              content: '';
              position: absolute;
              top: 50%;
              right: 10px;
              left: unset;
              transform: translateY(-50%);
              transform: translateY(-50%) rotate(45deg);
              display: block;
              border-top: 2px solid #0a2c47;
              border-right: 2px solid #0a2c47;
              width: 5px;
              height: 5px;
            }
            & span.ico {
              display: flex;
              justify-content: center;
              align-items: center;
              width: 46px;
              height: 46px;
            }
          }
        }
      }
    }
    & li.other {
      margin: 0;
      padding: 35px 0 0 0;
      width: 250px;
      & p {
        & a {
          position: relative;
          display: block;
          font-size: 1.8rem;
          &::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 3px;
            display: block;
            transform: translateY(-50%);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            background: #727c8e;
            opacity: 1;
          }
          &::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 10px;
            left: unset;
            transform: translateY(-50%);
            transform: translateY(-50%) rotate(45deg);
            display: block;
            border-top: 2px solid #0a2c47;
            border-right: 2px solid #0a2c47;
            width: 5px;
            height: 5px;
          }
          &:hover {
            opacity: 1;
            &::before {
              background-color: var(--color-yellow);
            }
          }
        }
      }
    }
  }
}
@media(max-width: 768px){
  #header .global-nav .navList.-lv2.-products ul.subcat {
    display: none;
  }
}

/* product list */
#VcArea-ProductList {
  .btnArea {
    display: flex;
    margin: 15px 0;
    @media (min-width: 769px) {
      justify-content: end;
    }
    @media (max-width: 768px) {
      justify-content: space-around;
    }

    p {
      position: relative;
      border: 1px solid #aaaaaa;
      border-radius: 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3rem;
      letter-spacing: 0.15em;
      color: #3b4043;
      cursor: pointer;
      &:has(a[disabled="disabled"]){
        border-color: #cccccc;
      }
      a {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        &::before {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          display: block;
          right: 15px;
          width: 25px;
          height: 25px;
          background: #727c8e;
          border-radius: 50%;
          opacity: .1;
        }
        &::after {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          display: block;
          width: 6px;
          height: 6px;
          border-top: 2px solid #0a2c47;
          border-right: 2px solid #0a2c47;
          transform: translateY(-50%) rotate(45deg);
          right: 25px;
        }
        &[disabled="disabled"] {
          pointer-events: none;
          cursor: default;
          background-color: var(--color-gray);
          color: #f0f0f0;
          &::before,
          &::after {
            opacity: 0.1;
          }
        }
      }
    }
    @media (min-width: 769px) {
      p {
        margin-left: 25px;
        padding: 0 4rem;
        width: 250px;
        height: 6rem;
      }
    }
    @media (max-width: 768px) {
      p {
        padding: 1.5rem 4rem;
        width: 75%;
        height: 3.5em;
      }
    }
  }
}
.productList .d-parts.-DBParts3-1 {
  margin-top: 0;
  .p-list.jsProductList {
    margin-bottom: 0;
  }
}
/* 製品一覧の調整 */
.p-item img:not(.d-parts.-BasicParts12-1 .p-item img) {
  max-width: 100%;
  max-height: 100%;
  height: 270px;
  width: 270px;
  object-fit: contain;
}
.p-item img {
  max-width: 100%;
  max-height: 100%;
}


/* product compare */
#VcArea-ProductCompare {
  .btnArea {
    display: flex;
    margin: 15px 0;
    @media (min-width: 769px) {
      justify-content: end;
    }
    @media (max-width: 768px) {
      justify-content: space-around;
    }

    p {
      position: relative;
      border: 1px solid #aaaaaa;
      border-radius: 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3rem;
      letter-spacing: 0.15em;
      color: #3b4043;
      cursor: pointer;
      a {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        &::before {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          display: block;
          right: 15px;
          width: 25px;
          height: 25px;
          background: #727c8e;
          border-radius: 50%;
          opacity: .1;
        }
        &::after {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          display: block;
          width: 6px;
          height: 6px;
          border-top: 2px solid #0a2c47;
          border-right: 2px solid #0a2c47;
          transform: translateY(-50%) rotate(45deg);
          right: 25px;
        }
      }
    }
    @media (min-width: 769px) {
      p {
        margin-left: 25px;
        padding: 0 4rem;
        width: 250px;
        height: 6rem;
      }
    }
    @media (max-width: 768px) {
      p {
        padding: 1.5rem 1rem;
        width: calc((100% - 40px) / 2);
        height: auto;
      }
    }
  }

  .productsCompare {
    padding-bottom: 20px;
    @media (max-width: 768px) {
      margin-right: 15px;
      margin-left: 15px;
    }
    .compareBox {
      position: relative;
      display: flex;
      width: 100%;
      .ttlArea {
        left: 0;
        width: 210px;
        @media (max-width: 768px) {
          width: 120px;
        }
        & > div {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: -1px;
          border: 1px solid var(--color-gray);
          padding: 15px;
          width: 210px;
          background-color: #f9fcff;
          font-size: 1.4rem;
          font-weight: bold;
          @media (max-width: 768px) {
            padding: 10px;
            width: 120px;
            font-size: 1.1rem;
          }
          &.name {
            margin-top: 0;
          }
        }
      }
      .productsArea {
        overflow-x: scroll;
        display: flex;
        word-break: break-all;
        .productItem {
          width: 210px;
          @media (max-width: 768px) {
            width: 180px;
          }
          & > div {
            margin-top: -1px;
            margin-left: -1px;
            border: 1px solid var(--color-gray);
            padding: 15px;
            width: 210px;
            font-size: 1.2rem;
            @media (max-width: 768px) {
              padding: 10px;
              width: 180px;
            }
            &.name {
              margin-top: 0;
              background-color: #f9fcff;
              & a {
                text-decoration: underline;
              }
            }
            &.img {
              & img {
                display: block;
              }
            }
            &.feature,
            &.spec {
              font-size: 1.1rem;
            }
            &.download,
            &.inquiry {
              & a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 10px;
                border: 1px solid #aaaaaa;
                border-radius: 2px;
                padding: 3px 30px 3px 8px;
                font-size: 1.3rem;
                letter-spacing: 0.15em;
                color: #3b4043;
                &:last-child {
                  margin-bottom: 0;
                }
                &::before {
                  content: '';
                  position: absolute;
                  top: 50%;
                  right: 8px;
                  display: block;
                  transform: translateY(-50%);
                  border-radius: 50%;
                  width: 18px;
                  height: 18px;
                  background: #727c8e;
                  opacity: .1;
                }
                &::after {
                  content: '';
                  position: absolute;
                  top: 50%;
                  right: 15px;
                  transform: translateY(-50%);
                  transform: translateY(-50%) rotate(45deg);
                  display: block;
                  border-top: 2px solid #0a2c47;
                  border-right: 2px solid #0a2c47;
                  width: 5px;
                  height: 5px;
                }
              }
            }
            & ul {
              list-style: disc;
              margin-left: 20px;
            }
            & ol {
              list-style: decimal;
              margin-left: 20px;
            }
          }
        }
      }
    }
  }
}
/* 比較表の調整ここから */
.productsCompare .productItem .img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.productsCompare .productItem img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
/* 比較表の調整ここまで */

/*.footer-linkBox02 .returnAddress {
  position: relative;
  & span.close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
}*/
/*.footer-linkBox02 .returnAddress {
  position: relative;
}*/

.footer-linkBox02 .returnAddress span.close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#productSearch {
  .p-heading03 {
    border: none;
  }
  .psForm {
    input[type="search"] {
      border: 1px solid var(--color-gray);
      padding: 8px 10px;
      font-size: 1.6rem;
    }
    input[type="submit"] {
      display: inline-block;
      width: 48px;
      height: 48px;
      background-image: url(../img/common/icon_search.png);
      background-size: 26px 26px;
      background-position: 48% center;
      background-repeat: no-repeat;
      background-color: var(--color-gray);
      text-indent: -9999px;
      cursor: pointer;
    }
  }
}
@media(min-width: 769px){
  #productSearch {
    display: flex;
    justify-content: space-between;
    .p-heading03 {
      width: 300px;
      text-align: center;
    }
    .psForm {
      width: calc(100% - 300px);
      input[type="search"] {
        width: calc(100% - 48px);
      }
    }
  }
}
@media(max-width: 768px){
  #productSearch {
    .psForm {
      input[type="search"] {
        width: calc(100% - 48px);
      }
    }
  }
}

/* information paging */
.d-parts.paging {
  display: flex;
  justify-content: center;
  .jsPaging {
    display: inline-block;
    span:not(.dash),
    a:not(.prev, .next) {
      display: inline-block;
      margin: 0 5px;
      border: 1px solid var(--color-blue);
      border-radius: 13px;
      padding: 2px 0 0 1px;
      width: 26px;
      height: 26px;
      text-align: center;
      line-height: 1;
    }
    span.current {
      background-color: var(--color-blue);
      font-weight: bold;
      color: var(--color-base);
    }
    a.prev {
      margin-right: 15px;
    }
    a.next {
      margin-left: 15px;
    }
  }
}

/* search */
#VcArea-Contents {
  #insearch-result {
    & > p {
      font-size: 1.6rem;
    }
    & .paging-index {
      display: flex;
      justify-content: center;
      & li {
        & a {
          display: inline-block;
          margin: 0 5px;
          border: 1px solid var(--color-blue);
          border-radius: 16px;
          padding: 5px 0 0 1px;
          width: 28px;
          height: 32px;
          background-color: var(--color-base);
          text-align: center;
          line-height: 1;
        }
      }
      & li.paging-index-current {
        & a {
          background-color: var(--color-blue);
        }
      }
      & li:first-of-type,
      & li:last-of-type {
        & a {
          border: none;
        }
      }
    }
  }
  .searchSite,
  .searchProduct {
    #insearch-result {
      & ul:not(.paging-index) {
        margin-top: 20px;
        margin-bottom: 20px;
        & li {
          margin-bottom: 30px;
          border-bottom: 1px dotted var(--color-gray);
          padding-bottom: 20px;
          & a {
            & > h3 {
              margin-bottom: 5px;
              border-bottom: 2px solid var(--color-gray);
              padding: 0 0 0.5rem;
              font-size: 2.0rem;
              font-weight: bold;
            }
            & > p {
              display: inline-block;
              padding-left: 1em;
            }
          }
        }
      }
    }
  }
}




