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

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

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #C6CDD1;
  border-left: 1px solid #C6CDD1;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #C6CDD1;
  border-bottom: 1px solid #C6CDD1;
}
.table-design-2 > tbody > tr > th {
  background: #EFF9FE;
}
.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;
}

/* 画像回り込み */
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;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.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: 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-10r img {
  border-radius: 10px;
}

/* -------------------------------
	画像拡大
-------------------------------- */
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-contact {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(15px + 3 * (100vw - 992px) / 608), 18px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0.72223em 1.66667em;
  border: none;
  border-radius: 10em;
  background: linear-gradient(to right, #0190dc 0%, #0190dc 50%, #4ce7dd 100%);
  background-position: right center;
  background-size: 200% 100%;
  position: relative;
  transition: color .3s ease, background .3s ease;
  position: relative;
}
.btn-contact i {
  font-size: 0.55556em;
  margin-left: 3em;
}
.btn-contact:hover {
  color: #fff;
  background-position: left center;
}

.btn-1 {
  color: #0089d9;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  min-height: 3.88888em;
  display: inline-grid;
  align-items: center;
  border: none;
  border-radius: 0;
  padding: 0.5em 5em 0.5em 0;
  position: relative;
}
.btn-1::before, .btn-1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 0.88888em;
  width: 4.375em;
  height: 4.375em;
  margin-top: -2.1875em;
}
.btn-1::before {
  border-radius: 50%;
  background-image: linear-gradient(90deg, #0089d9 0%, #4ce7dc 100%);
  transition: transform 0.3s ease;
}
.btn-1::after {
  content: "\e900";
  color: #fff;
  font-family: 'icomoon';
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  transform: scale(0.55);
}
.btn-1.fs-en {
  font-weight: 600;
  font-size: 1.125em;
}
.btn-1:hover {
  color: #0089d9;
}
.btn-1:hover::before {
  transform: scale(0.75);
}

.btn-img-1 {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.btn-img-1::before, .btn-img-1::after {
  content: "";
  position: absolute;
  right: 1.875em;
  bottom: 1.875em;
  z-index: 10;
  width: 4.375em;
  height: 4.375em;
}
.btn-img-1::before {
  border-radius: 50%;
  background-image: linear-gradient(90deg, #0089d9 0%, #4ce7dc 100%);
  transition: transform 0.3s ease;
}
.btn-img-1::after {
  content: "\e900";
  color: #fff;
  font-family: 'icomoon';
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  transform: scale(0.55);
}
.btn-img-1 img {
  transition: transform 0.3s ease;
}
.btn-img-1:hover::before {
  transform: scale(0.75);
}
.btn-img-1:hover img {
  transform: scale(1.15);
  transition: transform 1s ease;
}

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

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

/**/
.youtube {
  position: relative;
  padding-bottom: 56.3%;
  background-color: #ccc;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

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

a.tel_link {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

.lh-lg {
  line-height: 2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* ---  --- */
/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  display: grid;
  grid-template-columns: auto;
}
.title-1 > span {
  display: block;
  padding-bottom: 0.25em;
  border-bottom: solid 1px #cfcfcf;
}
.title-1.center {
  justify-content: center;
}

.title-2 {
  line-height: normal;
  border-left: solid 0.2em #0191dc;
  padding-left: 0.5em;
}

.title-hh-1 {
  font-size: 1rem;
  display: grid;
  grid-template-columns: auto;
}
.title-hh-1 > .fs-jp {
  font-weight: 700;
  font-size: 16px;
  display: block;
  padding-left: 1.2em;
  margin-bottom: 1em;
  position: relative;
}
.title-hh-1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 50%;
  width: 0.75em;
  height: 0.75em;
  background: url("../images/common/dot.png") no-repeat center center/contain;
  margin-top: -0.375em;
}
.title-hh-1 > .fs-en {
  color: #63c3e9;
  font-weight: 500;
  font-size: min(calc(35px + 35 * (100vw - 375px) / 1225), 70px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  background-image: url("../images/common/text-bg.png");
  background-repeat: no-repeat;
  background-size: 150% 100%;
  background-position: left top;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.title-hh-1.center {
  justify-content: center;
}
.title-hh-1.text-white > .fs-jp, .title-hh-1.text-white > .fs-en {
  color: #fff;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background: none;
}

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

:root {
  --edge: calc(-15px - 50 * (100vw - 375px) / 1225);
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1470px - 100vw) / 2);
  }
}

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

.gap-30-60 {
  gap: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px) 0;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: calc(var(--app-h) * 0.6);
  background-color: #ccc;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#mainvisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #0191dc, #00dfcd);
  opacity: 0.5;
  pointer-events: none;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: var(--app-h);
  }
}
#mainvisual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}
#mainvisual .slide-media {
  height: calc(var(--app-h) * 0.6);
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .slide-media {
    height: var(--app-h);
  }
}

