@charset "UTF-8";
/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}
@media print, screen and (min-width: 992px) {
  table {
    font-size: min(calc(16px + 2 * (100vw - 1200px) / 300), 18px);
  }
}

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-design-1 > tbody > tr > th {
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th {
  background: #eee;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup {
    display: none !important;
  }
  .table-inline > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-inline > tbody > tr > th, .table-inline > tbody > tr > td {
    width: 100% !important;
    display: block;
  }

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.lits-catnavi {
  --size: min(calc(14px + 4 * (100vw - 375px) / 1125), 18px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
}
.lits-catnavi > li > a {
  color: #001e5a;
  font-size: var(--size);
  text-decoration: none;
  border: solid 1px #001e5a;
  display: block;
  padding: 0.5em 1em 0.5em 2.5em;
  border-radius: 0.25em;
  overflow: hidden;
  position: relative;
  transition: color 0.3s ease;
}
.lits-catnavi > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--size) * 2);
  height: 100%;
  z-index: -1;
  background-color: #001e5a;
  transition: width 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.lits-catnavi > li > a:after {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 0.75em;
  width: calc(var(--size) * 2);
  height: 100%;
  display: grid;
  place-items: center;
}
.lits-catnavi > li > a:hover {
  color: #fff;
}
.lits-catnavi > li > a:hover:before {
  width: 100%;
}
.lits-catnavi > li.active > a {
  color: #fff;
}
.lits-catnavi > li.active > a:before {
  width: 100%;
}

.list-style-1 {
  line-height: 1.5;
  list-style: none;
  padding-left: 0;
}
.list-style-1 > li {
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  position: relative;
}
.list-style-1 > li:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
}
.list-style-1 > li:last-child {
  margin-bottom: 0;
}

.list-style-2 {
  line-height: 1.5;
  list-style: none;
  padding-left: 0;
}
.list-style-2 > li {
  padding-left: 1.2em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: dashed 1px #BEC5D3;
  position: relative;
}
.list-style-2 > li:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.64);
  color: var(--primary);
}
.list-style-2 > li:last-child {
  margin-bottom: 0;
}

.list-kome {
  font-size: 0.875rem;
  line-height: 1.5;
  list-style: none;
  padding: 0;
}
.list-kome > li {
  padding-left: 1.2em;
  position: relative;
}
.list-kome > li:before {
  content: "※";
  position: absolute;
  left: 0;
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  --color: rgba(0,30,90, 0.5);
  height: 0;
  border-top: dotted 1px var(--color);
}

.hr-1 {
  --color: #001e5a;
  border-top: solid 1px var(--color);
}

/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
  height: 100%;
  position: relative;
  z-index: 0;
}

.figure_caption_1 figcaption {
  line-height: 1.5;
  text-align: center;
  margin-top: .5em;
}
@media print, screen and (min-width: 1200px) {
  .figure_caption_1 figcaption {
    font-size: 0.8125rem;
  }
}

