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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #B1C3CC;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #B1C3CC;
}
.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
-------------------------------- */
/* -------------------------------
	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;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(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.8125em;
  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-mxw-223 {
  min-width: 223px;
}

.btn-white {
  --color: var(--primary);
  color: var(--color);
  font-weight: 500;
  padding: 1em 2em;
  border-radius: 10em;
  border: solid 1px #fff;
  background-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background-color: var(--color);
}

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

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

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

/* --▼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-ttl-1 {
  font-size: min(calc(22px + 10 * (100vw - 375px) / 1125), 32px);
}

/* --▼width-- */
.max-w-1110 {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mtb-90 {
  margin-top: min(calc(30px + 60 * (100vw - 375px) / 1125), 90px);
  margin-bottom: min(calc(30px + 60 * (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(30px + 20 * (100vw - 375px) / 1125), 50px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ptb-90 {
  padding-top: min(calc(30px + 60 * (100vw - 375px) / 1125), 90px);
  padding-bottom: min(calc(30px + 60 * (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;
}

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

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

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-ttl {
  color: var(--primary);
  font-size: min(calc(40px + 20 * (100vw - 375px) / 1125), 60px);
  line-height: 1.3;
  display: block;
}
.title-hh-1 > .fs-jp {
  color: #595959;
  font-weight: 500;
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1125), 20px);
  line-height: 1.5;
  padding-left: 1em;
  display: block;
}
.title-hh-1.center {
  text-align: center;
}
.title-hh-1.center > .fs-jp {
  padding-left: 0;
}
.title-hh-1.white > .fs-ttl, .title-hh-1.white > .fs-jp {
  color: #fff;
}

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

:root {
  --edge: calc(-15px - 65 * (100vw - 375px) / 1125);
}
@media print, screen and (min-width: 1500px) {
  :root {
    --edge: calc((1304px - 100vw) / 2);
  }
}

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

.gap-y-30-60 {
  gap: min(calc(30px + 30 * (100vw - 375px) / 1125), 60px) 0;
}

/* -------------------------------
	メインビジュアル
-------------------------------- */
#mainvisual {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#mainvisual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: calc(var(--app-h) * 0.3);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 90%, white 100%);
}
#mainvisual .slide .slide-media {
  width: 100%;
  height: calc(var(--app-h) * 0.6);
}
#mainvisual .slide .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .slide .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .slide .slide-media {
    height: var(--app-h);
  }
}
#mainvisual .mainvisual_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
  flex-direction: column;
}
#mainvisual .mainvisual_content .inner {
  margin: auto 0;
  padding-left: clamp(15px, 4vw, 80px);
}
#mainvisual .mainvisual_content .inner h2 {
  color: #fff;
  font-size: min(calc(25px + 55 * (100vw - 375px) / 1545), 80px);
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-shadow: 0px 9px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
}
#mainvisual .mainvisual_content .inner h2 > .txt2 {
  display: inline-block;
  margin-left: 2em;
}

/*
 * -- 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: #6e8f00;
  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 {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  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;
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 7s 1s linear;
  transform: translateX(-1.5%) scale(1.1);
}
.splide01 .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: translateX(1.5%) scale(1.05);
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-ttl {
  color: var(--primary);
  font-size: min(calc(50px + 30 * (100vw - 375px) / 1125), 80px);
  line-height: 1.3;
  display: block;
}
.home_ttl_1 > .fs-jp {
  color: #595959;
  font-weight: 500;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
  line-height: 1.5;
  padding-left: 1em;
  display: block;
}
.home_ttl_1.center {
  text-align: center;
}
.home_ttl_1.center > .fs-jp {
  padding-left: 0;
}
.home_ttl_1.white > .fs-ttl, .home_ttl_1.white > .fs-jp {
  color: #fff;
}

.home_fs_1 {
  font-size: min(calc(22px + 10 * (100vw - 375px) / 1125), 32px);
}
@media print, screen and (min-width: 992px) {
  .home_fs_1 {
    font-size: min(calc(23px + 9 * (100vw - 992px) / 508), 32px);
  }
}

/* ---  --- */
.home_about {
  overflow: hidden;
  background-color: #fff;
}

