@charset "utf-8";


/* ==================================================
elements
================================================== */
.textLink{
  color: #0041B4;
  text-decoration: underline;
}
.textLink_icon-pdf {
  display: inline-block;
  width: 15px;
  height: 20px;
  background: url(/top_v2/common/images/icon_pdf.svg) no-repeat;
  margin-left: 8px;
  background-size: contain;
  vertical-align: middle;
  margin-top: -3px;
}
.textLink_icon-arrow {
  display: inline-block;
  width: 13px;
  height: 10px;
  background: url(/top_v2/common/images/icon_arrow.svg) no-repeat;
  margin-left: 8px;
  background-size: contain;
  vertical-align: middle;
  margin-top: -3px;
}
.textLink_icon-blank {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(/top_v2/common/images/icon_blank.svg) no-repeat;
  margin-left: 8px;
  background-size: contain;
  vertical-align: middle;
  margin-top: -3px;
}


/* ==================================================
section
================================================== */
.cntSec {
  padding: 0 0 0;
}
.cntSec .innerWrap {
  padding: 0 10px;
}
.content_main {
  overflow: hidden;
  padding-bottom: 0;
}


/* ==================================================
h2タイトル
================================================== */
.h2_title {
  margin-bottom: 33px;
  position: relative;
  text-align: center;
}
.h2_title_inner {
  display: inline-block;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(230,0,0,1) 0%, rgba(242,205,0,1) 36%, rgba(0,169,224,1) 69%, rgba(0,65,180,1) 100%) 1;
  padding-bottom: 16px;
}
.h2_title_main {
  display: block;
  font-size: 36px;
  line-height: 1.46;
  font-weight: 500;
  letter-spacing: -0.03em;
}


/* ==================================================
パネル
================================================== */

.panel {
  margin-top: 0;
}
.panel+.panel {
  margin-top: 0;
}
.panel_link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 24px;
  color: #000;
  text-decoration: none;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px 24px 52px;
  background: #fff;
}
.panel_icon {
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.panel_icon-arrow::before {
  content: '';
  display: block;
  border-top: 6px solid transparent;
  border-right: 6px solid #0041B4;
  border-bottom: 6px solid #0041B4;
  border-left: 6px solid transparent;
}

.panel_icon.panel_icon-blank::after {
  content: '';
  display: block;
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 12px;
  height: 12px;
}
.panel_icon.panel_icon-pdf::after {
  content: '';
  display: block;
  background-image: url(/top_v2/common/images/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 20px;
}
.panel_img {
  margin-bottom: 16px;
  width: 100%;
  height: auto;
}
.panel_img img {
  position: static;
}

.panel_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}
.panel_text {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1.71;
  text-align: left;
}


/* ==================================================
ボタン
================================================== */
/* nmlBtn2 */
.nmlBtn2 {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px 7px;
}
.nmlBtn2_item {
  flex: 0 0 auto;
  width: calc(calc(100% - calc(calc(2 - 1) * 7px)) / 2);
  min-height: 56px;
}
.nmlBtn2_item_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 8px 13px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  transition: 300ms;
  border: 1px solid #BFC2D3;
}
.nmlBtn2_linkIcon {
  position: absolute;
  top: auto;
  right: 5px;
  bottom: 5px;
  margin: auto;
}
.nmlBtn2_linkIcon-blank {
  width: 10px;
  height: 10px;
}
.nmlBtn2_linkIcon-arrow {
  width: 8px;
  height: 8px;
}
.nmlBtn2_linkIcon::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: transparent;
}
.nmlBtn2_linkIcon-blank::after {
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
}
.nmlBtn2_linkIcon-arrow::after {
  border-top: 4px solid transparent;
  border-right: 4px solid #0041B4;
  border-bottom: 4px solid #0041B4;
  border-left: 4px solid transparent;
  width: 8px;
  height: 8px;
}


/* ==================================================
装飾
================================================== */
.sticky_image {
  z-index: -1;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 91%;
}
.bg_blur {
  z-index: 1;
  position: relative;
  background-color: rgba(255, 255, 255, 0.55); /* #fff（白）の不透明度55% */
  backdrop-filter: blur(5px); /* ぼかし量5 */
  -webkit-backdrop-filter: blur(5px);
}
.bg_blur::before {
  position: absolute;
  content: '';
  z-index: -1;
  top: 0;
  left: 0;
  height: 509px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    #ffffff 0px,
    #ffffff 269px,
    rgba(255, 255, 255, 0) 509px
  );
}


