@charset "UTF-8";
/* -------------------------------
	table
-------------------------------- */
table {
  --th-md-ww: auto;
  --th-lg-ww: auto;
  --th-xl-ww: auto;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  table > tbody > tr > th {
    width: var(--th-md-ww);
  }
}
@media print, screen and (min-width: 992px) {
  table > tbody > tr > th {
    width: var(--th-lg-ww);
  }
}
@media print, screen and (min-width: 1200px) {
  table > tbody > tr > th {
    width: var(--th-xl-ww);
  }
}

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

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

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-tel {
  list-style: none;
  padding-left: 0;
}
@media print, screen and (min-width: 768px) {
  .list-tel {
    display: flex;
    flex-wrap: wrap;
  }
  .list-tel > li + li:before {
    content: "/";
    margin: 0 1em;
  }
}

.list-komenum {
  --num: 0;
  font-size: 0.88889em;
  font-weight: 500;
  list-style: none;
  padding-left: 0;
  counter-reset: number var(--num);
}
.list-komenum > li {
  padding-left: 2em;
  position: relative;
}
.list-komenum > li:before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: "※" counter(number);
}

/* -------------------------------
	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: flex;
  align-items: center;
  justify-content: center;
}
.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: 1500px) {
  .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 {
  font-weight: 500;
}

.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.8em;
  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: var(--primary);
  color: var(--color);
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
}
.btn-1 > .txt {
  font-weight: 500;
  display: block;
  padding-right: 20px;
}
.btn-1 > .icon {
  flex: 0 0 3em;
  height: 3em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: solid 2px var(--color);
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-1:hover {
  color: var(--color);
}
.btn-1:hover > .icon {
  background-color: var(--color);
}
.btn-1:hover > .icon i {
  color: #fff;
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

.btn-16-20 {
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1180), 20px);
  min-width: 14em;
}

/* --- keyframes --- */
@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 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 {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 1em;
  margin-right: 5px;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	splide
-------------------------------- */
.splide_gallery .splide__arrow--prev, .splide_gallery .splide__arrow--next {
  font-size: 1rem;
  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: -2em;
  z-index: 20;
}
.splide_gallery .splide__arrow--prev svg, .splide_gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide_gallery .splide__arrow--prev {
  left: -1em;
}
.splide_gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide_gallery .splide__arrow--next {
  right: -1em;
}
.splide_gallery .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.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: var(--primary);
  pointer-events: auto;
}
.splide_gallery .splide-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mb-80 {
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mtb-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mt-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mb-90 {
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mtb-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mt-100 {
  margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.mb-100 {
  margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.mtb-100 {
  margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

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

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

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

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

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

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

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

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

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

.pt-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pb-80 {
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.ptb-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pt-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.pb-90 {
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.ptb-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.pt-100 {
  padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.pb-100 {
  padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.ptb-100 {
  padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

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

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

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

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

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

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

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

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

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

  .mt-lg-80 {
    margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mtb-lg-80 {
    margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
    margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mt-lg-90 {
    margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mtb-lg-90 {
    margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
    margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mt-lg-100 {
    margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .mb-lg-100 {
    margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

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

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

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

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

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

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

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

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

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

  .pt-lg-80 {
    padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .ptb-lg-80 {
    padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
    padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .pt-lg-90 {
    padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .ptb-lg-90 {
    padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
    padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .pt-lg-100 {
    padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .pb-lg-100 {
    padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .ptb-lg-100 {
    padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
    padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

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

/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-full {
    margin-left: calc(-15px - 83 * (100vw - 320px) / 1180);
  }

  .mr-lg-full {
    margin-right: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
}
@media print, screen and (min-width: 1500px) {
  .ml-lg-full {
    margin-left: calc((1304px - var(--app-w)) / 2);
  }

  .mr-lg-full {
    margin-right: calc((1304px - var(--app-w)) / 2);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.title-2 {
  --color: var(--primary);
  font-weight: 500;
  text-align: center;
}
.title-2:after {
  content: "";
  width: 2.5em;
  height: 2px;
  display: block;
  margin: 0.5em auto 0;
  background-color: var(--color);
}

.title-3 {
  padding-left: 1.2em;
  position: relative;
}
.title-3:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.8);
}

.title-hh-1 {
  font-size: min(calc(22px + 14 * (100vw - 320px) / 1180), 36px);
  position: relative;
  z-index: 0;
}
.title-hh-1 > .fs-en {
  color: var(--primary);
  font-size: 1.38888em;
  line-height: 1;
  display: block;
  position: relative;
}
.title-hh-1 > .fs-en:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  width: 2em;
  height: 2em;
  margin-top: -1em;
  margin-left: -1em;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.2;
}
.title-hh-1 > .txt {
  font-weight: 400;
  font-size: 1em;
  display: block;
  position: relative;
  z-index: 10;
}

.title-hh-2 {
  font-size: min(calc(18px + 7 * (100vw - 320px) / 1180), 25px);
  text-align: center;
  position: relative;
}
.title-hh-2 > .fs-en {
  color: var(--primary);
  font-size: 4em;
  line-height: 1;
  display: block;
  opacity: 0.3;
}
.title-hh-2 > .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 500;
  line-height: 1.1;
}

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

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

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

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

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

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

/* -------------------------------
	メインビジュアル
-------------------------------- */
#mainvisual {
  --radius: min(calc(30px + 70 * (100vw - 320px) / 1180), 100px);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
#mainvisual:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 10vw;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 15%, rgba(255, 255, 255, 0.70196) 100%);
}
#mainvisual .slide-media {
  height: calc(var(--app-h) * 0.5);
  border-radius: 0 0 0 var(--radius);
  overflow: hidden;
}
#mainvisual .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background-color: #eaf7e6;
  }
  #mainvisual .slide-media {
    height: var(--app-h);
    margin-left: 22.95%;
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background-color: #eaf7e6;
  }
  #mainvisual .slide-media {
    height: var(--app-h);
    margin-left: 22.95%;
  }
}
#mainvisual .mainvisual_content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  padding-left: min(3.5vw, 70px);
}
#mainvisual .mainvisual_content .inner {
  margin: auto 0;
}
#mainvisual .mainvisual_content .inner h2 {
  color: #111;
  font-weight: 700;
  font-size: min(calc(16px + 34 * (100vw - 320px) / 1600), 50px);
  line-height: 2;
  text-shadow: 0px 0.1em 0.3em rgba(255, 255, 255, 0.5), 1px 1px 5px rgba(255, 255, 255, 0.5);
  margin: 0;
}
#mainvisual .mainvisual_content .inner p {
  color: #6b6a6a;
  font-size: min(calc(20px + 50 * (100vw - 320px) / 1600), 70px);
  text-shadow: 0px 0.1em 0.3em rgba(255, 255, 255, 0.5), 1px 1px 5px rgba(255, 255, 255, 0.5);
  margin: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .mainvisual_content {
    bottom: calc(var(--app-h) * 0.25);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .mainvisual_content {
    bottom: calc(var(--app-h) * 0.25);
  }
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: min(calc(20px + 10 * (100vw - 320px) / 1180), 30px);
  text-align: center;
  position: relative;
}
.home_ttl_1 > .fs-en {
  color: var(--primary);
  font-size: 4em;
  line-height: 1;
  display: block;
  opacity: 0.3;
}
.home_ttl_1 > .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 400;
  line-height: 1.1;
}

/* ---  --- */
.home_our_work {
  background-color: #eaf7e6;
  overflow: hidden;
  position: relative;
}
.home_our_work .bg {
  color: var(--primary);
  font-size: clamp(80px, 12.5vw, 250px);
  line-height: 1;
  white-space: nowrap;
  opacity: 0.1;
  position: absolute;
  right: 0;
  bottom: -.12em;
  z-index: 10;
  pointer-events: none;
}

.home_our_work_content {
  padding-left: min(calc(12px + 100 * (100vw - 320px) / 1180), 112px);
  border-top-left-radius: min(calc(20px + 80 * (100vw - 320px) / 1180), 100px);
  background-color: #fff;
  position: relative;
}
.home_our_work_content:after {
  content: "";
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #fff;
}
.home_our_work_content h2 {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(22px + 14 * (100vw - 320px) / 1180), 36px);
  line-height: 1.5;
}

/* ---  --- */
.home_business {
  background: url("../images/home/home_business_bg.png") no-repeat left center/200% 100%;
}
@media print, screen and (min-width: 992px) {
  .home_business {
    background: url("../images/home/home_business_bg.png") no-repeat right center/91.95% 100%;
  }
}
.home_business .title-hh-1 {
  margin-top: 0.75em;
}
.home_business .home_business_photo {
  border-radius: 20px;
  overflow: hidden;
}
.home_business .home_business_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home_business .home_business_content .btns {
  text-align: right;
  padding-top: 2rem;
  margin-top: auto;
}

@media print, screen and (min-width: 992px) {
  .home_business_renovation .home_business_photo {
    border-radius: 0;
    height: 100%;
    margin-right: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
  .home_business_renovation .home_business_photo .photo {
    max-height: 577px;
    height: 100%;
    -webkit-mask-image: url("../images/home/home_business_renovation_mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/home/home_business_renovation_mask.svg");
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
}

@media print, screen and (min-width: 992px) {
  .home_business_storage .row > div:first-child {
    order: 13;
  }
  .home_business_storage .home_business_photo {
    border-radius: 0;
    height: 100%;
    margin-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
  .home_business_storage .home_business_photo .photo {
    max-height: 577px;
    height: 100%;
    -webkit-mask-image: url("../images/home/home_business_storage_mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/home/home_business_storage_mask.svg");
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
}

/* -------------------------------
	foot_contact
-------------------------------- */
.foot_contact {
  color: #fff;
  background-color: #77c369;
}
.foot_contact h2 {
  font-size: min(calc(50px + 30 * (100vw - 320px) / 1180), 80px);
  line-height: 1;
  text-align: center;
  margin-bottom: 0.375em;
}
.foot_contact .foot_contact_column {
  text-align: center;
}
.foot_contact .foot_contact_column p {
  font-weight: 500;
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1180), 20px);
}
.foot_contact .foot_contact_row .telphone {
  font-size: 30px;
  text-align: center;
  justify-content: center;
}
.foot_contact .foot_contact_row .subtxt {
  font-size: 14px;
  text-align: center;
  margin-top: 0.35em;
}
.foot_contact .foot_contact_row .btn {
  color: #77c369;
  font-weight: 500;
  font-size: 18px;
  display: grid;
  place-items: center;
  max-width: 340px;
  height: 3.41666em;
  padding: 0;
  margin: 0 auto;
  border: solid 1px #fff;
  border-radius: 10em;
  background-color: #fff;
}
.foot_contact .foot_contact_row .btn:hover {
  color: #fff;
  background-color: #77c369;
}
@media print, screen and (min-width: 992px) {
  .foot_contact .foot_contact_row {
    margin: 0 min(calc(22px + 80 * (100vw - 992px) / 508), 112px);
  }
  .foot_contact .foot_contact_row .telphone {
    font-size: min(calc(28px + 7 * (100vw - 992px) / 508), 35px);
    text-align: center;
    justify-content: center;
  }
  .foot_contact .foot_contact_row .subtxt {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 508), 16px);
  }
  .foot_contact .foot_contact_row .btn {
    font-size: min(calc(18px + 6 * (100vw - 992px) / 508), 24px);
  }
}

/* ---  --- */
.home_projects {
  position: relative;
  z-index: 0;
}
.home_projects:before {
  content: "";
  position: absolute;
  top: 0;
  right: min(calc(5px + 45 * (100vw - 320px) / 1600), 50px);
  bottom: 0;
  left: min(calc(5px + 45 * (100vw - 320px) / 1600), 50px);
  z-index: -1;
  border-radius: clamp(15px, 5vw, 100px);
  background: url("../images/home/home_projects_bg.jpg") no-repeat center center/100% 100%;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .home_projects .splide_gallery {
    --gap: min(calc(10px + 20 * (100vw - 768px) / 732), 30px);
    visibility: visible !important;
  }
  .home_projects .splide_gallery .splide__list {
    display: flex !important;
    flex-wrap: wrap;
    gap: var(--gap);
  }
  .home_projects .splide_gallery .splide__list > .splide__slide {
    flex: calc((100% - (var(--gap) * 2)) / 3);
  }
}

/* ---  --- */
.home_tagcolle .btn {
  font-size: 12px;
  cursor: pointer;
}

/* -------------------------------
	リフォーム・内装工事
-------------------------------- */
/* ---  --- */
.construction_head h3 {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(19px + 17 * (100vw - 320px) / 1180), 36px);
  line-height: 1.75;
  text-align: center;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .construction_head h3 {
    font-size: min(calc(22px + 14 * (100vw - 768px) / 732), 36px);
  }
}
.construction_head .construction_head_box {
  background-color: #E3F3DE;
}

.construction_head_point {
  border: solid 2px var(--primary);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.construction_head_point .icon {
  flex: 0 0 36%;
  order: 3;
}
.construction_head_point .columns {
  flex: 1 1 0;
}

/**/
.construction_head_rei_item {
  --color: var(--success);
}
.construction_head_rei_item h6, .construction_head_rei_item .subtxt {
  color: var(--color);
}

.construction_head_rei_item_box .box {
  line-height: 1.5;
  display: grid;
  place-items: center;
  border: solid 2px var(--color);
  padding: 1em;
  border-radius: 1em;
}
.construction_head_rei_item_box .box p {
  margin: 0;
}
.construction_head_rei_item_box .box .kakaku {
  color: var(--color);
  font-weight: 500;
}
.construction_head_rei_item_box .box .kakaku strong {
  font-size: 1.25em;
}
.construction_head_rei_item_box .box .total {
  color: var(--color);
  font-size: 1.125em;
  font-weight: 500;
}
.construction_head_rei_item_box .box .total strong {
  font-size: 1.25em;
}
.construction_head_rei_item_box .kigou {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
}
@media print, screen and (min-width: 992px) {
  .construction_head_rei_item_box {
    display: flex;
    width: 100%;
  }
  .construction_head_rei_item_box .box {
    font-size: min(calc(14px + 6 * (100vw - 992px) / 508), 20px);
    flex: 1 1 0;
  }
  .construction_head_rei_item_box .kigou {
    flex: 0 0 auto;
    transform: rotate(0deg);
    padding: 0 0.5em;
    display: grid;
    place-items: center;
  }
}

/**/
.construction_details {
  background: url("../images/common/bg001.jpg") no-repeat center center/cover;
}

.construction_details_item {
  margin-bottom: min(calc(30px + 30 * (100vw - 320px) / 1180), 60px);
}
.construction_details_item:last-child {
  margin-bottom: 0;
}
.construction_details_item .photo {
  border-radius: 15px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .construction_details_item:nth-child(odd) .row > div:first-child {
    order: 13;
  }
  .construction_details_item:nth-child(odd) .content {
    padding-right: min(calc(15px + 35 * (100vw - 992px) / 508), 50px);
  }
  .construction_details_item:nth-child(even) .content {
    padding-left: min(calc(15px + 35 * (100vw - 992px) / 508), 50px);
  }
}

/* ---  --- */
.construction_case_item {
  margin-bottom: min(calc(30px + 30 * (100vw - 320px) / 1180), 60px);
}
.construction_case_item:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .construction_case_item .construction_case_item_image {
    padding-right: min(calc(5px + 60 * (100vw - 992px) / 508), 65px);
  }
}

/* --- gallery --- */
.construction_case {
  /* 前へ / 次へボタン */
  /* サムネイル */
}
.construction_case .splide-gallery {
  margin: 0 auto;
}
.construction_case .splide-gallery .splide__inner {
  position: relative;
}
.construction_case .splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 4/3;
  background-color: #fafafa;
}
.construction_case .splide-gallery .splide__arrow--prev, .construction_case .splide-gallery .splide__arrow--next {
  font-size: 0.5rem;
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.construction_case .splide-gallery .splide__arrow--prev svg, .construction_case .splide-gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.construction_case .splide-gallery .splide__arrow--prev:hover, .construction_case .splide-gallery .splide__arrow--next:hover {
  outline: none;
}
.construction_case .splide-gallery .splide__arrow--prev {
  left: 5px;
}
.construction_case .splide-gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.construction_case .splide-gallery .splide__arrow--next {
  right: 5px;
}
.construction_case .splide-gallery .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.construction_case .splide-gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.construction_case .splide-gallery .splide__pagination {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.construction_case .splide-gallery .splide__pagination > li {
  flex: 0 0 10%;
}
.construction_case .splide-gallery .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  aspect-ratio: 4 / 3;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.construction_case .splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.construction_case .splide-gallery .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

/* ---  --- */
.construction_flow {
  background-color: rgba(48, 173, 7, 0.1);
}

.construction_flow_item {
  display: flex;
}
.construction_flow_item_step {
  flex: 0 0 70px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.construction_flow_item_step:after {
  content: "";
  margin: 5px auto;
  display: block;
  flex: 1 1 0;
  width: 3px;
  background-color: #fff;
}
.construction_flow_item_content {
  flex: 1 1 0;
  padding-left: 20px;
  padding-bottom: 50px;
}
.construction_flow_item:last-child .construction_flow_item_step {
  min-height: auto !important;
}
.construction_flow_item:last-child .construction_flow_item_step:after {
  display: none !important;
}
.construction_flow_item:last-child .construction_flow_item_content {
  padding-bottom: 0px !important;
}
@media print, screen and (min-width: 768px) {
  .construction_flow_item_step {
    flex: 0 0 130px;
    min-height: 180px;
  }
  .construction_flow_item_content {
    padding-left: 30px;
    padding-bottom: 50px;
  }
}
@media print, screen and (min-width: 992px) {
  .construction_flow_item_step {
    flex: 0 0 170px;
    min-height: 220px;
  }
  .construction_flow_item_content {
    padding-left: 30px;
    padding-bottom: 50px;
  }
}
.construction_flow_item_step .step {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  background-color: #fff;
}
.construction_flow_item_step .step .in {
  display: block;
  margin: auto;
}
.construction_flow_item_step .step .in > strong {
  font-size: 1.5em;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .construction_flow_item_step .step {
    font-size: 25px;
  }
}
@media print, screen and (min-width: 992px) {
  .construction_flow_item_step .step {
    font-size: 50px;
  }
}
.construction_flow_item_content {
  font-size: 0.875rem;
}
.construction_flow_item_content .ttl h4 {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin: 0;
}
.construction_flow_item_content .ttl h4 .icon {
  width: 2em;
  height: 2em;
}
.construction_flow_item_content .ttl h4 .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.construction_flow_item_content .ttl h4 .txt {
  color: var(--primary);
  display: block;
  padding-left: 1em;
}
.construction_flow_item_content .column {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media print, screen and (min-width: 768px) {
  .construction_flow_item_content {
    font-size: 0.9375rem;
  }
}
@media print, screen and (min-width: 992px) {
  .construction_flow_item_content {
    font-size: 1rem;
    display: flex;
  }
  .construction_flow_item_content .ttl {
    font-size: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 9em;
  }
  .construction_flow_item_content .ttl h4 {
    font-size: 1em;
    flex-direction: column;
  }
  .construction_flow_item_content .ttl h4 .icon {
    width: 3em;
    height: 3em;
  }
  .construction_flow_item_content .ttl h4 .txt {
    padding: 0;
  }
  .construction_flow_item_content .column {
    flex: 1 1 0;
    margin-top: 0;
    display: grid;
    align-items: center;
    padding-left: 2em;
  }
}

/* -------------------------------
	レンタル倉庫
-------------------------------- */
/* ---  --- */
.rental_head h3 {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(19px + 17 * (100vw - 320px) / 1180), 36px);
  line-height: 1.75;
  text-align: center;
}

.rental_case {
  background-color: var(--primary);
}
.rental_case .title-hh-2 {
  color: #fff;
}
.rental_case .title-hh-2 > .fs-en {
  color: #fff;
}

.rental_case_column {
  height: 100%;
  padding: min(calc(15px + 35 * (100vw - 320px) / 1180), 50px);
  border-radius: min(calc(15px + 35 * (100vw - 320px) / 1180), 50px);
  background-color: #fff;
}
.rental_case_column h4 {
  font-weight: 500;
  text-align: center;
  border-bottom: solid 1px var(--success);
  padding-bottom: 0.5em;
}
.rental_case_column .rental_case_column_list {
  --gap: min(calc(10px + 20 * (100vw - 320px) / 1180), 30px);
  font-size: 0.88889em;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em var(--gap);
}
.rental_case_column .rental_case_column_list > li {
  line-height: 1.5;
  flex: 0 0 calc((100% - var(--gap) / 1) / 2);
  padding-left: 2em;
  position: relative;
}
.rental_case_column .rental_case_column_list > li:before {
  content: "\F271";
  color: var(--success);
  font-family: "bootstrap-icons";
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1;
  position: absolute;
  left: 0;
}
.rental_case_column .rental_case_column_list > li small {
  line-height: 1.2;
  display: inline-block;
}
.rental_case_column .rental_case_column_list > li.ww_full {
  flex: 0 0 calc((100% - var(--gap) / 1) / 1);
}
.rental_case_column.office h4 {
  border-bottom-color: var(--primary);
}
.rental_case_column.office .rental_case_column_list > li:before {
  color: var(--primary);
}

/* ---  --- */
.rental_features {
  background: url("../images/common/bg001.jpg") no-repeat center center/cover;
}

.rental_features_column {
  height: 100%;
  border-radius: clamp(10px, calc(var(--width-rental_features_column) * 4.70957), 30px);
  padding: min(7.8492935%, 50px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.rental_features_column h4 {
  color: var(--primary);
  font-weight: 500;
  font-size: clamp(18px, calc(var(--width-rental_features_column) / 18), 32px);
  text-align: center;
}
.rental_features_column h4 > .icon {
  width: 3em;
  height: 3em;
  display: block;
  margin: 0 auto 0.5em;
}
.rental_features_column h4 > .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rental_features_column h4 > .txt {
  display: block;
}

/* --- gallery --- */
.rental_warehouses {
  /* 前へ / 次へボタン */
  /* サムネイル */
}
.rental_warehouses h4 {
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em 0.5em;
}
.rental_warehouses h4 > .tag {
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: normal;
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 10em;
  background-color: #30ad07;
}
.rental_warehouses h4 > .tag.warning {
  color: #000;
  background-color: #ffc107;
}
.rental_warehouses h4 > .tag.danger {
  color: #fff;
  background-color: #dc3545;
}
.rental_warehouses h4 > .txt {
  display: block;
}
.rental_warehouses .splide-gallery {
  margin: 0 auto;
}
.rental_warehouses .splide-gallery .splide__inner {
  position: relative;
}
.rental_warehouses .splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 4/3;
  background-color: #fafafa;
}
.rental_warehouses .splide-gallery .splide__arrow--prev, .rental_warehouses .splide-gallery .splide__arrow--next {
  font-size: 0.5rem;
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.rental_warehouses .splide-gallery .splide__arrow--prev svg, .rental_warehouses .splide-gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.rental_warehouses .splide-gallery .splide__arrow--prev:hover, .rental_warehouses .splide-gallery .splide__arrow--next:hover {
  outline: none;
}
.rental_warehouses .splide-gallery .splide__arrow--prev {
  left: 5px;
}
.rental_warehouses .splide-gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.rental_warehouses .splide-gallery .splide__arrow--next {
  right: 5px;
}
.rental_warehouses .splide-gallery .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.rental_warehouses .splide-gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.rental_warehouses .splide-gallery .splide__pagination {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.rental_warehouses .splide-gallery .splide__pagination > li {
  flex: 0 0 calc((100% - (10px * 3)) / 4);
}
.rental_warehouses .splide-gallery .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.rental_warehouses .splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental_warehouses .splide-gallery .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

.rental_warehouses_commnt {
  text-align: center;
  padding: min(calc(15px + 35 * (100vw - 320px) / 1180), 50px);
  border: solid 1px #30ad07;
  background-color: #D6FCC9;
}

/* -------------------------------
	会社案内
-------------------------------- */
/* ---  --- */
.company_recruit {
  border-radius: min(calc(20px + 80 * (100vw - 320px) / 1180), 100px) min(calc(20px + 80 * (100vw - 320px) / 1180), 100px) 0 0;
  background: url("../images/common/bg001.jpg") no-repeat center center/cover;
}

.company_recruit_head {
  padding: min(calc(10px + 40 * (100vw - 320px) / 1180), 50px);
  border-radius: min(calc(10px + 40 * (100vw - 320px) / 1180), 50px);
  background-color: #fff;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background: url("../images/common/bg001.jpg") no-repeat center center/cover;
}
.tel_contact .telphone {
  font-size: 26px;
  text-align: center;
  justify-content: center;
}
.tel_contact .telphone i {
  color: var(--primary);
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .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 {
    width: auto;
    display: inline;
  }
}

/* フォーム用　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 {
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ff0000;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: normal;
  padding: 0.1em 0.5em 0.15em;
  margin-top: -.6em;
  border: solid 1px #ff0000;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 8em;
  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;
  aspect-ratio: 4/3;
  width: 100%;
  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;
    --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 {
    --duration: 0.5s;
    --mask-duration: var(--duration) 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 */