@media print, screen and (min-width: 768px) {
  .home_about_content .columns {
    padding-left: 30px;
  }
}

@media print, screen and (min-width: 992px) {
  .home_about_image {
    margin-left: var(--edge);
    padding-left: min(calc(30px + 30 * (100vw - 992px) / 508), 60px);
    padding-right: min(calc(41px + 41 * (100vw - 992px) / 508), 82px);
  }
}

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

.home_initiative_image {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .home_initiative_content .columns {
    padding-left: min(calc(30px + 82 * (100vw - 992px) / 508), 112px);
  }
}

/* ---  --- */
.home_equipment {
  color: #fff;
  background-color: #3c96c8;
  overflow: hidden;
}

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

.home_equipment_figure {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
}
.home_equipment_figure > .photo {
  aspect-ratio: 304 / 203;
  overflow: hidden;
}
.home_equipment_figure figcaption {
  font-size: 1em;
  line-height: normal;
  text-align: center;
  margin-top: 0.5em;
}

/* ---  --- */
.home_recruit {
  background-color: #d8eaf4;
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .home_recruit_content .columns {
    padding-left: min(calc(20px + 62 * (100vw - 992px) / 508), 82px);
  }
}

.home_recruit_image {
  aspect-ratio: 16/9;
  margin-left: var(--edge);
  margin-right: var(--edge);
}
.home_recruit_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .home_recruit_image {
    aspect-ratio: auto;
    height: 100%;
    margin-left: -15px;
  }
}

/* ---  --- */
.home_news_list {
  padding-right: 30px;
  max-height: 70vh;
  overflow: auto;
}

.home_news_list_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_news_list_item .home_news_item_left {
  flex: 1 1 0;
  order: 1;
}
.home_news_list_item .home_news_item_column {
  flex: 0 0 100%;
  order: 3;
  margin-top: 10px;
}
.home_news_list_item .home_news_item_img {
  flex: 0 0 calc(36% + 20px);
  order: 2;
  padding-left: 20px;
}
.home_news_list_item .home_news_item_img > a {
  aspect-ratio: 4/3;
  display: inline-block;
  position: relative;
}
.home_news_list_item .home_news_item_img > a img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .home_news_list_item {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .home_news_list_item .home_news_item_left {
    flex: 0 0 193px;
    order: 1;
  }
  .home_news_list_item .home_news_item_column {
    flex: 1 1 0;
    order: 2;
    margin-top: 0;
    padding-left: 30px;
  }
  .home_news_list_item .home_news_item_img {
    flex: 0 0 17.10123%;
    order: 3;
    padding-left: 30px;
  }
}

.home_news_list_item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: dotted 1px #ccc;
}
.home_news_list_item:last-child {
  margin-bottom: 0;
}
.home_news_list_item .date {
  font-weight: 500;
  margin-bottom: 10px;
}
.home_news_list_item .date .new {
  color: #ff0000;
  display: inline-block;
}
.home_news_list_item .cat > .in {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  min-width: 8.57143em;
  padding: 0.32em 0.5em;
  border-radius: 10em;
  background-color: #3c96c8;
}
.home_news_list_item .ttl {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125rem;
  margin-bottom: 5px;
}
.home_news_list_item .file_box {
  font-size: 14px;
  margin-top: 20px;
}
.home_news_list_item .file_box > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
.home_news_list_item .file_box > ul > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.home_news_list_item .file_box > ul > li > a img {
  width: auto;
  height: 1.42857em;
  margin-right: 6px;
}
.home_news_list_item .file_box > ul > li > a:hover {
  text-decoration: underline;
}

