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

.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 {
  text-align: center;
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #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;
  }
}
/* -------------------------------
	list
-------------------------------- */
/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  height: 0;
  border-top: solid 1px #cccccc;
}

/* -------------------------------
	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.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-1 {
  color: #000;
  font-weight: 700;
  padding: 0.75em 2em;
  border: none;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background: #f4e7c1;
  background: linear-gradient(to right, #f4e7c1 0%, #f4e7c1 50%, #f8f1d2 75%, #f9f1d4 100%);
  background-position: right center;
  background-size: 200% 100%;
  position: relative;
  transition: color .3s ease, background .3s ease;
}
.btn-1 i {
  font-size: 11px;
}
.btn-1:hover {
  color: #000;
  background-position: left center;
}

.btn-style-1 {
  display: block;
  max-width: 480px;
}
@media print, screen and (min-width: 992px) {
  .btn-style-1 {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 408), 20px);
  }
}

/* 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;
  white-space: nowrap;
}
.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-- */
/* --▼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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-150 {
  margin-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

.mb-150 {
  margin-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

.mtb-150 {
  margin-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  margin-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-150 {
  padding-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

.pb-150 {
  padding-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

.ptb-150 {
  padding-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  padding-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
}

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

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

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

  .mt-lg-60 {
    margin-top: min(calc(50px + 10 * (100vw - 375px) / 1025), 60px);
  }

  .mb-lg-60 {
    margin-bottom: min(calc(50px + 10 * (100vw - 375px) / 1025), 60px);
  }

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

  .mt-lg-70 {
    margin-top: min(calc(50px + 20 * (100vw - 375px) / 1025), 70px);
  }

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

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

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

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

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

  .mt-lg-90 {
    margin-top: min(calc(50px + 40 * (100vw - 375px) / 1025), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(50px + 40 * (100vw - 375px) / 1025), 90px);
  }

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

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

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

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

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

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

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

  .mt-lg-150 {
    margin-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }

  .mb-lg-150 {
    margin-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }

  .mtb-lg-150 {
    margin-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
    margin-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }

  .pt-lg-50 {
    padding-top: min(calc(50px + 0 * (100vw - 375px) / 1025), 50px);
  }

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

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

  .pt-lg-60 {
    padding-top: min(calc(50px + 10 * (100vw - 375px) / 1025), 60px);
  }

  .pb-lg-60 {
    padding-bottom: min(calc(50px + 10 * (100vw - 375px) / 1025), 60px);
  }

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

  .pt-lg-70 {
    padding-top: min(calc(50px + 20 * (100vw - 375px) / 1025), 70px);
  }

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

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

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

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

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

  .pt-lg-90 {
    padding-top: min(calc(50px + 40 * (100vw - 375px) / 1025), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(50px + 40 * (100vw - 375px) / 1025), 90px);
  }

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

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

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

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

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

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

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

  .pt-lg-150 {
    padding-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }

  .pb-lg-150 {
    padding-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }

  .ptb-lg-150 {
    padding-top: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
    padding-bottom: min(calc(75px + 75 * (100vw - 375px) / 1025), 150px);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.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 currentColor;
  padding-left: 0.5em;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  font-size: clamp(40px, calc(40px + 30 * (100vw - 375px) / 1025), 70px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .fs-jp {
  font-weight: 500;
  font-size: clamp(16px, calc(16px + 2 * (100vw - 375px) / 1025), 18px);
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
}
.title-hh-1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.2em;
  height: 0.7em;
  display: block;
  background: url("../images/common/icon01.png") no-repeat center center/contain;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: -15px;
}
@media print, screen and (min-width: 992px) {
  :root {
    --container-padding: clamp(30px, 7.8571428571vw, 110px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1400px) {
  :root {
    --edge: calc((1290px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 576px) {
  .container-fluid-xl {
    max-width: 540px;
  }
}
@media print, screen and (min-width: 768px) {
  .container-fluid-xl {
    max-width: 720px;
  }
}
@media print, screen and (min-width: 992px) {
  .container-fluid-xl {
    max-width: 1400px;
    padding-left: calc(var(--container-padding) / 2);
    padding-right: calc(var(--container-padding) / 2);
  }
}

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

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

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

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

.ww-col-10 {
  width: calc((100% + 30px) * 10 / 12 - 30px);
  margin-inline: auto;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  background-color: #ccc;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
#mainvisual .slide {
  height: calc(var(--app-h) * 0.6);
  position: relative;
  z-index: 0;
}
#mainvisual .slide > .bg {
  display: none;
}
#mainvisual .slide > .slide-media {
  width: 100%;
  height: 100%;
}
#mainvisual .slide > .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 991px) {
  #mainvisual .slide {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 992px) {
  #mainvisual .slide {
    height: auto;
    aspect-ratio: 200 / 97;
    display: flex;
    padding-top: 50px;
  }
  #mainvisual .slide > .bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  #mainvisual .slide > .bg img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #mainvisual .slide > .slide-media {
    width: 40%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: auto 7.5% auto auto;
  }
}
@media print, screen and (min-width: 1200px) {
  #mainvisual .slide {
    padding-top: 100px;
  }
}

.mainvisual_content {
  position: absolute;
  left: clamp(20px, calc(20px + 80 * (100vw - 375px) / 1545), 100px);
  bottom: clamp(30px, calc(30px + 70 * (100vw - 375px) / 1545), 100px);
  z-index: 10;
}
.mainvisual_content h2 {
  font-weight: 500;
  font-size: clamp(16px, calc(16px + 28 * (100vw - 375px) / 1545), 44px);
  line-height: 1.659;
}
.mainvisual_content h2 .in {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.34em;
  margin-bottom: 0.227em;
  background-color: #fff;
}
.mainvisual_content h2 .in strong {
  font-size: 2em;
}
.mainvisual_content h2 .txt1 {
  background-image: linear-gradient(45deg, #f4e7c1 0%, #f8f1d2 50%, #f9f1d4 100%);
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content h2 {
    font-size: clamp(24px, calc(24px + 20 * (100vw - 992px) / 928), 44px);
  }
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  font-size: clamp(40px, calc(40px + 40 * (100vw - 375px) / 1025), 80px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.home_ttl_1 > .fs-jp {
  font-weight: 500;
  font-size: clamp(16px, calc(16px + 4 * (100vw - 375px) / 1025), 20px);
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
}
.home_ttl_1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.2em;
  height: 0.7em;
  display: block;
  background: url("../images/common/icon01.png") no-repeat center center/contain;
}

/* ---  --- */
.home_about {
  padding-top: clamp(50px, calc(50px + 150 * (100vw - 375px) / 1025), 200px);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .home_about_image {
    margin-left: calc(var(--edge) + min(calc(20px + 60 * (100vw - 992px) / 928), 80px));
    margin-right: clamp(30px, calc(30px + 75 * (100vw - 992px) / 408), 105px);
    margin-bottom: clamp(40px, calc(40px + 40 * (100vw - 992px) / 408), 80px);
    position: relative;
    z-index: 10 !important;
  }
}