/* ==================================================
MV
================================================== */
#mv {
  height: auto;
  background: none;
  margin-top: 48px;

  background-color: #fff;
}
#mv .innerWrap{
  padding: 0;
}
#mv .mv_listWrap {
  position: relative;
  height: 100%;
}

/* mv_list */
#mv .mv_list {
  overflow: hidden;
  height: 116.27vw;
}
#mv .mv_item {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
}
#mv .mv_item .mv_inner {
  display: block;
  width: 100%;
  height: 100%;
}
#mv .mv_item img {
  width: 100%;
  height: 100%;
}
#mv .mv_controlBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
#mv .swiper-button-next {
  top: auto;
  right: 5px;
}
#mv .swiper-button-prev {
  top: auto;
  left: 5px;
}
#mv .slider-controls-wrap {
  position: relative;
  z-index: 1;
}
#mv .swiper-container .slider-controls {
  width: fit-content;
  padding: 0 21px 5px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}


/* スライド1枚目 */
#mv .mv_item.brand {
  position: relative;
  background-image: url(/top_v2/common/images/mv_sp01.jpg);
  background-position: center center;
}
#mv .mv_item.brand::before {
  position: absolute;
  content: '';
  display: block;
  background-image: url(/top_v2/common/images/deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 48px;
  width: 345px;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
#mv .mv_item.brand .mv_inner {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 63px;
}
#mv .mv_item.brand .mv_innerCnt {
  display: block;
  padding: 0 10px;
}
#mv .mv_item.brand .mv_title{
  display: block;
  width: 220px;
  margin-bottom: 17px;
}
#mv .mv_item.brand .mv_title_text{
  font-size: 24px;
  font-weight: 500;
  color: #0041B4;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}


/* ==================================================
Pick Up
================================================== */
.pickup {
  padding-top: 30px;
  margin-bottom: 17px;
}
.pickup_titleWrap {
 text-align: center;
 margin-bottom: -10px;
}
.pickup_title {
 position: relative;
 display: inline-block;
 background-color: #E60000;
 padding: 4px 16px 6px;
 border-radius: 8px;
 color: #fff;
 font-weight: bold;
 font-size: 16px;
}
.pickup_title::before {
 content: '';
 position: absolute;
 width: 0;
 height: 0;
 bottom: -8px;
 left: 50%;
 transform: translateX(-50%);
 border-left: 8px solid transparent;
 border-right: 8px solid transparent;
 border-top: 8px solid #E60000;
}
.pickup_list {
 box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.1);
 padding: 15px 20px 24px;
 border-radius: 8px;
}
.pickup_item {}
.pickup_link {
 display: flex;
 justify-content: space-between;
 padding: 16px 0;
 border-bottom: 1px solid #BFC2D3;
 font-size: 16px;
 letter-spacing: 0.025em;
 transition: 300ms;
}
.pickup_link:hover {
 color: #0041B4;
}
.pickup_icon {
 position: relative;
}
.pickup_icon-arrow::before {
 content: '';
 position: absolute;
 border-top: 6px solid transparent;
 border-right: 6px solid #0041B4;
 border-bottom: 6px solid #0041B4;
 border-left: 6px solid transparent;
 bottom: 0;
 right: 0;
}
.pickup_icon-blank::before {
  content: '';
  position: absolute;
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 12px;
  height: 12px;
  mask-image: none;
  bottom: 0;
  right: 0;
}
.pickup_icon-pdf::before {
  content: '';
  position: absolute;
  background: url(/top_v2/common/images/icon_pdf.svg) no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 20px;
  bottom: 0;
  right: 0;
}


/* ==================================================
製品・サービス
================================================== */
.service {
  padding-top: 40px;
  margin-bottom: 30px;
}
.service_list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin: 40px 0;
}
.service_item {}
.service_item-product {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.service_item-product .service_title {
  margin-bottom: -20px;
}
.service_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  font-size: 24px;
  letter-spacing: 0.025em;
  margin-bottom: 24px;
}
.service_title img{
  width: auto;
  height: 32px;
}