/* ---  --- */
.home_contact {
  background-color: #d8eaf4;
}
@media print, screen and (min-width: 768px) {
  .home_contact .column p {
    font-size: min(calc(18px + 6 * (100vw - 768px) / 732), 26px);
    text-align: center;
  }
}
.home_contact .row {
  justify-content: center;
  gap: 15px 0;
}
@media print, screen and (min-width: 992px) {
  .home_contact .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .home_contact .row > [class^="col"], .home_contact .row > [class*=" col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.home_contact_tel, .home_contact_mail {
  width: 100%;
  height: 150px;
  display: grid;
  place-items: center;
}

.home_contact_tel {
  border-radius: 14px;
  background-color: #fff;
}
.home_contact_tel .telphone {
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_contact_tel .telphone i {
  font-size: 0.752em;
  margin-right: 0.2em;
}
.home_contact_tel p {
  line-height: 1.5;
  text-align: center;
  margin-top: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .home_contact_tel .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 732), 50px);
  }
}

.home_contact_mail .btn {
  font-weight: 400;
  font-size: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
}
.home_contact_mail .btn i {
  font-size: 1.5em;
  line-height: 1;
  margin-right: 0.15em;
}
@media print, screen and (min-width: 768px) {
  .home_contact_mail .btn {
    font-size: min(calc(20px + 8 * (100vw - 768px) / 732), 28px);
  }
}

/* -------------------------------
	会社概要
-------------------------------- */
/**/
.company_message {
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .company_message_image {
    margin-left: var(--edge);
    margin-right: min(calc(30px + 52 * (100vw - 992px) / 508), 82px);
  }
}

.company_message_content .ceo_name {
  text-align: right;
  margin-top: 2rem;
  margin-right: 1em;
}

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

.company_initiative_figure {
  position: relative;
}
.company_initiative_figure figcaption .num {
  position: absolute;
  left: -5px;
  top: -5px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, calc(var(--ww-item) / 13.83334), 30px);
  line-height: 1;
  width: 2.2em;
  height: 2.2em;
  display: grid;
  place-items: center;
  background-color: var(--primary);
}
.company_initiative_figure figcaption h4 {
  color: var(--primary);
  font-size: clamp(20px, calc(var(--ww-item) / 14.2857), 28px);
  margin: 0.5em 0;
}
.company_initiative_figure figcaption p {
  font-size: 0.9375rem;
}

/**/
@media print, screen and (min-width: 768px) {
  .company_outline_col {
    width: 12em;
  }
}
@media print, screen and (min-width: 1200px) {
  .company_outline_col {
    width: 17em;
  }
}

/**/
.company_history_list {
  margin-left: 10px;
  border-left: solid 1px #ccc;
}
.company_history_list .company_history_list_item {
  margin-bottom: 30px;
  padding-left: 15px;
}
.company_history_list .company_history_list_item h4 {
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
}
.company_history_list .company_history_list_item h4::before {
  content: "●";
  position: absolute;
  left: calc(-0.5em - 16px);
}
.company_history_list .company_history_list_item p {
  line-height: 1.5;
}
@media print, screen and (min-width: 992px) {
  .company_history_list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-left: 0;
    border-left: none;
    border-top: solid 1px #ccc;
  }
  .company_history_list .company_history_list_item {
    margin-bottom: 0px;
    padding-left: 0px;
    white-space: nowrap;
  }
  .company_history_list .company_history_list_item h4 {
    font-size: min(calc(16px + 4 * (100vw - 992px) / 508), 20px);
    padding-top: 1.5em;
  }
  .company_history_list .company_history_list_item h4::before {
    left: 0;
    top: -0.5em;
    line-height: 1;
  }
  .company_history_list .company_history_list_item h4::after {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    text-align: center;
  }
  .company_history_list .company_history_list_item p {
    font-size: min(calc(12px + 4 * (100vw - 992px) / 508), 16px);
  }
}

/**/
@media print, screen and (min-width: 992px) {
  .company_access .googlemap {
    height: 100%;
  }
}

.company_access_dl {
  display: grid;
  grid-template-columns: 3.5em 1fr;
}
.company_access_dl > dt, .company_access_dl > dd {
  margin: 0 0 0.5em;
  padding-left: 0.25em;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #ccc;
}
.company_access_dl > dt {
  color: var(--primary);
  position: relative;
}
.company_access_dl > dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
.company_access_dl > dd {
  padding-left: 1em;
}

