@charset "UTF-8";
/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}

/* WPが勝手につける width/height 属性だけを無効化 */
table[width],
table td[width],
table th[width] {
  width: auto !important;
}

table[height],
table td[height],
table th[height] {
  height: auto !important;
}

.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 > thead > tr > th, .table-design-2 > thead > tr > td, .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 > thead > tr > th {
  text-align: center;
  background-color: #efefef;
}
.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: #f3f3f3;
}
.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;
  }
}
.table_responsive table {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 393), 16px);
}
@media screen and (max-width: 767px) {
  .table_responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table_responsive table {
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 768px) {
  .table_responsive table {
    font-size: 16px;
  }
}

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

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	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_link_1 {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 10px;
}

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

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto;
}

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

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 1rem;
  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: 1;
}

/* -------------------------------
	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: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-map {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-map:hover {
  opacity: 0.65;
}

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

/* --- 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;
  border: none;
  outline: 0;
  box-shadow: none;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 500;
  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;
}

/* -------------------------------
	box
-------------------------------- */
.parallax-box {
  overflow: hidden;
  position: relative;
}

.parallax-img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 150%;
  transform: translateY(-50%);
  background-position: center;
  background-size: cover;
  will-change: transform;
}
.parallax-img img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
 * parallax.css (GSAP + ScrollTrigger版)
 * 中央基準 & 複数セクション対応（下スクロールで画像は上へ）
 * 可変値:
 *   --parallax-img-height: 画像ラッパの高さ（%）。200% なら上下に各50%の余白。
 *   --parallax-scroll: 余白の何割を使うか 0..1（0.9 にしたら 50% × 0.9 = 45% 動く）。
 * 構造: .parallax > .img > img
 * ============================= */
.parallax {
  position: relative;
  overflow: hidden;
  height: 80vh;
  /* 任意で調整 */
  --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;
}

/* ========================================
 * Splide
 * 無限ループ
 * =======================================*/
.loop_splide .splide__list {
  gap: clamp(5px, 1.33334vw, 20px);
}

.loop_splide_photo {
  width: clamp(120px, 26vw, 390px);
  aspect-ratio: 78 / 59;
}
.loop_splide_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
 * -- 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% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.3);
  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:hover, .splide__arrow--next:hover {
  outline: none;
}

.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 {
  outline: 3px solid rgba(0, 0, 0, 0.3);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: #f7f7f7;
}

/* --▼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";
}

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

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

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

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

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

.fs-16-20 {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1125), 20px);
}

/* --▼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);
}

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

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

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

.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);
}

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

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

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

@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);
  }

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

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

  .mtb-lg-120 {
    margin-top: min(calc(39px + 81 * (100vw - 375px) / 1125), 120px);
    margin-bottom: min(calc(39px + 81 * (100vw - 375px) / 1125), 120px);
  }
}
@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);
  }

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

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

  .ptb-lg-120 {
    padding-top: min(calc(39px + 81 * (100vw - 375px) / 1125), 120px);
    padding-bottom: min(calc(39px + 81 * (100vw - 375px) / 1125), 120px);
  }
}
/**/
.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);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.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;
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  --border-color: var(--text-color);
  border-left: solid 0.2em var(--border-color);
  padding-left: 0.5em;
}

.title-2 {
  --border-color: var(--danger);
  text-align: center;
  margin-bottom: 1em;
}
.title-2:after {
  content: "";
  display: block;
  width: 3.6em;
  height: 1px;
  margin: 1em auto 0;
  background-color: var(--border-color);
}

.title-3 {
  padding-bottom: 0.5em;
  border-bottom: solid 1px currentColor;
}

.title-hh-1 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
}
.title-hh-1 > .jp {
  font-size: min(calc(27px + 23 * (100vw - 375px) / 1125), 50px);
  display: block;
}
.title-hh-1 > .en {
  font-size: min(calc(15px + 5 * (100vw - 375px) / 1125), 20px);
  display: block;
  margin-top: .5em;
}

