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

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

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

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

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

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

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

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

.mail_btn {
  width: auto;
  height: 0.8em;
  margin-bottom: 0.2em;
  cursor: pointer;
  vertical-align: middle;
}

/* 画像回り込み */
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;
}

.photo-style-1 {
  border: solid 1px #2b2b2b;
  border-radius: 30px;
  background-color: #ccc;
  overflow: hidden;
}
.photo-style-1 img {
  width: 100%;
  height: auto;
  border: solid 12px #fff;
  border-radius: 30px;
}

.img-radius-30 {
  border-radius: min(4vw, 30px);
}

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

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

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

.btn-white {
  color: #fff;
  border: solid 1px #fff;
  padding: 0.86112em 2em;
  border-radius: 50em;
}
.btn-white:hover {
  color: #013d97;
  background-color: #fff;
}

.btn--w268 {
  min-width: 14.88888em;
}

.btn-sns {
  color: #2b2b2b;
  line-height: 1;
  letter-spacing: normal;
  width: 2.3em;
  height: 2.3em;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 1px #2b2b2b;
  transition: opacity 0.3s ease;
}
.btn-sns.btn--instagram {
  background-color: #f6d1d9;
}
.btn-sns.btn--twitter {
  background-color: #bed0eb;
}
.btn-sns:hover {
  opacity: 0.5;
}

/* file icon */
.link_file_icon a:before {
  content: "\f15c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
  margin-right: .5em;
}
.link_file_icon a[href$=".pdf"]:before {
  content: "\f1c1";
}
.link_file_icon a[href$=".xls"]:before, .link_file_icon a[href$=".xlsx"]:before {
  content: "\f1c3";
}
.link_file_icon a[href$=".doc"]:before, .link_file_icon a[href$=".docx"]:before {
  content: "\f1c2";
}

.link-icon:before {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon [target="_blank"]:before {
  content: "\f35d";
  font-size: 0.875em;
}
.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";
}

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

/**/
.sec_content_1 {
  background-color: #e1ebfa;
  position: relative;
}
.sec_content_1 .nami_top {
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  width: 100%;
  height: min(calc(38px + 80 * (100vw - 320px) / 1180), 118px);
  background: url("../images/common/nami_top_2.svg") no-repeat center top/cover;
  pointer-events: none;
}
.sec_content_1 .nami_bottom {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  z-index: -1;
  width: 100%;
  height: min(calc(38px + 80 * (100vw - 320px) / 1180), 118px);
  background: url("../images/common/nami_bottom_2.svg") no-repeat center top/cover;
  pointer-events: none;
}

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

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