.mainvisual_content {
  color: #fff;
  position: absolute;
  left: clamp(15px, 6vw, 120px);
  right: clamp(15px, 6vw, 120px);
  bottom: clamp(20px, 5.5vw, 110px);
  z-index: 10;
}
.mainvisual_content .txt1 {
  font-size: min(calc(50px + 126 * (100vw - 375px) / 1545), 176px);
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.mainvisual_content .txt2 {
  font-weight: 900;
  font-size: min(calc(14px + 26 * (100vw - 375px) / 1545), 40px);
  letter-spacing: 0.02em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.mainvisual_content .txt3 {
  font-weight: 600;
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1545), 16px);
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1em;
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
  display: grid;
  grid-template-columns: auto;
}
.home_ttl_1 > .fs-jp {
  font-weight: 700;
  font-size: 16px;
  display: block;
  padding-left: 1.2em;
  margin-bottom: 1em;
  position: relative;
}
.home_ttl_1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 50%;
  width: 0.75em;
  height: 0.75em;
  background: url("../images/common/dot.png") no-repeat center center/contain;
  margin-top: -0.375em;
}
.home_ttl_1 > .fs-en {
  color: #63c3e9;
  font-weight: 500;
  font-size: min(calc(35px + 45 * (100vw - 375px) / 1225), 80px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: block;
  background-image: url("../images/common/text-bg.png");
  background-repeat: no-repeat;
  background-size: 150% 100%;
  background-position: left top;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.home_ttl_1.center {
  justify-content: center;
}
.home_ttl_1.text-white > .fs-jp, .home_ttl_1.text-white > .fs-en {
  color: #fff;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background: none;
}

/* ---  --- */
.home_about {
  position: relative;
  overflow: hidden;
}
.home_about::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(150px, 17.05vw, 341px);
  background: url("../images/common/bg001.png") no-repeat center top/cover;
}
.home_about h3 {
  font-weight: 700;
  font-size: min(calc(22px + 18 * (100vw - 375px) / 1225), 40px);
  text-align: center;
}
.home_about p {
  font-size: min(calc(14px + 10 * (100vw - 375px) / 1225), 24px);
  line-height: 2;
  text-align: center;
}

/* --- --- */
.home_business .home_ttl_1 {
  justify-content: center;
}
.home_business h3 {
  font-weight: 700;
  font-size: min(calc(22px + 18 * (100vw - 375px) / 1225), 40px);
  text-align: center;
}
.home_business .btn_box {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .home_business .home_ttl_1 {
    justify-content: flex-start;
  }
  .home_business h3 {
    text-align: left;
  }
}

.home_business_figure {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.home_business_figure .home_business_figure_img {
  aspect-ratio: 9 / 5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.home_business_figure figcaption h4 {
  font-size: clamp(16px, calc(24px * (var(--ww-item) / 720)), 24px);
  line-height: normal;
  margin-top: 0.8em;
  padding-left: 1em;
  position: relative;
}
.home_business_figure figcaption h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-image: linear-gradient(0deg, #00dfcd 0%, #0191dc 100%);
}
.home_business_figure figcaption h4 > small {
  color: #0190dc;
  font-weight: 500;
  font-size: 15px;
  display: block;
}

/* ---  --- */
.home_equipment {
  margin-bottom: 36px;
  background: url("../images/common/bg002.png") no-repeat center top/150% auto;
}
@media print, screen and (min-width: 992px) {
  .home_equipment {
    background: url("../images/common/bg002.png") no-repeat center top/contain;
  }
  .home_equipment .container-fluid-xl {
    position: relative;
  }
}
.home_equipment .btn_box {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .home_equipment .btn_box {
    text-align: right;
  }
}
@media print, screen and (min-width: 992px) {
  .home_equipment .row > div:nth-child(1) {
    margin-top: min(calc(60px + 60 * (100vw - 992px) / 608), 120px);
  }
  .home_equipment .row > div:nth-child(2) {
    margin-top: 0;
  }
  .home_equipment .row > div:nth-child(3) {
    margin-top: min(calc(60px + 60 * (100vw - 992px) / 608), 120px);
  }
}

.home_equipment_figure {
  max-width: 470px;
  margin: 0 auto;
}
.home_equipment_figure .home_equipment_figure_img .btn-img-1 {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_equipment_figure .home_equipment_figure_img .btn-img-1::before, .home_equipment_figure .home_equipment_figure_img .btn-img-1::after {
  font-size: clamp(5px, calc(13px * (var(--ww-item) / 470)), 13px);
  right: 1em;
  bottom: 1em;
}
.home_equipment_figure .home_equipment_figure_img .btn-img-1 img {
  border-radius: 10px;
}
.home_equipment_figure .home_equipment_figure_img .btn-img-1 .cereal {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(15px, calc(20px * (var(--ww-item) / 470)), 20px);
  line-height: 1.2;
  padding: 0.9em 1.2em 0.7em 1em;
  border-radius: 0 5px 0 0;
  background-color: #fff;
}
.home_equipment_figure figcaption {
  font-size: clamp(12px, calc(16px * (var(--ww-item) / 470)), 16px);
  padding: 1em 0 0 0;
}

/* ---  --- */
.home_recruitment {
  position: relative;
  z-index: 0;
}
.home_recruitment::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  background: url("../images/common/bg003.png") no-repeat center top/cover;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .home_recruitment::before {
    height: 80%;
  }
}

.home_recruitment_head .home_ttl_1 {
  justify-content: center;
}
.home_recruitment_head h3 {
  font-weight: 700;
  font-size: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px);
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .home_recruitment_head {
    display: flex;
    align-items: flex-end;
  }
  .home_recruitment_head .home_ttl_1 {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .home_recruitment_head h3 {
    margin-bottom: 0.25em;
    margin-left: 2em;
  }
}

.home_recruitment_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 992px) {
  .home_recruitment_list {
    display: grid;
    gap: 0 min(calc(30px + 30 * (100vw - 992px) / 608), 60px);
    grid-template-columns: repeat(3, 1fr);
  }
}
.home_recruitment_list > li {
  max-width: 450px;
  margin: 0 auto 25px;
  padding-bottom: 25px;
  border-bottom: solid 1px #cfcfcf;
}
.home_recruitment_list > li:last-child {
  margin-bottom: 0;
}
.home_recruitment_list > li > a {
  font-weight: 700;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 616), 24px);
  line-height: normal;
  text-decoration: none;
  display: grid;
  grid-template-columns: 2.66667em 1fr 1.66667em;
  align-items: center;
  transition: color 0.3s ease;
}
.home_recruitment_list > li > a > .num {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.83334em;
  position: relative;
}
.home_recruitment_list > li > a > .num::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 1.5em;
  margin-top: -.75em;
  background-color: #cfcfcf;
}
.home_recruitment_list > li > a > .txt {
  padding: 0 1.66667em;
}
.home_recruitment_list > li > a > .icon {
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 1px var(--primary);
}
.home_recruitment_list > li > a > .icon i {
  color: var(--primary);
  font-size: 0.45834em;
  line-height: 1;
  letter-spacing: normal;
}
.home_recruitment_list > li > a:hover {
  color: var(--primary);
}
.home_recruitment_list > li > a:hover > .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .home_recruitment_list > li {
    margin: 0;
  }
  .home_recruitment_list > li > a {
    font-size: min(calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

/**/
/* -------------------------------
	事業内容
-------------------------------- */
/* ---  --- */
.business_head {
  position: relative;
  z-index: 0;
}
.business_head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25%;
  z-index: -1;
  width: 100%;
  height: 50%;
  background: url("../images/common/bg002.png") no-repeat center bottom/cover;
  opacity: 0.65;
}

.business_figure_1 .image {
  border-radius: 10px;
  overflow: hidden;
}
.business_figure_1 .image img {
  border-radius: 10px;
}
.business_figure_1 .image a img {
  transition: transform 0.3s ease;
}
.business_figure_1 .image a:hover img {
  transform: scale(1.15);
  transition: transform 0.75s ease;
}
.business_figure_1 figcaption h3 {
  font-size: clamp(16px, calc(24px * (var(--ww-item) / 720)), 24px);
  line-height: normal;
  margin-top: 0.8em;
  margin-bottom: 0.5rem;
  padding-left: 1em;
  position: relative;
}
.business_figure_1 figcaption h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-image: linear-gradient(0deg, #00dfcd 0%, #0191dc 100%);
}

/* ---  --- */
.business_series {
  position: relative;
  z-index: 0;
}
.business_series::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg003.png") no-repeat center bottom/150% auto;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .business_series::before {
    background: url("../images/common/bg003.png") no-repeat center bottom/100% auto;
  }
}