/* タイトル用フォントサイズ */
.ttl-fs-1 {
  font-size: 1.5625rem;
}
@media print, screen and (min-width: 768px) {
  .ttl-fs-1 {
    font-size: 2.1875rem;
  }
}
@media print, screen and (min-width: 992px) {
  .ttl-fs-1 {
    font-size: 2.5rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .ttl-fs-1 {
    font-size: 3.125rem;
  }
}

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

.container-fluid-xxl {
  max-width: 1700px;
  width: 100%;
  padding-left: calc(15px + 65 * (100vw - 320px) / 1380);
  padding-right: calc(15px + 65 * (100vw - 320px) / 1380);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1700px) {
  .container-fluid-xxl {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* --- 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;
  }
}

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

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

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  display: flex;
  flex-direction: column;
  height: calc(var(--app-h) * 0.6);
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: var(--app-h);
  }
}
#mainvisual .mainvisual_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#mainvisual .mainvisual_bg > img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainvisual .mainvisual_content {
  color: #fff;
  margin: auto auto 0;
  padding: 15px 15px 50px;
}
@media print, screen and (min-width: 768px) {
  #mainvisual .mainvisual_content {
    margin: auto;
    padding: 15px;
  }
}
#mainvisual .mainvisual_content h2 {
  font-weight: 400;
  font-size: min(calc(20px + 60 * (100vw - 320px) / 1600), 80px);
  line-height: 1.1875;
  letter-spacing: normal;
  margin-bottom: 1.5em;
}
#mainvisual .mainvisual_content h2:first-letter {
  color: var(--info);
}
#mainvisual .mainvisual_content .btn {
  color: #fff;
  font-size: min(calc(14px + 6 * (100vw - 320px) / 1180), 20px);
  width: 10em;
  height: 3em;
  padding: 0;
  border-radius: 10em;
  display: grid;
  place-items: center;
}
#mainvisual .mainvisual_content .mainvisual_btn_1 {
  background-color: rgba(0, 138, 252, 0.3);
}
#mainvisual .mainvisual_content .mainvisual_btn_1:hover {
  background-color: rgba(0, 138, 252, 0.8);
}
#mainvisual .mainvisual_content .mainvisual_btn_2 {
  background-color: rgba(253, 85, 33, 0.3);
}
#mainvisual .mainvisual_content .mainvisual_btn_2:hover {
  background-color: rgba(253, 85, 33, 0.8);
}

.mainvisual_content_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 0;
}
.mainvisual_content_row .box {
  margin-right: clamp(15px, 7.4vw, 143px);
}
.mainvisual_content_row .box + .box {
  margin-right: 0;
}
.mainvisual_content_row .box > ul {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 10px 0;
}
.mainvisual_content_row .box > ul > li:first-child {
  margin-right: clamp(10px, 2.9vw, 75px);
}
.mainvisual_content_row .box p {
  font-size: min(calc(15px + 19 * (100vw - 320px) / 1600), 34px);
  line-height: normal;
}
.mainvisual_content_row .box p strong {
  color: var(--info);
  font-weight: 400;
  font-size: 1.44117em;
}