a.tel_link {
  color: inherit;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
/* --▼text-- */
.text-kome {
  padding-left: 1.1em;
  position: relative;
}
.text-kome:before {
  content: "※";
  position: absolute;
  left: 0;
  transform: scale(0.9);
}

/* --▼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(28px + 22 * (100vw - 320px) / 1180), 50px);
}

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

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

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

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

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

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

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

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

.mt-80 {
  margin-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.mb-80 {
  margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.mtb-80 {
  margin-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.mt-90 {
  margin-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

.mb-90 {
  margin-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

.mtb-90 {
  margin-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  margin-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

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

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

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

.mt-110 {
  margin-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

.mb-110 {
  margin-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

.mtb-110 {
  margin-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  margin-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

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

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

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

.mt-180 {
  margin-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

.mb-180 {
  margin-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

.mtb-180 {
  margin-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  margin-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

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

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

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

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

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

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

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

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

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

.pt-80 {
  padding-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.pb-80 {
  padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.ptb-80 {
  padding-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
}

.pt-90 {
  padding-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

.pb-90 {
  padding-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

.ptb-90 {
  padding-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  padding-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
}

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

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

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

.pt-110 {
  padding-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

.pb-110 {
  padding-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

.ptb-110 {
  padding-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  padding-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
}

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

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

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

.pt-180 {
  padding-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

.pb-180 {
  padding-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

.ptb-180 {
  padding-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  padding-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
}

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

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

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

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

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

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

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

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

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

  .mt-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  }

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

  .mt-lg-90 {
    margin-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  }

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

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

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

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

  .mt-lg-110 {
    margin-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  }

  .mb-lg-110 {
    margin-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  }

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

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

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

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

  .mt-lg-180 {
    margin-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  }

  .mb-lg-180 {
    margin-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  }

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

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

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

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

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

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

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

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

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

  .pt-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1180), 80px);
  }

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

  .pt-lg-90 {
    padding-top: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(29px + 61 * (100vw - 320px) / 1180), 90px);
  }

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

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

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

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

  .pt-lg-110 {
    padding-top: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  }

  .pb-lg-110 {
    padding-bottom: min(calc(36px + 74 * (100vw - 320px) / 1180), 110px);
  }

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

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

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

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

  .pt-lg-180 {
    padding-top: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  }

  .pb-lg-180 {
    padding-bottom: min(calc(58px + 122 * (100vw - 320px) / 1180), 180px);
  }

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

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

@media print, screen and (min-width: 576px) {
  .ml-full, .ml-sm-full {
    margin-left: calc((510px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full {
    margin-right: calc((510px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-full, .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - 100vw) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - 100vw) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - 100vw) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - 100vw) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - 100vw) / 4);
  }
}
/* 横幅いっぱいに広げるスタイル */
.ml-full {
  margin-left: -15px;
}

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

@media print, screen and (min-width: 576px) {
  .ml-sm-full {
    margin-left: calc((510px - 100vw) / 2);
  }

  .mr-sm-full {
    margin-right: calc((510px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 1500px) {
  .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full, .ml-xxl-full {
    margin-left: calc((1304px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full, .mr-xxl-full {
    margin-right: calc((1304px - 100vw) / 2);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  line-height: 1.75;
  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);
}

/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1, .h1 {
  font-size: 1.9rem;
  /* 30px相当 */
}

h2, .h2 {
  font-size: 1.69rem;
  /* 27px相当 */
}

h3, .h3 {
  font-size: 1.5rem;
  /* 24px相当 */
}

h4, .h4 {
  font-size: 1.33rem;
  /* 21px相当 */
}

h5, .h5 {
  font-size: 1.19rem;
  /* 19px相当 */
}

h6, .h6 {
  font-size: 1.05rem;
  /* 17px相当 */
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.21rem;
    /* 35px相当 */
  }

  h2, .h2 {
    font-size: 1.97rem;
    /* 32px相当 */
  }

  h3, .h3 {
    font-size: 1.75rem;
    /* 28px相当 */
  }

  h4, .h4 {
    font-size: 1.56rem;
    /* 25px相当 */
  }

  h5, .h5 {
    font-size: 1.38rem;
    /* 22px相当 */
  }

  h6, .h6 {
    font-size: 1.23rem;
    /* 20px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 2.37rem;
    /* 38px相当 */
  }

  h2, .h2 {
    font-size: 2.11rem;
    /* 34px相当 */
  }

  h3, .h3 {
    font-size: 1.88rem;
    /* 30px相当 */
  }

  h4, .h4 {
    font-size: 1.67rem;
    /* 27px相当 */
  }

  h5, .h5 {
    font-size: 1.48rem;
    /* 24px相当 */
  }

  h6, .h6 {
    font-size: 1.32rem;
    /* 21px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.53rem;
    /* 40px相当 */
  }

  h2, .h2 {
    font-size: 2.25rem;
    /* 36px相当 */
  }

  h3, .h3 {
    font-size: 2rem;
    /* 32px相当 */
  }

  h4, .h4 {
    font-size: 1.78rem;
    /* 28px相当 */
  }

  h5, .h5 {
    font-size: 1.58rem;
    /* 25px相当 */
  }

  h6, .h6 {
    font-size: 1.4rem;
    /* 22px相当 */
  }
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p, ol, ul, dl, table {
  margin-bottom: 1rem;
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: 2rem;
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  color: #f5e677;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: -1px -1px 0 #2b2b2b, -1px 1px 0 #2b2b2b, 1px -1px 0 #2b2b2b, 1px 1px 0 #2b2b2b, 1px 0px 0 #2b2b2b, 0px 1px 0 #2b2b2b;
  display: block;
}
.title-1:after {
  content: "";
  display: block;
  width: 1.2em;
  height: 5px;
  margin: 0.5em auto 0;
  background-color: #d63a27;
}
.title-1.txt--left {
  text-align: left;
}
.title-1.txt--left:after {
  margin-left: 0;
}
.title-1.no-line:after {
  display: none;
}

.title-2 {
  border-left: solid 0.2em #013d97;
  padding-left: 0.5em;
}

.ttl-fs-1 {
  font-size: min(calc(20px + 25 * (100vw - 320px) / 1180), 45px);
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .txt {
  font-size: 1.11112rem;
  display: block;
  margin-bottom: 0.5em;
}
.title-hh-1 > .fs-en {
  color: #f5e677;
  font-size: min(calc(50px + 30 * (100vw - 320px) / 1180), 80px);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #2b2b2b, -1px 1px 0 #2b2b2b, 1px -1px 0 #2b2b2b, 1px 1px 0 #2b2b2b, 1px 0px 0 #2b2b2b, 0px 1px 0 #2b2b2b;
  display: block;
}

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

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

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

/* --- form --- */
/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: 60vh;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: 100vh;
    height: 100dvh;
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: 100vh;
    height: 100dvh;
    max-height: 1500px;
  }
}
@media print {
  #mainvisual {
    max-height: 1000px;
  }
}
#mainvisual > video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainvisual .mainvisual_content {
  position: absolute;
  left: min(3.85vw, 77px);
  bottom: min(4.8vw, 96px);
  z-index: 10;
}
#mainvisual .mainvisual_content h2 {
  color: #fff;
  font-size: min(calc(18px + 27 * (100vw - 320px) / 1600), 45px);
  line-height: 1.55555;
  margin: 0;
}
#mainvisual .scroll {
  position: absolute;
  bottom: 106px;
  right: min(3.91vw, calc(30px + 16px + 10px));
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 4;
  display: none;
}
@media print, screen and (min-width: 768px) {
  #mainvisual .scroll {
    display: block;
  }
}
#mainvisual .scroll::before {
  content: "";
  position: absolute;
  bottom: -106px;
  left: calc(16px + 10px);
  width: 1px;
  height: 160px;
  background: none;
}
#mainvisual .scroll::after {
  content: "";
  position: absolute;
  bottom: -106px;
  left: calc(16px + 10px);
  width: 1px;
  height: 160px;
  background: #fff;
  animation: lineAnime 3s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes lineAnime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* -------------------------------
	home