/* ---  --- */
.business_flow_head .title-hh-1 {
  justify-content: center;
}
.business_flow_head h4 {
  font-weight: 700;
  font-size: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px);
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .business_flow_head {
    display: flex;
    align-items: flex-end;
  }
  .business_flow_head .title-hh-1 {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .business_flow_head h4 {
    margin-bottom: 0.25em;
    margin-left: 2em;
  }
}

.business_flow_step_item {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
}
.business_flow_step_item::before {
  content: "";
  position: absolute;
  left: min(calc(70px + 55 * (100vw - 375px) / 1225), 125px);
  bottom: 25px;
  right: 0;
  border-bottom: dashed 1px #cfcfcf;
}
.business_flow_step_item::after {
  content: "\f103";
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--primary);
  width: min(calc(40px + 55 * (100vw - 375px) / 1225), 95px);
  height: 50px;
  display: grid;
  place-items: center;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  opacity: 0.65;
}
.business_flow_step_item:last-child::after {
  display: none;
}
.business_flow_step_item .icon {
  flex: 0 0 min(calc(40px + 55 * (100vw - 375px) / 1225), 95px);
  height: min(calc(40px + 55 * (100vw - 375px) / 1225), 95px);
  text-align: center;
}
.business_flow_step_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.business_flow_step_item .column {
  flex: 1 1 0;
  padding-left: 30px;
}
.business_flow_step_item .column h5 {
  font-weight: 700;
  font-size: min(calc(20px + 10 * (100vw - 375px) / 1225), 28px);
  line-height: normal;
  text-decoration: none;
  display: grid;
  grid-template-columns: 2.25em 1fr;
  align-items: center;
  margin-bottom: 0.5rem;
}
.business_flow_step_item .column h5 > .num {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25em;
  position: relative;
}
.business_flow_step_item .column h5 > .num::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 1em;
  margin-top: -.5em;
  background-color: #cfcfcf;
}
.business_flow_step_item .column h5 > .txt {
  padding: 0 1em;
}