.company_access_list {
  list-style: none;
  padding: 0;
}
.company_access_list > li {
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2em;
  position: relative;
  margin-bottom: 1.75em;
}
.company_access_list > li:last-child {
  margin-bottom: 0;
}
.company_access_list > li > i {
  color: var(--primary);
  font-size: 1.5em;
  line-height: 1;
  text-align: center;
  width: 1em;
  position: absolute;
  left: 0;
  top: 0;
}
.company_access_list > li > ul {
  list-style: none;
  padding: 0;
  margin-top: .5em;
}
.company_access_list > li > ul > li {
  font-weight: 400;
  padding-left: 1.5em;
  position: relative;
}
.company_access_list > li > ul > li::before {
  content: "├";
  position: absolute;
  left: 0;
}
.company_access_list > li > ul > li:last-child::before {
  content: "└";
}

/* -------------------------------
	設備紹介
-------------------------------- */
/* -------------------------------
	上部　カテゴリー
-------------------------------- */
.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);
}
@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;
    transition: color .3s ease, background .3s ease;
  }
  .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);
    background-color: #E4F0F7;
  }
}

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    --col:3;
    --gap:10px;
    font-size: 0.9375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px var(--gap);
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1200px) {
  .cat_navi_list {
    --col:4;
  }
}
@media print, screen and (min-width: 768px) {
  .cat_navi_list > li {
    flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  }
  .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;
    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.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover {
    color: var(--primary);
    background-color: #E4F0F7;
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background-color: var(--primary);
  }
}

/**/
.equipment_list {
  --col:1;
  --gap:50px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.equipment_list .equipment_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  max-width: 460px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .equipment_list {
    --col:2;
  }
  .equipment_list .equipment_item {
    margin: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .equipment_list {
    --col:3;
  }
}

.equipment_item .ttl {
  margin-bottom: 0;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-left: 1em;
  padding-left: 1em;
  position: relative;
}
.equipment_item .ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.75em;
  width: 1px;
  height: 2em;
  background-color: var(--primary);
}
.equipment_item .ttl::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary);
}

/* -------------------------------
	splide
-------------------------------- */
.splide_gallery .splide__arrows {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 4/3;
  pointer-events: none;
}
.splide_gallery .splide__arrow--prev, .splide_gallery .splide__arrow--next {
  font-size: min(calc(10px + 4 * (100vw - 375px) / 1125), 14px);
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #01b4ed;
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  z-index: 20;
  pointer-events: visible;
}
.splide_gallery .splide__arrow--prev svg, .splide_gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide_gallery .splide__arrow--prev {
  left: -1.5em;
}
.splide_gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide_gallery .splide__arrow--next {
  right: -1.5em;
}
.splide_gallery .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.splide_gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide_gallery .splide__pagination {
  font-size: 0;
  gap: 3px 5px;
  margin-top: 7px;
}
.splide_gallery .splide__pagination__page {
  width: 6px;
  height: 6px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #efefef;
}
.splide_gallery .splide__pagination__page.is-active {
  background-color: #01b4ed;
  pointer-events: auto;
}
.splide_gallery .photo-ofi {
  background-color: #fafafa;
}

/* -------------------------------
	採用情報
-------------------------------- */
/**/
.recruit_head {
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .recruit_head_image {
    margin-left: var(--edge);
    margin-right: min(calc(30px + 52 * (100vw - 992px) / 508), 82px);
  }
}

.recruit_head_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.recruit_head_content .inner {
  margin: auto 0;
}
.recruit_head_content .inner h3 {
  font-size: min(calc(20px + 12 * (100vw - 375px) / 1125), 32px);
}

/**/
@media print, screen and (min-width: 768px) {
  .recruit_benefits_column {
    text-align: center;
  }
  .recruit_benefits_column p {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 732), 20px);
    line-height: 2;
  }
}