@media screen {
  .amn-main-ttl {
    opacity: 0;
    transform: scale(1.3);
  }
  .amn-main-ttl.is-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 3s ease, transform 3s ease;
  }

  .amn-main-btn {
    transform: scaleY(0);
    transform-origin: center top;
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  }
  .amn-main-btn.is-active {
    transform: scaleY(1);
  }

  .amn-main-txt {
    filter: blur(10px);
    opacity: 0;
    transition: opacity 2s ease 2s, filter 2s ease 2s;
  }
  .amn-main-txt.is-active {
    filter: blur(0px);
    opacity: 1;
  }
}
/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_about {
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
.home_about h2 {
  font-weight: 400;
  font-size: min(calc(18px + 37 * (100vw - 375px) / 1125), 55px);
  line-height: 1.2;
  text-align: left;
  display: inline-block;
}
.home_about h2 strong {
  font-weight: 400;
  font-size: 1.45455em;
}

.home_about_txt {
  font-size: min(calc(15px + 7 * (100vw - 375px) / 1125), 22px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 3em;
}
.home_about_txt img {
  height: 2.18182em;
  max-height: 48px;
  width: auto;
  max-width: none;
}

/* ---  --- */
.home_news {
  background-color: #efefef;
}

.home_news_list_item {
  border-bottom: solid 1px #dadada;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.home_news_list_item:last-child {
  margin-bottom: 0;
}
.home_news_list_item .date .new {
  color: #ff0000;
  font-size: 0.875em;
  display: inline-flex;
  margin-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .home_news_list_item {
    display: flex;
  }
  .home_news_list_item .date {
    flex: 0 0 11.5em;
  }
  .home_news_list_item .column {
    flex: 1 1 0;
  }
}

/* ---  --- */
.home_product .home_product_title h2 {
  font-weight: 500;
  text-align: center;
  border-bottom: solid 1px #fd5520;
  padding-bottom: 0.5em;
}
.home_product .home_product_content .image {
  position: relative;
  overflow: hidden;
}
.home_product .home_product_content .image .parallax {
  width: calc(100% + 2px);
  height: auto;
  aspect-ratio: 4/3;
  background-color: #ccc;
  margin-left: -1px;
}
.home_product .home_product_content .video {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home_product .home_product_content .video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  object-fit: cover;
}
.home_product .home_product_content .video .column {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  color: #fff;
  font-size: 15px;
  padding: 0 1.5em 4em;
}
@media print, screen and (min-width: 768px) {
  .home_product .home_product_content {
    display: flex;
    height: min(calc(360px + 316 * (100vw - 768px) / 932), 676px);
    position: relative;
  }
  .home_product .home_product_content .video {
    flex: 0 0 clamp(320px, 43.83334vw, 526px);
    width: auto;
    aspect-ratio: auto;
    position: relative;
    z-index: 10;
  }
  .home_product .home_product_content .video .column {
    font-size: min(calc(14px + 8 * (100vw - 768px) / 932), 20px);
  }
  .home_product .home_product_content .image {
    flex: 1 1 0;
    width: auto;
    position: relative;
    z-index: 0;
  }
  .home_product .home_product_content .image .parallax {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media print, screen and (min-width: 992px) {
  .home_product {
    display: flex;
  }
  .home_product .home_product_title {
    flex: 0 0 clamp(180px, 13.529vw, 230px);
    position: relative;
    z-index: 10;
  }
  .home_product .home_product_title h2 {
    font-size: min(calc(40px + 20 * (100vw - 992px) / 708), 60px);
    text-align: center;
    margin: 0;
    padding-top: 1.66666em;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    writing-mode: vertical-rl;
    border: none;
    position: relative;
  }
  .home_product .home_product_title h2:before {
    content: "";
    position: absolute;
    top: 1.16666em;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fd5520;
  }
  .home_product .home_product_content {
    flex: 1 1 0;
    position: relative;
    z-index: 0;
  }
  .home_product.ttl_right .home_product_title {
    order: 13;
  }
  .home_product.ttl_right .home_product_title h2:before {
    left: -3.2em;
  }
  .home_product.ttl_right .home_product_content {
    margin-left: calc(-15px - 65 * (100vw - 320px) / 1380);
  }
  .home_product.ttl_left .home_product_title h2:before {
    right: -3.2em;
  }
  .home_product.ttl_left .home_product_content {
    margin-right: calc(-15px - 65 * (100vw - 320px) / 1380);
  }
}
@media print, screen and (min-width: 1700px) {
  .home_product.ttl_right .home_product_content {
    margin-left: calc((1540px - var(--app-w)) / 2);
  }
  .home_product.ttl_left .home_product_content {
    margin-right: calc((1540px - var(--app-w)) / 2);
  }
}

.home_product_1 .video video {
  transform: scale(1.5);
}
@media print, screen and (min-width: 768px) {
  .home_product_1 .home_product_content .video {
    order: 2;
  }
  .home_product_1 .home_product_content .column {
    order: 1;
  }
}

.home_product_4 .parallax {
  --parallax-img-height: 123%;
}
@media print, screen and (min-width: 768px) {
  .home_product_4 .home_product_content .video {
    flex: 1 1 0;
  }
  .home_product_4 .home_product_content .image {
    flex: 0 0 clamp(320px, 43.83334vw, 526px);
  }
}

.home_product_5 .parallax {
  --parallax-img-height: 150%;
}
.home_product_5 .home_product_content .image .column {
  position: absolute;
  right: 1.5em;
  bottom: 4em;
  color: #fff;
  z-index: 10;
  font-size: 15px;
  max-width: 33.5em;
  padding-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .home_product_5 .home_product_content .image .column {
    font-size: min(calc(14px + 8 * (100vw - 768px) / 932), 20px);
  }
}

/**/
.home_product_two {
  margin-left: calc((100% - var(--app-w)) / 2);
  margin-right: calc((100% - var(--app-w)) / 2);
}
.home_product_two .home_product_two_image {
  width: 100%;
  height: auto;
}
.home_product_two .home_product_two_image .parallax {
  --parallax-img-height: 150%;
  height: auto;
  aspect-ratio: 4/3;
}
@media print, screen and (min-width: 992px) {
  .home_product_two .home_product_two_image .parallax {
    aspect-ratio: 250 / 293;
  }
}

.home_product_two_content {
  max-width: 593px;
  padding: 0 30px;
  margin: 0 auto;
}
.home_product_two_content h2 {
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}
.home_product_two_content h2 > .jp {
  font-size: min(calc(40px + 20 * (100vw - 375px) / 1125), 60px);
  line-height: 1.75;
  display: inline-block;
  position: relative;
}
.home_product_two_content h2 > .jp:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75em;
  width: 100%;
  height: 1px;
  background-color: #fd5521;
}
.home_product_two_content h2 > .en {
  color: #999999;
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  display: block;
}
.home_product_two_content .column {
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .home_product_two_content .column {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 732), 20px);
  }
}

.home_product_two_figure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  gap: 10px;
}
.home_product_two_figure figcaption p {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 393), 16px);
}