/* ---  --- */
.business_area {
  position: relative;
  z-index: 0;
}
.business_area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg002.png") no-repeat center bottom/100% 100%;
  opacity: 0.65;
  transform: scaleX(-1);
}
.business_area .box-flex-column .title-hh-1 {
  justify-content: center;
}
.business_area .box-flex-column p {
  font-size: min(calc(18px + 22 * (100vw - 375px) / 1225), 40px);
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .business_area .box-flex-column .title-hh-1 {
    justify-content: flex-start;
  }
  .business_area .box-flex-column p {
    text-align: left;
  }
}

/* -------------------------------
	機械紹介
-------------------------------- */
.equipment_navi_list {
  --col:1;
  --gap:20px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px var(--gap);
}
@media print, screen and (min-width: 768px) {
  .equipment_navi_list {
    --col:2;
  }
}
@media print, screen and (min-width: 992px) {
  .equipment_navi_list {
    --col:4;
  }
}
.equipment_navi_list > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.equipment_navi_list > li .btn {
  color: #fff;
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1225), 16px);
  display: block;
  border: solid 1px #0191dc;
  background-color: #0191dc;
  position: relative;
}
.equipment_navi_list > li .btn::after {
  content: "\e900";
  position: absolute;
  right: 15px;
  top: 50%;
  font-family: 'icomoon';
  font-size: 0.5em;
  line-height: 1;
  letter-spacing: normal;
  margin-top: -.5em;
  transform: rotate(90deg);
}
.equipment_navi_list > li .btn:hover {
  color: #0191dc;
  background-color: #fff;
}

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

.equipment_content_item {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 992px) {
  .equipment_content_item {
    max-width: inherit;
  }
  .equipment_content_item .equipment_content_item_image {
    padding-left: min(calc(30px + 60 * (100vw - 992px) / 608), 90px);
  }
  .equipment_content_item:nth-child(odd) .row > div:first-child {
    order: 13;
  }
  .equipment_content_item:nth-child(odd) .equipment_content_item_image {
    padding-right: min(calc(30px + 60 * (100vw - 992px) / 608), 90px);
    padding-left: 0;
  }
}