.recruit_benefits_item {
  --padding: min(calc(20px + 20 * (100vw - 375px) / 1125), 40px);
  border: solid 1px var(--primary);
  margin-top: var(--padding);
  height: 100%;
}
.recruit_benefits_item h4 {
  color: #fff;
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1125), 24px);
  line-height: 1.5;
  display: inline-flex;
  padding: 0.25em 1.5em;
  margin-left: var(--padding);
  margin-bottom: 0;
  background-color: var(--primary);
  transform: translateY(-50%);
}
.recruit_benefits_item .column {
  padding: 0 var(--padding) var(--padding);
}
@media print, screen and (min-width: 992px) {
  .recruit_benefits_item {
    --padding: min(calc(20px + 20 * (100vw - 992px) / 508), 40px);
  }
  .recruit_benefits_item h4 {
    font-size: min(calc(20px + 4 * (100vw - 992px) / 508), 24px);
  }
}

.recruit_benefits_list {
  font-size: min(calc(16px + 2 * (100vw - 375px) / 1125), 18px);
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.recruit_benefits_list > li {
  font-weight: 500;
  line-height: 2;
  padding-left: 2.5em;
  margin-bottom: 1em;
  position: relative;
}
.recruit_benefits_list > li::before {
  content: "";
  width: 2em;
  height: 2em;
  position: absolute;
  left: 0;
  background: url("../images/recruit/check01.svg") no-repeat center center/contain;
}
.recruit_benefits_list > li small {
  font-weight: 400;
  font-size: 0.9375em;
}
.recruit_benefits_list > li:last-child {
  margin-bottom: 0;
}
.recruit_benefits_list > li > ul {
  font-weight: 500;
  font-size: 0.944445em;
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin-top: .5em;
}
.recruit_benefits_list > li > ul > li {
  padding-left: 1.2em;
  position: relative;
}
.recruit_benefits_list > li > ul > li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0px;
}
.recruit_benefits_list > li > ul > li + li {
  margin-top: .5em;
}

/**/
.recruit_schedule {
  background-color: #3c96c8;
}

.recruit_schedule_content {
  --padding: min(calc(25px + 35 * (100vw - 375px) / 1125), 60px);
  padding: var(--padding);
  border-radius: calc(var(--padding) / 2);
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .recruit_schedule_content {
    --padding: min(calc(25px + 35 * (100vw - 768px) / 732), 60px);
  }
}

.recruit_schedule_flow {
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .recruit_schedule_flow {
    display: flex;
    justify-content: space-between;
  }
}

.recruit_schedule_flow_item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 1em;
  overflow: hidden;
}
.recruit_schedule_flow_item .time {
  color: #fff;
  text-align: center;
  flex: 0 0 5em;
  border-radius: 3px;
  background-color: #3c96c8;
  position: relative;
}
.recruit_schedule_flow_item .time::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1px;
  width: 1px;
  height: 100px;
  background-color: #3c96c8;
  z-index: -1;
}
.recruit_schedule_flow_item .column {
  padding-left: 15px;
}
.recruit_schedule_flow_item .column > ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.recruit_schedule_flow_item .column > ul > li + li::before {
  content: "/";
  margin: 0 0.5em;
}
.recruit_schedule_flow_item:last-child {
  padding-bottom: 0;
}
.recruit_schedule_flow_item:last-child .time::after {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .recruit_schedule_flow_item {
    display: block;
    flex-grow: 1;
  }
  .recruit_schedule_flow_item .time {
    font-size: min(calc(13px + 5 * (100vw - 768px) / 732), 18px);
    width: 4em;
    margin-bottom: 0.5em;
  }
  .recruit_schedule_flow_item .time::after {
    left: 1px;
    top: 50%;
    width: 300px;
    height: 1px;
  }
  .recruit_schedule_flow_item .column {
    font-size: min(calc(12px + 4 * (100vw - 768px) / 732), 16px);
    padding-left: 0;
  }
  .recruit_schedule_flow_item .column > ul {
    display: block;
  }
  .recruit_schedule_flow_item .column > ul > li {
    padding-left: 1em;
    position: relative;
  }
  .recruit_schedule_flow_item .column > ul > li::before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .recruit_schedule_flow_item .column > ul > li + li::before {
    content: "・";
    margin: 0;
  }
}