.home_about_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home_about_content .column {
  margin-top: auto;
  padding: 30px 15px;
  background: url("../images/home/home_about_content_bg.jpg") no-repeat center center/cover;
}
.home_about_content .column h3 {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  background-color: #000;
}
@media print, screen and (min-width: 992px) {
  .home_about_content .column {
    padding: 80px 0;
    background: none;
    position: relative;
  }
  .home_about_content .column::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--edge);
    bottom: 0;
    left: calc(-50vw - 30px);
    z-index: -1;
    background: url("../images/home/home_about_content_bg.jpg") no-repeat center center/cover;
  }
  .home_about_content .column h3 {
    font-size: clamp(26px, calc(26px + 14 * (100vw - 992px) / 408), 40px);
  }
}

/* ---  --- */
.home_capabilities {
  padding-top: clamp(50px, calc(50px + 150 * (100vw - 375px) / 1025), 200px);
}

.home_capabilities_list {
  --col:2;
  --gap: 1em;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(var(--gap) / 3) var(--gap);
}
@media print, screen and (min-width: 768px) {
  .home_capabilities_list {
    --gap: 2.275em;
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_capabilities_list {
    font-size: clamp(20px, calc(20px + 20 * (100vw - 992px) / 408), 40px);
  }
}
.home_capabilities_list > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  filter: drop-shadow(0px 0.025em 0.225em 0.025em black);
}
.home_capabilities_list > li > figure {
  width: 100%;
  aspect-ratio: 601 / 362;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
}
.home_capabilities_list > li > figure > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  filter: drop-shadow(0px 1px 9px rgba(0, 0, 0, 0.2));
}
.home_capabilities_list > li:nth-child(3) {
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .home_capabilities_list > li {
    margin-top: calc(0px - min(calc(70px + 30 * (100vw - 768px) / 632), 100px));
  }
  .home_capabilities_list > li:nth-child(3) {
    margin-top: 0;
  }
}