/* -------------------------------
	お知らせ
-------------------------------- */
.news_date {
  font-weight: 500;
}
.news_date .new {
  color: #ff0000;
  font-size: 0.875em;
  display: inline-flex;
  margin-left: 1.5em;
}

/* -------------------------------
	サンポーについて
-------------------------------- */
.making_head {
  color: #fff;
  background-color: #000;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.making_head > .parallax {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.making_head h3 {
  font-weight: 400;
  font-size: min(calc(22px + 33 * (100vw - 375px) / 1125), 55px);
  line-height: 1.75;
  margin-bottom: 1em;
}
.making_head h3 strong {
  font-weight: 400;
  font-size: 1.2em;
}
.making_head p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1125), 24px);
}
@media print, screen and (min-width: 768px) {
  .making_head h3 {
    font-size: min(calc(30px + 25 * (100vw - 768px) / 732), 55px);
  }
}

.making_head_logo {
  text-align: right;
}
.making_head_logo img {
  width: auto;
  height: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
}

/* ---  --- */
.making_point_item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #ccc;
}
.making_point_item .num {
  color: #e48e35;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 6px;
}
.making_point_item .num .point {
  font-size: 0.5em;
  margin-right: 0.5em;
}
.making_point_item .columns h3 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 768px) {
  .making_point_item {
    display: flex;
    align-items: stretch;
  }
  .making_point_item .num {
    font-size: min(calc(40px + 30 * (100vw - 768px) / 732), 70px);
    flex: 0 0 2.8em;
    height: 2.8em;
    display: grid;
    place-items: center;
    box-shadow: 0.12em 0.12em 0 #e48e35;
    background-color: #f5f5f5;
    position: relative;
  }
  .making_point_item .num .point {
    position: absolute;
    right: calc(100% + 0.25em);
    top: 50%;
    color: #000;
    font-size: 0.4em;
    writing-mode: vertical-rl;
    margin: 0;
    display: flex;
    align-items: center;
    transform: translateY(-50%) rotate(180deg);
  }
  .making_point_item .num .inr {
    color: #000;
    line-height: 1.2;
    text-align: center;
  }
  .making_point_item .columns {
    padding-left: 36px;
  }
  .making_point_item .columns h3 {
    font-size: min(calc(24px + 12 * (100vw - 768px) / 732), 36px);
    margin-top: 0.5em;
    margin-bottom: 0.75em;
  }
}