.figure_link_1 {
  height: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.figure_link_1 > .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.figure_link_1 > .photo img {
  transition: transform 0.3s ease;
}
.figure_link_1 figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: clamp(15px, calc(var(--width-col-w) * 0.07843), 40px);
  padding-right: clamp(15px, calc(var(--width-col-w) * 0.07843), 40px);
  padding-bottom: clamp(15px, calc(var(--width-col-w) * 0.09804), 50px);
  z-index: 10;
}
.figure_link_1 figcaption h3 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(20px, calc(var(--width-col-w) / 15 ), 34px);
  letter-spacing: 0.2em;
}
.figure_link_1 figcaption h3 > .fs-en {
  font-size: 0.58823em;
  display: block;
}
.figure_link_1 figcaption p {
  text-align: right;
}
.figure_link_1 figcaption p .btn-1 {
  font-size: clamp(13px, calc(var(--width-col-w) / 28.33334 ), 18px);
  color: #fff;
}
.figure_link_1 figcaption p .btn-1:before {
  background-color: #fff;
}
.figure_link_1:hover > .photo img {
  transform: scale(1.2);
  transition: transform 1s ease;
}
.figure_link_1:hover .btn-1 {
  color: #001e5a;
}
.figure_link_1:hover .btn-1:before {
  width: calc(100% + 1.5em);
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(svg) */
.img-font {
  width: auto;
  height: 1em;
}

/* 画像回り込み */
.aligncenter, .alignright, .alignleft {
  max-width: 80%;
  display: block;
  margin: 0 auto 1.5rem;
}

@media print, screen and (min-width: 768px) {
  .alignright {
    max-width: 32%;
    margin-left: 30px;
    display: inline;
  }

  .alignleft {
    max-width: 32%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  .alignright {
    max-width: 100%;
  }

  .alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

.object-lb {
  object-position: left bottom;
}

.object-rt {
  object-position: right top;
}

.object-rb {
  object-position: right bottom;
}

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

  .object-sm-lb {
    object-position: left bottom;
  }

  .object-sm-rt {
    object-position: right top;
  }

  .object-sm-rb {
    object-position: right bottom;
  }

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

  .object-md-lb {
    object-position: left bottom;
  }

  .object-md-rt {
    object-position: right top;
  }

  .object-md-rb {
    object-position: right bottom;
  }

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1312px) {
  .object-lg-lt {
    object-position: left top;
  }

  .object-lg-lb {
    object-position: left bottom;
  }

  .object-lg-rt {
    object-position: right top;
  }

  .object-lg-rb {
    object-position: right bottom;
  }

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1520px) {
  .object-xl-lt {
    object-position: left top;
  }

  .object-xl-lb {
    object-position: left bottom;
  }

  .object-xl-rt {
    object-position: right top;
  }

  .object-xl-rb {
    object-position: right bottom;
  }

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1920px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	画像拡大
-------------------------------- */
a[data-lightbox]:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  color: #222;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 15px;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: -1em;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity .3s ease;
}
a[data-lightbox]:hover:after {
  opacity: 0.85;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2.5em;
}
.btn-icon-l i {
  font-size: 1.125em;
  line-height: 1;
  left: 0.75em;
}

.btn-icon-r {
  padding-right: 2.5em;
}
.btn-icon-r i {
  font-size: 1.125em;
  right: 0.75em;
}

/**/
.btn-1 {
  color: #001e5a;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 0;
  transition: color 0.3s ease;
}
.btn-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.77777em;
  height: 2.77777em;
  border-radius: 1.388885em;
  background-color: #001e5a;
  z-index: -1;
  transition: width 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-1 .icon {
  color: #fff;
  font-weight: 200;
  flex: 0 0 2.77777em;
  height: 2.77777em;
  display: grid;
  place-items: center;
}
.btn-1 .txt {
  margin-left: 0.55555em;
  padding-bottom: 0.25em;
  border-bottom: solid 1px currentColor;
}
.btn-1:hover {
  color: #fff;
}
.btn-1:hover:before {
  width: calc(100% + 1.5em);
}
.btn-1--white {
  color: #fff;
}
.btn-1--white:before {
  background-color: #fff;
}
.btn-1--white .icon {
  color: #001e5a;
}
.btn-1--white:hover {
  color: #001e5a;
}

/* file icon */
.link-icon a::before, .link-icon a::after {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon a[href$=".pdf"]::before {
  content: "\f1c1";
}
.link-icon a[href$=".xls"]::before, .link-icon a[href$=".xlsx"]::before {
  content: "\f1c3";
}
.link-icon a[href$=".doc"]::before, .link-icon a[href$=".docx"]::before {
  content: "\f1c2";
}
.link-icon a[target="_blank"]::after {
  content: "\f35d";
  font-size: 0.65em;
  margin-left: 0.25em;
}

.historyback {
  font-size: 16px;
}

/* --- keyframes --- */
@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 20px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  line-height: 1.2;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/*
 * -- splide基本設定
 *
 */
.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev, .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #001e5a;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide__arrow--prev svg, .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}

.splide__arrow--prev {
  left: 15px;
}
.splide__arrow--prev svg {
  transform: scale(-1, 1);
}

.splide__arrow--next {
  right: 15px;
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.splide__arrow:focus-visible {
  z-index: 1;
  transition: none;
}

/* ページング */
.splide__pagination {
  font-size: 0;
  gap: 3px 5px;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #fff;
}
.splide__pagination__page.is-active {
  background-color: #6e8f00;
  pointer-events: auto;
}

.splide-wrapper {
  position: relative;
}

/* -------------------------------
	ページング
-------------------------------- */
.paging {
  font-size: 13px;
  line-height: normal;
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
}
.paging span {
  display: block;
  flex: 0 0 2.6em;
  height: 2.6em;
  margin: 2px 3px;
  overflow: hidden;
}
.paging span.paging-text {
  cursor: pointer;
}
.paging span.current {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #001e5a;
  background-color: #001e5a;
  cursor: auto;
}
.paging span.paging-text a {
  color: #999;
  border: solid 1px #999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease;
}
.paging span.paging-text a:hover {
  color: #001e5a;
  border-color: #001e5a;
}

/* =============================
 * parallax.css (GSAP + ScrollTrigger版)
 * 中央基準 & 複数セクション対応（下スクロールで画像は上へ）
 * 可変値:
 *   --parallax-img-height: 画像ラッパの高さ（%）。200% なら上下に各50%の余白。
 *   --parallax-scroll: 余白の何割を使うか 0..1（1=片側余白を使い切り）。
 * 構造: .parallax > .img > img
 * ============================= */
.parallax {
  position: relative;
  overflow: hidden;
  --parallax-img-height: 150%;
  /* 片側+50%の余白 */
  --parallax-scroll: 0.9;
  /* 0..1: 使用割合。1で±maxを使い切る */
}

.parallax .img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: var(--parallax-img-height);
  transform: translate(-50%, -50%);
  /* 初期は中央合わせ。YはGSAPが制御 */
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.parallax .img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* -------------------------------
	テキスト　無限ループ
-------------------------------- */
.text-loop {
  overflow: hidden;
}
.text-loop__box {
  display: flex;
  width: 100vw;
}
.text-loop__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: .25em;
}
.text-loop__item:nth-child(odd) {
  animation: text_loop 40s -20s linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 40s linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: rgba(0, 30, 90, 0.05);
}

.bg-cr-2 {
  background-color: rgba(0, 30, 90, 0.1);
}

/* --▼text-- */
/* --▼font -- */
.fs-xxs {
  font-size: 0.75em !important;
}

.fs-sm {
  font-size: 0.875em !important;
}

.fs-md {
  font-size: 1.125em !important;
}

.fs-lg {
  font-size: 1.250em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw2 {
  font-weight: 200 !important;
}

.fw3 {
  font-weight: 300 !important;
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fwn {
  font-weight: 200 !important;
}

.fwb {
  font-weight: 600 !important;
}

.fs-xl-16-20 {
  font-size: clamp(16px, calc(16px + 4 * (100vw - 1200px) / 300), 20px);
}

.flow-root {
  display: flow-root;
}

/* --▼margin-- */
/* space */
.mt-50 {
  margin-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.mb-50 {
  margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.mtb-50 {
  margin-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.mt-60 {
  margin-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.mb-60 {
  margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.mtb-60 {
  margin-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.mt-70 {
  margin-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.mb-70 {
  margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.mtb-70 {
  margin-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.mt-80 {
  margin-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.mb-80 {
  margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.mtb-80 {
  margin-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.mt-90 {
  margin-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.mb-90 {
  margin-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.mtb-90 {
  margin-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  margin-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.mt-100 {
  margin-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

.mb-100 {
  margin-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

.mtb-100 {
  margin-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  margin-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

.pt-50 {
  padding-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.pb-50 {
  padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.ptb-50 {
  padding-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
}

.pt-60 {
  padding-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.pb-60 {
  padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.ptb-60 {
  padding-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
}

.pt-70 {
  padding-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.pb-70 {
  padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.ptb-70 {
  padding-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
}

.pt-80 {
  padding-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.pb-80 {
  padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.ptb-80 {
  padding-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
}

.pt-90 {
  padding-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.pb-90 {
  padding-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.ptb-90 {
  padding-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  padding-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
}

.pt-100 {
  padding-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

.pb-100 {
  padding-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

.ptb-100 {
  padding-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  padding-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
}

@media print, screen and (min-width: 992px) {
  .mt-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .mb-lg-50 {
    margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .mtb-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
    margin-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .mt-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .mb-lg-60 {
    margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .mtb-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
    margin-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .mt-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .mb-lg-70 {
    margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .mtb-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
    margin-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .mt-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .mtb-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
    margin-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .mt-lg-90 {
    margin-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .mtb-lg-90 {
    margin-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
    margin-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .mt-lg-100 {
    margin-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }

  .mb-lg-100 {
    margin-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }

  .mtb-lg-100 {
    margin-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
    margin-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .pb-lg-50 {
    padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .ptb-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
    padding-bottom: min(calc(28px + 22 * (100vw - 375px) / 1125), 50px);
  }

  .pt-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .pb-lg-60 {
    padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .ptb-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
    padding-bottom: min(calc(28px + 32 * (100vw - 375px) / 1125), 60px);
  }

  .pt-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .pb-lg-70 {
    padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .ptb-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
    padding-bottom: min(calc(28px + 42 * (100vw - 375px) / 1125), 70px);
  }

  .pt-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .ptb-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
    padding-bottom: min(calc(28px + 52 * (100vw - 375px) / 1125), 80px);
  }

  .pt-lg-90 {
    padding-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .ptb-lg-90 {
    padding-top: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
    padding-bottom: min(calc(29px + 61 * (100vw - 375px) / 1125), 90px);
  }

  .pt-lg-100 {
    padding-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }

  .pb-lg-100 {
    padding-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }

  .ptb-lg-100 {
    padding-top: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
    padding-bottom: min(calc(32px + 68 * (100vw - 375px) / 1125), 100px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

.mr-full {
  margin-right: -15px;
}

@media print, screen and (min-width: 576px) {
  .ml-full, .ml-sm-full {
    margin-left: calc((510px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full {
    margin-right: calc((510px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-full, .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - var(--app-w)) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - var(--app-w)) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - var(--app-w)) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - var(--app-w)) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - var(--app-w)) / 4);
  }
}
/* -------------------------------
	ローディング
-------------------------------- */
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: #001e5a;
  z-index: 99999;
}
#loading .loading_inner {
  margin: auto;
}
#loading .loading_inner .logo {
  margin-bottom: 2rem;
}

#loading {
  opacity: 1;
  visibility: visible;
}

body.complete #loading {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

body.load_already #loading {
  opacity: 0;
  visibility: hidden;
}

.sk-circle {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  position: relative;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* ---  --- */
.fs-16-24 {
  font-size: min(calc(16px + 8 * (100vw - 320px) / 880), 24px);
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  --color: var(--primary);
  color: var(--color);
  font-weight: 200;
  text-align: center;
}
.title-1::after {
  content: "";
  display: block;
  width: 1px;
  height: 2em;
  margin: 0.75em auto 0;
  background-color: var(--color);
  animation: key-title-1-scroll 1.5s infinite;
}

.title-2 {
  font-weight: 200;
  border-left: solid 0.2em #001e5a;
  padding-left: 0.5em;
}

.title-3 {
  color: var(--color);
  font-weight: 200;
  padding-bottom: 0.5em;
  border-bottom: solid 1px currentColor;
}

@keyframes key-title-1-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.title-hh-1 {
  --color: var(--primary);
  font-weight: 200;
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .fs-en.text_transform_none {
  text-transform: none;
}
.title-hh-1 > .fs-jp {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1125), 24px);
  display: block;
  padding-left: 3.33334em;
  margin-top: 1em;
  position: relative;
}
.title-hh-1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.7em;
  height: 1px;
  background-color: currentColor;
}
.title-hh-1.center {
  text-align: center;
}
.title-hh-1.center > .fs-jp {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}
.title-hh-1.center > .fs-jp::before, .title-hh-1.center > .fs-jp::after {
  content: "";
  position: static;
  width: 1.8em;
  height: 1px;
  display: block;
  background-color: currentColor;
}
.title-hh-1.center > .fs-jp::before {
  margin-right: 0.75em;
}
.title-hh-1.center > .fs-jp::after {
  margin-left: 0.75em;
}

/* -------------------------------
	bootstrap
-------------------------------- */
.container-fluid-xl {
  max-width: 1680px;
  width: 100%;
  padding-left: calc(15px + 30 * (100vw - 375px) / 1125);
  padding-right: calc(15px + 30 * (100vw - 375px) / 1125);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1500px) {
  .container-fluid-xl {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.app-ww-1304 {
  max-width: 1304px;
  margin-left: auto;
  margin-right: auto;
}

/* --- row --- */
.row-gallery {
  margin-left: calc(-5px - 10 * (100vw - 320px) / 880);
  margin-right: calc(-5px - 10 * (100vw - 320px) / 880);
}
.row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
  padding-left: calc(5px + 10 * (100vw - 320px) / 880);
  padding-right: calc(5px + 10 * (100vw - 320px) / 880);
  margin-bottom: calc(10px + 20 * (100vw - 320px) / 880);
}
@media print, screen and (min-width: 1200px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-10 > [class^="col"], .row-10 > [class*=" col"] {
  padding-left: 5px;
  padding-right: 5px;
}

/* --- gap --- */
.gap-y-10 {
  gap: 10px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-30 {
  gap: 30px 0;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  position: relative;
  z-index: 0;
}
#mainvisual .mainvisual_slider {
  position: relative;
  z-index: 0;
}
#mainvisual .mainvisual_content {
  position: absolute;
  left: 0;
  bottom: min(calc(40px + 20 * (100vw - 375px) / 1545), 60px);
  z-index: 20;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media print, screen and (min-width: 992px) {
  #mainvisual .mainvisual_content {
    padding-left: min(calc(20px + 50 * (100vw - 992px) / 1008), 70px);
    padding-right: min(calc(20px + 25 * (100vw - 992px) / 1008), 45px);
  }
}
#mainvisual .mainvisual_content .ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, calc(var(--measure-width) / 28), 60px);
  line-height: 1.75;
  text-shadow: 0px 0px 13.44px rgba(0, 0, 0, 0.75);
  margin-bottom: 0.75em;
}
#mainvisual .mainvisual_content .img {
  display: flex;
  justify-content: flex-end;
  padding-left: 41.66667%;
  padding-bottom: 0;
}
#mainvisual .mainvisual_content .img .photo {
  max-width: 700px;
  width: 100%;
  aspect-ratio: 70 / 29;
}
#mainvisual .mainvisual_content .img .photo img {
  object-fit: contain;
}
#mainvisual .mainvisual_link {
  position: absolute;
  right: 1vw;
  bottom: 1vw;
  z-index: 10;
}
#mainvisual .mainvisual_link .btn {
  color: #fff;
  font-size: min(calc(13px + 7 * (100vw - 375px) / 1545), 20px);
  border-radius: 0;
  padding: 0.75em 3em 0.75em 1.5em;
  background: linear-gradient(to right, #2b2b6f 0%, #212992 100%);
  position: relative;
}
#mainvisual .mainvisual_link .btn::after {
  content: "→";
  position: absolute;
  right: 1em;
  top: 50%;
  line-height: 1;
  margin-top: -.5em;
}
#mainvisual .mainvisual_link .btn:hover {
  color: #FFFD00;
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide {
  display: grid;
  place-content: center;
  height: calc(var(--app-h) * 0.6);
  padding: 0 8rem;
  text-align: center;
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide {
    height: var(--app-h);
  }
}
@media print {
  .splide01 .slide {
    height: 1000px;
  }
}
.splide01 .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../images/home/main_mask3.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/home/main_mask3.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  background-color: #000;
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide-media {
    -webkit-mask-image: url("../images/home/main_mask2.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/home/main_mask2.svg");
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.splide_sub {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.splide_sub .splide, .splide_sub .splide__track {
  height: 100%;
}
.splide_sub img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transition: 14s 1s linear;
}
.splide_sub .splide__slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.05);
}

.type2 .slide .slide-media img {
  filter: grayscale(0%);
  opacity: 1;
}
.type2 .splide_sub img {
  filter: grayscale(100%);
}

.type3 .slide {
  filter: drop-shadow(0 0 20px white);
}
.type3 .slide .slide-media img {
  opacity: 1;
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_news {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: #f4f4f7;
}
.home_news::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 2%;
  z-index: -1;
  width: 34%;
  aspect-ratio: 138 / 83;
  background: url("../images/home/home_news_logo.svg") no-repeat center center/cover;
}

.home_news_list {
  font-weight: 600;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home_news_list > li {
  display: flex;
  flex-wrap: wrap;
  padding: 0.6923em 0;
}
.home_news_list > li .home_news_list_date {
  flex: 0 0 7em;
}
.home_news_list > li .home_news_list_new {
  color: #001e5a;
  /* color: #f3d900; */
  padding-right: 1em;
}
.home_news_list > li .home_news_list_column {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .home_news_list > li .home_news_list_column {
    flex: 1 1 0;
  }
}

/* ---  --- */
.home_business {
  padding-bottom: min(calc(60px + 100 * (100vw - 375px) / 1545), 160px);
}

@media print, screen and (min-width: 768px) {
  .home_business_row > div:nth-child(2) {
    margin-top: clamp(20px, calc(var(--width-col-w) * 0.1647), 84px);
  }
  .home_business_row > div:nth-child(3) {
    margin-top: clamp(40px, calc(var(--width-col-w) * 0.3294), 168px);
  }
}

.home_business_figure {
  height: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_business_figure > .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.home_business_figure > .photo img {
  transition: transform 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .home_business_figure > .photo {
    width: 100%;
    aspect-ratio: 17 / 20;
  }
}
.home_business_figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: clamp(15px, calc(var(--width-col-w) * 0.07843), 40px);
  padding-right: clamp(15px, calc(var(--width-col-w) * 0.07843), 40px);
  padding-bottom: clamp(15px, calc(var(--width-col-w) * 0.09804), 50px);
  z-index: 10;
}
.home_business_figure figcaption h3 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(20px, calc(var(--width-col-w) / 15 ), 34px);
  letter-spacing: 0.2em;
  display: inline-block;
  padding: 0.25em 1em;
  background-color: rgba(0, 30, 90, 0.8);
}
.home_business_figure figcaption h3 > .fs-en {
  font-size: 0.58823em;
  display: block;
}
.home_business_figure figcaption p {
  text-align: right;
}
.home_business_figure figcaption p .btn-1 {
  font-size: clamp(13px, calc(var(--width-col-w) / 28.33334 ), 18px);
  color: #fff;
}
.home_business_figure figcaption p .btn-1:before {
  background-color: #fff;
}
.home_business_figure:hover > .photo img {
  transform: scale(1.2);
  transition: transform 1s ease;
}
.home_business_figure:hover .btn-1 {
  color: #001e5a;
}
.home_business_figure:hover .btn-1:before {
  width: calc(100% + 1.5em);
}

/* ---  --- */
.home_recruit {
  position: relative;
  z-index: 0;
}
.home_recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background: url("../images/home/home_recruit_bg.jpg") no-repeat center center/cover;
  -webkit-mask-image: linear-gradient(160deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, black 70%, black 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.home_recruit .home_recruit_content p {
  font-size: min(calc(14px + 16 * (100vw - 375px) / 1125), 30px);
}
.home_recruit .home_recruit_content .btn-1 {
  font-size: min(calc(13px + 5 * (100vw - 375px) / 1125), 18px);
}

/* -------------------------------
	会社案内
-------------------------------- */
/* ---  --- */
.company_philosophy_row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
}
@media print, screen and (min-width: 768px) {
  .company_philosophy_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 1500px) {
  .company_philosophy_row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.company_philosophy_figure {
  padding: clamp(15px, calc(var(--width-figure-w) / 12.5), 30px);
  background-color: #001e5a;
}
.company_philosophy_figure > .photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
}
.company_philosophy_figure figcaption {
  color: #fff;
}
.company_philosophy_figure figcaption h5 {
  color: #f3d900;
  font-size: clamp(20px, calc(var(--width-figure-w) / 10), 35px);
  text-align: center;
  letter-spacing: 0.2em;
}
.company_philosophy_figure figcaption p {
  font-weight: 400;
  font-size: clamp(15px, calc(var(--width-figure-w) / 20), 18px);
}

/* ---  --- */
.company_greetings {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.company_greetings .bg_en {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  color: #0038a7;
  font-weight: 200;
  font-size: min(calc(50px + 90 * (100vw - 375px) / 1545), 140px);
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.4;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .company_greetings .bg_en {
    display: block;
  }
}

.company_greetings_ceo > img {
  display: block;
  margin: 0 auto;
}
.company_greetings_ceo figcaption {
  font-weight: 600;
  text-align: center;
  margin-top: 0.5em;
}

.company_list_1 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5em 1.5em;
  grid-template-columns: repeat(1, 1fr);
}
@media print, screen and (min-width: 992px) and (max-width: 1199px), print, screen and (min-width: 1500px) {
  .company_list_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.company_list_1 > li {
  padding-left: 1.2em;
  position: relative;
}
.company_list_1 > li:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
}

/* -------------------------------
	第一工芸のあゆみ
-------------------------------- */
/* ---  --- */
.history_navi_list {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.history_navi_list > li > a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.25em 1.25em;
  border: solid 1px var(--primary);
  border-radius: 10em;
  transition: color 0.3s ease, background 0.3s ease;
}
.history_navi_list > li > a:hover {
  color: #fff;
  background-color: var(--primary);
}

.history_list_item {
  --ttl-size: 1.75em;
  padding-left: calc(var(--ttl-size) + 0.5em);
  padding-bottom: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  position: relative;
}
.history_list_item:last-child {
  padding-bottom: 0;
}
.history_list_item > .arrow {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--ttl-size);
  width: 1em;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.history_list_item > .arrow:before {
  content: "●";
  color: var(--primary);
  display: block;
}
.history_list_item > .arrow:after {
  content: "";
  display: block;
  width: 2px;
  margin: 0em auto 0.25em;
  flex: 1 1 0;
  background-color: #657CAA;
}
.history_list_item .history_list_item_ttl {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--ttl-size);
}
.history_list_item .history_list_item_content {
  padding: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px) 0;
}
.history_list_item .history_list_item_content .year strong {
  color: var(--primary);
  font-size: 1.25em;
  margin-right: 0.25em;
  padding-left: 1.2em;
  position: relative;
}
.history_list_item .history_list_item_content .year strong:before {
  content: "●";
  position: absolute;
  left: 0;
}
.history_list_item .history_list_item_content .column {
  margin-top: 0.4em;
}
.history_list_item .history_list_item_content .column > ul {
  list-style: none;
  padding-left: 0;
}
.history_list_item .history_list_item_content .column > ul > li {
  padding-left: 2em;
  position: relative;
}
.history_list_item .history_list_item_content .column > ul > li strong {
  font-size: 1.0625em;
}
.history_list_item .history_list_item_content .column > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875em;
  width: 1.25em;
  height: 1px;
  background-color: currentColor;
}
@media print, screen and (min-width: 768px) {
  .history_list_item .history_list_item_content {
    display: flex;
  }
  .history_list_item .history_list_item_content .year {
    flex: 0 0 13em;
  }
  .history_list_item .history_list_item_content .column > ul > li {
    padding-left: 0;
  }
  .history_list_item .history_list_item_content .column > ul > li:before {
    left: -2.25em;
  }
}

.history_gallery {
  display: grid;
  gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  grid-template-columns: repeat(2, 1fr);
}
@media print, screen and (min-width: 768px) {
  .history_gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 1500px) {
  .history_gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.history_gallery figure {
  color: #999;
  font-weight: 600;
  font-size: 0.75em;
  line-height: 1.5;
  text-align: center;
}
.history_gallery figure .photo img {
  object-fit: scale-down;
}

/* -------------------------------
	受賞歴一覧
-------------------------------- */
.awards_content .title-1::after {
  height: 1.2em;
}

/* ---  --- */
.awards_splide_1 {
  --arrow-size: min(calc(10px + 4 * (100vw - 375px) / 1125), 14px);
  padding: 0 calc(var(--arrow-size) * 3 + 10px);
}
.awards_splide_1 .slide {
  width: 100%;
  max-width: 235px;
  margin: 0 auto;
}
.awards_splide_1 .slide .photo-ofi {
  width: 100%;
  aspect-ratio: 47 / 58;
}
.awards_splide_1 .slide figcaption {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-top: .5em;
}
.awards_splide_1 .splide__arrow--prev, .awards_splide_1 .splide__arrow--next {
  font-size: var(--arrow-size);
  width: 3em;
  height: 3em;
}
.awards_splide_1 .splide__arrow--prev {
  left: 0px;
}
.awards_splide_1 .splide__arrow--next {
  right: 0px;
}

.awards_splide_2 {
  --arrow-size: min(calc(10px + 4 * (100vw - 375px) / 1125), 14px);
  padding: 0 calc(var(--arrow-size) * 3 + 10px);
}
.awards_splide_2 .slide {
  width: 100%;
}
.awards_splide_2 .slide .photo-ofi {
  width: 100%;
  aspect-ratio: 2 / 1;
}
.awards_splide_2 .slide .photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.awards_splide_2 .slide figcaption {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-top: .5em;
}
.awards_splide_2 .splide__arrow--prev, .awards_splide_2 .splide__arrow--next {
  font-size: var(--arrow-size);
  width: 3em;
  height: 3em;
}
.awards_splide_2 .splide__arrow--prev {
  left: 0px;
}
.awards_splide_2 .splide__arrow--next {
  right: 0px;
}

/* -------------------------------
	ニュース
-------------------------------- */
/* ---  --- */
.news_list .news_list_item {
  align-items: center;
  border-bottom: solid 1px #ACB5C7;
  padding-left: 0.25em;
  padding-right: 0.25em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  display: flex;
  flex-wrap: wrap;
}
.news_list .news_list_item .news_list_item_date {
  flex: 0 0 10em;
}
.news_list .news_list_item .news_list_item_date .new {
  color: #001e5a;
  /* color: #f3d900; */
  margin-left: 1em;
}
.news_list .news_list_item .news_list_item_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.news_list .news_list_item .news_list_item_cat > span {
  color: #fff;
  font-weight: 600;
  font-size: 0.75em;
  line-height: normal;
  padding: 0.5em 1em;
  border-radius: 20em;
  display: block;
  background-color: #001e5a;
}
.news_list .news_list_item .news_list_item_column {
  flex: 0 0 100%;
  margin-top: 0.5em;
}
.news_list .news_list_item .news_list_item_column a {
  text-decoration: none;
}
.news_list .news_list_item .news_list_item_column a:hover {
  text-decoration: underline;
}

/* ---  --- */
.news_detail_splide {
  overflow: hidden;
}

.news-thumbs-splide .splide__list {
  justify-content: center;
}

.news-main-splide {
  width: 70%;
  margin: 0 auto;
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  .news-main-splide {
    width: 50%;
  }
}
.news-main-splide .splide__track {
  overflow: visible;
}
.news-main-splide .splide__slide .slide {
  transform: scale(0.8);
  transform-origin: center center;
  opacity: 0.5;
  transition: opacity 0.1s ease, transform 0.3s ease;
}
.news-main-splide .splide__slide .slide .slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.news-main-splide .splide__slide .slide .slide-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.news-main-splide .splide__slide .slide .slide-txt {
  font-weight: 500;
  font-size: min(calc(13px + 5 * (100vw - 320px) / 1280), 18px);
  text-align: center;
  padding-top: 10px;
}
.news-main-splide .splide__slide.is-prev .slide, .news-main-splide .splide__slide.is-next .slide {
  opacity: 0.5;
}
.news-main-splide .splide__slide.is-active .slide {
  transform: scale(1);
  opacity: 1;
}
.news-main-splide .splide__arrow--prev, .news-main-splide .splide__arrow--next {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .news-main-splide .splide__arrow--prev, .news-main-splide .splide__arrow--next {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
    display: block;
  }
}
.news-main-splide .splide__arrow--prev {
  left: -2em;
}
.news-main-splide .splide__arrow--next {
  right: -2em;
}
.news-main-splide.is-single {
  width: 100% !important;
}
.news-main-splide.is-single .splide__slide .slide .slide-photo {
  aspect-ratio: auto;
}

.news-thumbs-splide {
  margin-top: 15px;
}
.news-thumbs-splide .splide__slide .slide {
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: #000;
}
.news-thumbs-splide .splide__slide .slide img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.news-thumbs-splide .splide__slide.is-active .slide {
  cursor: default;
}
.news-thumbs-splide .splide__slide.is-active .slide img {
  opacity: 0.5;
}
.news-thumbs-splide.is-single {
  display: none;
}

.news_file {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news_file > .box {
  flex: 0 0 100%;
}
.news_file > .box .btn {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .news_file > .box {
    flex: 0 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .news_file > .box .btn {
    font-size: 18px;
  }
}

/* */
.news_gallery {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (min-width: 768px) {
  .news_gallery {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media print, screen and (min-width: 1500px) {
  .news_gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.news_gallery .news_gallery_item {
  aspect-ratio: 4/3;
}
.news_gallery .news_gallery_item img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.news_gallery .news_gallery_item > a {
  position: relative;
  display: block;
}

/* -------------------------------
	業務内容
-------------------------------- */
.business_strengths {
  color: #fff;
  background: url("../images/common/bg01.jpg") no-repeat center center/cover;
}

.business_strengths_inner .title-hh-1 {
  --color: #fff;
}
@media print, screen and (min-width: 768px) {
  .business_strengths_inner {
    position: relative;
  }
  .business_strengths_inner .title-hh-1 {
    position: absolute;
    left: 0;
    top: 0;
  }
  .business_strengths_inner .row > div:nth-child(1) {
    margin-top: min(calc(150px + 50 * (100vw - 768px) / 732), 200px);
  }
  .business_strengths_inner .row > div:nth-child(2) {
    margin-top: min(calc(75px + 25 * (100vw - 768px) / 732), 100px);
  }
}

.business_strengths_figure {
  position: relative;
  z-index: 0;
}
.business_strengths_figure figcaption {
  position: relative;
  z-index: 10;
}
.business_strengths_figure figcaption .num {
  position: absolute;
  right: 0;
  top: -.54em;
  font-size: 3.4rem;
  line-height: 1;
}
.business_strengths_figure figcaption h4 {
  font-size: 1.5rem;
  line-height: normal;
  padding: 0.25em 0;
  margin: 0;
}
.business_strengths_figure figcaption p {
  font-size: 0.875rem;
}

/* ---  --- */
.business_service_item:nth-child(even) {
  background-color: rgba(0, 30, 90, 0.05);
}

.business_service_content h4 {
  font-size: 1.25rem;
  margin: 0;
}
.business_service_content .hr {
  margin: 1rem 0;
}
@media print, screen and (min-width: 1200px) {
  .business_service_content {
    font-size: min(calc(16px + 4 * (100vw - 1200px) / 300), 20px);
  }
}

.business_service_columns {
  border: solid 1px #e2e2e2;
  padding: 1.25em;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.business_service_columns .business_service_columns_head {
  margin-bottom: 1.25em;
}
.business_service_columns .business_service_columns_head h4 {
  font-size: 17px;
  line-height: 1.5;
  min-height: 3em;
  text-align: center;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}
.business_service_columns .business_service_columns_head ul {
  font-size: 15px;
  line-height: normal;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
.business_service_columns .business_service_columns_head ul > li {
  padding-left: 1.2em;
  position: relative;
}
.business_service_columns .business_service_columns_head ul > li::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
}
.business_service_columns .business_service_columns_image {
  margin-top: auto;
}
.business_service_columns .business_service_columns_image img {
  max-width: inherit;
  width: 100%;
}

/* -------------------------------
	私たちの仕事
-------------------------------- */
/* ---  --- */
.ourjob_head {
  color: #fff;
  background: url("../images/common/bg01.jpg") no-repeat center center/cover;
}
.ourjob_head .ourjob_head_content h3 {
  color: var(--warning);
  font-weight: 200;
  font-size: 1.5em;
}

.ourjob_work_figure figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: .5em;
}

/* -------------------------------
	安全点検
-------------------------------- */
/* ---  --- */
.safety_head_top {
  color: #fff;
  border-top: solid 5px #001e5a;
  display: flex;
  aspect-ratio: 8 / 3;
  background: url("../images/safety/safety_head_top_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.safety_head_top .parallax {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.safety_head_top .container-fluid-xl {
  margin-top: auto;
  margin-bottom: auto;
}
.safety_head_top .safety_head_top_column h3 {
  letter-spacing: 0.15em;
  line-height: 1.75;
  text-shadow: 0px 0px 13.44px rgba(0, 0, 0, 0.75);
}
.safety_head_top .safety_head_top_column h3 strong {
  color: var(--warning);
  font-size: 1.25em;
}
@media print, screen and (min-width: 768px) {
  .safety_head_top .safety_head_top_column h3 {
    font-size: min(calc(var(--measure-width) / 20), 50px);
  }
}

/**/
.safety_column_1 .ttl {
  color: var(--primary);
  font-size: 1.2rem;
  padding-left: 1.2em;
  margin-bottom: 0.5rem;
  position: relative;
}
.safety_column_1 .ttl:before {
  content: "■";
  position: absolute;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .safety_list_1 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .safety_list_1 li + li::before {
    content: "/";
    margin: 0 1em;
  }
}

/* ---  --- */
.safety_safecheck {
  background-color: rgba(0, 30, 90, 0.05);
}

/* -------------------------------
	業務の流れ
-------------------------------- */
/* ---  --- */
.flow_content {
  --ttl-size: 1.5rem;
}

.flow_content_item {
  display: flex;
}
.flow_content_item .flow_content_item_step {
  flex: 0 0 calc(var(--ttl-size) * 2);
  display: flex;
  flex-direction: column;
}
.flow_content_item .flow_content_item_step::after {
  content: "";
  margin: 0.5rem auto;
  display: block;
  flex: 1 1 0;
  width: 1px;
  background-color: var(--primary);
  opacity: 0.5;
}
.flow_content_item .flow_content_item_step > .num {
  color: #fff;
  font-size: var(--ttl-size);
  width: calc(var(--ttl-size) * 2);
  height: calc(var(--ttl-size) * 2);
  border-radius: 0.25em;
  display: grid;
  place-items: center;
  background-color: var(--primary);
}
.flow_content_item .flow_content_item_content {
  flex: 1 1 0;
  padding-left: var(--ttl-size);
  padding-bottom: 3.125rem;
}
.flow_content_item .flow_content_item_content .column {
  margin-bottom: 1.5rem;
}
.flow_content_item .flow_content_item_content .column .ttl {
  color: var(--primary);
  font-size: var(--ttl-size);
  line-height: 1.5;
  padding-top: calc(var(--ttl-size) * 0.25);
  margin-bottom: calc(var(--ttl-size) * 0.5);
}
.flow_content_item .flow_content_item_content .image {
  max-width: 360px;
}
@media print, screen and (min-width: 768px) {
  .flow_content_item .flow_content_item_content {
    display: flex;
  }
  .flow_content_item .flow_content_item_content .column {
    flex: 1 1 0;
  }
  .flow_content_item .flow_content_item_content .image {
    flex: 0 0 35%;
    padding-left: 5%;
    max-width: inherit;
  }
}
.flow_content_item:last-child .flow_content_item_content {
  padding-bottom: 0;
}

.flow_step_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow_step_content .flow_step_content_item {
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
  align-items: center;
  padding: 1em 2em;
  background-color: #001e5a;
}
.flow_step_content .flow_step_content_item .circle {
  font-weight: 700;
  font-size: clamp(30px, calc(var(--width-item) / 11.5), 60px);
  line-height: 1;
  text-align: center;
  width: 2.33334em;
  height: 2.33334em;
  border: solid 1px #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.flow_step_content .flow_step_content_item .circle .num small {
  font-weight: 500;
  font-size: 0.5em;
  display: block;
}
.flow_step_content .flow_step_content_item .circle .num strong {
  text-shadow: -2px 2px 0 #001e5a, 2px -2px 0 #001e5a, 2px 2px 0 #001e5a, -2px -2px 0 #001e5a;
  display: block;
  transform: translateY(0.25em);
}
.flow_step_content .flow_step_content_item .columns h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.flow_step_content .flow_step_content_item .columns p {
  font-size: 0.8125rem;
}
@media print, screen and (min-width: 768px) {
  .flow_step_content {
    --col:2;
    --gap:30px;
    gap: var(--gap);
  }
  .flow_step_content .flow_step_content_item {
    width: calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
    height: 12em;
    margin-top: calc(-6em - calc(var(--gap) / 2));
  }
  .flow_step_content .flow_step_content_item:nth-child(even) {
    margin-left: auto;
  }
  .flow_step_content .flow_step_content_item:first-child {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .flow_step_content {
    --gap: min(calc(30px + 30 * (100vw - 1200px) / 300), 60px);
  }
}

/* -------------------------------
  施工事例
-------------------------------- */
/* --- 上部　カテゴリー --- */
.cat_navi {
  background-color: #fff;
}
.cat_navi .catbtn {
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.75em 1em;
  background-color: var(--primary);
  position: relative;
}
.cat_navi .catbtn:after {
  content: "\f0c9";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -.5em;
  transition: transform .3s ease;
}
.cat_navi .catbtn.on:after {
  content: "\f00d";
  transform: rotate(180deg);
}
.cat_navi .catnavi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .cat_navi .catbtn {
    display: none;
  }
  .cat_navi .catnavi {
    display: block;
  }
}

/* カテゴリー　一覧デザイン SP */
.cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cat_navi_list > li {
    line-height: 1.5;
    border-bottom: solid 1px var(--primary);
  }
  .cat_navi_list > li > a {
    color: #777;
    text-decoration: none;
    padding: 0.75em 3em 0.75em 1em;
    display: block;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover, .cat_navi_list > li.active > a {
    color: var(--primary);
  }
}

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    font-size: 0.875rem;
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
  }
  .cat_navi_list > li {
    flex: 0 0 33.33334%;
    margin: 5px 0;
    padding: 0 5px;
  }
  .cat_navi_list > li > a {
    color: var(--primary);
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5em 3em 0.5em 1em;
    border-radius: 0.25em;
    border: solid 1px var(--primary);
    background-color: #fff;
    position: relative;
    z-index: 0;
    transition: color .3s ease, background .3s ease;
    position: relative;
  }
  .cat_navi_list > li > a::after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover {
    color: var(--primary);
  }
  .cat_navi_list > li > a:hover::after {
    animation: arrow-out-in 0.4s ease-in-out forwards;
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background-color: var(--primary);
    pointer-events: none;
  }
}
@media print, screen and (min-width: 992px) {
  .cat_navi_list > li {
    flex: 0 0 25%;
  }
}

/* ---  --- */
.works_row {
  --col: 2;
  --num: calc(var(--col) - 1);
  --gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gap) * 1.5) var(--gap);
}
.works_row > .works_row_col {
  flex: 0 0 calc((100% - (var(--gap) * var(--num))) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .works_row {
    --col: 3;
  }
}

.works_col_figure figcaption {
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: center;
  margin-top: .5em;
}
a > .works_col_figure > .photo-ofi {
  overflow: hidden;
  transition: opacity 0.3s ease;
}
a > .works_col_figure:hover > .photo-ofi {
  opacity: 0.65;
}

/* ---  --- */
.page_foot_contact {
  color: #fff;
  text-align: center;
  background-color: #001e5a;
  background: url("../images/common/page_foot_contact_bg.jpg") no-repeat center center/cover;
}
.page_foot_contact .telphone {
  font-size: min(calc(30px + 25 * (100vw - 375px) / 1125), 55px);
  text-align: center;
}
.page_foot_contact .btn {
  color: #fff;
  font-size: min(calc(20px + 20 * (100vw - 375px) / 1125), 40px);
  padding: 0.5em 2em;
  border: solid 1px #fff;
  border-radius: 10em;
}
.page_foot_contact .btn:hover {
  color: #001e5a;
  background-color: #fff;
}
@media print, screen and (min-width: 1200px) {
  .page_foot_contact .telphone {
    font-size: min(calc(40px + 15 * (100vw - 1200px) / 300), 55px);
  }
  .page_foot_contact .btn {
    font-size: min(calc(30px + 10 * (100vw - 1200px) / 300), 40px);
  }
}

/* ---  --- */
.works_detail {
  overflow: hidden;
}

/* ---  --- */
.works-thumbs-splide .splide__list {
  justify-content: center;
}

.works-main-splide {
  width: 70%;
  margin: 0 auto;
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  .works-main-splide {
    width: 50%;
  }
}
.works-main-splide .splide__track {
  overflow: visible;
}
.works-main-splide .splide__slide .slide {
  transform: scale(0.8);
  transform-origin: center center;
  opacity: 0.5;
  transition: opacity 0.1s ease, transform 0.3s ease;
}
.works-main-splide .splide__slide .slide .slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.works-main-splide .splide__slide .slide .slide-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.works-main-splide .splide__slide .slide .slide-txt {
  font-weight: 500;
  font-size: min(calc(13px + 5 * (100vw - 320px) / 1280), 18px);
  text-align: center;
  padding-top: 10px;
}
.works-main-splide .splide__slide.is-prev .slide, .works-main-splide .splide__slide.is-next .slide {
  opacity: 0.5;
}
.works-main-splide .splide__slide.is-active .slide {
  transform: scale(1);
  opacity: 1;
}
.works-main-splide .splide__arrow--prev, .works-main-splide .splide__arrow--next {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .works-main-splide .splide__arrow--prev, .works-main-splide .splide__arrow--next {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
    display: block;
  }
}
.works-main-splide .splide__arrow--prev {
  left: -2em;
}
.works-main-splide .splide__arrow--next {
  right: -2em;
}

.works-thumbs-splide {
  margin-top: 15px;
}
.works-thumbs-splide .splide__slide .slide {
  aspect-ratio: 4/3;
  cursor: pointer;
  background-color: #000;
}
.works-thumbs-splide .splide__slide .slide img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.works-thumbs-splide .splide__slide.is-active {
  cursor: default;
}
.works-thumbs-splide .splide__slide.is-active img {
  opacity: 0.5;
}

/* ---  --- */
.works_voice_column {
  display: flow-root;
}
.works_voice_column > .photo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.works_voice_column > .htmlarea {
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  .works_voice_column > .photo {
    float: left;
    width: 36%;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

/* -------------------------------
	CSR活動
-------------------------------- */
/**/
.csr_row_1 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media print, screen and (min-width: 768px) {
  .csr_row_1 {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}

/**/
.csr_figure_1 {
  height: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.csr_figure_1 > .photo {
  width: 100%;
  aspect-ratio: 13 / 7;
}
.csr_figure_1 > .photo img {
  transition: transform 0.3s ease;
}
.csr_figure_1 figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 3% 5% 3%;
  z-index: 10;
}
.csr_figure_1 figcaption h4 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(16px, calc(var(--measure-width) / 21.666 ), 34px);
  letter-spacing: 0.2em;
  margin: 0;
}
.csr_figure_1 figcaption h4 > .in {
  display: inline-flex;
  padding: 0 0.5em;
  background-color: rgba(0, 30, 90, 0.75);
}
.csr_figure_1 figcaption p {
  text-align: right;
  margin-top: auto;
}
.csr_figure_1 figcaption p .btn-1 {
  font-size: clamp(13px, calc(var(--measure-width) / 28.33334 ), 18px);
  color: #fff;
}
.csr_figure_1 figcaption p .btn-1:before {
  background-color: #fff;
}
.csr_figure_1.type2 > .photo {
  aspect-ratio: 195 / 116;
}
.csr_figure_1.type2 figcaption {
  padding: 5%;
}
.csr_figure_1:hover > .photo img {
  transform: scale(1.2);
  transition: transform 1s ease;
}
.csr_figure_1:hover .btn-1 {
  color: #001e5a;
}
.csr_figure_1:hover .btn-1:before {
  width: calc(100% + 1.5em);
}

/* */
.csr_figure_2 {
  padding: 15px;
  border: solid 1px #c4c4c4;
  display: flex;
}
.csr_figure_2 > .image {
  flex: 0 0 min(30%, 244px);
}
.csr_figure_2 > .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.csr_figure_2 figcaption {
  flex: 1 1 0;
  display: flex;
  padding-left: 20px;
}
.csr_figure_2 figcaption .column {
  margin: auto 0;
}
.csr_figure_2 figcaption .ttl {
  font-weight: 500;
  font-size: 0.88888rem;
  margin-bottom: 0.5em;
}
.csr_figure_2 figcaption dl {
  font-size: 0.75rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 5em 1fr;
}
.csr_figure_2 figcaption dl > dt, .csr_figure_2 figcaption dl > dd {
  margin: 0 0 0.5em;
}

/* -------------------------------
	廃材処理
-------------------------------- */
/* ---  --- */
@media screen and (max-width: 767px) {
  .processing_flow_item {
    --ttl-size: 16px;
    --txt-size: 16px;
    display: flex;
    align-items: center;
    padding-bottom: calc(var(--ttl-size) * 2);
    max-width: 360px;
    margin: 0 auto;
  }
  .processing_flow_item > .ttl {
    color: #fff;
    font-weight: 600;
    font-size: var(--ttl-size);
    line-height: 1.5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    flex: 0 0 7.7223em;
    aspect-ratio: 1/1;
    background-color: #001e5a;
    position: relative;
  }
  .processing_flow_item > .ttl::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: calc(var(--ttl-size) * 2);
    margin-left: -1px;
    background-color: #001e5a;
  }
  .processing_flow_item > .line {
    flex: 0 0 30px;
    height: 5px;
    border-radius: 3px;
    margin: 0 auto;
    background-color: #001e5a;
  }
  .processing_flow_item > .columns {
    font-weight: 600;
    font-size: var(--txt-size);
    text-align: center;
    flex: 1 1 0;
    max-width: 10em;
  }
  .processing_flow_item > .columns .icon {
    width: 3em;
    height: 3em;
    margin: 0 auto 0.5em;
    display: grid;
    place-items: center;
    background-color: #ccc;
    position: relative;
  }
  .processing_flow_item:last-child {
    padding-bottom: 0;
  }
  .processing_flow_item:last-child > .ttl::after {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .processing_flow {
    --ttl-size: calc(var(div-ww) / 7.72223);
    --txt-size: calc(var(div-ww) / 9.26666);
    --gap: min(calc(25px + 25 * (100vw - 768px) / 1142), 50px);
    display: flex;
    gap: 0 var(--gap);
  }
  .processing_flow .processing_flow_item {
    flex: 0 0 calc((100% - (var(--gap) * 4)) / 5);
  }
  .processing_flow .processing_flow_item > .ttl {
    color: #fff;
    font-weight: 600;
    font-size: var(--ttl-size);
    line-height: 1.5;
    display: grid;
    place-items: center;
    border-radius: 50%;
    flex: 0 0 7.7223em;
    aspect-ratio: 1/1;
    background-color: #001e5a;
    position: relative;
  }
  .processing_flow .processing_flow_item > .ttl::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: calc(var(--gap) + 1px);
    height: 2px;
    margin-left: -1px;
    background-color: #001e5a;
  }
  .processing_flow .processing_flow_item > .line {
    width: 5px;
    height: var(--gap);
    margin: calc(var(--gap) / 2) auto;
    border-radius: 3px;
    background-color: #001e5a;
  }
  .processing_flow .processing_flow_item > .columns {
    font-weight: 600;
    font-size: var(--txt-size);
    text-align: center;
  }
  .processing_flow .processing_flow_item > .columns .icon {
    width: 3.5em;
    height: 3.5em;
    margin: 0 auto 0.5em;
    display: grid;
    place-items: center;
    background-color: #ccc;
    position: relative;
  }
  .processing_flow .processing_flow_item:last-child > .ttl:after {
    display: none;
  }
}
.processing_flow .processing_flow_item.type2 > .ttl, .processing_flow .processing_flow_item.type2 > .ttl::after, .processing_flow .processing_flow_item.type2 > .line {
  background-color: #5D6C8A;
}

/* -------------------------------
	防災協定
-------------------------------- */
/* ---  --- */
.agreement_flow_content {
  max-width: 360px;
  margin: 0 auto;
}
.agreement_flow_content .agreement_flow_content_item {
  border: solid 1px #001e5a;
  padding: 5px;
  border-radius: 3px;
}
.agreement_flow_content .agreement_flow_content_item .column {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 0.5em;
}
.agreement_flow_content .arrow {
  font-size: 50px;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  width: 100%;
  margin: 20px 0;
  position: relative;
}
.agreement_flow_content .arrow i {
  color: #001e5a;
  transform: rotate(90deg);
  display: block;
}
.agreement_flow_content .arrow .txt {
  font-size: 0.32em;
  line-height: 1.5;
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 2.5em);
}
.agreement_flow_content .arrow .txt .in {
  color: #cc0000;
  font-weight: 600;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
  padding: 0.25em 0.5em;
  display: inline-flex;
  border: solid 1px #cc0000;
  transform: translate(0, -50%);
}
@media print, screen and (min-width: 768px) {
  .agreement_flow_content {
    max-width: inherit;
    display: flex;
  }
  .agreement_flow_content .agreement_flow_content_item {
    flex: 1 1 0;
  }
  .agreement_flow_content .agreement_flow_content_item .column {
    font-size: min(calc(13px + 7 * (100vw - 768px) / 732), 20px);
  }
  .agreement_flow_content .arrow {
    font-size: min(calc(25px + 25 * (100vw - 768px) / 732), 50px);
    flex: 0 0 1em;
    margin: auto 0.35em;
  }
  .agreement_flow_content .arrow i {
    transform: rotate(0deg);
  }
  .agreement_flow_content .arrow .txt {
    left: 50%;
    top: -3em;
    text-align: center;
    width: 3.5em;
    margin-left: -1.75em;
  }
  .agreement_flow_content .arrow .txt .in {
    white-space: nowrap;
    margin: 0;
    transform: translate(0, 0);
  }
}

.agreement_detail_gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media print, screen and (min-width: 768px) {
  .agreement_detail_gallery {
    gap: min(calc(10px + 20 * (100vw - 768px) / 732), 30px);
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
.recruit_orgchart {
  color: #fff;
  padding-top: 7vw;
  background-color: #001e5a;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.recruit_orgchart .text-loop {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  font-size: 7vw;
  line-height: 1.3;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.35;
}
.recruit_orgchart .text-loop__item:nth-child(odd) {
  animation: text_loop 80s -40s linear infinite;
}
.recruit_orgchart .text-loop__item:nth-child(even) {
  animation: text_loop2 80s linear infinite;
}

/* ---  --- */
.recruit_figure {
  height: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.recruit_figure > .photo {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.recruit_figure > .photo img {
  transition: transform 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .recruit_figure > .photo {
    width: 100%;
  }
}
.recruit_figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: clamp(15px, calc(var(--width-col-w) * 0.07843), 30px);
  padding-right: clamp(15px, calc(var(--width-col-w) * 0.07843), 30px);
  padding-bottom: clamp(15px, calc(var(--width-col-w) * 0.07843), 30px);
  z-index: 10;
}
.recruit_figure figcaption h4 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(20px, calc(var(--width-col-w) / 15 ), 34px);
  line-height: 1.2;
  letter-spacing: 0.2em;
  display: inline-flex;
  padding: 0.15em 0.5em;
  margin-bottom: 0.5em;
  background-color: rgba(0, 30, 90, 0.8);
}
.recruit_figure figcaption p {
  color: #fff;
  line-height: 1.5;
  text-shadow: 0px 0px 13.44px rgba(0, 0, 0, 0.75);
}
.recruit_figure figcaption .btns .btn-1 {
  font-size: clamp(13px, calc(var(--width-col-w) / 28.33334 ), 18px);
  color: #fff;
}
.recruit_figure figcaption .btns .btn-1:before {
  background-color: #fff;
}
.recruit_figure:hover > .photo img {
  transform: scale(1.2);
  transition: transform 1s ease;
}
.recruit_figure:hover .btns .btn-1 {
  color: #001e5a;
}
.recruit_figure:hover .btns .btn-1:before {
  width: calc(100% + 1.5em);
}

/* --- --- */
.recruit_gallery_1 {
  --gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--gap);
}
.recruit_gallery_1 > .item {
  flex: 0 0 calc((100% - (var(--gap) * 1)) / 2);
}
@media print, screen and (min-width: 768px) {
  .recruit_gallery_1 > .item {
    flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
  }
}
.recruit_gallery_1.type1 {
  --shift: clamp(20px, 3vw, 50px);
}
@media print, screen and (min-width: 768px) {
  .recruit_gallery_1.type1 {
    padding: 0 7%;
  }
  .recruit_gallery_1.type1 > .item:nth-child(2) {
    margin-top: calc(var(--shift) * 1.5);
  }
  .recruit_gallery_1.type1 > .item:nth-child(3) {
    margin-top: calc(var(--shift) * 3);
  }
  .recruit_gallery_1.type1 > .item:nth-child(4) {
    margin-top: calc(var(--shift) * -2);
  }
  .recruit_gallery_1.type1 > .item:nth-child(6) {
    margin-top: calc(var(--shift) * 1.5);
  }
}
.recruit_gallery_1.type2 {
  --shift: clamp(10px, 3vw, 30px);
}
@media print, screen and (min-width: 768px) {
  .recruit_gallery_1.type2 > .item {
    flex: 0 0 calc((100% - (var(--gap) * 3)) / 4);
  }
  .recruit_gallery_1.type2 > .item:nth-child(2) {
    margin-top: calc(var(--shift) * 1.5);
  }
  .recruit_gallery_1.type2 > .item:nth-child(3) {
    margin-top: calc(var(--shift) * 3);
  }
  .recruit_gallery_1.type2 > .item:nth-child(4) {
    margin-top: calc(var(--shift) * 4.5);
  }
}

/* ---  --- */
.recruit_figure_2 {
  height: auto;
}
.recruit_figure_2 figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
.recruit_figure_2 figcaption .num {
  position: absolute;
  right: 0.15em;
  top: -1.45em;
  z-index: -1;
  color: #fff;
  font-size: clamp(20px, calc(var(--width-item-w ) / 8.16), 50px);
  line-height: 1;
  width: 1.75em;
  height: 1.5em;
  display: grid;
  place-items: center;
  background-color: rgba(0, 30, 90, 0.8);
}
.recruit_figure_2 figcaption p {
  margin-top: .5em;
  padding-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .recruit_figure_2 figcaption .num {
    top: -0.8em;
  }
}

/* ---  --- */
.interview_row {
  --gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gap) * 1.66666) var(--gap);
}
.interview_row > .item {
  flex: 0 0 calc((100% - (var(--gap) * 0)) / 1);
}
@media print, screen and (min-width: 768px) {
  .interview_row > .item {
    flex: 0 0 calc((100% - (var(--gap) * 1)) / 2);
  }
}

.interview_figure {
  cursor: pointer;
}
.interview_figure > .photo-ofi img {
  transition: opacity 0.3s ease;
}
.interview_figure figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  margin-top: .5em;
}
.interview_figure:hover > .photo-ofi img {
  opacity: 0.65;
}

.interview_modal .modal-dialog {
  max-width: 1304px;
}

.recruit_orgchart_list {
  --col: 3;
  --gap: min(calc(10px + 30 * (100vw - 375px) / 1125), 40px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.recruit_orgchart_list > li {
  color: #001e5a;
  font-weight: 500;
  font-size: clamp(12px, calc(var(--width-li) / 7.15), 40px);
  text-align: center;
  padding: 1.25em 0 1em;
  border-radius: 0.5em;
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  background-color: #fff;
}
.recruit_orgchart_list > li img {
  width: auto;
  height: 3em;
  display: block;
  margin: 0 auto 0.25em;
}
@media print, screen and (min-width: 768px) {
  .recruit_orgchart_list {
    --col: 5;
    --gap: min(calc(10px + 30 * (100vw - 768px) / 1032), 40px);
  }
}

/* -------------------------------
	view
-------------------------------- */
.dragscroll {
  width: 100%;
  margin: 0 auto 60px;
  overflow: auto;
  overflow-y: hidden;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: grab;
}

.dragscroll:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: grabbing;
}

#map_area img {
  max-width: none;
}

.map_wrap {
  position: relative;
  margin: 0;
}
.map_wrap p {
  font-size: 0.75rem;
}

.none_pointer {
  pointer-events: none;
}

#map_nav {
  list-style: none;
  padding: 20px 15px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
#map_nav > li > a {
  font-size: 10px;
  display: block;
  color: #fff;
  padding: 0.25em 1em;
  background-color: #000000;
  border-radius: 10em;
  text-align: center;
  text-decoration: none;
}
#map_nav > li > a:hover {
  background-color: #575656;
}
#map_nav > li > a.backbtn {
  background-color: #bbbbbb;
}
#map_nav > li > a.backbtn:hover {
  background-color: #cccccc;
}

#map_btn {
  list-style: none;
  padding: 0;
}

#map_btn_left {
  left: 10px;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  margin-top: -41px;
  z-index: 9999;
}

#map_btn_right {
  right: 10px;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  margin-top: -41px;
  z-index: 9999;
}

.popup a span {
  position: absolute;
  opacity: 0;
  top: -65px;
  left: -30px;
  width: 100px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 3px;
  background: #196090;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
  transition: .3s;
  box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 6px 3px;
  -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 6px 3px;
  -moz-box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 6px 3px;
}

.popup a span:after {
  position: absolute;
  top: 100%;
  left: 50px;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top: 6px solid #196090;
  content: "";
}

.popup a:hover span {
  opacity: 1;
  top: -55px;
}

.popup .s1_02 a span {
  left: -20px;
}

.popup .s1_05 a span {
  top: -50px;
  left: 10px;
}

.popup .s1_06 a span {
  left: 20px;
}

.popup .s1_08 a span {
  left: -20px;
}

.popup .s1_09 a span {
  left: 100px;
}

.popup .s1_10 a span {
  left: 50px;
}

.popup .s2_01 a span {
  left: -1px;
}

.popup .s2_02 a span {
  top: -10px;
  left: -15px;
}

.popup .s2_04 a span {
  left: 60px;
}

.popup .s2_06 a span {
  left: -20px;
}

.popup .s2_07 a span {
  top: -55px;
  left: 5px;
}

.popup .s2_08 a span {
  left: -12px;
}

.popup .s2_09 a span {
  left: 25px;
}

.popup .s2_10 a span {
  top: -35px;
  left: 60px;
}

.popup .s2_11 a span {
  top: -50px;
  left: 25px;
}

.popup .s3_01 a span {
  left: 0px;
}

.popup .s3_02 a span {
  left: 95px;
}

.popup .s3_03 a span {
  left: 45px;
}

.popup .s3_04 a span {
  width: 130px;
  left: -37px;
}

.popup .s4_01 a span {
  left: 10px;
}

.popup .s4_02 a span {
  left: 154px;
}

.popup .s4_03 a span {
  left: 30px;
}

.popup .s4_04 a span {
  width: 130px;
  left: 50px;
}

.popup .s5_01 a span {
  left: 200px;
}

.popup .s5_03 a span {
  left: 40px;
}

.popup .s5_04 a span {
  left: -41px;
}

.popup .s5_05 a span {
  left: -45px;
}

.popup .s3_04 a span:after {
  left: 65px;
}

.popup .s4_04 a span:after {
  left: 65px;
}

.popup .s1_05 a:hover span {
  top: -40px;
}

.popup .s2_02 a:hover span {
  top: 0px;
}

.popup .s2_02 a:hover span {
  top: 0px;
}

.popup .s2_07 a:hover span {
  top: -45px;
}

.popup .s2_10 a:hover span {
  top: -25px;
}

.popup .s2_11 a:hover span {
  top: -40px;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  color: #fff;
  text-align: center;
  background-color: #001e5a;
  background: url("../images/common/bg01.jpg") no-repeat center center/cover;
}
.tel_contact h3 {
  font-weight: 200;
  font-size: min(calc(20px + 15 * (100vw - 375px) / 1125), 35px);
  line-height: normal;
  margin-bottom: 1rem;
}
.tel_contact .telphone {
  font-size: min(calc(35px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.tel_contact p {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
  text-align: center;
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact h3 {
    font-size: min(calc(20px + 15 * (100vw - 768px) / 732), 35px);
  }
  .tel_contact .telphone {
    font-size: min(calc(35px + 20 * (100vw - 768px) / 732), 50px);
  }
  .tel_contact p {
    font-size: min(calc(12px + 6 * (100vw - 768px) / 732), 18px);
  }
}
@media print, screen and (min-width: 1200px) {
  .tel_contact h3 {
    font-size: min(calc(20px + 15 * (100vw - 1200px) / 600), 35px);
  }
  .tel_contact .telphone {
    font-size: min(calc(35px + 20 * (100vw - 1200px) / 600), 55px);
  }
  .tel_contact p {
    font-size: min(calc(12px + 6 * (100vw - 1200px) / 600), 18px);
  }
}
.tel_contact .row {
  gap: 50px 0;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .row {
    gap: 0;
  }
  .tel_contact .row > div:first-child {
    border-right: solid 1px #fff;
  }
}

#contactform {
  /**/
}
#contactform .form-control {
  border-color: #eee;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .custom-select {
  box-shadow: none !important;
}
#contactform .custom-select:focus {
  border-color: #ccc;
}
#contactform input[type="file"] {
  font-size: 15px;
  letter-spacing: normal;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select-inline, #contactform .p-region {
    width: auto;
    display: inline;
  }
}
#contactform .radio_group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
}
#contactform .radio_group > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .radio_group {
    gap: 0.25em 1.5em;
  }
  #contactform .radio_group > label {
    flex: 0 0 auto;
  }
}
@media print, screen and (min-width: 992px) {
  #contactform .form-control, #contactform .custom-select {
    font-size: min(calc(16px + 2 * (100vw - 1200px) / 300), 18px);
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  display: block;
  padding: 0.15em 0.75em 0.2em;
  border-radius: 3px;
  background-color: var(--danger);
  margin-top: -.75em;
  position: absolute;
  right: 0;
  top: 50%;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 8em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

.img-hisu {
  margin: -.2em .5em 0 0;
}

/*  */
.agree {
  text-align: center;
  margin-top: 20px;
}

.buttons {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.buttons .btn {
  font-weight: 600;
  font-size: 15px;
  margin: 0.3125em 0.625em;
  width: 260px;
  display: block;
  cursor: pointer;
}
@media print, screen and (min-width: 1200px) {
  .buttons .btn {
    font-size: min(calc(16px + 2 * (100vw - 1200px) / 300), 18px);
  }
}

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9375rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

  .amn-fade-up {
    transform: translateY(var(--translate-y));
  }
  .amn-fade-up.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--translate-y) * -1));
  }
  .amn-fade-down.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-left {
    transform: translateX(var(--translate-x));
  }
  .amn-fade-left.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--translate-x) * -1));
  }
  .amn-fade-right.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: var(--primary);
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=module.css.map */
