@charset "UTF-8";
/*★------------★直接編集禁止★--------------★
　cssファイルは直接編集禁止です！
　sassファイルを編集・コンパイルして使用してください。

  ▼　階層構造
  ├── css
  │    ├── custom.css
  └──  └── custom.scss

★--------------★直接編集禁止★--------------★*/
/*-----------------------------------------------------------------------
  title　decoration
-----------------------------------------------------------------------*/
.content-none::before {
  content: none;
}

.c-title__dual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 1.5rem;
}
.c-title__dual-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.c-title__dual-main {
  line-height: 1.3;
  font-size: calc(24px + 8 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-title__dual-main {
    font-size: 32px;
  }
}
.c-title__dual-main-s {
  line-height: 1.3;
  font-size: calc(18px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .c-title__dual-main-s {
    font-size: 20px;
  }
}

.c-title__point {
  color: #003390;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.c-title__point-num {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (min-width: 1920px) {
  .c-title__point-num {
    font-size: 18px;
  }
}
.c-title__point-main {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .c-title__point-main {
    font-size: 24px;
  }
}

/*-----------------------------------------------------------------------
  heading font-size
-----------------------------------------------------------------------*/
.u {
  /*
  &-h1 {
    @include u-heading(30, 10, 40);
  }
    */
}
.u-h2 {
  line-height: 1.3;
  font-size: calc(24px + 8 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .u-h2 {
    font-size: 32px;
  }
}
.u-h3 {
  line-height: 1.3;
  font-size: calc(22px + 6 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .u-h3 {
    font-size: 28px;
  }
}
.u-h4 {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .u-h4 {
    font-size: 24px;
  }
}
.u-h5 {
  line-height: 1.3;
  font-size: calc(18px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .u-h5 {
    font-size: 20px;
  }
}
.u-h6 {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 1920px) {
  .u-h6 {
    font-size: 18px;
  }
}

/*-----------------------------------------------------------------------
  改行
-----------------------------------------------------------------------*/
.only-pc {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc {
    display: none;
  }
}
.only-pc-tab {
  display: block;
}
@media screen and (max-width: 689.8px) {
  .only-pc-tab {
    display: none;
  }
}
.only-pc-sp {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc-sp {
    display: none;
  }
}
@media screen and (max-width: 689.8px) {
  .only-pc-sp {
    display: block;
  }
}
.only-tab {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tab {
    display: block;
  }
}
@media screen and (max-width: 689.8px) {
  .only-tab {
    display: none;
  }
}
.only-tab-sp {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tab-sp {
    display: block;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 689.8px) {
  .only-sp {
    display: block;
  }
}

.break-word,
.break-word a {
  overflow-wrap: break-word;
}

.u-indent {
  padding-left: 1rem;
  text-indent: -1.5rem;
}

/*-----------------------------------------------------------------------
  image
-----------------------------------------------------------------------*/
.img-full img {
  max-width: none;
  width: 100%;
  height: auto;
}

/*-----------------------------------------------------------------------
  text color 
-----------------------------------------------------------------------*/
/*text-color*/
.u-fc-main {
  color: #003390 !important;
}

.u-fc-accent {
  color: #293A45 !important;
}

.u-fc-bg01 {
  color: #DEEAFF !important;
}

.u-fc-bg02 {
  color: #F2F4F9 !important;
}

.u-fc-blk {
  color: #000 !important;
}

.u-fc-text {
  color: #333 !important;
}

.u-fc-wht {
  color: #fff !important;
}

.u-fc-gry-ddd {
  color: #ddd !important;
}

.u-fc-gry-f5 {
  color: #f5f5f5 !important;
}

/*-----------------------------------------------------------------------
 background-color 
-----------------------------------------------------------------------*/
.u-bg-main {
  background-color: #003390;
}

.u-bg-accent {
  background-color: #293A45;
}

.u-bg-bg01 {
  background-color: #DEEAFF;
}

.u-bg-bg02 {
  background-color: #F2F4F9;
}

.u-bg-blk {
  background-color: #000;
}

.u-bg-text {
  background-color: #333;
}

.u-bg-wht {
  background-color: #fff;
}

.u-bg-gry-ddd {
  background-color: #ddd;
}

.u-bg-gry-f5 {
  background-color: #f5f5f5;
}

/*-----------------------------------------------------------------------
 list
-----------------------------------------------------------------------*/
.c-list-forte {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.c-list-forte li {
  background-color: #293A45;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px;
}
@media screen and (max-width: 689.8px) {
  .c-list-forte li {
    font-size: 15px;
    padding: 8px 10px;
  }
}

.u-marker-main li::marker {
  color: #003390;
}

/*-----------------------------------------------------------------------
 actibook & youtube
-----------------------------------------------------------------------*/
.u-iframe iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

/*-------------------------------------
button
-------------------------------------*/
.dlb_btn.-wht a {
  background-color: #fff !important;
  border-color: #003390 !important;
  color: #003390;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dlb_btn.-wht a::before {
  border-color: #003390;
}
.dlb_btn.-wht a:hover {
  color: #003390 !important;
  opacity: 0.7;
}
.dlb_btn.-wht a:hover::before {
  border-color: #003390 !important;
}

/*-----------------------------------------------------------------------
 margin
-----------------------------------------------------------------------*/
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-mt-auto {
  margin-top: auto;
}

/*-----------------------------------------------------------------------
 section
-----------------------------------------------------------------------*/
.u-bg-section {
  padding: 80px 0;
}
@media screen and (max-width: 689.8px) {
  .u-bg-section {
    padding: 60px 0;
  }
}

.u-bg-section__st {
  padding-top: 80px;
}
@media screen and (max-width: 689.8px) {
  .u-bg-section__st {
    padding-top: 60px;
  }
}

.u-bg-section__center {
  padding-top: 60px;
}

.u-bg-section__end {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 689.8px) {
  .u-bg-section__end {
    padding-bottom: 60px;
  }
}

/*==============================================
addrd 20250903
製品詳細
==============================================*/
.c-product-fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 979.8px) {
  .c-product-fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-product-fv__slider-area, .c-product-fv__data {
  width: calc(50% - 15px);
}
@media screen and (max-width: 979.8px) {
  .c-product-fv__slider-area, .c-product-fv__data {
    width: 100%;
  }
}
.c-product-fv__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-product-fv .swiper-slide img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: auto;
}
.c-product-fv .swiper-main {
  border: solid 1px #ddd;
  margin-bottom: 10px;
  aspect-ratio: 1/1;
  width: 100%;
}
.c-product-fv .swiper-main .swiper-button-prev,
.c-product-fv .swiper-main .swiper-button-next {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-product-fv .swiper-main .swiper-button-prev:hover,
.c-product-fv .swiper-main .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.c-product-fv .swiper-main .swiper-button-prev::after,
.c-product-fv .swiper-main .swiper-button-next::after {
  background-color: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  height: 15px;
  width: 8px;
}
.c-product-fv .swiper-main .swiper-button-next::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-product-fv .swiper-thumbnails {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
.c-product-fv .swiper-thumbnails .swiper-slide {
  border: solid 1px #a6a6a6;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  aspect-ratio: 1/1;
  width: 25%;
}
.c-product-fv .swiper-thumbnails .swiper-slide:hover {
  opacity: 0.8;
}
.c-product-fv .swiper-thumbnails .swiper-slide-thumb-active {
  border: solid 2px #333;
  opacity: 1;
}
.c-product-fv .c-title__dual {
  margin-bottom: 0;
}
.c-product-fv .list_disc {
  font-size: 18px;
  font-weight: 700;
  padding-left: 25px;
}
.c-product-fv .list_disc li {
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 12px;
}
.c-product-fv .list_disc li:first-child {
  margin-top: 0;
}
.c-product-fv__cta {
  background-color: #F2F4F9;
  padding: 20px;
}
.c-product-fv__cta .u-h6 {
  margin-bottom: 8px;
}
.c-product-fv__cta-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 689.8px) {
  .c-product-fv__cta-btn-wrap {
    grid-template-columns: 1fr;
  }
}
.c-product-fv__cta .dlb_btn.-wht {
  height: 100%;
}
.c-product-fv__cta .dlb_btn.-wht a {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  line-height: 1.3;
  padding: 15px 15px 15px 25px;
}
.c-product-fv__cta .dlb_btn.-wht a::before {
  left: 5px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

/*------------
  スライドが1枚の場合のスタイル
  is-singleクラスが付与されたら、ナビゲーションとサムネイルを非表示にする 
------------*/
.js-swiper-product.is-single .swiper-button-prev,
.js-swiper-product.is-single .swiper-button-next,
.js-swiper-product.is-single .swiper-thumbnails {
  display: none;
}

.c-cta {
  background-color: #003390;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 50px 60px;
}
@media screen and (max-width: 979.8px) {
  .c-cta {
    gap: 15px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-cta {
    grid-template-columns: 1fr;
  }
}
.c-cta__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px;
}
.c-cta__title {
  color: #fff;
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-cta__title {
    font-size: 18px;
  }
}
.c-cta__title-icon {
  height: 30px;
  width: 30px;
}
.c-cta__title-icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-business-table th,
.c-business-table td:first-child {
  background-color: #2E4F8F;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 689.8px) {
  .c-business-table th,
  .c-business-table td:first-child {
    width: 100% !important;
    border: none;
  }
}
.c-business-table th,
.c-business-table td {
  padding: 5px 15px;
}
@media screen and (max-width: 689.8px) {
  .c-business-table th,
  .c-business-table td {
    display: block;
  }
}

/*★------------★直接編集禁止★--------------★
　cssファイルは直接編集禁止です！
　sassファイルを編集・コンパイルして使用してください。

  ▼　階層構造
  ├── css
  │    ├── custom.css
  └──  └── custom.scss

★--------------★直接編集禁止★--------------★*//*# sourceMappingURL=custom.css.map */