-------------------------------- */
.home-content {
  position: relative;
  z-index: 10;
}

/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .txt {
  font-size: 1.11112rem;
  display: block;
  margin-bottom: 0.5em;
}
.home_ttl_1 > .fs-en {
  color: #f5e677;
  font-size: min(calc(50px + 30 * (100vw - 320px) / 1180), 80px);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #2b2b2b, -1px 1px 0 #2b2b2b, 1px -1px 0 #2b2b2b, 1px 1px 0 #2b2b2b, 1px 0px 0 #2b2b2b, 0px 1px 0 #2b2b2b;
  display: block;
}

/* ---  --- */
.home_service {
  background-color: #fff;
  position: relative;
}
.home_service .bg-img {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  .home_service .bg-img {
    display: block;
    position: absolute;
    left: 0;
    top: 83px;
    width: min(calc(180px + 328 * (100vw - 1200px) / 720), 508px);
  }
}
@media print, screen and (min-width: 992px) {
  .home_service {
    background: url("../images/home/home_service_bg.jpg") no-repeat center bottom/cover;
  }
}
.home_service h2 {
  font-size: 1rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .home_service p {
    line-height: 2.33334;
    text-align: center;
    white-space: nowrap;
  }
}

/* ---  --- */
.home_oem {
  color: #fff;
  background-color: #013d97;
}
@media screen and (min-width: 992px) {
  .home_oem {
    min-height: 100vh;
  }
}
@media print, screen and (min-width: 992px) {
  .home_oem {
    display: flex;
    align-items: center;
    background-color: #fff;
    position: relative;
    z-index: 0;
  }
  .home_oem > .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: url("../images/home/home_oem_bg.svg") no-repeat center center/100% 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .home_oem .photo-style-1 {
    margin-right: min(calc(18px + 40 * (100vw - 992px) / 732), 58px);
    margin-left: calc(-18px - 149 * (100vw - 992px) / 1008);
  }
}
@media print, screen and (min-width: 2000px) {
  .home_oem .photo-style-1 {
    margin-left: -167px;
  }
}
.home_oem .home_oem_content .home_ttl_1 {
  position: relative;
}
.home_oem .home_oem_content .home_ttl_1:after {
  content: "";
  position: absolute;
  right: min(4vw, 60px);
  top: 10px;
  width: min(calc(80px + 62 * (100vw - 320px) / 1180), 142px);
  aspect-ratio: 142 / 119;
  background: url("../images/common/icon001.png") no-repeat center center/contain;
}
.home_oem .home_oem_content .home_ttl_1 > .fs-en {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .home_oem .home_oem_content .column {
    line-height: 2.33334;
  }
}

