@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-color: #efefef;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th {
  background: #fafafa;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

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

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

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

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

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  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-ww-416 {
  display: block;
  margin: 0 auto;
  max-width: 416px;
}

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

/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column .inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

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

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

a.tel_link {
  color: inherit;
}

/**/
.loop_splide .splide__list {
  gap: clamp(5px, 1.33334vw, 20px);
}

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

/* -------------------------------
	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) / 1125), 50px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.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.25em var(--primary);
  padding-left: 0.5em;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-jp {
  font-size: 25px;
  line-height: normal;
  display: block;
}
.title-hh-1 > .fs-en {
  color: #14244d;
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-top: .5em;
}
@media print, screen and (min-width: 768px) {
  .title-hh-1 > .fs-jp {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .title-hh-1 > .fs-jp {
    font-size: clamp(30px, calc(30px + 10 * (100vw - 992px) / 508), 40px);
  }
}
.title-hh-1.center {
  text-align: center;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: -15px;
}
@media print, screen and (min-width: 992px) {
  :root {
    --container-padding: clamp(30px, 13.0666666667vw, 196px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1500px) {
  :root {
    --edge: calc((1304px - 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: 1500px;
    padding-left: calc(var(--container-padding) / 2);
    padding-right: calc(var(--container-padding) / 2);
  }
}

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

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

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

.ww-col-10 {
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .ww-col-10 {
    width: calc((100% + 30px) * 10 / 12 - 30px);
    margin-inline: auto;
  }
}

/* -------------------------------
	mainvisual
-------------------------------- */
/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide-media {
  height: 200px;
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide-media {
    height: auto;
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
  text-align: center;
}
.home_ttl_1 > .fs-jp {
  font-size: 25px;
  line-height: normal;
  display: block;
}
.home_ttl_1 > .fs-en {
  color: #14244d;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  margin-top: .5em;
}
@media print, screen and (min-width: 768px) {
  .home_ttl_1 > .fs-jp {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_ttl_1 > .fs-jp {
    font-size: clamp(30px, calc(30px + 10 * (100vw - 992px) / 508), 40px);
  }
}

/* ---  --- */
.home_company p {
  line-height: 2;
}

/* ---  --- */
.home_service {
  background-color: #f3f5f9;
}

.home_service_item {
  text-align: center;
  padding: 20px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 14.25px 0.75px rgba(54, 78, 146, 0.1);
  background-color: #fff;
}
.home_service_item h2 {
  color: #14244d;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  margin-bottom: 1em;
}
.home_service_item .column {
  text-align: left;
  display: inline-grid;
  margin-bottom: 20px;
}
.home_service_item .column > ul {
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 0.5em 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home_service_item .column > ul > li {
  padding-left: 1.15em;
  position: relative;
}
.home_service_item .column > ul > li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1.5;
  transform: scale(0.875);
  transform-origin: left center;
}
.home_service_item .column > ul > li.child {
  grid-column: 1 / -1;
}
.home_service_item .column > ul > li.no-icon {
  padding-left: 0;
}
.home_service_item .column > ul > li.no-icon::before {
  display: none;
}
.home_service_item .btn_box {
  text-align: center;
  margin-top: auto;
}
.home_service_item .btn_box .btn {
  width: 230px;
}
@media print, screen and (min-width: 768px) {
  .home_service_item {
    padding: 30px 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_service_item {
    padding: clamp(30px, calc(30px + 20 * (100vw - 992px) / 508), 50px) 15px;
  }
  .home_service_item h2 {
    font-size: clamp(24px, calc(24px + 8 * (100vw - 992px) / 508), 32px);
    margin-bottom: clamp(25px, calc(25px + 0 * (100vw - 992px) / 508), 25px);
  }
  .home_service_item .column {
    font-size: clamp(14px, calc(14px + 2 * (100vw - 992px) / 508), 16px);
    margin-bottom: 30px;
  }
  .home_service_item .column > ul {
    gap: 0.5em clamp(30px, calc(30px + 30 * (100vw - 992px) / 508), 60px);
  }
  .home_service_item .btn_box .btn {
    max-width: 230px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

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

@media print, screen and (min-width: 992px) {
  .home_type_content .home_ttl_1 {
    text-align: left;
  }
  .home_type_content .btn_box .btn {
    margin: 0;
  }
}

/* ---  --- */
.home_map {
  width: 100%;
  height: 480px;
  max-height: 100vh;
}
.home_map iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* -------------------------------
	業務案内
-------------------------------- */
/* ---  --- */
.service_strengths {
  background-color: #fafafa;
}

.service_strengths_item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 30px 15px;
  height: 100%;
}
.service_strengths_item h3 {
  color: var(--primary);
  font-size: 22px;
  text-align: center;
  margin-bottom: 1.25em;
}
.service_strengths_item h3::after {
  content: "";
  width: 100%;
  height: 8px;
  display: block;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
  margin-top: 0.75em;
  background-color: #fff;
}
.service_strengths_item .column {
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .service_strengths_item h3 {
    font-size: 20px;
  }
  .service_strengths_item .column {
    font-size: 15px;
    padding: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .service_strengths_item {
    container-type: inline-size;
  }
  .service_strengths_item h3 {
    font-size: clamp(20px, calc((28 / 415) * 100cqw), 28px);
  }
  .service_strengths_item .column {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_strengths_item {
    padding: 50px 30px;
  }
}

/* ---  --- */
.service_content {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .service_content .service_content_image {
    position: sticky;
    top: 50px;
  }
}
.service_content .service_content_column {
  margin-top: 20px;
}
.service_content .service_content_column .btn_box .btn {
  text-align: left;
  width: 12em;
  padding-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .service_content .service_content_column {
    margin-top: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_content .service_content_column {
    margin-top: clamp(30px, calc(30px + 20 * (100vw - 992px) / 508), 50px);
  }
}
@media print, screen and (min-width: 992px) {
  .service_content.odd > div > .row > div:first-child {
    order: 13;
  }
  .service_content.odd .service_content_column {
    padding-right: clamp(30px, calc(30px + 52 * (100vw - 992px) / 508), 82px);
  }
}
.service_content.even {
  background-color: #EFF2F9;
}
@media print, screen and (min-width: 992px) {
  .service_content.even .service_content_column {
    padding-left: clamp(30px, calc(30px + 52 * (100vw - 992px) / 508), 82px);
  }
}

.service_content_list > ul {
  --col:2;
  --gap:1em;
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em var(--gap);
}
@media print, screen and (min-width: 768px) {
  .service_content_list > ul {
    --col:4;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_content_list > ul {
    font-size: clamp(16px, calc(16px + 6 * (100vw - 992px) / 508), 22px);
  }
}
.service_content_list > ul > li {
  color: #14244d;
  font-weight: 500;
  padding: 0.5em;
  padding-left: 2em;
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  border-bottom: solid 1px #14244d;
  position: relative;
}
.service_content_list > ul > li::before {
  content: "\f271";
  font-family: 'bootstrap-icons';
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  left: 0.5em;
}
.service_content_list > ul > li.li_auto {
  flex: 0 0 auto;
}

.service_architecture_ttl2 {
  font-size: 20px;
  line-height: 1.75;
}
@media print, screen and (min-width: 768px) {
  .service_architecture_ttl2 {
    font-size: 22px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_architecture_ttl2 {
    font-size: clamp(22px, calc(22px + 8 * (100vw - 992px) / 508), 30px);
  }
}

/* -------------------------------
	業務実績
-------------------------------- */
/* ---  --- */
.jisseki_wrapper {
  display: grid;
  gap: 30px;
}
@media print, screen and (min-width: 1200px) {
  .jisseki_wrapper {
    grid-template-columns: 280px 1fr;
    gap: 0 clamp(30px, calc(30px + 30 * (100vw - 992px) / 508), 60px);
  }
  .jisseki_wrapper .jisseki_side .cat_navi {
    position: sticky;
    top: 20px;
  }
}

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

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

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

/* ---  --- */
.jisseki_section {
  padding-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .jisseki_section {
    padding-bottom: clamp(50px, calc(50px + 50 * (100vw - 992px) / 508), 100px);
  }
}
.jisseki_section h2 {
  margin-bottom: 1em;
}

.jisseki_section_box_ttl {
  padding-left: 1.2em;
  position: relative;
}
.jisseki_section_box_ttl::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.875);
  opacity: 0.65;
}

/**/
.jisseki_sub_navi {
  margin-bottom: 1.5rem;
}
.jisseki_sub_navi > ul {
  --col:3;
  --gap:10px;
  list-style: none;
  font-size: 14px;
  letter-spacing: normal;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media print, screen and (min-width: 768px) {
  .jisseki_sub_navi > ul {
    --col:4;
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .jisseki_sub_navi > ul {
    --col:3;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1200px) {
  .jisseki_sub_navi > ul {
    --col:4;
  }
}
.jisseki_sub_navi > ul > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.jisseki_sub_navi > ul > li > a {
  color: #333;
  text-decoration: none;
  padding: 0.5em 1.25em 0.5em 0.75em;
  border: solid 1px #333;
  display: block;
  background-color: #fff;
  position: relative;
  transition: color .3s ease, background .3s ease;
}
.jisseki_sub_navi > ul > li > a::after {
  content: "\f063";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75em;
  line-height: 1;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.5em;
}
.jisseki_sub_navi > ul > li > a:hover {
  color: #fff;
  background-color: #333;
}
@media print, screen and (min-width: 768px) {
  .jisseki_sub_navi > ul > li > a {
    padding: 0.75em 3em 0.75em 1.5em;
  }
}

/**/
.jisseki_section_box {
  margin-bottom: 2rem;
}
.jisseki_section_box:last-child {
  margin-bottom: 0;
}

/**/
.jisseki_table_1 {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media print, screen and (min-width: 768px) {
  .jisseki_table_1 > tbody > tr > th {
    width: 12em;
    vertical-align: text-top;
  }
}

.jisseki_table_2 {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .jisseki_table_2 > thead > tr > th, .jisseki_table_2 > thead > tr > td, .jisseki_table_2 > tbody > tr > th, .jisseki_table_2 > tbody > tr > td {
    padding: 0.5em;
  }
  .jisseki_table_2 > tbody > tr > td:nth-child(2) {
    font-size: 13px;
    text-align: center;
    width: 9em;
  }
}
@media print, screen and (min-width: 768px) {
  .jisseki_table_2 > tbody > tr > td:nth-child(2) {
    width: 11em;
    text-align: center;
  }
}

.jisseki_table_3 {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
.jisseki_table_3 > thead > tr > th {
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .jisseki_table_3 > tbody > tr > td:nth-child(2) {
    white-space: nowrap;
  }
  .jisseki_table_3 > tbody > tr > td:nth-child(3) {
    white-space: nowrap;
  }
}
.jisseki_table_3.is-responsive {
  border: none;
}
.jisseki_table_3.is-responsive > thead {
  display: none;
}
.jisseki_table_3.is-responsive > tbody {
  display: grid;
  gap: 10px;
}
.jisseki_table_3.is-responsive > tbody > tr {
  display: block;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
}
.jisseki_table_3.is-responsive > tbody > tr > th, .jisseki_table_3.is-responsive > tbody > tr > td {
  display: grid;
  padding: 0;
  grid-template-columns: 6em 1fr;
}
.jisseki_table_3.is-responsive > tbody > tr > th > .td_head, .jisseki_table_3.is-responsive > tbody > tr > th > .td_body, .jisseki_table_3.is-responsive > tbody > tr > td > .td_head, .jisseki_table_3.is-responsive > tbody > tr > td > .td_body {
  padding: 0.75em;
}
.jisseki_table_3.is-responsive > tbody > tr > th > .td_head, .jisseki_table_3.is-responsive > tbody > tr > td > .td_head {
  display: grid;
  place-items: center;
  background-color: #fafafa;
}
.jisseki_table_3.is-responsive > tbody > tr > th > .td_body, .jisseki_table_3.is-responsive > tbody > tr > td > .td_body {
  border-left: solid 1px #ccc;
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_message_content .company_message_name {
  font-size: 20px;
  text-align: right;
  margin-top: 2rem;
  margin-right: 1rem;
}
.company_message_content .company_message_name .small {
  font-size: 0.75em;
}
@media print, screen and (min-width: 992px) {
  .company_message_content {
    padding-left: clamp(30px, calc(30px + 52 * (100vw - 992px) / 508), 82px);
  }
}

/* ---  --- */
.company_overview {
  background-color: #fafafa;
}

.company_list_1 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.company_list_1 > li {
  font-weight: 500;
}
.company_list_1 > li > ul {
  font-weight: 400;
  list-style: none;
  padding: 0.5em 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
}
.company_list_1 > li > ul > li {
  font-size: 15px;
}
.company_list_1 > li > ul > li::after {
  content: "/";
  margin: 0 0.5em;
}
.company_list_1 > li > ul > li:last-child::after {
  display: none;
}

/* ---  --- */
.company_access {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.company_access::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #fafafa;
}
@media print, screen and (min-width: 992px) {
  .company_access::before {
    inset: 0 36% 0 0;
  }
  .company_access .googlemap {
    margin-right: var(--edge);
    aspect-ratio: 16/9;
    height: 100%;
    padding: 0;
  }
}

.company_access_list {
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1em 0;
}
.company_access_list > li {
  font-weight: 500;
  padding-left: 1.25em;
  position: relative;
}
.company_access_list > li > i {
  position: absolute;
  left: 0;
  line-height: 1.5;
}
.company_access_list > li > ul {
  font-weight: 400;
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0;
}
.company_access_list > li > ul > li {
  padding-left: 1.2em;
  position: relative;
}
.company_access_list > li > ul > li::before {
  content: "├";
  position: absolute;
  left: 0;
}
.company_access_list > li > ul > li:last-child::before {
  content: "└";
}

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

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

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

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

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

.buttons {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.buttons .btn {
  font-size: 15px;
  margin: 0.3125em 0.625em;
  width: 260px;
  display: block;
  cursor: pointer;
}
@media print, screen and (min-width: 1200px) {
  .buttons .btn {
    font-size: 16px;
  }
}

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h4 {
  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;
  }
  .amn-fade-up.is-active,
  .amn-fade-down.is-active,
  .amn-fade-left.is-active,
  .amn-fade-right.is-active {
    animation-duration: var(--duration);
    animation-timing-function: var(--easing);
    animation-fill-mode: forwards;
  }

  .amn-fade-up.is-active {
    animation-name: amn-fade-up;
  }

  .amn-fade-down.is-active {
    animation-name: amn-fade-down;
  }

  .amn-fade-left.is-active {
    animation-name: amn-fade-left;
  }

  .amn-fade-right.is-active {
    animation-name: amn-fade-right;
  }

  .amn-span-up {
    --translate-y: 20px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    animation: amn-span-up var(--duration) var(--easing) forwards;
  }
}
@keyframes amn-fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@keyframes amn-fade-down {
  from {
    opacity: 0;
    transform: translateY(calc(var(--translate-y) * -1));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@keyframes amn-fade-left {
  from {
    opacity: 0;
    transform: translateX(var(--translate-x));
  }
  to {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }
}
@keyframes amn-fade-right {
  from {
    opacity: 0;
    transform: translateX(calc(var(--translate-x) * -1));
  }
  to {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }
}
@keyframes amn-span-up {
  from {
    opacity: 0;
    transform: translateY(var(--translate-y));
  }
  to {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@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: #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 */