/* --- --- */
.home_service {
  padding: clamp(50px, calc(50px + 100 * (100vw - 375px) / 1025), 150px) 0;
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
}

.home_service_subtxt {
  color: #fff;
  padding: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background-color: #000;
}
@media print, screen and (min-width: 992px) {
  .home_service_subtxt {
    font-size: clamp(16px, calc(16px + 8 * (100vw - 992px) / 408), 24px);
  }
}

.home_service_list {
  --col:2;
  --gap:15px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media print, screen and (min-width: 768px) {
  .home_service_list {
    --col:3;
    --gap:20px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_service_list {
    --col:4;
    --gap:30px;
  }
}
.home_service_list .home_service_list_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}

.home_service_figure {
  padding: 10px;
  height: 100%;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.home_service_figure > .image {
  aspect-ratio: 3 / 2;
}
.home_service_figure > .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_service_figure figcaption {
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  margin-top: 0.35em;
}
@media print, screen and (min-width: 768px) {
  .home_service_figure {
    padding: 15px;
  }
  .home_service_figure figcaption {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_service_figure {
    padding: 15px;
  }
  .home_service_figure figcaption {
    font-size: clamp(15px, calc(15px + 5 * (100vw - 992px) / 408), 20px);
  }
}

/* ---  --- */
.home_features {
  padding: clamp(50px, calc(50px + 100 * (100vw - 375px) / 1025), 150px) 0;
}

.home_features_figure {
  display: grid;
  grid-template-columns: 100px 1fr;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.home_features_figure .image {
  aspect-ratio: 1/1;
}
.home_features_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_features_figure figcaption {
  padding-left: 15px;
  display: grid;
  align-items: center;
}
.home_features_figure figcaption .num {
  color: #d4b572;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  right: 0.5em;
  top: -.5em;
}
.home_features_figure figcaption .ttl {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .home_features_figure {
    display: block;
  }
  .home_features_figure .image {
    aspect-ratio: 205 / 154;
  }
  .home_features_figure figcaption {
    font-size: 15px;
    text-align: center;
    height: 4.16667em;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .home_features_figure figcaption .num {
    left: 0.15em;
    right: auto;
    font-size: 60px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_features_figure figcaption {
    font-size: clamp(15px, calc(15px + 9 * (100vw - 992px) / 408), 24px);
  }
  .home_features_figure figcaption .num {
    font-size: clamp(60px, calc(60px + 36 * (100vw - 992px) / 408), 96px);
  }
}

/* --- --- */
.home_recruit {
  padding-bottom: clamp(50px, calc(50px + 100 * (100vw - 375px) / 1025), 150px);
  background-color: #f4f4f4;
}

.home_recruit_head img {
  max-width: inherit;
  width: 100%;
}

.home_recruit_column {
  padding-top: 30px;
  padding-bottom: clamp(50px, calc(50px + 50 * (100vw - 375px) / 1025), 100px);
}
.home_recruit_column .column {
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_column {
    padding-top: 0;
    position: relative;
    z-index: 10;
  }
  .home_recruit_column .mask_top {
    width: 100%;
    height: clamp(50px, calc(50px + 50 * (100vw - 768px) / 632), 100px);
    margin-top: calc(0px - min(calc(49px + 50 * (100vw - 768px) / 1025), 99px));
    background-color: #f4f4f4;
  }
  .home_recruit_column .column {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_recruit_column .column {
    font-size: clamp(16px, calc(16px + 4 * (100vw - 992px) / 408), 20px);
  }
}

.home_recruit_merit {
  padding: 20px 15px;
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
@media print, screen and (min-width: 768px) {
  .home_recruit_merit {
    padding: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .home_recruit_merit {
    padding: clamp(30px, calc(30px + 20 * (100vw - 992px) / 408), 50px);
  }
}
.home_recruit_merit h3 {
  text-align: center;
}
.home_recruit_merit h3 .in {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  display: inline-block;
  padding: 0 0.35em;
  vertical-align: middle;
  background-color: #000;
}
@media print, screen and (min-width: 992px) {
  .home_recruit_merit h3 {
    font-size: clamp(30px, calc(30px + 10 * (100vw - 992px) / 408), 40px);
  }
}

.home_recruit_merit_row {
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_merit_row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.home_recruit_merit_figure {
  max-width: 450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: min(25%, 150px) 1fr;
  gap: 15px;
}
.home_recruit_merit_figure figcaption {
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_merit_figure {
    max-width: 100%;
    display: block;
  }
  .home_recruit_merit_figure figcaption {
    font-size: 13px;
    margin-top: 0.35em;
    text-align: center;
    display: block;
  }
}
@media print, screen and (min-width: 992px) {
  .home_recruit_merit_figure figcaption {
    font-size: clamp(16px, calc(16px + 8 * (100vw - 992px) / 408), 24px);
  }
}

/* -------------------------------
	TAYAの強み
-------------------------------- */
/* ---  --- */
.strengths_content {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .strengths_content.odd .row > div:first-child {
    order: 13;
  }
  .strengths_content.odd .strengths_content_image {
    margin-left: calc(var(--edge) / 1.5);
    margin-right: calc((var(--edge) / 1.5) * -1);
  }
  .strengths_content.odd .strengths_content_column .subtxt {
    right: 0;
  }
  .strengths_content.even .strengths_content_image {
    margin-right: calc(var(--edge) / 1.5);
    margin-left: calc((var(--edge) / 1.5) * -1);
    z-index: -1;
  }
  .strengths_content.even .strengths_content_column .subtxt {
    left: 0;
  }
}

.strengths_content_column {
  line-height: 1.75;
  position: relative;
  z-index: 0;
}
.strengths_content_column .num {
  color: #ffc107;
  font-size: 25px;
  line-height: 1;
}
.strengths_content_column h3 {
  font-size: 24px;
}
.strengths_content_column .subtxt {
  font-size: 15vw;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #f4e7c1 0%, #f8f1d2 50%, #f9f1d4 100%);
}
@media print, screen and (min-width: 992px) {
  .strengths_content_column {
    line-height: 2;
    padding-right: clamp(20px, calc(20px + 60 * (100vw - 992px) / 408), 80px);
    height: 100%;
  }
  .strengths_content_column .num {
    font-size: clamp(25px, calc(25px + 25 * (100vw - 992px) / 408), 50px);
  }
  .strengths_content_column h3 {
    font-size: clamp(24px, calc(24px + 8 * (100vw - 992px) / 408), 32px);
  }
  .strengths_content_column .subtxt {
    position: absolute;
    bottom: -.5em;
    z-index: -1;
    font-size: 10vw;
    opacity: 0.5;
  }
}

/* ---  --- */
.strengths_nav {
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
}

.strengths_nav_figure {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 20px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.strengths_nav_figure .image {
  aspect-ratio: 1/1;
}
.strengths_nav_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strengths_nav_figure figcaption {
  display: flex;
  flex-direction: column;
}
.strengths_nav_figure figcaption p {
  font-weight: 700;
  margin: auto 0;
  position: relative;
  transition: letter-spacing 0.3s ease;
}
.strengths_nav_figure figcaption p i {
  position: absolute;
  right: 1.5em;
  top: 50%;
  line-height: 1;
  letter-spacing: normal !important;
  margin-top: -.5em;
}
a > .strengths_nav_figure:hover figcaption p {
  letter-spacing: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .strengths_nav_figure {
    display: block;
    background-color: #000;
  }
  .strengths_nav_figure .image {
    aspect-ratio: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  .strengths_nav_figure figcaption {
    position: absolute;
    inset: 0;
    z-index: 10;
  }
  .strengths_nav_figure figcaption p {
    color: #fff;
    font-size: 18px;
    margin: auto;
    padding-right: 1.5em;
  }
  .strengths_nav_figure figcaption p i {
    right: 0;
  }
  a > .strengths_nav_figure:hover .image {
    opacity: 0.5;
  }
}
@media print, screen and (min-width: 992px) {
  .strengths_nav_figure figcaption p {
    font-size: clamp(18px, calc(18px + 6 * (100vw - 992px) / 408), 24px);
  }
}

/* --- --- */
.page_conatct .telphone {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.page_conatct .telphone img {
  width: 0.75em;
  display: block;
}
.page_conatct .btn_box .btn {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 18em;
  margin: 0 auto;
  padding: 1em;
}
.page_conatct .btn_box .btn i {
  font-size: 1.5em;
  line-height: 1;
}
@media print, screen and (min-width: 992px) {
  .page_conatct .telphone {
    font-size: clamp(40px, calc(40px + 20 * (100vw - 992px) / 408), 60px);
  }
  .page_conatct .btn_box .btn {
    font-size: clamp(18px, calc(18px + 6 * (100vw - 992px) / 408), 24px);
  }
}

/* -------------------------------
	事業内容
-------------------------------- */
/* ---  --- */
.business_nav_list {
  padding: 15px;
  margin: 0;
  border: solid 1px #ccc;
  border-radius: 3px;
  list-style: none;
}
.business_nav_list > li {
  border-bottom: dashed 1px #ccc;
}
.business_nav_list > li:last-child {
  border-bottom: none;
}
.business_nav_list > li > a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  position: relative;
  transition: background 0.3s ease;
}
.business_nav_list > li > a::before {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8125em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -.5em;
}
.business_nav_list > li > a:hover {
  background-color: #efefef;
}
@media print, screen and (min-width: 768px) {
  .business_nav_list {
    --col:2;
    --gap:10px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    padding: 0;
    border: none;
  }
  .business_nav_list > li {
    border-bottom: none;
    flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  }
  .business_nav_list > li > a {
    border: solid 1px #ccc;
    padding: 0.75em 1em;
  }
}
@media print, screen and (min-width: 992px) {
  .business_nav_list {
    --col: 4;
    font-size: clamp(14px, calc(14px + 2 * (100vw - 992px) / 408), 16px);
  }
}

/* ---  --- */
@media print, screen and (min-width: 992px) {
  .business_fireproof {
    position: relative;
  }
  .business_fireproof::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    width: 64vw;
    height: 100%;
    background: url("../images/business/business_1_bg.jpg") no-repeat center center/cover;
    opacity: 0.5;
  }
}

@media print, screen and (min-width: 992px) {
  .business_fireproof_image {
    margin-left: calc(var(--edge) + min(calc(20px + 30 * (100vw - 992px) / 408), 50px));
    margin-right: min(calc(30px + 80 * (100vw - 992px) / 408), 110px);
  }
}

.business_fireproof_column {
  line-height: 1.75;
}
.business_fireproof_column .column {
  padding: 18px;
  background-color: #DEE4EB;
}
.business_fireproof_column .column .ttl {
  font-size: 1.22223rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.business_fireproof_column .column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
}
.business_fireproof_column .column ul > li::after {
  content: "／";
  margin: 0 0.75em;
}
.business_fireproof_column .column ul > li:last-child::after {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .business_fireproof_column {
    padding-top: min(calc(15px + 35 * (100vw - 992px) / 408), 50px);
  }
  .business_fireproof_column .column {
    padding: 20px 30px;
  }
}

/* ---  --- */
@media print, screen and (min-width: 992px) {
  .business_construction_image {
    margin-right: calc(var(--edge) + min(calc(20px + 30 * (100vw - 992px) / 408), 50px));
    margin-left: min(calc(30px + 80 * (100vw - 992px) / 408), 110px);
  }
}

.business_construction_column .column {
  line-height: 1.75;
}
@media print, screen and (min-width: 992px) {
  .business_construction_column {
    padding-top: min(calc(15px + 35 * (100vw - 992px) / 408), 50px);
  }
}

/* ---  --- */
.business_repair_item {
  margin-bottom: min(calc(40px + 40 * (100vw - 375px) / 1025), 80px);
}
.business_repair_item:last-child {
  margin-bottom: 0;
}
.business_repair_item h4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.business_repair_item h4::before, .business_repair_item h4::after {
  content: "";
  flex: 0 0 1.25em;
  height: 1px;
  display: block;
  background-color: #000;
}
.business_repair_item h4::before {
  margin-right: 0.75em;
}
.business_repair_item h4::after {
  margin-left: 0.75em;
}
.business_repair_item .business_repair_row {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}
.business_repair_item .business_repair_row .business_repair_row_col figure {
  aspect-ratio: 4/3;
  position: relative;
  z-index: 0;
}
.business_repair_item .business_repair_row .business_repair_row_col figure img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business_repair_item .business_repair_row .business_repair_row_col figure figcaption {
  position: absolute;
  right: 0.25em;
  bottom: 0;
  z-index: 10;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .business_repair_item .business_repair_row .business_repair_row_col figure figcaption {
    font-size: 35px;
  }
}
@media print, screen and (min-width: 992px) {
  .business_repair_item .business_repair_row .business_repair_row_col figure figcaption {
    font-size: clamp(35px, calc(35px + 45 * (100vw - 992px) / 408), 80px);
  }
}

/* -------------------------------
	工事経歴
-------------------------------- */
/* ---  --- */
.works_table_1.is-responsive {
  border: none;
}
.works_table_1.is-responsive > thead {
  display: none;
}
.works_table_1.is-responsive > tbody > tr {
  display: block;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  margin-bottom: 10px;
}
.works_table_1.is-responsive > tbody > tr:last-child {
  margin-bottom: 0;
}
.works_table_1.is-responsive > tbody > tr > th, .works_table_1.is-responsive > tbody > tr > td {
  display: grid;
  padding: 0;
}
.works_table_1.is-responsive > tbody > tr > td {
  grid-template-columns: 7em 1fr;
}
.works_table_1.is-responsive > tbody > tr > td > .td_head, .works_table_1.is-responsive > tbody > tr > td > .td_body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.works_table_1.is-responsive > tbody > tr > td > .td_head {
  background-color: #f3f3f3;
}
.works_table_1.is-responsive > tbody > tr > td > .td_body {
  border-left: solid 1px #ccc;
}
@media print, screen and (min-width: 768px) {
  .works_table_1 > tbody > tr > td:last-child {
    text-align: center;
    width: 8em;
  }
}

/* -------------------------------
	会社案内
-------------------------------- */
/* ---  --- */
.company_message_figure > img {
  display: block;
  margin: 0 auto;
}
.company_message_figure figcaption {
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-top: 0.5rem;
}

.company_message_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company_message_column .inner {
  line-height: 1.75;
  margin-top: auto;
}
.company_message_column .inner h4 {
  font-size: 18px;
}
.company_message_column .inner h4 .in {
  color: #fff;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  padding: 0.25em 0.5em;
  background-color: #000;
}
@media print, screen and (min-width: 992px) {
  .company_message_column {
    padding-right: clamp(30px, calc(30px + 80 * (100vw - 992px) / 408), 110px);
  }
  .company_message_column .inner h4 {
    font-size: clamp(18px, calc(18px + 7 * (100vw - 992px) / 408), 25px);
  }
}

/* ---  --- */
.company_overview {
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
}

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

.company_access_list {
  font-size: 0.9375rem;
  line-height: 1.75;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5em;
}
.company_access_list > li {
  border-left: solid 2px #d4b572;
  padding-left: 10px;
}

/* -------------------------------
	採用情報
-------------------------------- */
/* --- --- */
.recruit_message_column .column {
  line-height: 1.75;
}

@media print, screen and (min-width: 992px) {
  .recruit_message_photo {
    margin-left: calc(var(--edge) + min(calc(20px + 30 * (100vw - 992px) / 408), 50px));
    margin-right: clamp(30px, calc(30px + 80 * (100vw - 992px) / 408), 110px);
  }
}

/* ---  --- */
.recruit_merit {
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
}

.recruit_merit_inner {
  padding: 20px 15px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .recruit_merit_inner {
    padding: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_merit_inner {
    padding: clamp(30px, calc(30px + 30 * (100vw - 992px) / 408), 60px);
  }
}

.recruit_merit_item {
  display: grid;
  gap: 20px;
}
.recruit_merit_item:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
@media print, screen and (min-width: 768px) {
  .recruit_merit_item {
    grid-template-columns: 36% 1fr;
    gap: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit_merit_item {
    gap: clamp(30px, calc(30px + 30 * (100vw - 992px) / 408), 60px);
  }
}
.recruit_merit_item .recruit_merit_item_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.recruit_merit_item .recruit_merit_item_column .inner {
  margin: auto 0;
}
.recruit_merit_item .recruit_merit_item_column .merit_num {
  color: #000;
  line-height: normal;
  display: inline-block;
  border-radius: 10em;
  padding: 0.25em 1.5em;
  margin-bottom: 0.5rem;
  background-color: #E8D8B6;
}
.recruit_merit_item .recruit_merit_item_column h4 {
  font-size: 20px;
}
.recruit_merit_item .recruit_merit_item_column .column {
  line-height: 1.75;
}
@media print, screen and (min-width: 992px) {
  .recruit_merit_item .recruit_merit_item_column h4 {
    font-size: clamp(20px, calc(20px + 5 * (100vw - 992px) / 408), 25px);
  }
}

/* ---  --- */
.recruit_workplace_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}
@media print, screen and (min-width: 768px) {
  .recruit_workplace_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_workplace_grid {
    gap: 50px 30px;
  }
}

.recruit_workplace_figure {
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.recruit_workplace_figure .image {
  aspect-ratio: 4/3;
}
.recruit_workplace_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit_workplace_figure figcaption {
  font-size: 12px;
  text-align: center;
  padding: 0.5em 0.5em 0.75em;
}
@media print, screen and (min-width: 768px) {
  .recruit_workplace_figure figcaption {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_workplace_figure figcaption {
    font-size: clamp(14px, calc(14px + 2 * (100vw - 992px) / 408), 16px);
  }
}

/* ---  --- */
.recruit_job_details {
  background-image: linear-gradient(45deg, #e6eaf2 0%, #f2f3f5 50%, #e0e2e8 100%);
}

/* ---  --- */
.recruit_flow_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media print, screen and (min-width: 992px) {
  .recruit_flow_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recruit_flow_step {
  border: solid 1px #ccc;
  padding: 5px;
  max-width: 410px;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.recruit_flow_step h4 {
  font-size: 21px;
  text-align: center;
  padding: 0.25em 0.25em;
  margin: 0;
  background-color: #F5EDDE;
}
.recruit_flow_step .image {
  aspect-ratio: 16/9;
}
.recruit_flow_step .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit_flow_step .columns {
  font-size: 0.88888rem;
  line-height: 1.75;
  padding: 15px;
}
.recruit_flow_step .columns .telphone {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.recruit_flow_step .columns .telphone img {
  width: 1.25em;
}
.recruit_flow_step .columns .btn_box .btn {
  display: block;
}
.recruit_flow_step .columns .btn_box .btn i {
  font-size: 1em;
}
@media print, screen and (min-width: 992px) {
  .recruit_flow_step h4 {
    font-size: clamp(21px, calc(21px + 5 * (100vw - 992px) / 408), 26px);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
#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.1em;
  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 {
  line-height: 1.75;
  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) " )";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@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;
    --easing: ease;
    --duration: 1s;
    opacity: 0;
  }
  .js-row-1 > *.is-active {
    animation: key-fade-up var(--duration) var(--easing) 0s alternate forwards;
  }
}
@keyframes key-fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  100% {
    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: #000;
    --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 */