.equipment_content_item .equipment_content_item_image .photo-ofi img {
  border-radius: 10px;
}
.equipment_content_item .equipment_content_item_column {
  margin-bottom: 2rem;
}
.equipment_content_item .equipment_content_item_column .equipment_content_item_column_dl {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: flex-start;
}
.equipment_content_item .equipment_content_item_column .equipment_content_item_column_dl > dt, .equipment_content_item .equipment_content_item_column .equipment_content_item_column_dl > dd {
  margin: 0;
}
.equipment_content_item .equipment_content_item_column .equipment_content_item_column_dl > dt::after {
  content: "：";
}
@media print, screen and (min-width: 992px) {
  .equipment_content_item .equipment_content_item_column {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}

.equipment_content_item_table table {
  text-align: center;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #0191dc;
}
.equipment_content_item_table table > thead > tr {
  border-bottom: 1px solid #0191dc;
}
.equipment_content_item_table table > thead > tr > th, .equipment_content_item_table table > thead > tr > td {
  font-weight: 900;
  padding: 1em;
  background-color: #E7F6FE;
}
.equipment_content_item_table table > tbody > tr {
  border-bottom: 1px solid #0191dc;
}
.equipment_content_item_table table > tbody > tr > th, .equipment_content_item_table table > tbody > tr > td {
  padding: 1em;
}
@media print, screen and (min-width: 768px) {
  .equipment_content_item_table table {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
  }
}
@media screen and (max-width: 767px) {
  .equipment_content_item_table table.bt {
    border: none;
  }
  .equipment_content_item_table table.bt > thead {
    display: none;
  }
  .equipment_content_item_table table.bt > tbody > tr {
    width: 100%;
    display: block;
    border: none;
    border-top: solid 1px #0191dc;
    border-left: solid 1px #0191dc;
  }
  .equipment_content_item_table table.bt > tbody > tr > td {
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: 10em 1fr;
  }
  .equipment_content_item_table table.bt > tbody > tr > td:before, .equipment_content_item_table table.bt > tbody > tr > td .bt-content {
    padding: 0.75em;
    display: block;
    border-right: solid 1px #0191dc;
    border-bottom: solid 1px #0191dc;
  }
  .equipment_content_item_table table.bt > tbody > tr > td:before {
    content: attr(data-th);
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #E7F6FE;
  }
  .equipment_content_item_table table.bt > tbody > tr > td .bt-content {
    text-align: left;
  }
}

/* -------------------------------
	splide
-------------------------------- */
.splide_gallery .splide__arrow--prev, .splide_gallery .splide__arrow--next {
  font-size: min(calc(10px + 6 * (100vw - 375px) / 1225), 16px);
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #01b4ed;
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  z-index: 20;
}
.splide_gallery .splide__arrow--prev svg, .splide_gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide_gallery .splide__arrow--prev {
  left: 10px;
}
.splide_gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide_gallery .splide__arrow--next {
  right: 10px;
}
.splide_gallery .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.splide_gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}
.splide_gallery .splide__pagination {
  font-size: 0;
  gap: 3px 5px;
  margin-top: 7px;
  position: absolute;
  left: 0;
  width: 100%;
}
.splide_gallery .splide__pagination__page {
  width: 12px;
  height: 12px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #efefef;
}
.splide_gallery .splide__pagination__page.is-active {
  background-color: #01b4ed;
  pointer-events: auto;
}
.splide_gallery .splide-wrapper {
  position: relative;
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_outline {
  position: relative;
  z-index: 0;
}
.company_outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg004.png") no-repeat center top/cover;
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
}

/* ---  --- */
.company_access {
  position: relative;
}
.company_access::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg003.png") no-repeat center top/100% auto;
}
.company_access .googlemap {
  border-radius: 10px;
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 768px) {
  .recruit_demand {
    background: url("../images/common/bg002.png") no-repeat center top 15%/100% auto;
  }
}

.recruit_demand_item {
  max-width: 670px;
  padding: clamp(15px, calc(50px * (var(--ww-item) / 670)), 50px);
  margin: 0 auto;
  border-radius: 10px;
  height: 100%;
  border: solid 1px #c7c7c7;
  background-color: #fff;
}
.recruit_demand_item .icon {
  width: clamp(60px, calc(150px * (var(--ww-item) / 670)), 150px);
  height: clamp(60px, calc(150px * (var(--ww-item) / 670)), 150px);
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(1, 145, 220, 0.25);
  border-radius: 50%;
}
.recruit_demand_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 20%;
}
.recruit_demand_item h4 {
  color: var(--primary);
  text-align: center;
}

/* ---  --- */
.recruit_innumbers {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.recruit_innumbers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg004.png") no-repeat center center/cover;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
}

.recruit_innumbers_item {
  padding: clamp(20px, calc(50px * (var(--ww) / 470)), 50px) 15px;
  border-radius: 10px;
  height: 100%;
  background-color: #fff;
}
.recruit_innumbers_item h4 {
  color: var(--primary);
  font-size: clamp(20px, calc(28px * (var(--ww) / 470)), 28px);
  text-align: center;
}
.recruit_innumbers_item .columns {
  text-align: center;
}
.recruit_innumbers_item .columns .icon {
  width: clamp(60px, calc(150px * (var(--ww) / 470)), 150px);
  height: clamp(60px, calc(150px * (var(--ww) / 470)), 150px);
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(1, 145, 220, 0.25);
  border-radius: 50%;
}
.recruit_innumbers_item .columns .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 20%;
}
.recruit_innumbers_item .columns .txt {
  font-size: clamp(13px, calc(20px * (var(--ww) / 470)), 20px);
  line-height: normal;
}
.recruit_innumbers_item .columns .txt strong {
  font-size: 4em;
  margin-right: 10px;
}

.recruit_innumbers_graph {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 20px;
}
.recruit_innumbers_graph > div .graph_box {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .recruit_innumbers_graph {
    grid-template-columns: auto clamp(150px, calc(300px * (var(--ww) / 720)), 300px);
    justify-content: center;
    gap: min(calc(20px + 30 * (100vw - 768px) / 832), 50px);
  }
}

