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

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

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

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-dot-1 {
  list-style: none;
  padding-left: 0;
}
.list-dot-1 > li {
  padding-left: 1.01em;
  position: relative;
}
.list-dot-1 > li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.list-slash-inline {
  list-style: none;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .list-slash-inline {
    display: flex;
    flex-wrap: wrap;
  }
  .list-slash-inline > li + li:before {
    content: "/";
    margin: 0 0.5em;
  }
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  border-top: dashed 1px #aaa;
  height: 0;
}

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

.photo-kage {
  box-shadow: 0px 5px 28px 1.5px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.btn-1 {
  --color: #222222;
  --bg: #fff;
  color: var(--color);
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  border: solid 1px var(--color);
  padding: 0.9375em 2.3em;
  position: relative;
  transition: color .3s ease, background .3s ease;
}
.btn-1 .line {
  flex: 0 0 1.33334em;
  height: 0.33334em;
  display: block;
  margin-left: auto;
  border-bottom: solid 1px var(--color);
  overflow: hidden;
  position: relative;
}
.btn-1 .line::before {
  content: "";
  position: absolute;
  right: 1px;
  bottom: -1px;
  width: 0.44445em;
  height: 0.44445em;
  border-right: solid 1px var(--color);
  transform: translateY(50%) rotate(-45deg);
}
.btn-1:hover {
  color: var(--bg);
  background-color: var(--color);
}
.btn-1:hover .line {
  border-bottom: solid 1px var(--bg);
}
.btn-1:hover .line::before {
  border-right: solid 1px var(--bg);
}
.btn-1.white {
  --color: #fff;
  --bg: #222;
}
.btn-1.fs-en {
  font-size: 1.125rem;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.btn-w-208 {
  min-width: 208px;
  white-space: nowrap;
}

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

/* --- keyframes --- */
@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.box-line01 {
  padding: 2.6em 2.6em;
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/common/line01-left.svg"), url("../images/common/line01-right.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 5em auto, 5em auto;
}
@media print, screen and (min-width: 992px) {
  .box-line01 {
    padding: 2.6em 3.5em;
  }
}

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

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

a.tel_link {
  color: inherit;
}

/* -------------------------------
	splide基本設定
-------------------------------- */
.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev, .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #6e8f00;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide__arrow--prev svg, .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}

.splide__arrow--prev {
  left: 15px;
}
.splide__arrow--prev svg {
  transform: scale(-1, 1);
}

.splide__arrow--next {
  right: 15px;
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* ページング */
.splide__pagination {
  font-size: 0;
  gap: 3px 5px;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #fff;
}
.splide__pagination__page.is-active {
  background-color: #6e8f00;
  pointer-events: auto;
}

/* -------------------------------
	テキスト　無限ループ
-------------------------------- */
.text-loop {
  --time: 40s;
  line-height: 1;
  height: 1em;
  overflow: hidden;
  pointer-events: none;
}
.text-loop__box {
  display: flex;
  width: 100vw;
}
.text-loop__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: .25em;
}
.text-loop__item:nth-child(odd) {
  animation: text_loop var(--time) calc(0s - (var(--time) / 2)) linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 var(--time) linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	上部　カテゴリー
-------------------------------- */
.cat_navi .catbtn {
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.75em 1em;
  background: url("../images/common/bg002.jpg");
  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;
  border: solid 1px #222;
  border-top: none;
}
@media print, screen and (min-width: 768px) {
  .cat_navi .catbtn {
    display: none;
  }
  .cat_navi .catnavi {
    display: block;
    border: none;
  }
}

/* カテゴリー　一覧デザイン SP */
.cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cat_navi_list > li {
    line-height: 1.5;
  }
  .cat_navi_list > li > a {
    color: #222;
    text-decoration: none;
    padding: 0.8em 3em 0.8em 1em;
    display: block;
    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.active > a {
    background: url("../images/common/bg001.jpg");
  }
}

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 768px) and (min-width: 992px) {
  .cat_navi_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media print, screen and (min-width: 768px) and (min-width: 1200px) {
  .cat_navi_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media print, screen and (min-width: 768px) {
  .cat_navi_list > li > a {
    color: #222;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5em 3em 0.5em 1em;
    border: solid 1px #222;
    background-color: rgba(34, 34, 34, 0);
    position: relative;
    z-index: 0;
    transition: color .3s ease;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover {
    color: #222;
  }
  .cat_navi_list > li > a:hover:after {
    animation: arrow-out-in 0.4s ease-in-out forwards;
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background-color: #222;
    pointer-events: none;
  }
}

/* -------------------------------
	ページング
-------------------------------- */
.paging {
  font-size: 13px;
  line-height: normal;
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
}
.paging span {
  display: block;
  flex: 0 0 2.6em;
  height: 2.6em;
  margin: 2px 3px;
  overflow: hidden;
}
.paging span.paging-text {
  cursor: pointer;
}
.paging span.current {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #222;
  background-color: #222;
  cursor: auto;
}
.paging span.paging-text a {
  color: #999;
  border: solid 1px #999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border 0.3s ease;
}
.paging span.paging-text a:hover {
  color: #222;
  border-color: #222;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background: url("../images/common/bg001.jpg");
}

.bg-cr-2 {
  background: url("../images/common/bg002.jpg");
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mtb-lg-150 {
    margin-top: min(calc(52px + 98 * (100vw - 375px) / 1025), 150px);
    margin-bottom: min(calc(52px + 98 * (100vw - 375px) / 1025), 150px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1025), 50px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ptb-lg-150 {
    padding-top: min(calc(52px + 98 * (100vw - 375px) / 1025), 150px);
    padding-bottom: min(calc(52px + 98 * (100vw - 375px) / 1025), 150px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

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

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

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

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

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

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

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

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

.clearfix {
  display: flow-root;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  line-height: 1.5;
  padding-left: 0.5em;
  border-left: solid 0.2em #c05106;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  color: #4d750b;
  font-size: min(calc(40px + 30 * (100vw - 375px) / 1025), 75px);
  line-height: 1.2;
  display: block;
}
.title-hh-1 > .txt {
  font-weight: 400;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  margin-top: .5em;
}
.title-hh-1 > .txt:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-right: 0.6em;
  background-color: #c05106;
}
.title-hh-1.white {
  color: #fff;
}
.title-hh-1.white > .fs-en {
  color: #fff;
}

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

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

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

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

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

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

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

/* -------------------------------
	共通
-------------------------------- */
.page_content {
  position: relative;
  z-index: 0;
}
.page_content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background: url("../images/common/bg002.jpg");
}

.page_content_inner {
  text-align: center;
  padding: min(calc(25px + 25 * (100vw - 375px) / 1025), 50px) 15px;
  border: solid min(calc(5px + 10 * (100vw - 375px) / 1025), 15px) #fff;
  box-shadow: 0 0 0 1px #cfcfcf inset;
  background-color: #fff;
}
.page_content_inner .page_content_item {
  display: inline-block;
  vertical-align: middle;
}
.page_content_inner h2 {
  text-align: center;
}
.page_content_inner h2 > .fs-en {
  color: #4d750b;
  font-size: min(calc(44px + 44 * (100vw - 375px) / 1025), 88px);
  line-height: 1.2;
  display: block;
}
.page_content_inner h2 > .txt {
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .5em;
}
.page_content_inner h2 > .txt:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-right: 0.6em;
  background-color: #c05106;
}
.page_content_inner .telphone {
  font-size: min(calc(24px + 12 * (100vw - 375px) / 1025), 36px);
}
.page_content_inner .txt2 {
  font-size: min(calc(13px + 2 * (100vw - 375px) / 1025), 15px);
  margin-bottom: 40px;
  margin-top: .5em;
}
.page_content_inner .btns .btn {
  display: flex;
}
@media print, screen and (min-width: 992px) {
  .page_content_inner h2 {
    text-align: left;
  }
  .page_content_inner h2 > .txt {
    justify-content: flex-start;
  }
  .page_content_inner p {
    text-align: left;
  }
}

/* -------------------------------
	アコーディオン
-------------------------------- */
.accordion-box + .accordion-box {
  margin-top: 5px;
}
.accordion-box > .ttl {
  color: #fff;
  font-weight: 400;
  font-size: min(calc(18px + 4 * (100vw - 375px) / 1025), 22px);
  line-height: 1.5;
  padding: 0.5em 3em 0.5em 1.5em;
  background-color: #4d750b;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.accordion-box > .ttl .accordion_plus, .accordion-box > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.accordion-box > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.accordion-box > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #fff;
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.accordion-box > .column {
  display: none;
  padding: 30px 15px;
  background-color: #fff;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  --bottom: min(11.66666vw, 224px);
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
#mainvisual:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: var(--bottom);
  background: url("../images/common/bg001.jpg");
  pointer-events: none;
}
#mainvisual .mainvisual_wrap {
  width: 100%;
  overflow: hidden;
}
#mainvisual .inner {
  width: 100%;
  padding-left: min(5.98958vw, 115px);
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    --bottom: 224px;
    margin-top: 150px;
  }
}

.mainvisual_image {
  margin-left: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .mainvisual_image {
    margin-left: 37.5%;
  }
}

.mainvisual_content {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: var(--bottom);
  width: 100%;
}
.mainvisual_content h2 {
  font-weight: 400;
  font-size: calc(var(--app-w) / 15);
  line-height: normal;
  text-shadow: 0px 5px 9px rgba(0, 0, 0, 0.1);
  margin: 0;
  position: relative;
  z-index: 10;
}
.mainvisual_content h2 small {
  font-size: 0.7272727em;
}
.mainvisual_content .subtxt {
  font-weight: 700;
  font-size: calc(var(--app-w) / 20.83334);
  line-height: normal;
  padding-left: 1.66666em;
  margin-left: 0.5em;
  position: relative;
  z-index: 10;
}
.mainvisual_content .subtxt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25em;
  height: 1px;
  background-color: #fff;
}
.mainvisual_content .text-loop {
  color: rgba(0, 0, 0, 0.08);
  font-size: calc(var(--app-w) / 4.725);
  transform: translateY(43%);
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content {
    color: #222;
  }
  .mainvisual_content h2 {
    font-size: clamp(55px, 4.583334vw, 88px);
  }
  .mainvisual_content .subtxt {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .mainvisual_content .subtxt::before {
    background-color: #7f7f7f;
  }
  .mainvisual_content .text-loop {
    font-size: 180px;
    z-index: -1;
  }
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  background-color: #fff;
  overflow: hidden;
}
.splide01 .slide {
  background-color: #fff;
}
.splide01 .slide-media {
  width: 100%;
  height: calc(var(--app-h) * 0.6);
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 992px) {
  .splide01 .slide-media {
    width: 100%;
    height: calc(var(--app-h) - 150px);
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 7s 1s linear;
  transform: scale(1);
}
.splide01 .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.15);
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  color: #4d750b;
  font-size: min(calc(44px + 44 * (100vw - 375px) / 1025), 88px);
  line-height: 1.2;
  display: block;
}
.home_ttl_1 > .txt {
  font-weight: 400;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  margin-top: .5em;
}
.home_ttl_1 > .txt:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-right: 0.6em;
  background-color: #c05106;
}
.home_ttl_1.white {
  color: #fff;
}
.home_ttl_1.white > .fs-en {
  color: #fff;
}

/* ---  --- */
.home_who {
  position: relative;
  z-index: 0;
}
.home_who:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg001.jpg");
  mask-image: linear-gradient(to bottom, black 0%, black 75%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.home_who > .bg {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
  width: 64%;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .home_who > .bg {
    top: 50%;
    bottom: auto;
    transform: translateY(-40%);
    width: min(46%, 808px);
  }
}
.home_who .photo {
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .home_who .photo {
    aspect-ratio: auto;
  }
}
.home_who .home_who_content h2 {
  color: var(--primary);
  font-size: min(calc(32px + 32 * (100vw - 375px) / 1025), 64px);
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 0.8em;
}
.home_who .home_who_content p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1025), 24px);
  line-height: 2.5;
}
@media print, screen and (min-width: 768px) {
  .home_who .home_who_content p {
    font-size: min(calc(16px + 8 * (100vw - 768px) / 632), 24px);
  }
}