/**/
.recruit_step_list {
  position: relative;
  z-index: 0;
}
.recruit_step_list .recruit_step_list_item {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit_step_list {
    max-width: 360px;
    margin: 0 auto;
  }
  .recruit_step_list .recruit_step_list_item {
    display: flex;
  }
  .recruit_step_list .recruit_step_list_item .step {
    text-align: center;
    flex: 0 0 6em;
    display: flex;
    flex-direction: column;
    padding-right: 1em;
  }
  .recruit_step_list .recruit_step_list_item .step::before, .recruit_step_list .recruit_step_list_item .step::after {
    content: "";
    display: block;
    flex: 1 1 0;
    width: 1px;
    margin: 0 auto;
    background-color: #3c96c8;
  }
  .recruit_step_list .recruit_step_list_item .step strong {
    color: #3c96c8;
    font-weight: 500;
    font-size: 2em;
  }
  .recruit_step_list .recruit_step_list_item .column {
    flex: 1 1 0;
    border: solid 1px #ccc;
    padding: 20px;
    margin: 30px 0;
  }
  .recruit_step_list .recruit_step_list_item .column .image {
    width: 60%;
    aspect-ratio: 1/1;
    margin: 0 auto 10px;
  }
  .recruit_step_list .recruit_step_list_item .column .image img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .recruit_step_list .recruit_step_list_item .column p {
    text-align: center;
  }
  .recruit_step_list .recruit_step_list_item:first-child .step::before {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit_step_list {
    display: flex;
  }
  .recruit_step_list .recruit_step_list_item {
    flex: 1 1 0;
  }
  .recruit_step_list .recruit_step_list_item .step {
    font-size: min(calc(13px + 7 * (100vw - 768px) / 732), 20px);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .recruit_step_list .recruit_step_list_item .step::before, .recruit_step_list .recruit_step_list_item .step::after {
    content: "";
    display: block;
    flex: 1 1 0;
    height: 1px;
    background-color: #3c96c8;
    display: none;
  }
  .recruit_step_list .recruit_step_list_item .step::before {
    margin-right: 0.75em;
  }
  .recruit_step_list .recruit_step_list_item .step::after {
    margin-left: 0.75em;
  }
  .recruit_step_list .recruit_step_list_item .step strong {
    color: #3c96c8;
    font-weight: 500;
    font-size: 1.5em;
  }
  .recruit_step_list .recruit_step_list_item .column {
    border: solid 1px #ccc;
    padding: 15px 0;
    margin: 0 2px;
  }
  .recruit_step_list .recruit_step_list_item .column .image {
    width: 60%;
    aspect-ratio: 1/1;
    margin: 0 auto 10px;
  }
  .recruit_step_list .recruit_step_list_item .column .image img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .recruit_step_list .recruit_step_list_item .column p {
    font-size: min(calc(12px + 4 * (100vw - 768px) / 732), 16px);
    text-align: center;
  }
  .recruit_step_list .recruit_step_list_item:first-child .step::before {
    display: none;
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background-color: #d8eaf4;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .column p {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 732), 20px);
    text-align: center;
  }
}
.tel_contact .row {
  justify-content: center;
  gap: 15px 0;
}
@media print, screen and (min-width: 992px) {
  .tel_contact .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  .tel_contact .row > [class^="col"], .tel_contact .row > [class*=" col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.tel_contact_number {
  width: 100%;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background-color: #fff;
}
.tel_contact_number .telphone {
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_contact_number .telphone i {
  font-size: 0.752em;
  margin-right: 0.2em;
}
.tel_contact_number p {
  line-height: 1.5;
  text-align: center;
  margin-top: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_number .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 732), 50px);
  }
}

#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;
  }
}
#contactform .list-radio, #contactform .list-checkbox {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
#contactform .list-radio > label, #contactform .list-checkbox > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .list-radio, #contactform .list-checkbox {
    gap: 0.25em 1.5em;
  }
  #contactform .list-radio > label, #contactform .list-checkbox > 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 0.15em;
  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: 12em !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-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;
  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: #73b400;
    --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 */