.recruit_innumbers_dl_1 {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1225), 16px);
  text-align: left;
  white-space: nowrap;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
}
.recruit_innumbers_dl_1 > dt {
  padding-left: 1.2em;
  position: relative;
}
.recruit_innumbers_dl_1 > dt::before {
  content: "■";
  position: absolute;
  left: 0;
}
.recruit_innumbers_dl_1 dd {
  padding-left: 3em;
  position: relative;
}
.recruit_innumbers_dl_1 dd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5em;
  width: 2em;
  border-top: dashed 1px #ccc;
}
.recruit_innumbers_dl_1.style1 > dt:nth-of-type(1)::before {
  color: #529ce9;
}
.recruit_innumbers_dl_1.style1 > dt:nth-of-type(2)::before {
  color: #fb6885;
}
.recruit_innumbers_dl_1.style1 > dt:nth-of-type(3)::before {
  color: #f9a446;
}
.recruit_innumbers_dl_1.style1 > dt:nth-of-type(4)::before {
  color: #f9d25c;
}
.recruit_innumbers_dl_1.style2 > dt:nth-of-type(1)::before {
  color: #6496e7;
}
.recruit_innumbers_dl_1.style2 > dt:nth-of-type(2)::before {
  color: #f76c86;
}

/* ---  --- */
.recruit_benefits_row {
  --col:2;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.recruit_benefits_row > div {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.recruit_benefits_row > div.box1 {
  --col:1;
}
@media print, screen and (min-width: 768px) {
  .recruit_benefits_row {
    --col:3;
    --gap:30px;
    gap: var(--gap);
  }
  .recruit_benefits_row > div.box1 {
    --col:2;
  }
  .recruit_benefits_row > div.box2 {
    --col:4;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_benefits_row > div.box2 {
    --col:4;
  }
}

.recruit_benefits_item {
  border: solid 1px #c7c7c7;
  border-radius: 10px;
  padding: clamp(15px, calc(30px * (var(--ww-item) / 470)), 30px) 15px;
  height: 100%;
  background-color: #fff;
}
.recruit_benefits_item .num {
  color: #ADADAD;
  font-weight: 700;
  font-size: clamp(40px, calc(80px * (var(--ww-item) / 470)), 80px);
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.recruit_benefits_item h4 {
  color: var(--primary);
  font-size: clamp(18px, calc(36px * (var(--ww-item) / 470)), 36px);
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.recruit_benefits_item h4.ttl2 {
  font-size: clamp(11px, calc(20px * (var(--ww-item) / 470)), 30px);
}
.recruit_benefits_item .txt1 {
  font-size: clamp(12px, calc(20px * (var(--ww-item) / 470)), 20px);
  text-align: center;
}
.recruit_benefits_item .icon {
  width: clamp(40px, calc(120px * (var(--ww-item) / 470)), 120px);
  height: clamp(40px, calc(120px * (var(--ww-item) / 470)), 120px);
  margin-left: auto;
  margin-right: auto;
}
.recruit_benefits_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.recruit_benefits_item .column {
  padding-top: 1.5rem;
}

.recruit_benefits_list_1 {
  font-size: clamp(12px, calc(20px * (var(--ww-item) / 470)), 20px);
  list-style: none;
  padding: 0;
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 2em;
  justify-content: center;
}
.recruit_benefits_list_1 > li::before {
  content: "■";
  transform: scale(0.75);
}

/* -------------------------------
	社員インタビュー
-------------------------------- */
/* ---  --- */
.interview_staff_head {
  position: relative;
  z-index: 0;
}
.interview_staff_head::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url("../images/common/bg005.png") no-repeat center top/auto 300px;
}
@media print, screen and (min-width: 768px) {
  .interview_staff_head::before {
    background: url("../images/common/bg005.png") no-repeat center top/100% auto;
  }
}
.interview_staff_head .photo {
  border-radius: 10px;
  overflow: hidden;
}
.interview_staff_head .interview_staff_columns {
  margin-top: 1.5rem;
}
.interview_staff_head .interview_staff_columns .inner {
  text-align: center;
}
.interview_staff_head .interview_staff_columns .inner h3 .busyo {
  font-size: 0.8125em;
}
@media print, screen and (min-width: 768px) {
  .interview_staff_head .interview_staff_columns {
    margin-top: min(calc(15px + 110 * (100vw - 768px) / 832), 125px);
    padding-left: min(calc(15px + 110 * (100vw - 768px) / 832), 125px);
  }
  .interview_staff_head .interview_staff_columns .inner {
    text-align: left;
  }
  .interview_staff_head .interview_staff_columns .inner .joining {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 832), 20px);
  }
  .interview_staff_head .interview_staff_columns .inner h3 {
    font-size: min(calc(26px + 10 * (100vw - 768px) / 832), 36px);
  }
}

/**/
.interview_box {
  text-align: left;
}
.interview_box .interview_box_q, .interview_box .interview_box_a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
}
.interview_box .interview_box_q .icon, .interview_box .interview_box_a .icon {
  width: 100%;
  height: 50px;
  border-radius: 50%;
  background-color: #ccc;
  position: relative;
}
.interview_box .interview_box_q .icon::after, .interview_box .interview_box_a .icon::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 15px;
  height: 20px;
  margin-top: -10px;
  background-color: #ccc;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: -1;
}
.interview_box .interview_box_q .icon img, .interview_box .interview_box_a .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.interview_box .interview_box_q .txt, .interview_box .interview_box_a .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .interview_box .interview_box_q, .interview_box .interview_box_a {
    --icon-size: min(calc(60px + 40 * (100vw - 768px) / 832), 100px);
    grid-template-columns: var(--icon-size) 1fr;
  }
  .interview_box .interview_box_q .icon, .interview_box .interview_box_a .icon {
    height: var(--icon-size);
  }
}
.interview_box .interview_box_q {
  margin-bottom: 30px;
}
.interview_box .interview_box_q .icon {
  background-color: #B5E5FE;
}
.interview_box .interview_box_q .icon::after {
  background-color: #B5E5FE;
}
.interview_box .interview_box_q .txt {
  color: var(--primary);
  font-weight: 700;
  font-size: min(calc(18px + 4 * (100vw - 375px) / 1225), 22px);
}
.interview_box .interview_box_a {
  margin-bottom: 30px;
}
.interview_box .interview_box_a .icon {
  background-color: #EBEBEB;
}
.interview_box .interview_box_a .icon::after {
  background-color: #EBEBEB;
}