/* ---  --- */
.home_links__item .photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.home_links__item .photo a img {
  transition: transform 0.3s ease;
}
.home_links__item .photo a > span {
  position: absolute;
  right: 1.42857em;
  bottom: 1.42857em;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  width: 12.2857em;
  height: 2.85714em;
  border-radius: 10em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #202020;
  background-color: #d63a27;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
.home_links__item .photo a > span i {
  margin-left: 0.5em;
}
.home_links__item .photo a:hover img {
  transition: transform 1s ease;
  transform: scale(1.15);
}
.home_links__item .photo a:hover > span {
  color: #d63a27;
  background-color: #fff;
}
.home_links__item .columns {
  max-width: 32em;
  padding: 0 1em;
  margin: 1.66666em auto 0;
}
@media print, screen and (min-width: 992px) {
  .home_links__item .columns {
    line-height: 2.33334;
  }
}

/* ---  --- */
.home_news {
  background-color: #e1ebfa;
}
.home_news .home_ttl_1 > .fs-en {
  display: inline-block;
  position: relative;
}
.home_news .home_ttl_1 > .fs-en:after {
  content: "";
  position: absolute;
  left: calc(100% + min(4vw, 70px));
  bottom: 0;
  width: 0.975em;
  height: 0.925em;
  background: url("../images/common/icon002.png") no-repeat center center/contain;
}

.home_news__content {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_news__content {
    max-height: 530px;
    overflow: auto;
  }
}

.home_news__item {
  padding: 28px 15px;
  border-bottom: solid 1px #cccccc;
}
.home_news__item .head {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 992px) {
  .home_news__item {
    display: flex;
    align-items: flex-start;
  }
  .home_news__item .head {
    flex: 0 0 16.88888em;
    margin-bottom: 0;
    padding-top: 3px;
  }
  .home_news__item .content {
    flex: 1 1 0;
  }
}
.home_news__item .head {
  display: flex;
  align-items: center;
}
.home_news__item .head .date {
  color: #2b2b2b;
  font-size: 0.88888em;
  flex: 0 0 7.5em;
}
.home_news__item .head .cat {
  color: #013d97;
  font-size: 0.77777em;
  letter-spacing: normal;
  text-align: center;
  border: solid 1px currentColor;
  border-radius: 3px;
  padding: 0.15em 0.25em;
  flex: 0 0 7.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_news__item .head .new {
  color: #d63a27;
  font-size: 0.77777em;
  padding-left: 1em;
}
.home_news__item .content {
  font-size: 0.94444em;
  display: flex;
  align-items: center;
}
.home_news__item .content .link {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 1rem;
}
.home_news__item .content .link > a {
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #013d97;
  transition: transform 0.3s ease;
}
.home_news__item .content .link > a > i {
  color: #fff;
  line-height: 1;
  letter-spacing: normal;
}
.home_news__item .content .link > a:hover {
  transform: scale(1.2);
}
.home_news__item .home_news_gallery {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.home_news__item .home_news_gallery .img {
  flex: 0 0 25%;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.home_news__item .home_news_gallery .img img {
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 3px;
}
.home_news__item .home_news_file {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home_news__item .home_news_file .box .btn {
  font-size: 0.77777rem;
  padding: 0.5em 1.75em;
}

/* ---  --- */
.foot_contact {
  color: #fff;
  padding-top: 40px;
  padding-bottom: min(calc(50px + 60 * (100vw - 320px) / 1180), 110px);
  background-color: #013d97;
  position: relative;
  z-index: 10;
}
.foot_contact:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  width: 100%;
  height: min(calc(38px + 80 * (100vw - 320px) / 1180), 118px);
  background: url("../images/common/foot_contact_top.svg") no-repeat center top/cover;
  pointer-events: none;
}
.foot_contact .home_ttl_1 > .fs-en {
  color: #fff;
  display: inline-block;
  position: relative;
}
.foot_contact .home_ttl_1 > .fs-en:before {
  content: "";
  position: absolute;
  right: 75%;
  bottom: 100%;
  width: 2.45em;
  height: 1.2125em;
  background: url("../images/common/page_conten t_icon1.png") no-repeat center center/contain;
  transform: scale(0.75);
}
@media print, screen and (min-width: 768px) {
  .foot_contact .home_ttl_1 > .fs-en:before {
    right: calc(100% + min(4vw, 70px));
    transform: scale(1);
  }
}
.foot_contact h3 {
  font-size: min(calc(14px + 11 * (100vw - 320px) / 1180), 25px);
  text-align: center;
}
.foot_contact .foot_contact__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 65px;
  justify-content: center;
  align-items: center;
}
.foot_contact .foot_contact__row > .box {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .foot_contact .foot_contact__row > .box {
    flex: 0 0 50%;
    max-width: 375px;
  }
}
.foot_contact .foot_contact__tel {
  text-align: center;
}
.foot_contact .foot_contact__tel .telphone {
  font-size: 35px;
}
.foot_contact .foot_contact__tel .txt1 {
  font-size: 0.88888em;
}
@media print, screen and (min-width: 768px) {
  .foot_contact .foot_contact__tel .telphone {
    font-size: 40px;
  }
}
.foot_contact .foot_contact__mall .btn {
  width: 100%;
  max-width: 375px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin: 0 auto;
}
.foot_contact .foot_contact__mall .btn i {
  margin-left: 1em;
}

/* -------------------------------
	お知らせ
-------------------------------- */
/* ---  --- */
.news_content__head {
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.news_content__head .date {
  color: #666666;
  font-size: 0.88888em;
  flex: 0 0 auto;
}
.news_content__head .cat {
  color: #03adeb;
  font-size: 0.77777em;
  letter-spacing: normal;
  text-align: center;
  border: solid 1px currentColor;
  border-radius: 3px;
  padding: 0.15em 1em;
  flex: 0 0 auto;
}
.news_content__head .new {
  color: #a71a30;
  font-size: 0.77777em;
}

.news_content__body .link-icon {
  display: block;
  min-width: 200px;
}
@media print, screen and (min-width: 768px) {
  .news_content__body .image {
    padding-right: min(calc(12px + 100 * (100vw - 768px) / 732), 112px);
  }
  .news_content__body .order-md-last .image {
    padding-left: min(calc(12px + 100 * (100vw - 768px) / 732), 112px);
    padding-right: 0;
  }
}

/**/
/* -------------------------------
	業務内容
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 768px) {
  .service_head {
    line-height: 2.33334;
  }
}

/* ---  --- */
.service_whyus_item {
  border: solid 1px #2b2b2b;
  border-radius: 30px;
  padding: 20px;
  height: 100%;
  background-color: #fff;
}
.service_whyus_item .icon {
  width: 100px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.service_whyus_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.service_whyus_item h4 {
  color: #d63a27;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  height: calc(1.5em * 3);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_whyus_item .column {
  font-size: 0.88888rem;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .service_whyus_item {
    padding: min(calc(20px + 30 * (100vw - 768px) / 732), 50px);
  }
  .service_whyus_item .icon {
    width: min(calc(90px + 30 * (100vw - 768px) / 732), 120px);
  }
  .service_whyus_item h4 {
    font-size: min(calc(20px + 4 * (100vw - 768px) / 732), 24px);
  }
}

/* -------------------------------
	OEM生産の流れ
-------------------------------- */
/* ---  --- */
.oem_head {
  background-color: #e1ebfa;
  position: relative;
}
.oem_head:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #e1ebfa;
}

/* ---  --- */
.oem_flow_list {
  padding: 20px;
  border: solid 1px #2b2b2b;
  box-shadow: 10px 10px 0 #efefef;
}
@media print, screen and (min-width: 768px) {
  .oem_flow_list {
    padding: 30px 50px;
  }
}
.oem_flow_list > ol {
  font-size: min(calc(14px + 10 * (100vw - 320px) / 1180), 24px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: number;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5em;
}
.oem_flow_list > ol > li {
  display: flex;
  align-items: center;
}
.oem_flow_list > ol > li:before {
  counter-increment: number;
  content: counter(number,decimal-leading-zero);
  color: #ccc;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2em;
  line-height: 1;
  text-align: center;
  flex: 0 0 1.5em;
  margin-right: 0.5em;
}
.oem_flow_list > ol > li > a {
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.oem_flow_list > ol > li > a:hover {
  color: #d63a27;
}

/* ---  --- */
.oem_flow_list2 {
  padding: 20px;
  border: solid 1px #2b2b2b;
  box-shadow: 10px 10px 0 #efefef;
}
.oem_flow_list2 > ol {
  font-size: min(calc(14px + 10 * (100vw - 320px) / 1180), 24px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: number;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5em;
}
.oem_flow_list2 > ol > li {
  display: flex;
  align-items: center;
}
.oem_flow_list2 > ol > li:before {
  counter-increment: number;
  content: counter(number,decimal-leading-zero);
  color: #ccc;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2em;
  line-height: 1;
  text-align: center;
  flex: 0 0 1.5em;
  margin-right: 0.5em;
}
.oem_flow_list2 > ol > li > a {
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.oem_flow_list2 > ol > li > a:hover {
  color: #d63a27;
}
@media print, screen and (min-width: 768px) {
  .oem_flow_list2 {
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .oem_flow_list2 > ol {
    display: grid;
    gap: 0 30px;
    grid-template-columns: repeat(6, 1fr);
  }
  .oem_flow_list2 > ol > li {
    padding-top: 1.2em;
    flex-direction: column;
    border: solid 1px #2b2b2b;
    box-shadow: 10px 10px 0 #efefef;
  }
  .oem_flow_list2 > ol > li > a {
    width: 100%;
    padding: 0 0 1em;
    height: 100%;
  }
  .oem_flow_list2 > ol > li > a > .in {
    line-height: 1.8;
    display: block;
    writing-mode: vertical-rl;
    margin: auto;
  }
}

/* ---  --- */
.oem_flow_content {
  margin-bottom: min(calc(50px + 50 * (100vw - 320px) / 1180), 100px);
}
.oem_flow_content:last-child {
  margin-bottom: 50px;
}
.oem_flow_content .columns {
  line-height: 2;
}
.oem_flow_content .columns h4 {
  color: #013d97;
  font-size: min(calc(22px + 8 * (100vw - 320px) / 448), 30px);
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #013d97;
}
.oem_flow_content .columns h4 .num {
  font-size: 2.25em;
  line-height: 1;
  display: block;
  margin-right: 0.25em;
}
.oem_flow_content .columns h4 .txt {
  display: flex;
  flex: 1 1 0;
}
@media print, screen and (min-width: 992px) {
  .oem_flow_content .columns h4 {
    font-size: min(calc(22px + 8 * (100vw - 992px) / 508), 30px);
  }
}
@media print, screen and (min-width: 992px) {
  .oem_flow_content:nth-child(odd) .oem_flow_image {
    margin-left: min(calc(18px + 40 * (100vw - 992px) / 732), 58px);
    margin-right: calc(-18px - 149 * (100vw - 992px) / 1008);
  }
  .oem_flow_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .oem_flow_content:nth-child(even) .oem_flow_image {
    margin-right: min(calc(18px + 40 * (100vw - 992px) / 732), 58px);
    margin-left: calc(-18px - 149 * (100vw - 992px) / 1008);
  }
}
@media print, screen and (min-width: 2000px) {
  .oem_flow_content:nth-child(odd) .oem_flow_image {
    margin-right: -167px;
  }
}

/* -------------------------------
	製作実績
-------------------------------- */
/* ---  --- */
.works_content:nth-child(even) {
  background-color: #e1ebfa;
}
.works_content h3 {
  color: #013d97;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #013d97;
}

.works_content_gallery .photo-ofi img {
  border-radius: 15px;
}
@media print, screen and (min-width: 768px) {
  .works_content_gallery {
    margin-right: min(calc(12px + 100 * (100vw - 768px) / 732), 112px);
  }
}

/* -------------------------------
	splide
-------------------------------- */
.works_content_gallery .splide .splide__pagination {
  font-size: 0;
  gap: 3px 5px;
  margin-top: 7px;
}
.works_content_gallery .splide .splide__pagination__page {
  width: 8px;
  height: 8px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #efefef;
}
.works_content_gallery .splide .splide__pagination__page.is-active {
  background-color: #d63a27;
  pointer-events: auto;
}
.works_content_gallery .splide .splide-wrapper {
  position: relative;
}

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: transparent;
  font-size: 14px;
  line-height: 1;
}
.wp-pagenavi .pages {
  color: #6b7280;
  margin-right: 6px;
}
.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  color: #333;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.wp-pagenavi a.page, .wp-pagenavi a.first, .wp-pagenavi a.last, .wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  cursor: pointer;
}
.wp-pagenavi a:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.wp-pagenavi .current {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  font-weight: 700;
}
.wp-pagenavi .extend {
  background: #fafafa;
  color: #9ca3af;
  pointer-events: none;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  min-width: 36px;
  border-radius: 9999px;
}
@media (max-width: 480px) {
  .wp-pagenavi {
    gap: 6px;
    font-size: 13px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span.current,
  .wp-pagenavi span.extend {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
  }
  .wp-pagenavi .pages {
    width: 100%;
    text-align: center;
    margin: 0 0 4px;
    font-size: 12px;
  }
}
@media (prefers-color-scheme: dark) {
  .wp-pagenavi a,
  .wp-pagenavi span.current,
  .wp-pagenavi span.extend {
    box-shadow: none;
  }
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_greeting .figure_company_ceo {
  float: right;
  width: 31.825%;
  max-width: 415px;
  min-width: 150px;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: auto;
}
.company_greeting .figure_company_ceo > img {
  border-radius: 10px;
}
.company_greeting .figure_company_ceo figcaption {
  text-align: center;
  margin: 10px 15% 0;
}
.company_greeting .figure_company_ceo figcaption p {
  font-size: min(calc(16px + 10 * (100vw - 320px) / 1280), 26px);
  line-height: 1.5;
  white-space: nowrap;
}
.company_greeting .figure_company_ceo figcaption p small {
  font-size: 0.5769em;
}
@media print, screen and (min-width: 768px) {
  .company_greeting .figure_company_ceo {
    margin-left: min(calc(30px + 82 * (100vw - 768px) / 732), 112px);
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .company_greeting .column {
    line-height: 2;
  }
}

/* ---  --- */
.company_access {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .company_access .googlemap {
    margin-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
    margin-right: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
}
@media print, screen and (min-width: 1500px) {
  .company_access .googlemap {
    margin-right: calc((1304px - 100vw) / 2);
    margin-right: calc((1304px - 100dvw) / 2);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background-color: #e1ebfa;
  position: relative;
}
.tel_contact:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #e1ebfa;
}

.tel_contact_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 65px;
  justify-content: center;
}
.tel_contact_row > .box {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_row > .box {
    flex: 0 0 auto;
  }
}

.tel_contact__item {
  text-align: center;
}
.tel_contact__item .telphone {
  font-size: 35px;
}
.tel_contact__item .txt1 {
  font-size: 0.88888em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact__item .telphone {
    font-size: min(calc(33px + 27 * (100vw - 768px) / 732), 60px);
  }
}

/* contact form 7 */
.wpcf7-spinner {
  position: fixed !important;
  left: 50%;
  top: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
}

#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 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;
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #9BAABD;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #9BAABD;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  width: 15em;
  padding-left: 1em;
}
.table-contact > tbody > tr > th.hisu {
  background-image: url("../images/common/hisu.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm, .table-contact > tbody > tr > td .p-postal-code {
  width: auto !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;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  padding-left: 1.2em;
  margin: 2rem 0 0;
  position: relative;
}
#policy .contents h5:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
}
#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) " )";
}

/* -------------------------------
	公司简介
-------------------------------- */
body.chinese .page-content {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "SimSun", "PingFang TC", "Microsoft JhengHei", "Hiragino Sans", "Meiryo", "Yu Gothic", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

/* */
.chinese_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.5625vw, 30px);
}

/* 
 * スクロールエフェクト（CSS変数対応）
 */
:root {
  --amn-opacity: 0;
  --amn-opacity-active: 1;
  --amn-translateY: 50px;
  --amn-translateY-active: 0;
  --amn-translateX: 100px;
  --amn-translateX-active: 0;
  --amn-transition-duration: 1s;
  --amn-transition-ease: ease;
  --amn-mask-transition: 1s cubic-bezier(.96,.02,.55,1);
  --amn-marker-bg: rgba(254,239,68,1);
  --amn-marker-bg-transparent: rgba(254,239,68,0);
  --amn-marker-transition: 3s ease;
}

/* フェード */
@media screen {
  /* アニメーション: 上下左右 */
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    opacity: var(--amn-opacity);
    transition: opacity var(--amn-transition-duration) var(--amn-transition-ease), transform var(--amn-transition-duration) var(--amn-transition-ease);
  }

  .amn-fade-up {
    transform: translateY(var(--amn-translateY));
  }
  .amn-fade-up.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--amn-translateY) * -1));
  }
  .amn-fade-down.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  .amn-fade-left {
    transform: translateX(var(--amn-translateX));
  }
  .amn-fade-left.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateX(var(--amn-translateX-active));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--amn-translateX) * -1));
  }
  .amn-fade-right.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateX(var(--amn-translateX-active));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
    /* duration や delay, easing はJS側でインライン指定 */
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen {
  /* 横並びの要素を遅延して表示させる */
  .js-row-1 > * {
    opacity: var(--amn-opacity);
    transform: translateY(var(--amn-translateY));
    transition: opacity var(--amn-transition-duration) var(--amn-transition-ease), transform var(--amn-transition-duration) var(--amn-transition-ease);
  }
  .js-row-1 > *.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  /* マスクエフェクト */
  .amn-lr-open {
    opacity: var(--amn-opacity);
    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(--amn-mask-transition);
  }
  .amn-lr-open.is-active {
    opacity: var(--amn-opacity-active);
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }

  /* マスクアップ */
  .amn-mask-up {
    display: inline-block;
    opacity: var(--amn-opacity);
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--amn-transition-duration) var(--amn-transition-ease);
  }
  .amn-mask-up.is-active {
    opacity: var(--amn-opacity-active);
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }

  /* マーカーエフェクト */
  .amn-marker-yellow {
    background: linear-gradient(to bottom, var(--amn-marker-bg-transparent) 0%, var(--amn-marker-bg-transparent) 0%, var(--amn-marker-bg-transparent) 50%, var(--amn-marker-bg) 50%, var(--amn-marker-bg) 90%, var(--amn-marker-bg-transparent) 90%, var(--amn-marker-bg-transparent) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--amn-marker-transition);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/*
 * シャッターエフェクト
 *
 */
@media screen {
  .amn-shutter {
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #73b400;
    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 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0s alternate forwards, shutter2_lr_2 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0.7s alternate forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s alternate forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0s alternate forwards, shutter2_rl_2 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0.7s alternate forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s alternate 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;
  }
}
/* ---  --- */
@media screen {
  .amn-oem-flow-li {
    opacity: var(--amn-opacity);
    transition: opacity var(--amn-transition-duration) var(--amn-transition-ease), transform var(--amn-transition-duration) var(--amn-transition-ease);
  }
}
@media screen and (max-width: 767px) {
  .amn-oem-flow-li {
    transform: translateY(var(--amn-translateY));
  }
  .amn-oem-flow-li.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }
}
@media print, screen and (min-width: 768px) {
  .amn-oem-flow-li {
    transform: translateX(calc(var(--amn-translateX) * -1));
  }
  .amn-oem-flow-li.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateX(var(--amn-translateY-active));
  }
}

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