@charset "utf-8";

:root {
  --color-main: #000078;
  --color-accent-01: #0f2350;
  --color-accent-02: #01a4cf;
  --color-accent-03: #01a4cf;
  --color-color-04: #707070;
  --color-color-05: #333;
  --color-white: #fff;
  --color-grad-1: #000078;
  --color-grad-2: #000078;
}

/* ==================================
  カラーリニューアル
===================================== */
.bg-main {
  background-color: #000078 !important;
}
.btn-main {
  color: #fff;
  background-color: #000078;
  border-color: #000078;
}
.text-main {
  color: #000078 !important;
}
a,
.btn-link {
  color: #000078;
}
.side .title {
  background-color: #000078;
  color: #fff;
}
.side .btn {
  background-color: #fafafa;
  color: #000078;
}


/* ==================================
  リセット・調整
===================================== */
/*---------- パンくずの左余白削除 ----------*/
#locator ol {
  padding-inline-start: 0;
}

/*---------- 見出し 四角アイコンの色変更 ----------*/
/* .dlb_title-sub-04::before {
  background-color: var(--color-accent-04);
} */
.dlb_title-sub-03 {
  border-left-color: var(--color-accent-02);
}

/*---------- btn-outline~ の背景色塗りつぶし ----------*/
.--bg-white {
  background-color: var(--color-white);
}
.--hover-border:hover {
  border-color: var(--color-white);
}