@media print, screen and (min-width: 768px) {
  .interview_staff_content .interview_box {
    padding: min(calc(20px + 30 * (100vw - 768px) / 832), 50px);
    border-radius: min(calc(10px + 10 * (100vw - 768px) / 832), 20px);
    margin-bottom: 30px;
    background-color: #E4F5FE;
  }
  .interview_staff_content .interview_box .interview_box_a {
    margin-bottom: 0;
  }
  .interview_staff_content .interview_box .interview_box_a .icon {
    background-color: #fff;
  }
  .interview_staff_content .interview_box .interview_box_a .icon::after {
    background-color: #fff;
  }
}

/**/
.interview_staff_daily_schedule {
  position: relative;
  z-index: 0;
}
.interview_staff_daily_schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/common/bg004.png") no-repeat center center/cover;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 25%, black 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 25%, black 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  opacity: 0.15;
}
.interview_staff_daily_schedule .ttl > .fs-jp {
  font-size: 16px;
  display: block;
  margin-bottom: 0.75em;
}
.interview_staff_daily_schedule .ttl > .fs-en {
  color: var(--primary);
  font-size: min(calc(35px + 15 * (100vw - 375px) / 1225), 50px);
  line-height: normal;
  text-transform: uppercase;
  display: block;
}

.schedule_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .schedule_list > li {
    display: grid;
    grid-template-columns: 4.2em 1fr;
    align-items: stretch;
  }
  .schedule_list > li > .date {
    text-align: right;
  }
  .schedule_list > li > .date::after {
    content: "";
    margin-left: 2.25em;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 1px;
    height: 30px;
    display: block;
    background-color: #ccc;
  }
  .schedule_list > li > .column {
    padding-left: 50px;
    position: relative;
  }
  .schedule_list > li > .column::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0.875em;
    width: 30px;
    border-top: dotted 1px #ccc;
  }
  .schedule_list > li:last-child > .date::after {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .schedule_list {
    --col:4;
    --gap:1px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px var(--gap);
  }
}
@media print, screen and (min-width: 768px) and (min-width: 992px) {
  .schedule_list {
    --col:5;
  }
}
@media print, screen and (min-width: 768px) {
  .schedule_list > li {
    font-size: min(calc(14px + 4 * (100vw - 768px) / 832), 18px);
    letter-spacing: 0.02em;
    flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
    position: relative;
    z-index: 0;
  }
  .schedule_list > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1em;
    right: 0;
    border-top: dotted 1px #0191dc;
    z-index: -1;
  }
  .schedule_list > li > .date {
    color: #fff;
    font-size: 0.9375em;
    line-height: normal;
    width: 5em;
    height: 2em;
    border-radius: 10em;
    display: grid;
    place-items: center;
    margin: 0 auto;
    background-color: #0191dc;
  }
  .schedule_list > li .column {
    text-align: center;
    margin-top: 0.5em;
  }
  .schedule_list > li:first-child::before {
    left: 50%;
  }
  .schedule_list > li:last-child::before {
    right: 50%;
  }
}

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