/* ---  --- */
.home_about {
  position: relative;
  z-index: 0;
}
.home_about .home_about_wrap {
  position: relative;
  z-index: 0;
}
.home_about .image {
  margin-bottom: 1rem;
}
.home_about .image .photo {
  aspect-ratio: 16/9;
}
@media print, screen and (min-width: 992px) {
  .home_about {
    position: relative;
  }
  .home_about .image {
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: -60px;
    bottom: 0;
    width: 41.5%;
  }
  .home_about .image .photo {
    height: 100%;
    aspect-ratio: auto;
  }
}
.home_about .text-loop {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  color: #fff;
  font-size: clamp(100px, 12.5vw, 250px);
  width: 100%;
}

/* ---  --- */
.home_business {
  color: #fff;
  background: url("../images/common/bg002.jpg");
}

.home_business_inner {
  position: relative;
}
.home_business_inner .btns {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .home_business_inner .btns {
    margin-top: 50px;
  }
}

.home_business_figure {
  width: 280px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .home_business_figure {
    width: 100%;
  }
}
.home_business_figure figcaption {
  color: #fff;
  font-size: clamp(14px, calc(var(--width-ww) / 19.5), 20px);
  height: 5em;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
.home_business_figure figcaption .num {
  font-size: 4.8em;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -.5em;
  opacity: 0.1;
}
.home_business_figure figcaption h3 {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  margin: auto 0;
  padding-left: 3.5em;
  white-space: nowrap;
}
a > .home_business_figure > .photo {
  overflow: hidden;
}
a > .home_business_figure > .photo img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
a > .home_business_figure:hover .photo > img {
  transform: scale(1.2);
  transition: transform 1s ease;
}

/* ---  --- */
.home_company .photo {
  aspect-ratio: 16/9;
}
@media print, screen and (min-width: 992px) {
  .home_company .photo {
    aspect-ratio: auto;
    height: calc(100% - 50px);
    margin-top: 50px;
  }
}

/* ---  --- */
.home_maintenance {
  position: relative;
  z-index: 0;
}
.home_maintenance .text-loop {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  color: #fff;
  font-size: clamp(100px, 12.5vw, 250px);
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .home_maintenance .photo {
    height: 100%;
    margin-left: calc(-15px - 65 * (100vw - 375px) / 1025);
  }
}
@media print, screen and (min-width: 1400px) {
  .home_maintenance .photo {
    margin-left: calc((1230px - 100vw) / 2);
  }
}

.home_maintenance_content {
  padding-bottom: 1.5rem;
}
@media print, screen and (min-width: 992px) {
  .home_maintenance_content {
    padding: 60px 0;
  }
}

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

.home_recruit_content {
  color: #fff;
  padding-top: min(calc(50px + 100 * (100vw - 375px) / 1025), 150px);
  padding-bottom: min(calc(80px + 80 * (100vw - 375px) / 1025), 160px);
  background: url("../images/home/home_recruit_bg.jpg") no-repeat center center/cover;
}
.home_recruit_content h3 {
  font-size: 20px;
  line-height: normal;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_content h3 {
    font-size: 24px;
  }
}

.home_recruit_btn .btn {
  color: #fff;
  font-size: min(calc(24px + 24 * (100vw - 375px) / 1025), 48px);
  display: grid;
  place-items: center;
  width: 12.5em;
  height: 3.4375em;
  padding: 0;
  margin: -1.71875em auto 0;
  border: none;
  box-shadow: 0px 5px 28px 1.5px rgba(0, 0, 0, 0.15);
  background: url("../images/home/home_recruit_bg.png") no-repeat center center/cover;
  position: relative;
  z-index: 0;
  transition: box-shadow 0.3s ease;
}
.home_recruit_btn .btn:before {
  content: "";
  position: absolute;
  inset: 0.208334em;
  border: solid 1px #f2ae80;
  pointer-events: none;
}
.home_recruit_btn .btn > .in {
  display: block;
}
.home_recruit_btn .btn .fs-en {
  line-height: 1;
  display: flex;
  align-items: center;
}
.home_recruit_btn .btn .fs-en .line {
  flex: 0 0 1.33334em;
  height: 0.33334em;
  display: block;
  margin-left: 0.625em;
  border-bottom: solid 2px #fff;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.home_recruit_btn .btn .fs-en .line::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -4px;
  width: 0.44445em;
  height: 0.44445em;
  border-right: solid 2px #fff;
  transform: translateY(50%) rotate(-45deg);
}
.home_recruit_btn .btn .txt {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-top: .5em;
}
.home_recruit_btn .btn:hover {
  box-shadow: 0px 5px 28px 1.5px rgba(0, 0, 0, 0.55);
}
.home_recruit_btn .btn:hover .fs-en .line {
  transform: translateX(0.5em);
}

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

.home_news_content {
  max-width: 1020px;
  margin: 0 auto;
}
.home_news_content .home_news_content_item {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  gap: 10px 0;
  border-bottom: solid 1px #c2c2c2;
  position: relative;
}
.home_news_content .home_news_content_item .date {
  font-size: 15px;
  flex: 0 0 calc(100% - 50px);
  order: 1;
}
.home_news_content .home_news_content_item .date .new {
  color: #c62f06;
  font-size: 14px;
  margin-left: 25px;
}
.home_news_content .home_news_content_item .column {
  flex: 0 0 100%;
  order: 3;
}
.home_news_content .home_news_content_item .file {
  text-align: right;
  flex: 0 0 50px;
  order: 2;
}
.home_news_content .home_news_content_item .file > a {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}
.home_news_content .home_news_content_item .file > a:hover {
  opacity: 0.65;
}
.home_news_content .home_news_content_item .link {
  text-align: right;
  flex: 0 0 100%;
  order: 4;
}
.home_news_content .home_news_content_item .link > a {
  color: #6b6b6b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.home_news_content .home_news_content_item .link > a > .fs-en {
  font-size: 15px;
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .home_news_content .home_news_content_item {
    flex-wrap: nowrap;
    align-items: center;
    padding: 24px 0;
  }
  .home_news_content .home_news_content_item .date {
    flex: 0 0 198px;
    margin: 0;
    order: 1;
  }
  .home_news_content .home_news_content_item .column {
    flex: 1 1 0;
    order: 2;
  }
  .home_news_content .home_news_content_item .file {
    order: 3;
    flex: 0 0 40px;
    padding-left: 15px;
  }
  .home_news_content .home_news_content_item .link {
    order: 4;
    flex: 0 0 78px;
    padding-left: 15px;
  }
  .home_news_content .home_news_content_item .link > a {
    color: #6b6b6b;
    text-decoration: none;
    display: grid;
    place-items: center;
    height: 36px;
    border: solid 1px rgba(255, 255, 255, 0);
    transition: border 0.3s ease;
  }
  .home_news_content .home_news_content_item .link > a > .fs-en {
    display: none;
  }
  .home_news_content .home_news_content_item .link > a:hover {
    border-color: #6b6b6b;
  }
  .home_news_content .home_news_content_item .link > a:hover img {
    animation: arrow-out-in 0.4s ease-in-out forwards;
  }
}

/* -------------------------------
	事業内容
-------------------------------- */
.service_content {
  overflow: hidden;
}
.service_content h3 {
  font-weight: 400;
  font-size: clamp(20px, calc(var(--measure-width) / 16.66667), 36px);
  line-height: 1.5;
  padding: 1.75em 0 0;
  position: relative;
  z-index: 0;
}
.service_content h3 .num {
  color: #000;
  font-size: 4em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -15px;
  z-index: -1;
  opacity: 0.1;
}
.service_content h3 strong {
  color: var(--primary);
  font-weight: 400;
  font-size: 1.125em;
}
.service_content p {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1025), 20px);
  line-height: 2.2;
}