/* ---  --- */
.making_product .loop_splide .splide__list {
  gap: 0 min(calc(10px + 40 * (100vw - 375px) / 1125), 50px);
}
.making_product .loop_splide .photo-ofi {
  width: clamp(120px, 26vw, 287px);
  aspect-ratio: 287 / 309;
}

/* -------------------------------
	PRODUCT
-------------------------------- */
/* ---  --- */
.product_head_navi {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  z-index: 50;
  overflow: hidden;
}
.product_head_navi > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  border-bottom: dotted 1px #aaa;
}
.product_head_navi > ul > li {
  flex: 1 1 0;
  position: relative;
  border-right: dotted 1px #aaa;
}
.product_head_navi > ul > li:last-child {
  border-right: none;
}
.product_head_navi > ul > li > a {
  font-size: min(calc(15px + 5 * (100vw - 375px) / 1225), 20px);
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 1em;
  position: relative;
}
.product_head_navi > ul > li > a::after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1.5em;
  margin-top: -.5em;
}
.product_head_navi > ul > li > a:hover::after {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
.product_head_navi > ul > li.active > a {
  background-color: #efefef;
}
@media print, screen and (min-width: 992px) {
  .product_head_navi {
    position: sticky;
    top: 80px;
  }
}

/* ---  --- */
.product_item {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  border-bottom: solid 1px #eee;
}
@media print, screen and (min-width: 768px) {
  .product_item {
    max-width: 2000px;
    padding-left: min(calc(15px + 35 * (100vw - 768px) / 1232), 50px);
    padding-right: min(calc(15px + 35 * (100vw - 768px) / 1232), 50px);
  }
}
.product_item .product_item_side {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 992px) {
  .product_item {
    display: flex;
    align-items: stretch;
  }
  .product_item .product_item_side {
    order: 2;
    flex: 0 0 min(30.24194vw, 450px);
  }
  .product_item .product_item_content {
    flex: 1 1 0;
    order: 1;
    padding-right: min(calc(30px + 90 * (100vw - 768px) / 1232), 120px);
  }
}
.product_item .wp-block-table {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 393), 16px);
}
.product_item .wp-block-table .has-fixed-layout {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.product_item .wp-block-table .has-fixed-layout > thead, .product_item .wp-block-table .has-fixed-layout > tbody {
  border: none;
}
.product_item .wp-block-table .has-fixed-layout > thead tr, .product_item .wp-block-table .has-fixed-layout > tbody > tr {
  border: none;
}
.product_item .wp-block-table .has-fixed-layout > thead tr > th, .product_item .wp-block-table .has-fixed-layout > thead tr > td, .product_item .wp-block-table .has-fixed-layout > tbody > tr > th, .product_item .wp-block-table .has-fixed-layout > tbody > tr > td {
  padding: 1em;
  border: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.product_item .wp-block-table .has-fixed-layout > thead > tr > th, .product_item .wp-block-table .has-fixed-layout > thead > tr > td {
  text-align: center;
  background-color: #efefef;
}
.product_item .wp-block-table .has-fixed-layout > tbody > tr > th:first-child, .product_item .wp-block-table .has-fixed-layout > tbody > tr > td:first-child {
  background-color: #f3f3f3;
}
@media print, screen and (min-width: 768px) {
  .product_item .wp-block-table {
    font-size: 1rem;
  }
}

/* */
@media print, screen and (min-width: 992px) {
  .side_nav {
    position: sticky;
    top: 180px;
  }
}
.side_nav > ul {
  list-style: none;
  padding: 0;
}
.side_nav > ul > li {
  border-bottom: dotted 1px #aaa;
}
.side_nav > ul > li:last-child {
  border-bottom: none;
}
.side_nav > ul > li > a {
  padding: 5px;
  display: block;
  transition: background 0.3s ease;
}
.side_nav > ul > li > a figure .image {
  aspect-ratio: 1/1;
}
.side_nav > ul > li > a figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.side_nav > ul > li > a:hover {
  background-color: #fafafa;
}
.side_nav > ul > li.active > a {
  background-color: #f3f3f3;
}

/*  */
.product_item_content_head h3 {
  font-size: clamp(24px, calc(var(--measure-width) / 30), 38px);
}

/* */
.product_item_content_body {
  --width-figure-w: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px 30px;
}
@media print, screen and (min-width: 768px) {
  .product_item_content_body {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product_figure_1 .photo {
  aspect-ratio: 4/3;
  background-color: #000;
}
.product_figure_1 .photo img {
  object-fit: scale-down;
}
.product_figure_1 figcaption {
  padding-top: 10px;
}
.product_figure_1 figcaption .ttl {
  font-size: clamp(18px, calc(var(--width-figure-w) / 20), 28px);
  margin-bottom: 10px;
}
.product_figure_1 figcaption .column {
  font-size: 0.875rem;
}
a > .product_figure_1 .photo {
  overflow: hidden;
}
a > .product_figure_1 .photo > img {
  transition: transform 0.3s ease;
}
a > .product_figure_1:hover .photo > img {
  transform: scale(1.2);
  transition: transform 1s ease;
}

/* ---  --- */
.product_item_content .cat {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.product_item_content .cat > span {
  color: #fff;
  display: block;
  padding: 0.15em 1em;
  border-radius: 10em;
  background-color: #999;
}
.product_item_content .ttl {
  font-size: clamp(24px, calc(var(--measure-width) / 30), 38px);
}

/**/
.splide_slider {
  overflow: hidden;
}

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

.product-main-splide {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  .product-main-splide {
    width: 70%;
  }
}
@media print, screen and (min-width: 1200px) {
  .product-main-splide {
    width: 60%;
  }
}
.product-main-splide .splide__track {
  overflow: visible;
}
.product-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;
}
.product-main-splide .splide__slide .slide .slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-main-splide .splide__slide .slide .slide-photo img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-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;
}
.product-main-splide .splide__slide.is-prev .slide, .product-main-splide .splide__slide.is-next .slide {
  opacity: 0.5;
}
.product-main-splide .splide__slide.is-active .slide {
  transform: scale(1);
  opacity: 1;
}
.product-main-splide .splide__arrow--prev, .product-main-splide .splide__arrow--next {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .product-main-splide .splide__arrow--prev, .product-main-splide .splide__arrow--next {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
    display: block;
  }
}
.product-main-splide .splide__arrow--prev {
  left: -2em;
}
.product-main-splide .splide__arrow--next {
  right: -2em;
}

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

/* ---  --- */
.product_btm_nav {
  text-align: center;
}
.product_btm_nav .product_btm_nav_back {
  margin-top: 20px;
}
.product_btm_nav .product_btm_nav_back .btn {
  border-bottom: solid 1px #000;
  border-radius: 0;
  padding: 0.75em 1em;
  transition: opacity 0.3s ease;
}
.product_btm_nav .product_btm_nav_back .btn:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 768px) {
  .product_btm_nav {
    display: flex;
    align-items: center;
  }
  .product_btm_nav .product_btm_nav_back {
    margin-top: 0;
    order: 1;
  }
  .product_btm_nav .product_btm_nav_contact {
    margin-left: auto;
    order: 2;
  }
}

.product-repeat-oembed {
  position: relative;
  padding-bottom: 56.3%;
  overflow: hidden;
}
.product-repeat-oembed iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

/* -------------------------------
	case
-------------------------------- */
/* ---  --- */
.case_item {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  border-bottom: solid 1px #eee;
}
@media print, screen and (min-width: 768px) {
  .case_item {
    max-width: 2000px;
    padding-left: min(calc(15px + 35 * (100vw - 768px) / 1232), 50px);
    padding-right: min(calc(15px + 35 * (100vw - 768px) / 1232), 50px);
    padding-top: min(calc(50px + 50 * (100vw - 768px) / 1232), 100px);
    padding-bottom: min(calc(50px + 50 * (100vw - 768px) / 1232), 100px);
  }
}
.case_item .case_item_side {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 992px) {
  .case_item {
    display: flex;
  }
  .case_item .case_item_side {
    order: 2;
    flex: 0 0 min(30.24194vw, 450px);
    padding-left: min(calc(30px + 50 * (100vw - 768px) / 1232), 80px);
  }
  .case_item .case_item_content {
    flex: 1 1 0;
    order: 1;
    padding-right: min(calc(30px + 50 * (100vw - 768px) / 1232), 80px);
    border-right: dotted 1px #aaa;
  }
}

/* */
@media print, screen and (min-width: 992px) {
  .case_side_nav {
    position: sticky;
    top: 100px;
  }
}
.case_side_nav > ul {
  list-style: none;
  padding: 0;
}
.case_side_nav > ul > li {
  border-bottom: dotted 1px #aaa;
}
.case_side_nav > ul > li > a {
  text-decoration: none;
  padding: 1em 1em 1em 1.5em;
  display: block;
  position: relative;
  transition: background 0.3s ease;
}
.case_side_nav > ul > li > a:before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.75em;
  bottom: 0.75em;
  width: 0.2em;
  background-color: #ccc;
}
.case_side_nav > ul > li > a:hover {
  background-color: #f3f3f3;
}
.case_side_nav > ul > li.active > a:before {
  background-color: var(--info);
}

/*  */
.case_item_content_head h3 {
  font-size: clamp(24px, calc(var(--measure-width) / 30), 38px);
}

/* */
.case_item_content_body {
  --width-figure-w: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px 30px;
}
@media print, screen and (min-width: 768px) {
  .case_item_content_body {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case_figure_1 .photo {
  aspect-ratio: 4/3;
}
.case_figure_1 figcaption {
  padding-top: 10px;
}
.case_figure_1 figcaption .ttl {
  font-size: clamp(18px, calc(var(--width-figure-w) / 20), 28px);
  margin-bottom: 10px;
}
.case_figure_1 figcaption .column {
  font-size: 0.875rem;
}
a > .case_figure_1 .photo {
  overflow: hidden;
}
a > .case_figure_1 .photo > img {
  transition: transform 0.3s ease;
}
a > .case_figure_1:hover .photo > img {
  transform: scale(1.2);
  transition: transform 1s ease;
}

/* ---  --- */
.case_item_content .cat {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.case_item_content .cat > span {
  color: #fff;
  display: block;
  padding: 0.15em 1em;
  border-radius: 10em;
  background-color: #999;
}
.case_item_content .ttl {
  font-size: clamp(24px, calc(var(--measure-width) / 30), 38px);
}

/* -------------------------------
	Recruit
-------------------------------- */
/* ---  --- */
.recruit_head {
  color: #fff;
  background-color: #000;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.recruit_head > .parallax {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.recruit_head h3 {
  font-weight: 400;
  font-size: clamp(21px, calc(var(--measure-width) / 23.7), 55px);
  line-height: 1.75;
  margin-bottom: 1em;
}
.recruit_head h3 strong {
  color: var(--info);
  font-weight: 400;
  font-size: 1.2em;
}
.recruit_head h4 {
  font-size: clamp(18px, calc(var(--measure-width) / 36.2), 32px);
  line-height: 1.75;
  padding: 1em;
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 992px) {
  .recruit_head p {
    font-size: min(calc(16px + 2 * (100vw - 375px) / 1125), 18px);
  }
}

/* ---  --- */
.recruit_item h3 {
  border-bottom: solid 1px #333;
  padding-left: 0.15em;
  padding-bottom: 0.5em;
}
.recruit_item .recruit_item_content h4 {
  font-size: 20px;
  padding-left: 1.2em;
  margin-bottom: 1rem;
  position: relative;
}
.recruit_item .recruit_item_content h4:before {
  content: "■";
  position: absolute;
  left: 0;
}
.recruit_item .recruit_item_content * + h4 {
  margin-top: 2rem;
}

/* ---  --- */
.recruit_contact {
  color: #fff;
  background-color: #000;
}
.recruit_contact h3 {
  font-size: min(calc(22px + 12 * (100vw - 375px) / 1125), 36px);
  text-align: center;
  padding-bottom: 1.5em;
  margin-bottom: 2em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
.recruit_contact .telphone {
  font-size: 32px;
  text-align: center;
}
.recruit_contact p {
  font-size: 12px;
  text-align: center;
  margin-top: .5em;
}
.recruit_contact .btn {
  font-size: 18px;
  display: block;
  max-width: 20em;
  margin: 0 auto;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .recruit_contact .telphone {
    font-size: min(calc(32px + 15 * (100vw - 768px) / 732), 45px);
  }
  .recruit_contact p {
    font-size: min(calc(12px + 2 * (100vw - 768px) / 732), 14px);
  }
  .recruit_contact .btn {
    font-size: min(calc(18px + 6 * (100vw - 768px) / 732), 24px);
    padding: 1em;
  }
}

/* -------------------------------
	Company
-------------------------------- */
.company_ttl_1 {
  font-size: min(calc(24px + 24 * (100vw - 375px) / 1225), 48px);
  text-align: center;
}
.company_ttl_1 > .txt {
  display: inline-block;
  border-bottom: solid 1px var(--info);
  padding-bottom: 0.5em;
}

.company_greeting .ceo_name {
  text-align: right;
  margin-top: auto;
  padding-top: 2rem;
}
@media print, screen and (min-width: 992px) {
  .company_greeting .row {
    border-top: solid 1px #000;
    padding-top: 50px;
  }
  .company_greeting .company_ttl_1 {
    display: flex;
    justify-content: center;
    border-right: solid 1px var(--info);
    width: 5em;
    margin-right: 2em;
  }
  .company_greeting .company_ttl_1 > .txt {
    display: inline-block;
    writing-mode: vertical-rl;
    border: none;
    padding: 0;
  }
}

.company_dl_1 {
  --dt-w: 11em;
}
@media print, screen and (min-width: 992px) {
  .company_dl_1 {
    display: grid;
    grid-template-columns: var(--dt-w) 1fr;
  }
}

.company_dl_2 {
  --dt-w: 7em;
  display: grid;
  grid-template-columns: var(--dt-w) 1fr;
}
.company_dl_2 dt, .company_dl_2 dd {
  font-weight: 400;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  color: #fff;
  background-color: #000;
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.tel_contact p {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  text-align: center;
  margin-top: 1em;
}

/* 確認画面と完了画面を非表示 */
.confirm_area,
.thanks_area {
  display: none;
}

/* CF7デフォルトのメッセージは消す */
#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;
}
#contactform .wpcf7-list-item {
  display: block;
  margin: 0;
}
@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;
  }
}

/* フォーム用　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: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em;
  border-radius: 10em;
  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: 9em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #333333;
  font-size: 0.875rem;
  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-size: 15px;
  margin: 0.3125em 0.625em;
  width: 260px;
  display: block;
  cursor: pointer;
}
@media print, screen and (min-width: 1200px) {
  .buttons .btn {
    font-size: 16px;
  }
}

/* プライバシーポリシー */
#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: bold;
  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) " )";
}

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