/* ==================================================
ニュース
================================================== */
.news .cntSec_inner {
  padding: 56px 10px 22px;
  background: #F5F5F5;
}
.news_inner {
  background-color: #fff;
  padding: 32px 20px;
  border-radius: 8px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .1);
}
.news_h2 {
  display: flex;
  align-items: center;
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}
.news_h2::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  margin-left: 10px;
  background-color: #0041B4;
}


/* ==================================================
ひろぎんグループ
================================================== */
.groupArea {
  background-image: url(/top_v2/common/images/bg_group_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.groupArea_h2 {
  letter-spacing: 0.025em;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 15px #fff;
}
/* nmlBtn2 */
.groupArea .nmlBtn2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 9px;
  padding: 30px 0 56px;
}
.groupArea .nmlBtn2_item {
  flex: 0 0 auto;
  width: calc(calc(100% - calc(calc(2 - 1) * 9px)) / 2);
  min-height: 64px;
}
.groupArea .nmlBtn2_item_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  transition: 300ms;
  border: 1px solid #BFC2D3;
}

.groupArea .nmlBtn2_linkIcon {
  position: absolute;
  top: auto;
  right: 5px;
  bottom: 5px;
  margin: auto;
}
.groupArea .nmlBtn2_linkIcon-blank {
  width: 10px;
  height: 10px;
}
.groupArea .nmlBtn2_linkIcon-arrow {
  width: 8px;
  height: 8px;
}
.groupArea .nmlBtn2_linkIcon::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: transparent;
}
.groupArea .nmlBtn2_linkIcon-blank::after {
  background-image: url(/top_v2/common/images/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
}
.groupArea .nmlBtn2_linkIcon-arrow::after {
  border-top: 4px solid transparent;
  border-right: 4px solid #0041B4;
  border-bottom: 4px solid #0041B4;
  border-left: 4px solid transparent;
  width: 8px;
  height: 8px;
}


/* ==================================================
お問い合わせ
================================================== */
.contact {
  margin-top: 48px;
  padding-bottom: 48px;
}
.contact_title {
  font-size: 28px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 31px;
}
.contact_list {}
.contact_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact_item:first-child {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #BFC2D3;
}
.contact_tag {
  background: #0041B4;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.03em;
  padding: 4px 24px;
  border-radius: 80px;
  margin-bottom: 4px;
}
.contact_tel {
  font-size: 40px;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 0 12px;
  color: #0041B4;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  letter-spacing: 0.05em;
}
.contact_tel a {
  color: #0041B4;
}
.contact_icon {
  display: inline-block;
  border-radius: 100%;
  padding: 11px;
  background: #F5F5F5;
}
.contact_tel img {
  display: block;
  width: 25px;
  height: 25px;
}
.contact_time {
  letter-spacing: 0.05em;
  font-size: 14px;
}



/* ==================================================
アコーディオン
================================================== */
.js-spAcdBtn{
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-top: 1px solid #f0f0f0;
}
.js-spAcdBtn:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 40px;
  height: 100%;
  background: url(/top_v2/common/images/icon_plus.svg) no-repeat center center;
  background-size: 16px 16px;
}
.js-spAcdBody{
  border-top: 1px solid #f0f0f0;
  padding: 15px;
  display: none;
}
/* アクティブ */
.js-spAcdBtn.active:after {
  background-image: url(/top_v2/common/images/icon_minus.svg);
  background-size: 16px 2px;
}

/* ==================================================
スライダー
================================================== */
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  color: transparent;
  margin-top: 0;
}
.swiper-container .swiper-button-next {
  right: 0px;
  background: url(/top_v2/common/images/arrow_next.svg) no-repeat center center;
  background-size: 15px 24px;
}
.swiper-container .swiper-button-prev {
  left: 0px;
  background: url(/top_v2/common/images/arrow_prev.svg) no-repeat center center;
  background-size: 15px 24px;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
bottom: 5px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper-container .swiper-pagination-bullet{
  background: #BFC2D3;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.swiper-container .swiper-pagination-bullet-active {
  background: #0041B4;
}
.swiper-container .slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 26px;
}
.swiper-container .slider-controls .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 -6px;
}
.swiper-container .slider-controls .playButton {
  display: none; /* 初期状態では再生ボタンを非表示 */
}
.swiper-container .slider-controls .control-button {
  width: 8px;
  height: 10px;
}
.swiper-container .slider-controls .control-button img {
  display: block;
}


#overlay {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 100;
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 25;
}