@media print, screen and (min-width: 992px) {
  .service_content:nth-child(odd) .service_content_image {
    margin-right: var(--edge);
    margin-left: min(calc(25px + 50 * (100vw - 992px) / 408), 75px);
  }

  .service_content:nth-child(even) .service_content_image {
    margin-left: var(--edge);
    margin-right: min(calc(25px + 50 * (100vw - 992px) / 408), 75px);
  }
  .service_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
}
.service_list_1 {
  line-height: 1.5;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
}
.service_list_1 > li {
  color: #000;
  text-align: center;
  flex-grow: 1;
  padding: 0.15em 0.75em 0.25em;
  border: solid 1px rgba(34, 34, 34, 0.25);
  background-color: rgba(34, 34, 34, 0.1);
}

/* -------------------------------
	保守点検
-------------------------------- */
/* ---  --- */
.maintenance_content {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.maintenance_content .text-loop {
  position: absolute;
  left: 0;
  top: -.15em;
  z-index: -1;
  color: #fff;
  font-size: clamp(100px, 12.5vw, 250px);
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
}
.maintenance_content .maintenance_ttl_1 {
  color: var(--primary);
  font-size: min(calc(16px + 20 * (100vw - 375px) / 1025), 36px);
  line-height: 2.2;
  text-align: center;
  margin: 0;
}

.maintenance_item .ttl {
  color: var(--primary);
  font-weight: 400;
  font-size: min(calc(23px + 15 * (100vw - 375px) / 1025), 38px);
  margin-top: 1.5rem;
}
.maintenance_item .photo {
  aspect-ratio: 16/9;
}
@media print, screen and (min-width: 992px) {
  .maintenance_item > div:first-child {
    order: 13;
  }
  .maintenance_item .photo {
    aspect-ratio: auto;
  }
  .maintenance_item .maintenance_item_column {
    padding-right: min(calc(25px + 50 * (100vw - 992px) / 408), 75px);
  }
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
.recruit_nav_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.recruit_nav_list > li {
  flex: 0 0 calc((100% - 5px) / 2);
}
.recruit_nav_list > li .btn {
  font-size: 13px;
  display: flex;
  padding: 0.75em 1em;
}
@media print, screen and (min-width: 768px) {
  .recruit_nav_list {
    gap: 10px;
  }
  .recruit_nav_list > li {
    flex: 0 0 calc((100% - 20px) / 3);
  }
  .recruit_nav_list > li .btn {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_nav_list > li {
    flex: 0 0 calc((100% - 40px) / 5);
  }
  .recruit_nav_list > li .btn {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 408), 16px);
    padding: 1em;
  }
}

/* ---  --- */
.recruit_message {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.recruit_message .bg {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 992px) {
  .recruit_message .bg {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: 59.75%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 40%, black 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 40%, black 100%);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
  .recruit_message .bg img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.recruit_message .recruit_message_ttl {
  color: var(--primary);
  font-size: min(calc(20px + 16 * (100vw - 375px) / 1025), 36px);
  line-height: 2;
  text-shadow: 0 0 0.05em #fff, 0 0 0.1em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff;
}
@media print, screen and (min-width: 992px) {
  .recruit_message .recruit_message_content {
    width: 64%;
    max-width: 615px;
    padding-top: 50px;
  }
  .recruit_message .recruit_message_content .columns {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.75);
  }
}

/* ---  --- */
.recruit_ideal_figure {
  padding: 30px 30px 50px;
  background: url("../images/common/bg002.jpg");
  position: relative;
  z-index: 0;
}
.recruit_ideal_figure:before {
  content: "";
  position: absolute;
  inset: 5px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  z-index: -1;
  pointer-events: none;
}
.recruit_ideal_figure .image {
  width: min(40%, 128px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 5%;
  margin: 0 auto 15px;
  background: url("../images/common/body_bg.jpg");
}
.recruit_ideal_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.recruit_ideal_figure figcaption {
  color: #fff;
}
.recruit_ideal_figure figcaption h4 {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}
.recruit_ideal_figure figcaption p {
  line-height: 1.75;
}
@media print, screen and (min-width: 992px) {
  .recruit_ideal_figure figcaption h4 {
    font-size: clamp(18px, calc(var(--width-ww) / 11.7857), 28px);
    display: grid;
    place-items: center;
    min-height: 3em;
  }
  .recruit_ideal_figure figcaption p {
    line-height: 1.75;
  }
}

/* ---  --- */
.recruit_flow_figure {
  padding: 40px 30px 50px;
  background: url("../images/common/bg002.jpg");
  position: relative;
  z-index: 0;
}
.recruit_flow_figure:before {
  content: "";
  position: absolute;
  inset: 5px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  z-index: -1;
  pointer-events: none;
}
.recruit_flow_figure .image {
  width: min(45%, 128px);
  aspect-ratio: 1/1;
  padding: 9%;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: url("../images/common/body_bg.jpg");
}
.recruit_flow_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.recruit_flow_figure figcaption {
  color: #fff;
}
.recruit_flow_figure figcaption h4 {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}
.recruit_flow_figure figcaption p {
  font-size: 0.875rem;
  line-height: 1.75;
}
@media print, screen and (min-width: 992px) {
  .recruit_flow_figure figcaption h4 {
    font-size: clamp(18px, calc(var(--width-ww) / 11.7857), 28px);
  }
  .recruit_flow_figure figcaption p {
    line-height: 1.75;
  }
}

/* ---  --- */
.recruit_job .btn {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.recruit_job .btn .in {
  text-align: center;
  display: block;
}
.recruit_job .btn .in .fs-en {
  font-size: min(calc(20px + 10 * (100vw - 375px) / 393), 30px);
}
.recruit_job .btn .line {
  position: absolute;
  right: 2em;
  top: 50%;
  width: 1.33334em;
}

/* -------------------------------
	お知らせ
-------------------------------- */
.news_list_item {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 0;
  padding: 24px 0;
  border-bottom: solid 1px #c2c2c2;
}
.news_list_item .date {
  font-size: 15px;
  flex: 0 0 100%;
}
.news_list_item .date .new {
  color: #c62f06;
  font-size: 14px;
  margin-left: 25px;
}
.news_list_item .cat {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.news_list_item .cat > .in {
  padding: 0.25em 1.5em;
  background-color: #222;
}
.news_list_item .column {
  flex: 0 0 100%;
}
.news_list_item .link {
  text-align: right;
  flex: 0 0 100%;
  order: 4;
}
.news_list_item .link > a {
  color: #6b6b6b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.news_list_item .link > a > .fs-en {
  font-size: 15px;
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .news_list_item .date {
    flex: 0 0 198px;
  }
}
@media print, screen and (min-width: 992px) {
  .news_list_item {
    flex-wrap: nowrap;
    padding: 15px;
    position: relative;
    z-index: 0;
  }
  .news_list_item .cat {
    flex: 0 0 10em;
    text-align: center;
  }
  .news_list_item .cat > .in {
    width: 100%;
    padding: 0.25em;
  }
  .news_list_item .column {
    flex: 1 1 0;
    padding-left: 20px;
  }
  .news_list_item .link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .news_list_item .link > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
  }
  .news_list_item .link > a .fs-en {
    display: none;
  }
  .news_list_item:has(.link) {
    padding-right: 50px;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing), background 0.3s ease;
  }
  .news_list_item:has(.link):hover {
    background-color: rgba(0, 0, 0, 0.15);
  }
}

/* ---  --- */
.news_detail .date {
  font-size: 15px;
  margin-bottom: 0.5rem;
}
.news_detail .date .new {
  color: #c62f06;
  font-size: 14px;
  margin-left: 25px;
}

/* --- gallery --- */
.splide-gallery {
  margin: 0 auto;
}
.splide-gallery .splide__inner {
  position: relative;
}
.splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 16 / 9;
  background-color: #fafafa;
}

/* 前へ / 次へボタン */
.splide-gallery .splide__arrow--prev, .splide-gallery .splide__arrow--next {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1025), 16px);
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #222;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide-gallery .splide__arrow--prev svg, .splide-gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide-gallery .splide__arrow--prev:hover, .splide-gallery .splide__arrow--next:hover {
  outline: none;
}
.splide-gallery .splide__arrow--prev {
  left: -0.75em;
}
.splide-gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide-gallery .splide__arrow--next {
  right: -0.75em;
}
.splide-gallery .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.splide-gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* サムネイル */
.splide-gallery .splide__pagination {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.splide-gallery .splide__pagination > li {
  flex: 0 0 calc((100% - (10px * 4)) / 5);
}
@media print, screen and (min-width: 768px) {
  .splide-gallery .splide__pagination > li {
    flex: 0 0 calc((100% - (10px * 7)) / 8);
  }
}
.splide-gallery .splide__pagination > li button {
  width: 100%;
  height: auto;
  border: none;
  padding: 0;
  outline: none;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide-gallery .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background: url("../images/common/bg001.jpg");
}
.tel_contact .tel_contact_column {
  border: solid 5px #fff;
  box-shadow: 0 0 0 1px #cfcfcf inset;
  padding: 30px 15px;
  height: 100%;
  background-color: #fff;
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1025), 50px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tel_contact .telphone i {
  margin-right: 0.2em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 632), 50px);
  }
}
.tel_contact .subtxt {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1025), 16px);
  text-align: center;
  margin-top: 1em;
}

#contactform {
  /**/
}
#contactform .form-control {
  border-color: #D7D7D7;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #D7D7D7;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #D7D7D7;
  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;
  }
}

/* フォーム用　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: 700;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em 0.15em;
  border-radius: 1px;
  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: 9em !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;
  background-color: #fff;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9375rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

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

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

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

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

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --duration: 0.75s;
    --mask-duration: var(--duration) cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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