/*---------- タブコンテンツに枠線 ----------*/
.u-outline .nav-link {
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: var(--color-main) var(--color-main) var(--color-white) !important;
}
.u-outline .nav-link.active {
  color: var(--color-main) !important;
  background-color: var(--color-white);
  border-color: var(--color-main) var(--color-main) var(--color-white);
}
@media screen and (max-width: 767px) {
  .u-outline .nav {
    flex-direction: column;
  }
  .u-outline .nav-item {
    margin-top: 0.1rem;
    margin-inline: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .u-outline .nav-item+.nav-item {
    margin-left: 0.1rem;
  }
}
@media screen and (min-width: 1200px) {
  .u-outline .nav-item+.nav-item {
    margin-left: 0.5rem;
  }
}

/*---------- ふわっとアニメーションを小さく ----------*/
@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
    transform: translate3d(0, 3rem, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
    transform: translate3d(0, 3rem, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

/*---------- スライダーを滑らかに ----------*/
.u-swiper-liner .swiper-wrapper {
  transition-timing-function: linear;
}

/*---------- メディア最大高さ調整 ----------*/
/* .container .dlb_blog-item .dlb_blog-data .dlb_title-h3 {
  max-height: 3.2rem;
} */

/*---------- ページトップボタン ----------*/
/* .share_top-link .top-link .btn:hover a::before {
  border-color: var(--color-main);
} */

/* ==================================
  ファンデーション
===================================== */
/*---------- スムーズスクロール ----------*/
html {
  scroll-behavior: smooth;
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 3.5rem;
  }
}

/* ==================================
  タイポ
===================================== */
/*---------- フォント ----------*/
.ff-mincho {
  font-family: 游明朝体, "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
/* .ff-lato {
  font-family: "Lato", sans-serif;
} */

/*---------- 選ばれる理由 見出し数字 ----------*/
.c-h-reason-num {
  font-size: clamp(2rem, 12vw, 5.625rem);
  line-height: 1;
}

/*---------- グラデーション文字 ----------*/
.c-text-grad {
  display: inline-block;
  background: -webkit-linear-gradient(0deg, #000078 0%, #01a4cf 100%);
  background: var(--color-grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================================
  ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--contain img {
  object-fit: contain;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}

/*---------- 角丸 ----------*/
.u-rounded-_5 {
  border-radius: 0.5rem !important;
  overflow: hidden;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
  overflow: hidden;
}
.u-rounded-1 {
  border-radius: 1rem !important;
  overflow: hidden;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
  overflow: hidden;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
  overflow: hidden;
}
.u-rounded-2 {
  border-radius: 2rem !important;
  overflow: hidden;
}
.u-rounded-3 {
  border-radius: 3rem !important;
  overflow: hidden;
}

/*---------- フォントサイズ ----------*/
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fs-7 {
  font-size: 0.875rem !important;
}
.fs-8 {
  font-size: 0.75rem !important;
}
.fs-9 {
  font-size: 0.625rem !important;
}
.fs-10 {
  font-size: 0.5rem !important;
}

/*---------- ホバーアクション ----------*/
.u-hover {
  transition: all 0.3s ease-in-out;
  color: inherit;
}
.u-hover:hover {
  text-decoration: none;
}
.u-hover.--opacity:hover {
  opacity: 0.8;
}
.u-hover.--up:hover {
  transform: translateY(-0.125rem);
}

/*---------- 右にはみ出させる ----------*/
.u-r-over {
  margin-right: calc(50% - 50vw);
}
/*---------- 左にはみ出させる ----------*/
.u-l-over {
  margin-left: calc(50% - 50vw);
}
/* @media (min-width: 768px) {
  .u-over-col-md-width {
    flex: 0 0 50vw;
    max-width: unset;
  }
  .u-col-md-static {
    max-width: calc(100% - 50vw);
  }
} */

/* ==================================
  パーツ
===================================== */
/*---------- ボタン ----------*/
.arrow-btn a {
  position: relative;
  transition: all 0.3s ease 0s;
}
.arrow-btn a:hover {
  transition: all 0.3s ease 0s;
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.2) !important;
}
.arrow-btn a::before {
  content: "▶";
  position: absolute;
  font-size: 12px;
  top: 50%;
  right: 20px;
  color: #fff;
  transform: translateY(-50%);
}

/*---------- アイコン ----------*/
.c-icon {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.c-icon.--r {
  grid-template-columns: 1fr auto;
}
.c-icon.--l {
  grid-template-columns: auto 1fr;
}
@media (min-width: 992px) {
  .c-icon {
    column-gap: 1rem;
  }
}

/* ==================================
  プロジェクト
===================================== */
/*---------- 背景のベース ----------*/
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.p-bg::before,
.p-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* 透過 */
.p-bg.--shadow-bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-bg.--shadow-wh::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.p-bg.--shadow-bl.--strong::before {
  background-color: rgba(0, 0, 0, 0.7);
}
.p-bg.--shadow-wh.--strong::before {
  background-color: rgba(255, 255, 255, 0.7);
}

/* 製品のご紹介 */
/* .p-bg.--top-products {
  background: var(--grad);
}
.p-bg.--top-products::before {
  content: attr(data-en);
  color: var(--color-white);
  opacity: 0.3;
  font-size: clamp(5rem, 12vw, 12.5rem);
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: -5vw;
} */

/* 製品のご紹介 */
/* .p-bg.--cta-contact::before {
  content: attr(data-en);
  color: var(--color-white);
  opacity: 0.3;
  font-size: clamp(5rem, 12vw, 12.5rem);
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: -5vw;
} */

/*---------- 12x12グリッドレイアウト ----------*/
.l-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-columns: auto;
  grid-template-rows: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 0px 0px;
  grid-auto-flow: row;
}
/*---------- ブロークングリッドレイアウト ----------*/
.l-broken-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-columns: auto;
  grid-template-rows: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 0px 0px;
  grid-auto-flow: row;
}
.l-img * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-img iframe {
  min-height: 15rem;
}

/* 左画像・右文章 */
.l-broken-grid.--l-img-r-text {
  grid-template-rows: auto 1.5rem auto;
}
.l-broken-grid.--l-img-r-text .l-img {
  grid-area: 1 / 1 / 3 / 12;
  z-index: 2;
}
.l-broken-grid.--l-img-r-text .l-text {
  grid-area: 2 / 2 / 4 / 13;
  z-index: 1;
}
@media (min-width: 768px) {
  .l-broken-grid.--l-img-r-text {
    grid-template-columns: 5fr 1rem 7fr;
    grid-template-rows: repeat(12, 1fr);
  }
  .l-broken-grid.--l-img-r-text .l-img {
    grid-area: 2 / 1 / 12 / 3;
  }
  .l-broken-grid.--l-img-r-text .l-text {
    grid-area: 1 / 2 / 13 / 4;
  }
}
/* 右画像・左文章 */
.l-broken-grid.--r-img-l-text {
  grid-template-rows: auto 1.5rem auto;
}
.l-broken-grid.--r-img-l-text .l-img {
  grid-area: 1 / 2 / 3 / 13;
  z-index: 2;
}
.l-broken-grid.--r-img-l-text .l-text {
  grid-area: 2 / 1 / 4 / 12;
  z-index: 1;
}
@media (min-width: 768px) {
  .l-broken-grid.--r-img-l-text {
    grid-template-columns: 7fr 1rem 5fr;
    grid-template-rows: repeat(12, 1fr);
  }
  .l-broken-grid.--r-img-l-text .l-img {
    grid-area: 2 / 2 / 12 / 4;
  }
  .l-broken-grid.--r-img-l-text .l-text {
    grid-area: 1 / 1 / 13 / 3;
  }
}

/* ==================================
  ヘッダー
===================================== */
/*---------- ロゴ ----------*/
/* .p-header .navbar-brand img {
  max-height: 2.125rem;
}
@media (max-width: 425px) {
  .p-header .navbar-brand img {
    max-height: 2rem;
  }
} */

/*---------- ハンバーガーボタン ----------*/
/* .p-header .navbar-toggler.navbar-toggler-icon::after {
  display: none;
  margin: 0;
}
.p-header .navbar-light .navbar-toggler-icon {
  background-image: unset;
  width: 4rem;
  height: 4rem;
}
.c-hamburger {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: auto;
  border-radius: 4px;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.c-hamburger:before,
.c-hamburger:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
}
.c-hamburger:before {
  top: 0.5rem;
}
.c-hamburger:after {
  bottom: 0.5rem;
}

.c-hamburger.is-active {
  background-color: rgba(0, 0, 0, 0);
}
.c-hamburger.is-active:before,
.c-hamburger.is-active:after {
  top: 0;
  bottom: 0;
  background-color: var(--color-white);
}
.c-hamburger.is-active:before {
  transform: rotate(-45deg);
}
.c-hamburger.is-active:after {
  transform: rotate(45deg);
} */

/*---------- ハンバーガー開閉時の背景色 ----------*/
/* .p-header .navbar {
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.p-header .navbar:has(.collapsed) {
  background-color: transparent;
} */

/*---------- ハンバーガー開閉時のメニュー ----------*/
/* @media (max-width: 991px) {
  .p-header .nav-item {
    border-bottom: 1px solid #f5f5f5;
  }
  .p-header .nav-link {
    padding-block: 1rem;
    padding-inline: 2rem;
    justify-content: space-between;
    align-items: center;
  }
  .p-header .nav-link::after {
    display: inline-block;
    font-family: "Material Icons";
    content: "\e5e1";
    color: #00499b;
  }
} */

/* ==================================
  フッター
===================================== */
/*---------- メニュー ----------*/
/* .l-footer-link {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, auto);
  grid-auto-columns: auto;
}
@media only screen and (min-width: 768px) {
  .l-footer-link {
    grid-template-columns: repeat(4, auto);
  }
} */

/*---------- フッター ----------*/
/* .p-footer .c-footer-list {
  list-style-type: "-";
}
.p-footer .c-footer-list a {
  padding: 0 1rem 0 0;
} */

/* ==================================
  TOP
===================================== */
/*---------- 新製品情報 ----------*/
/* .p-new-prod .swiper-container .dlb_blog-item {
  height: 100%;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  scale: 0.9;
  background-color: var(--color-white);
}
.p-new-prod .swiper-container span.d-block {
  display: none !important;
}
.p-new-prod .swiper-container .badge {
  display: none;
}
.p-new-prod .swiper-container .dlb_title-h3 {
  text-align: center;
} */
/*---------- お知らせ ----------*/
/* .p-news .dlb_blog-item:first-of-type {
  border-top: 1px solid #dee2e6;
}
.p-news .dlb_blog-item {
  border-bottom: 1px solid #dee2e6;
}
.p-news .dlb_blog-item .dlb_blog-image,
* .p-news .dlb_blog-item .dlb_blog-badge, *
.p-news .dlb_blog-item p {
  display: none;
}
.p-news .dlb_blog-item .dlb_blog-badge {
  position: static;
  order: 2;
  white-space: initial;
  text-align: center;
}
.p-news .dlb_blog-item .dlb_title-h3 {
  margin-bottom: 0;
  order: 3;
}
.p-news .dlb_blog-item .dlb_blog-data a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-news .dlb_blog-item .dlb_blog-data a {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 7rem auto 1fr;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    gap: 1rem;
  }
} */
/* @media only screen and (min-width: 768px) {
  .p-news .dlb_blog-item .dlb_blog-data a {
    display: flex;
    gap: 1rem;
  }
} */

/* ==================================
  下層
===================================== */
/*---------- MV ----------*/
.tmpl_01_page-hero {
  min-height: auto;
  background-image: none;
  /* text-align: left; */
}
.tmpl_01_page-hero .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  margin-bottom: 0;
}
.tmpl_01_page-hero_text {
  display: inline-block;
  background: -webkit-linear-gradient(135deg, #000078 0%, #01a4cf 100%);
  background: var(--color-grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0;
}
.c-h-under-hero {
  font-size: clamp(3rem, 14vw, 6rem);
  line-height: 1;
  font-weight: 700;
  color: #e2e2e2;
  margin-bottom: max(-4%, -2rem);
}