.loop_splide_photo {
  width: clamp(180px, 31.8vw, 636px);
  aspect-ratio: 4/3;
}
.loop_splide_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---  --- */
.interview_flow {
  position: relative;
  z-index: 0;
}
.interview_flow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: -1;
  width: 100%;
  aspect-ratio: 500 / 221;
  background: url("../images/common/bg003.png") no-repeat center top/cover;
}
.interview_flow h4 {
  text-align: center;
}

.interview_flow_step {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 30px;
}
.interview_flow_step .interview_flow_step_label {
  color: #fff;
  font-size: min(calc(16px + 16 * (100vw - 375px) / 1225), 32px);
  line-height: normal;
  text-align: center;
  width: 6.25em;
  height: 100%;
  aspect-ratio: 1/1.5;
  display: grid;
  place-items: center;
  padding-bottom: 1em;
  background: url("../images/common/text-bg.png") no-repeat center center/cover;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
}
.interview_flow_step .interview_flow_step_column {
  padding-left: min(calc(15px + 45 * (100vw - 375px) / 1225), 60px);
  padding-top: min(calc(5px + 25 * (100vw - 375px) / 1225), 30px);
}
.interview_flow_step .interview_flow_step_column h5 {
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1225), 28px);
}
.interview_flow_step .interview_flow_step_column .txt1 {
  color: #fff;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  padding: 1em 2em;
  border-radius: 10px;
  display: inline-grid;
  background-color: var(--primary);
}

/* ---  --- */
.interview_career h3 {
  color: #0191dc;
  font-size: min(calc(20px + 18 * (100vw - 375px) / 1225), 38px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.interview_career h3::before, .interview_career h3::after {
  content: "";
  flex: 0 0 3px;
  height: 2em;
  background-color: #0191dc;
}
.interview_career h3::before {
  transform: skewX(20deg);
  margin-right: 1em;
}
.interview_career h3::after {
  transform: skewX(-20deg);
  margin-left: 1em;
}

/* -------------------------------
	募集要項
-------------------------------- */
/* ---  --- */
.requirements_flow {
  position: relative;
  z-index: 0;
}
.requirements_flow::before {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url("../images/common/bg001.png") no-repeat center top/cover;
  pointer-events: none;
  opacity: 0.25;
}

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

.requirements_flow_item {
  max-width: 360px;
  margin: 0 auto;
  position: relative;
}
.requirements_flow_item::after {
  content: "\f103";
  color: var(--primary);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}
.requirements_flow_item.last::after {
  display: none;
}
.requirements_flow_item h4 {
  color: #fff;
  font-size: 20px;
  width: 100%;
  height: 4em;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin: 0;
  background: url("../images/common/bg004.png") no-repeat center center/cover;
}
.requirements_flow_item .column {
  line-height: 1.5;
  text-align: center;
  padding: 15px 15px 0;
}
@media print, screen and (min-width: 768px) {
  .requirements_flow_item {
    max-width: inherit;
  }
  .requirements_flow_item::after {
    display: none;
  }
  .requirements_flow_item h4 {
    font-size: min(calc(20px + 8 * (100vw - 768px) / 832), 28px);
    border-radius: 0;
    clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
  }
  .requirements_flow_item .column {
    font-size: min(calc(14px + 4 * (100vw - 768px) / 832), 18px);
    height: calc((4em * 1.5) + 1em);
    padding-bottom: 1em;
    display: grid;
    place-items: center;
    border-bottom: solid 1px #c7c7c7;
    padding: 0 15px;
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  color: #fff;
  padding: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px) min(calc(15px + 45 * (100vw - 375px) / 1225), 60px);
  border-radius: 10px;
  background-image: linear-gradient(14deg, #0191dc 0%, #00dfcd 100%);
}
.tel_contact h3 {
  font-size: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
  text-align: center;
  margin-bottom: 0;
}
.tel_contact .telphone {
  font-size: min(calc(28px + 18 * (100vw - 375px) / 1225), 56px);
  text-align: center;
}
.tel_contact .telphone i {
  font-size: 0.75em;
  margin-right: 0.25em;
}
.tel_contact p {
  font-weight: 400;
  font-size: min(calc(13px + 5 * (100vw - 375px) / 1225), 18px);
  text-align: center;
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .row > div:first-child {
    border-right: solid 1px #fff;
  }
  .tel_contact .tel_contact_item {
    padding: 0 min(calc(0px + 60 * (100vw - 768px) / 832), 60px);
  }
  .tel_contact p {
    height: 3.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

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

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

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

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

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

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-weight: 400;
  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 {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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