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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #d8d8d8;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #d8d8d8;
}
.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;
}
@media print, screen and (min-width: 768px) {
  .table-design-1 > tbody > tr > th {
    width: var(--th-w);
  }
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.table-design-2 > tbody > tr > th {
  background: #eee;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .table-design-2 > tbody > tr > th {
    width: var(--th-w);
  }
}

@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 {
    border: none;
  }
  .table-design-1.table-inline tbody > tr {
    border: none;
    padding: 0;
    margin-bottom: 1em;
  }
  .table-design-1.table-inline tbody > tr:last-child {
    margin-bottom: 0;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0 0.75em;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: 1em;
  }
  .table-design-1.table-inline tbody > tr > th {
    padding: 0.75em;
    border-radius: 0.25em;
    background-color: #f5f5f5;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-telphone {
  list-style: none;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .list-telphone {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
  }
}

.list_table_inline_1 {
  padding-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .list_table_inline_1 {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .list_table_inline_1 > li:after {
    content: "／";
    margin: 0 0.75em;
  }
  .list_table_inline_1 > li:last-child:after {
    display: none;
  }
}

/* -------------------------------
	dl
-------------------------------- */
.dl_style_1 > dt, .dl_style_1 > dd {
  margin: 0;
}
.dl_style_1 > dt {
  font-weight: 500;
  display: inline-grid;
  border-radius: 10em;
  padding: 0 1em;
  margin-bottom: 1em;
  background-color: #f2f2f2;
}
.dl_style_1 > dd {
  font-weight: 400;
}

/* -------------------------------
	hr
-------------------------------- */
.hr {
  border-top: solid 1px #d8d8d8;
  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;
}

/* -------------------------------
	画像拡大
-------------------------------- */
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: var(--primary);
  color: var(--color);
  font-size: 0.9375rem;
  text-align: left;
  display: inline-flex;
  align-items: center;
  padding: 0.46666em 0.46666em 0.46666em 2em;
  border: solid 1px var(--color);
  border-radius: 10em;
  min-width: 15.33334em;
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-1 i {
  color: #fff;
  font-size: 0.86666em;
  line-height: 1;
  letter-spacing: normal;
  width: 3.6923em;
  height: 3.6923em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-left: auto;
  background-color: var(--color);
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-1:hover {
  color: #fff;
  background-color: var(--color);
}
.btn-1:hover i {
  color: var(--color);
  background-color: #fff;
}

.btn-file {
  --color: var(--primary);
  color: var(--color);
  font-size: 0.9375rem;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0.46666em 1em 0.46666em 0.46666em;
  border: solid 1px var(--color);
  border-radius: 10em;
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-file:before {
  content: "";
  color: #fff;
  font-size: 0.86666em;
  line-height: 1;
  letter-spacing: normal;
  flex: 0 0 3.6923em;
  height: 3.6923em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-right: 0.5em;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 46%;
}
.btn-file[target="_blank"]:before {
  color: var(--color);
  content: "\f35d";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.btn-file[href$=".pdf"]:before {
  content: "";
  background-image: url("../images/common/pdf.svg");
}
.btn-file[href$=".xls"]:before, .btn-file[href$=".xlsx"]:before {
  content: "";
  background-image: url("../images/common/excel.svg");
}
.btn-file[href$=".doc"]:before, .btn-file[href$=".docx"]:before {
  content: "";
  background-image: url("../images/common/word.svg");
}
.btn-file:hover {
  color: var(--color);
  background-color: rgba(23, 81, 165, 0.25);
}

/**/
.btn-back {
  width: 160px;
}

.btn-map {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-map:hover {
  opacity: 0.65;
}

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

/* -------------------------------
	bg icon
-------------------------------- */
.bg-icon {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

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

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.telphone small {
  font-size: 0.66666em;
  flex: 0 0 2.5em;
  display: block;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	テキスト　無限ループ
-------------------------------- */
.text-loop {
  overflow: hidden;
}
.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 40s -20s linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 40s linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	背景固定
-------------------------------- */
.fixed-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@media print {
  .fixed-bg {
    background-attachment: scroll;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-130 {
  margin-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

.mb-130 {
  margin-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

.mtb-130 {
  margin-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  margin-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-130 {
  padding-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

.pb-130 {
  padding-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

.ptb-130 {
  padding-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  padding-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mt-lg-130 {
    margin-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

  .mb-lg-130 {
    margin-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

  .mtb-lg-130 {
    margin-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
    margin-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pt-lg-130 {
    padding-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

  .pb-lg-130 {
    padding-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

  .ptb-lg-130 {
    padding-top: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
    padding-bottom: min(calc(45px + 85 * (100vw - 320px) / 1080), 130px);
  }

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

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

  .ptb-lg-150 {
    padding-top: min(calc(52px + 98 * (100vw - 320px) / 1080), 150px);
    padding-bottom: min(calc(52px + 98 * (100vw - 320px) / 1080), 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:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

.title-2 {
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  border-bottom: solid 1px #d8d8d8;
}

.title-3 {
  padding-left: 1.1em;
  position: relative;
}
.title-3:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  color: #1751a5;
  font-size: min(calc(40px + 40 * (100vw - 320px) / 1080), 80px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  display: block;
}
.title-hh-1 > .txt {
  color: #7e7e7e;
  font-weight: 500;
  font-size: min(calc(16px + 2 * (100vw - 320px) / 1080), 18px);
  display: block;
}
.title-hh-1.text--white > .fs-en, .title-hh-1.text--white > .txt {
  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 + 70 * (100vw - 320px) / 1080);
  padding-right: calc(15px + 70 * (100vw - 320px) / 1080);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1400px) {
  .container-fluid-xl {
    padding-left: 85px;
    padding-right: 85px;
  }
}

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

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

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

.minus_margin_l {
  margin-left: calc(-15px - 70 * (100vw - 320px) / 1080);
}
@media print, screen and (min-width: 1400px) {
  .minus_margin_l {
    margin-left: calc((1230px - var(--app-w)) / 2);
  }
}

.minus_margin_r {
  margin-right: calc(-15px - 70 * (100vw - 320px) / 1080);
}
@media print, screen and (min-width: 1400px) {
  .minus_margin_r {
    margin-right: calc((1230px - var(--app-w)) / 2);
  }
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#mainvisual > .bg01 {
  position: absolute;
  left: 2%;
  top: 50px;
  z-index: -1;
  width: min(20.65vw, 413px);
  aspect-ratio: 413 / 215;
  background: url("../images/home/main_bg.png") no-repeat center center/contain;
}
@media print, screen and (min-width: 992px) {
  #mainvisual > .bg01 {
    top: 120px;
  }
}
#mainvisual .text-loop {
  position: absolute;
  left: 0;
  bottom: 0.55em;
  z-index: -1;
  color: #f1f6ff;
  font-size: min(10vw, 200px);
  line-height: 1;
}
#mainvisual .scroll {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 0 0.5em;
}
@media screen and (max-width: 991px) {
  #mainvisual .scroll {
    display: none;
  }
}
#mainvisual .scroll .scroll-text p {
  color: #1751a5;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  margin: 0;
}
#mainvisual .scroll .scroll-border {
  width: 2px;
  height: 200px;
  background-color: #1751a5;
  position: relative;
}
#mainvisual .scroll .scroll-border:after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  top: 0;
  left: -3px;
  background: #1751a5;
  border-radius: 50%;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}

@keyframes scrollbar {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.slide-media {
  width: 90%;
  aspect-ratio: 1 / 1;
  max-width: 1556px;
  margin-left: auto;
}
.slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}
@media print, screen and (min-width: 768px) {
  .slide-media {
    width: 77.8%;
    aspect-ratio: 389 / 265;
  }
}

.mainvisual_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding-left: min(calc(15px + 105 * (100vw - 320px) / 1600), 120px);
}
.mainvisual_content .inner {
  margin: auto 0;
}
.mainvisual_content .inner h2, .mainvisual_content .inner p {
  margin: 0;
}
.mainvisual_content .inner h2 {
  color: #0d3062;
  font-weight: 800;
  font-style: italic;
  font-size: min(calc(30px + 58 * (100vw - 320px) / 1600), 88px);
  line-height: 1.0227;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  background-image: -webkit-linear-gradient(120deg, #1751a5 0%, #07a3df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 0.075em white);
}
.mainvisual_content .inner p {
  color: #1751a5;
  font-weight: 700;
  font-size: min(calc(10px + 10 * (100vw - 320px) / 1600), 20px);
  text-shadow: 0 0 0.075em white, 0 0 0.1em white, 0 0 0.125em white;
}
.mainvisual_content .inner p.fs-en {
  color: #3265af;
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  color: #1751a5;
  font-size: min(calc(50px + 30 * (100vw - 320px) / 1080), 80px);
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
}
.home_ttl_1 > .txt {
  color: #7e7e7e;
  font-weight: 500;
  font-size: 1.125rem;
  display: block;
}
.home_ttl_1.text--white > .fs-en, .home_ttl_1.text--white > .txt {
  color: #fff;
}

/* ---  --- */
.home_news {
  position: relative;
  z-index: 0;
}
.home_news .bg01 {
  left: 0;
  bottom: 0;
  z-index: -1;
  width: min(15.3vw, 306px);
  aspect-ratio: 153 / 166;
  background-image: url("../images/home/home_news_icon1.png");
}
.home_news .bg02 {
  top: 3.75vw;
  right: 2.5vw;
  z-index: -1;
  width: min(11.75vw, 235px);
  aspect-ratio: 235 / 179;
  background-image: url("../images/home/home_news_icon2.png");
}

.home_news_content {
  border-top: solid 1px #d8d8d8;
}
.home_news_content_item {
  padding: clamp(17px, 3vw, 42px) 0;
  border-bottom: solid 1px #d8d8d8;
}

.home_news_content_item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.home_news_content_item .date {
  font-size: 0.9375em;
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  margin-bottom: 0.5rem;
}
.home_news_content_item .date > .fs-en {
  display: block;
}
.home_news_content_item .date > .new {
  color: #c91515;
  margin-left: 2.6em;
}
.home_news_content_item .column {
  flex: 0 0 100%;
  margin-bottom: 0.5rem;
}
.home_news_content_item .file a {
  color: #c91515;
  font-size: 1.125em;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.home_news_content_item .file a:hover {
  opacity: 0.65;
}
.home_news_content_item .more {
  margin-left: auto;
}
.home_news_content_item .more a {
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.home_news_content_item .more a .in {
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .home_news_content_item {
    padding-right: calc(22px * 3);
  }
  .home_news_content_item .date {
    align-items: flex-start;
    flex: 0 0 13.0666em;
    margin-bottom: 0;
  }
  .home_news_content_item .column {
    flex: 1 1 0;
    padding-right: 1rem;
    margin-bottom: 0;
  }
  .home_news_content_item .file {
    margin-right: 1rem;
    display: grid;
    place-items: center;
  }
  .home_news_content_item .more {
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 3em;
    margin-top: -1.5em;
  }
  .home_news_content_item .more a {
    color: #989898;
    width: 3em;
    height: 3em;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .home_news_content_item .more a .in {
    display: none;
  }
  .home_news_content_item .more a:hover {
    color: #fff;
    background-color: #989898;
  }
}

/* ---  --- */
.home_bas {
  --ttl-fs: min(calc(26px + 30 * (100vw - 320px) / 1080), 56px);
  color: #fff;
  background-image: url("../images/home/home_bas_bg.jpg");
}
@media print, screen and (min-width: 992px) {
  .home_bas {
    --ttl-fs: min(calc(36px + 20 * (100vw - 992px) / 408), 56px);
  }
}
.home_bas h2 {
  font-size: var(--ttl-fs);
  line-height: 1.42857;
  margin: 0;
}
.home_bas .content {
  margin-top: calc(var(--ttl-fs) * 1.42857);
}

/* ---  --- */
.home_bisiness {
  position: relative;
  z-index: 0;
}
.home_bisiness .icon01 {
  top: min(5vw, 100px);
  right: 4.5vw;
  width: min(20.7vw, 414px);
  aspect-ratio: 414 / 613;
  background-image: url("../images/home/home_bisiness_icon.png");
}
@media print, screen and (min-width: 992px) {
  .home_bisiness .photo {
    margin-right: 2.5vw;
  }
}

.home_bisiness_content .dl_style_1 {
  margin: clamp(1.5rem, 2.857vw, 40px) 0;
}

.home_bisiness_link {
  display: flex;
  gap: 10px;
}
.home_bisiness_link > .box {
  flex: 1 1 0;
}
.home_bisiness_link > .box .btn-1 {
  display: flex;
  width: 100%;
  min-width: inherit;
}
@media print, screen and (min-width: 768px) {
  .home_bisiness_link {
    gap: 20px;
  }
  .home_bisiness_link > .box {
    flex: 0 0 50%;
    max-width: 230px;
  }
}

/* ---  --- */
.home_company {
  position: relative;
  z-index: 0;
}
.home_company .icon01 {
  bottom: min(5vw, 100px);
  left: 0;
  width: min(17.05vw, 341px);
  aspect-ratio: 341 / 637;
  background-image: url("../images/home/home_company_icon.png");
}
@media print, screen and (min-width: 992px) {
  .home_company .photo {
    margin-left: 2.5vw;
  }
}
.home_company .home_company_content {
  position: relative;
  z-index: 10;
}

.home_company_links {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: clamp(20px, 4.2857vw, 60px) clamp(20px, 5vw, 70px);
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .home_company_links {
    margin-right: -52.5%;
  }
}
.home_company_links > ul {
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home_company_links > ul > li {
  border-bottom: solid 1px #d8d8d8;
  padding: 1.11112em 0;
}
.home_company_links > ul > li:last-child {
  border-bottom: none;
}
.home_company_links > ul > li > a {
  color: var(--primary);
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.home_company_links > ul > li > a:after {
  content: "\f061";
  color: #fff;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.44445em;
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  width: 3.75em;
  height: 3.75em;
  border-radius: 50%;
  border: solid 1px var(--primary);
  margin-left: auto;
  background-color: var(--primary);
  transition: color 0.3s ease, background 0.3s ease;
}
.home_company_links > ul > li > a:hover:after {
  color: var(--primary);
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .home_company_links > ul {
    font-size: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(20px, 5vw, 70px);
  }
  .home_company_links > ul > li:last-child {
    border-bottom: solid 1px #d8d8d8;
  }
  .home_company_links > ul > li:nth-child(1), .home_company_links > ul > li:nth-child(2) {
    padding-top: 0;
  }
}

/* ---  --- */
.home_recruit {
  color: #fff;
  background-image: url("../images/home/home_recruit_bg.jpg");
}

.home_recruit_links {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.home_recruit_links > .box > a {
  text-decoration: none;
  display: block;
  padding: clamp(15px, 2.857vw, 40px) 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease;
}
.home_recruit_links > .box > a h4 {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.33334;
  text-align: center;
  height: 2.66666em;
  display: grid;
  place-items: center;
  margin: 0;
}
.home_recruit_links > .box > a .image {
  width: 57.66666%;
  max-width: 173px;
  margin: 0 auto;
  aspect-ratio: 173 / 140;
}
.home_recruit_links > .box > a .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.home_recruit_links > .box > a .more {
  max-width: 175px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 1.66666em;
  margin: 1.2em auto 0;
  border-radius: 10em;
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.home_recruit_links > .box > a .more:after {
  content: "\f061";
  color: #fff;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6em;
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  width: 3.77777em;
  height: 3.7777em;
  border-radius: 50%;
  border: solid 1px var(--primary);
  margin-left: auto;
  background-color: var(--primary);
  transition: color 0.3s ease, background 0.3s ease;
}
.home_recruit_links > .box > a:hover {
  background-color: white;
}
.home_recruit_links > .box > a:hover .more {
  color: #fff;
  background-color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .home_recruit_links > .box > a h4 {
    font-size: min(calc(16px + 8 * (100vw - 762px) / 632), 24px);
  }
  .home_recruit_links > .box > a .more {
    font-size: min(calc(13px + 2 * (100vw - 762px) / 632), 15px);
  }
}

/* ---  --- */
.home_links {
  background: url("../images/home/home_links_bg.jpg") no-repeat center center;
}
.home_links a {
  display: block;
}

.home_links_figure {
  width: 100%;
  aspect-ratio: 30 / 19;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}
.home_links_figure > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: inherit;
  object-fit: cover;
}
.home_links_figure figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12.5%;
  width: 100%;
}
.home_links_figure figcaption h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}
.home_links_figure figcaption h2 > .fs-en {
  font-size: min(calc(30px + 34 * (100vw - 320px) / 1080), 64px);
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
}
.home_links_figure figcaption h2 > .txt {
  display: block;
}
.home_links_figure figcaption i {
  color: var(--primary);
  font-size: min(calc(16px + 6 * (100vw - 320px) / 1080), 22px);
  margin-left: auto;
  width: 3.63636em;
  height: 3.63636em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #fff;
}
a > .home_links_figure > img {
  transition: transform 0.9s ease;
}
a > .home_links_figure:hover > img {
  transform: scale(1.2);
}

/* ---  --- */
.page_contact {
  color: #fff;
  background-color: var(--primary);
}
.page_contact .column {
  display: grid;
  place-items: center;
}
.page_contact .column .in {
  text-align: center;
}
.page_contact .column .in p {
  font-weight: 400;
}
.page_contact .column .in .btn {
  font-size: 20px;
  border: solid 1px #fff;
}

/* -------------------------------
	お知らせ
-------------------------------- */
.news_date {
  font-size: 0.9375em;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.news_date > .fs-en {
  display: block;
}
.news_date > .new {
  color: #c91515;
  margin-left: 2.6em;
}

/* --- gallery --- */
.news_splide {
  margin: 0 auto;
}
@media print, screen and (min-width: 992px) {
  .news_splide {
    margin: 0;
    margin-right: 50px;
  }
}
.news_splide .splide__inner {
  position: relative;
}
.news_splide .splide__inner .photo-ofi {
  aspect-ratio: 4 / 3;
  background-color: #fff;
}
.news_splide .splide__inner .photo-ofi img {
  border-radius: 10px;
}

.news_splide .splide__pagination {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.news_splide .splide__pagination > li {
  flex: 0 0 80px;
}
.news_splide .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  aspect-ratio: 4 / 3;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.news_splide .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_splide .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

/* ---  --- */
.news_file {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0 -5px;
}
.news_file_box {
  flex: 0 0 100%;
  padding: 0 5px;
}
@media print, screen and (min-width: 768px) {
  .news_file_box {
    flex: 0 0 auto;
  }
}

/* -------------------------------
	代表挨拶
-------------------------------- */
.greeting_message {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.greeting_message h3 {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.greeting_message h3 > .fs-en {
  color: #0d3062;
  font-weight: 800;
  font-style: italic;
  font-size: min(15vw, 300px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  display: inline-block;
  background-image: -webkit-linear-gradient(120deg, #1751a5 0%, #07a3df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  opacity: 0.2;
}
@media print, screen and (min-width: 992px) {
  .greeting_message .image {
    transform: translateX(min(5.25vw, 105px));
  }
}
.greeting_message .ceo_name {
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: right;
  margin-top: 2rem;
  margin-right: 1rem;
}

/* -------------------------------
	会社案内
-------------------------------- */
/* ---  --- */
.company_philosophy {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .company_philosophy:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    background: url("../images/common/bg001.svg") no-repeat left top/contain;
  }
}

.philosophy_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 30px;
}
.philosophy_table > tbody > tr > th, .philosophy_table > tbody > tr > td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.philosophy_table > tbody > tr > th {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(24px + 14 * (100vw - 320px) / 1080), 38px);
  white-space: nowrap;
  padding-right: min(calc(30px + 30 * (100vw - 768px) / 632), 60px);
  border-right: solid 1px #ccc;
}
.philosophy_table > tbody > tr > td {
  padding-left: min(calc(30px + 30 * (100vw - 768px) / 632), 60px);
}
@media screen and (max-width: 767px) {
  .philosophy_table {
    border-spacing: 0;
  }
  .philosophy_table > tbody > tr {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
  }
  .philosophy_table > tbody > tr:last-child {
    margin-bottom: 0;
  }
  .philosophy_table > tbody > tr > th, .philosophy_table > tbody > tr > td {
    width: 100% !important;
    display: block;
  }
  .philosophy_table > tbody > tr > th {
    padding: 0 0 0 1rem;
    margin-bottom: 0.25em;
    border: none;
  }
  .philosophy_table > tbody > tr > td {
    padding: 1rem;
    border-radius: 0.25em;
    background-color: #efefef;
  }
}

/**/
.company_overview {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.company_overview .btn-map {
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .company_overview:before, .company_overview:after {
    content: "";
    position: absolute;
    z-index: -1;
    background-size: contain;
  }
  .company_overview:before {
    top: min(5vw, 100px);
    right: 4.5vw;
    width: min(20.7vw, 414px);
    aspect-ratio: 414 / 613;
    background-image: url("../images/home/home_bisiness_icon.png");
  }
  .company_overview:after {
    bottom: min(5vw, 100px);
    left: 0;
    width: min(17.05vw, 341px);
    aspect-ratio: 341 / 637;
    background-image: url("../images/home/home_company_icon.png");
  }
}

/* ---  --- */
.company_address_sub {
  margin-left: min(2.08334vw, 1em);
  padding-left: min(6.25vw, 3em);
  border-left: solid 1px #d8d8d8;
}

/* -------------------------------
	沿革
-------------------------------- */
.history_content {
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .history_content:before {
    content: "";
    position: absolute;
    top: 5vw;
    right: 3vw;
    bottom: 5vw;
    left: 0;
    z-index: -1;
    background: url("../images/common/bg002.svg") no-repeat right top/100% 100%;
    opacity: 0.1;
  }
}

.history_list_item .year {
  display: flex;
  align-items: center;
}
.history_list_item .year > .fs-en {
  color: #76cef0;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  display: block;
}
.history_list_item .year > .txt {
  color: #999;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .history_list_item .year > .fs-en {
    font-size: min(calc(40px + 20 * (100vw - 768px) / 632), 60px);
  }
  .history_list_item .year > .txt {
    font-size: min(calc(14px + 2 * (100vw - 768px) / 632), 16px);
  }
}
.history_list_item .content {
  padding: 0.75em 0 0.75em 50px;
  margin: 0.5em 0;
  position: relative;
}
.history_list_item .content .line {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ccc;
}
.history_list_item .content .line:before, .history_list_item .content .line:after {
  content: "";
  position: absolute;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ccc;
}
.history_list_item .content .line:before {
  top: -1px;
}
.history_list_item .content .line:after {
  bottom: -1px;
}
.history_list_item .content .date {
  color: var(--primary);
  font-weight: 700;
}
.history_list_item .content .column {
  margin-bottom: 1em;
}
.history_list_item .content .column:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .history_list_item .content {
    font-size: min(calc(16px + 8 * (100vw - 768px) / 632), 24px);
    display: flex;
    flex-wrap: wrap;
    gap: min(calc(20px + 10 * (100vw - 768px) / 632), 30px) 0;
    padding-top: min(calc(25px + 25 * (100vw - 768px) / 632), 50px);
    padding-bottom: min(calc(25px + 25 * (100vw - 768px) / 632), 50px);
  }
  .history_list_item .content .date {
    text-align: right;
    flex: 0 0 6em;
    padding-right: 1em;
    border-right: solid 1px #d8d8d8;
  }
  .history_list_item .content .column {
    flex: 0 0 calc(100% - 6em);
    padding-left: 1em;
    margin-bottom: 0;
  }
}

/* -------------------------------
	営業所案内
-------------------------------- */
/* ---  --- */
.office_content:nth-child(even) {
  background-color: #F1F5FC;
}
@media print, screen and (min-width: 992px) {
  .office_content {
    position: relative;
    z-index: 0;
  }
  .office_content .googlemap {
    padding-top: 66.6666%;
  }
  .office_content:nth-child(odd):before {
    content: "";
    position: absolute;
    left: 1vw;
    top: 3vw;
    width: min(21vw, 420px);
    aspect-ratio: 335 / 278;
    background: url("../images/office/office_bg_odd.png") no-repeat center center/contain;
  }
  .office_content:nth-child(odd) .office_map {
    margin-left: min(calc(15px + 25 * (100vw - 992px) / 408), 50px);
    margin-right: calc(-15px - 70 * (100vw - 320px) / 1080);
  }
  .office_content:nth-child(even):before {
    content: "";
    position: absolute;
    right: 3vw;
    top: 3vw;
    width: min(21vw, 420px);
    aspect-ratio: 617 / 413;
    background: url("../images/office/office_bg_even.png") no-repeat center center/contain;
  }
  .office_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .office_content:nth-child(even) .office_map {
    margin-right: min(calc(15px + 25 * (100vw - 992px) / 408), 50px);
    margin-left: calc(-15px - 70 * (100vw - 320px) / 1080);
  }
}
@media print, screen and (min-width: 1400px) {
  .office_content:nth-child(odd) .office_map {
    margin-right: calc((1230px - var(--app-w)) / 2);
  }
  .office_content:nth-child(even) .office_map {
    margin-left: calc((1230px - var(--app-w)) / 2);
  }
}

.office_content_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.office_content_column .ttl {
  color: var(--primary);
  line-height: 1.5;
  border-bottom: solid 1px #d8d8d8;
  padding-left: 1.2em;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  position: relative;
}
.office_content_column .ttl:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.75);
  color: var(--info);
}
.office_content_column .column {
  margin: auto 0 0;
}

.office_content_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 1.60208vw, 10px);
}
.office_content_gallery > .img {
  aspect-ratio: 4/3;
}
.office_content_gallery > .img img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------------------------------
	事業内容
-------------------------------- */
/* ---  --- */
.business_content_ttl_1 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.875;
}

/**/
.business_content:nth-child(even) {
  background-color: #F1F5FC;
}
.business_content .title-1 {
  font-size: clamp(23px, calc(var(--measure-width) / 13), 38px);
}
.business_content .subttl1 {
  font-weight: 500;
  font-size: clamp(18px, calc(var(--measure-width) / 20), 32px);
}
.business_content .business_content_photo {
  display: flex;
}
.business_content .business_content_photo .image1 {
  margin: auto;
}
.business_content .business_content_photo .image1 img {
  filter: drop-shadow(5px 5px 5px rgba(118, 206, 240, 0.5));
}
@media print, screen and (min-width: 992px) {
  .business_content .business_content_photo .image1 {
    margin: auto 0;
  }
}
.business_content .business_content_photo .image2 {
  margin: auto;
}
@media print, screen and (min-width: 992px) {
  .business_content .business_content_photo .image2 {
    margin: 0;
  }
  .business_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .business_content:nth-child(even) .business_content_photo .image2 {
    margin-left: auto;
  }
}

/* -------------------------------
	実績紹介
-------------------------------- */
.achievements_lists .achievements_lists_item {
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
}
.achievements_lists .achievements_lists_item:last-child {
  margin-bottom: 0;
}
.achievements_lists .achievements_lists_item .ttl {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .achievements_lists .achievements_lists_item {
    display: flex;
  }
  .achievements_lists .achievements_lists_item .ttl {
    flex: 0 0 12em;
  }
  .achievements_lists .achievements_lists_item .content {
    flex: 1 1 0;
    padding-left: min(4.2857vw, 60px);
  }
}

/* -------------------------------
	数字で見るケイ・システム
-------------------------------- */
/* --- --- */
.about_row {
  grid-row-gap: 30px;
}

/* ---  --- */
.about_column {
  border: solid 1px #d8d8d8;
  padding: min(calc(20px + 30 * (100vw - 320px) / 1080), 50px);
  border-radius: min(calc(20px + 30 * (100vw - 320px) / 1080), 50px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .about_column {
    padding: min(calc(20px + 30 * (100vw - 768px) / 632), 50px);
    border-radius: min(calc(20px + 30 * (100vw - 768px) / 632), 50px);
  }
}
.about_column .ttl {
  color: var(--primary);
  font-size: clamp(20px, calc(var(--width-ttl) / 14), 36px);
  line-height: 1.5;
  text-align: center;
  border-bottom: dashed 1px #d8d8d8;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
}
.about_column .content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.about_column .content .dummy {
  margin: auto;
}

.about_column_item_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto 0;
}
.about_column_item_1 .icon {
  flex: 0 0 25.70281%;
  aspect-ratio: 1/1;
}
.about_column_item_1 .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.about_column_item_1 .column {
  text-align: center;
  flex: 0 0 auto;
  padding-left: 30px;
}
.about_column_item_1 .column p {
  font-size: clamp(16px, calc(var(--width-ttl) / 20), 36px);
  white-space: nowrap;
}
.about_column_item_1 .column p.text2 {
  font-size: calc(var(--width-ttl) / 6);
  line-height: 1;
}
.about_column_item_1 .column p.text2 small {
  font-size: 0.4em;
}

.about_column_ratio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}
.about_column_ratio .text {
  font-size: calc(var(--width-ttl) / 24);
  line-height: 1.2;
  text-align: center;
  flex: 1 1 0;
}
.about_column_ratio .text strong {
  font-size: 2em;
}
.about_column_ratio .text small {
  font-size: 0.75em;
}
.about_column_ratio .icon {
  flex: 0 0 15%;
  aspect-ratio: 25 / 64;
}
.about_column_ratio .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/**/
.about_column_system {
  line-height: 1.2;
}
.about_column_system_type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
}
.about_column_system_type .name {
  font-size: calc(var(--width-ttl) / 20);
}
.about_column_system_type .icon {
  width: 20%;
  aspect-ratio: 1 / 1;
}
.about_column_system_type .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.about_column_system_type .num {
  font-size: calc(var(--width-ttl) / 6);
}
.about_column_system_type .num small {
  font-size: 0.4em;
}

.about_column_graph {
  --line-h: calc(var(--width-ttl) / 90);
  display: flex;
}
.about_column_graph_item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.about_column_graph_item .line {
  color: #fff;
  font-size: calc((var(--width-ttl) / 4) / 4);
  flex: 0 0 var(--line-h);
  margin-left: 5%;
  margin-right: 5%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--info);
}
.about_column_graph_item .line > span {
  display: block;
}
.about_column_graph_item .line > span small {
  font-size: 0.5em;
}
.about_column_graph_item .text {
  font-size: calc((var(--width-ttl) / 4) / 6);
  text-align: center;
  border-top: solid 1px var(--info);
}
.about_column_graph_item:nth-child(1) .line {
  flex: 0 0 calc(var(--line-h) * 13);
}
.about_column_graph_item:nth-child(2) .line {
  flex: 0 0 calc(var(--line-h) * 20);
}
.about_column_graph_item:nth-child(3) .line {
  flex: 0 0 calc(var(--line-h) * 20);
}
.about_column_graph_item:nth-child(4) .line {
  flex: 0 0 calc(var(--line-h) * 0);
}

/* -------------------------------
	社員紹介
-------------------------------- */
/* ---  --- */
.intro_content {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.intro_content_head {
  position: relative;
  z-index: 0;
}
.intro_content_head .bg_txt {
  color: var(--primary);
  font-style: italic;
  font-weight: 800;
  font-size: 10vw;
  line-height: 1;
  text-align: right;
  margin-right: calc(-15px - 70 * (100vw - 320px) / 1080);
  opacity: 0.1;
  position: relative;
  z-index: -1;
}
.intro_content_head h3 {
  color: var(--primary);
  font-size: min(calc(22px + 28 * (100vw - 320px) / 1080), 50px);
  line-height: 1.5;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 1em;
  margin-bottom: 0;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .intro_content_head h3 {
    margin-top: -1.5em;
  }
}
@media print, screen and (min-width: 1400px) {
  .intro_content_head .bg_txt {
    margin-right: calc((1230px - var(--app-w)) / 2);
  }
}

/* ---  --- */
.intro_staff_content {
  padding: min(calc(30px + 70 * (100vw - 320px) / 1080), 100px) 0;
}
.intro_staff_content:nth-child(even) {
  background-color: rgba(23, 81, 165, 0.1);
}

/**/
.intro_staff_content_comment_item {
  margin-bottom: min(calc(30px + 30 * (100vw - 320px) / 1080), 60px);
}
.intro_staff_content_comment_item:last-child {
  margin-bottom: 0;
}
.intro_staff_content_comment_item .ttl {
  padding-left: 1.2em;
  position: relative;
}
.intro_staff_content_comment_item .ttl:before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--info);
  transform: scale(0.75);
}
.intro_staff_content_comment_item .photo-ofi img {
  border-radius: 15px;
}
@media print, screen and (min-width: 768px) {
  .intro_staff_content_comment_item:nth-child(odd) .photo-ofi {
    margin-right: min(calc(15px + 45 * (100vw - 768px) / 632), 60px);
  }
  .intro_staff_content_comment_item:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .intro_staff_content_comment_item:nth-child(even) .photo-ofi {
    margin-left: min(calc(15px + 45 * (100vw - 768px) / 632), 60px);
  }
}

/* -------------------------------
	新卒研修
-------------------------------- */
/* ---  --- */
.training_content .training_content_photo {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.training_content .training_content_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.training_content .title-hh-1 {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .training_content .title-hh-1 {
    text-align: left;
  }
  .training_content.odd .training_content_photo {
    margin-right: 2.5vw;
    margin-left: calc(-15px - 70 * (100vw - 320px) / 1080);
    border-radius: 0 50px 50px 0;
    aspect-ratio: 4 / 3;
  }
  .training_content.even .row > div:first-child {
    order: 13;
  }
  .training_content.even .training_content_photo {
    margin-left: 2.5vw;
    margin-right: calc(-15px - 70 * (100vw - 320px) / 1080);
    border-radius: 50px 0 0 50px;
    aspect-ratio: 4 / 3;
  }
}
@media print, screen and (min-width: 1400px) {
  .training_content.odd .training_content_photo {
    margin-left: calc((1230px - var(--app-w)) / 2);
  }
  .training_content.even .training_content_photo {
    margin-right: calc((1230px - var(--app-w)) / 2);
  }
}

/* ---  --- */
.training_flow {
  color: #fff;
  background-color: var(--primary);
  background-image: url("../images/training/training_flow_bg.jpg");
}

.training_flow_content .training_flow_step {
  margin-bottom: 30px;
  background-color: rgba(23, 81, 165, 0.75);
  box-shadow: 3px 3px 8px rgba(23, 81, 165, 0.5);
}
.training_flow_content .training_flow_step:last-child {
  margin-bottom: 0;
}
.training_flow_content .training_flow_step .date {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 0.75em 1em;
  background-color: #fff;
  position: relative;
}
.training_flow_content .training_flow_step .date:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 15px 15px 0px;
  border-color: transparent var(--primary) transparent transparent;
}
.training_flow_content .training_flow_step .column {
  padding: 15px;
}
@media print, screen and (min-width: 768px) {
  .training_flow_content {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 20px;
  }
  .training_flow_content .training_flow_step {
    flex: 0 0 calc((100% - 20px * 1) / 2);
    margin: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .training_flow_content .training_flow_step {
    flex: 0 0 calc((100% - 20px * 3) / 4);
  }
}

/* -------------------------------
	採用の流れ
-------------------------------- */
/* ---  --- */
.flow_step {
  display: grid;
  padding-left: 28%;
}
.flow_step:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: url("../images/flow/flow_map_sp.png") no-repeat center center/contain;
}
@media print, screen and (min-width: 768px) {
  .flow_step {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
  }
  .flow_step:before {
    position: static;
    width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 615 / 149;
    margin-bottom: 10px;
    background: url("../images/flow/flow_map.png") no-repeat center center/contain;
  }
  .flow_step .flow_step_item {
    flex: 0 0 20%;
  }
}

.flow_step_item {
  display: flex;
}
.flow_step_item .image {
  flex: 0 0 120px;
  padding: 10px 0;
}
.flow_step_item .arrow {
  width: 9px;
  display: flex;
  margin: 0 1em;
  position: relative;
}
.flow_step_item .arrow:before, .flow_step_item .arrow:after {
  content: "";
  position: absolute;
}
.flow_step_item .arrow:before {
  left: 4px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--info);
}
.flow_step_item .arrow:after {
  left: 0;
  top: 50%;
  margin: -5px 0 0 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--info);
}
.flow_step_item .column {
  flex: 1 1 0;
  margin: 10px 0;
  display: flex;
  padding: 20px 0;
  border-radius: 15px;
  flex-direction: column;
  background-color: #efefef;
}
.flow_step_item .column h4 {
  font-size: 20px;
  text-align: center;
  margin: auto;
}
.flow_step_item .column h4 > .fs-en {
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize;
  display: block;
}
.flow_step_item .column h4 > .txt {
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-top: 0.5em;
}
.flow_step_item:first-child .arrow:before {
  top: 50%;
}
.flow_step_item:last-child .arrow:before {
  bottom: 50%;
}
@media print, screen and (min-width: 768px) {
  .flow_step_item {
    flex-direction: column;
  }
  .flow_step_item .arrow {
    width: 100%;
    height: 15px;
    margin: 0 0 10px;
  }
  .flow_step_item .arrow:before {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .flow_step_item .arrow:after {
    left: 50%;
    top: 0;
    width: 15px;
    height: 15px;
    margin: 0 0 0 -8px;
  }
  .flow_step_item:first-child .arrow:before {
    left: 50%;
  }
  .flow_step_item:last-child .arrow:before {
    bottom: auto;
    right: 50%;
  }
  .flow_step_item .column {
    margin: 0 10px;
    padding: 0;
  }
  .flow_step_item .column h4 {
    font-size: min(calc(20px + 8 * (100vw - 768px) / 632), 28px);
    margin: 0;
    padding: 1em 0;
  }
  .flow_step_item .column h4 > .txt {
    font-size: min(calc(14px + 4 * (100vw - 768px) / 632), 18px);
  }
}

/* -------------------------------
	募集要項
-------------------------------- */
/* ---  --- */
.recruit_head_navi_list {
  font-size: 12px;
  list-style: none;
  padding: 0;
  margin: 0 -2px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}
.recruit_head_navi_list > li {
  flex: 0 0 50%;
  padding: 0 2px;
}
.recruit_head_navi_list > li > a {
  color: var(--info);
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 0 0.5em;
  border-radius: 0.25em;
  height: 4em;
  border: solid 1px var(--info);
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.recruit_head_navi_list > li > a:hover {
  color: #fff;
  background-color: var(--info);
}
.recruit_head_navi_list > li.active > a {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .recruit_head_navi_list {
    font-size: 14px;
    margin: 0 -5px;
    gap: 10px 0;
  }
  .recruit_head_navi_list > li {
    flex: 0 0 33.33334%;
    padding: 0 5px;
  }
}
@media print, screen and (min-width: 1200px) {
  .recruit_head_navi_list {
    font-size: 14px;
    margin: 0 -5px;
    gap: 10px 0;
  }
  .recruit_head_navi_list > li {
    flex: 0 0 16.66666%;
    padding: 0 5px;
  }
}
@media print, screen and (min-width: 1400px) {
  .recruit_head_navi_list {
    font-size: 15px;
  }
}

/* ---  --- */
.recruit_links {
  background: url("../images/home/home_links_bg.jpg") no-repeat center center;
}
.recruit_links .btn {
  color: var(--primary);
  display: grid;
  place-items: center;
  border: solid 1px var(--info);
  aspect-ratio: 16 / 5;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background-color: #fff;
}
.recruit_links .btn > .txt .fs-en {
  font-size: 25px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .recruit_links .btn > .txt .fs-en {
    font-size: min(calc(25px + 25 * (100vw - 768px) / 632), 50px);
    display: block;
  }
}
.recruit_links .btn:hover {
  background-color: rgba(118, 206, 240, 0.35);
}

/* ---  --- */
.recruit_navi .nav-tabs {
  font-size: min(calc(12px + 8 * (100vw - 320px) / 1080), 20px);
  justify-content: space-between;
  border-bottom: none;
  gap: 10px;
}
.recruit_navi .nav-tabs > li {
  flex: 1 1 0;
}
.recruit_navi .nav-tabs > li > a {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  display: block;
  background-color: var(--info);
  transition: opacity 0.3s ease;
}
.recruit_navi .nav-tabs > li > a:hover {
  opacity: 0.65;
}
.recruit_navi .nav-tabs > li > a.active {
  background-color: var(--primary);
  pointer-events: none;
}

/* -------------------------------
	よくある質問
-------------------------------- */
.accordion-box {
  border-radius: 0.5em;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.accordion-box:last-child {
  margin-bottom: 0;
}
.accordion-box .ttl {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.75em 2em 0.75em 3em;
  border-radius: 0.5em;
  background-color: var(--primary);
  position: relative;
  transition: border-radius 0.3s ease;
  cursor: pointer;
}
.accordion-box .ttl:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 100%;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
  display: grid;
  place-items: center;
}
.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: calc(-.5em - 1px);
}
.accordion-box .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 2px;
  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 .ttl.active .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box .ttl.active .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.accordion-box .column {
  line-height: 1.75;
  display: none;
  padding: 0.75em 1em;
}
.accordion-box.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.accordion-box.active .ttl {
  border-radius: 0.5em 0.5em 0 0;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  padding: clamp(20px, 3.571428vw, 50px) 0;
  border-radius: 10px;
  background-color: rgba(23, 81, 165, 0.05);
}
.tel_contact ul {
  text-align: center;
  list-style: none;
  padding: 0;
  display: grid;
  justify-content: center;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .tel_contact ul {
    grid-template-columns: repeat(2, auto);
    gap: 0 min(4.2857vw, 60px);
  }
}
.tel_contact .telphone {
  font-size: 23px;
}
.tel_contact .telphone small {
  color: var(--info);
}
@media print, screen and (min-width: 768px) {
  .tel_contact .telphone {
    font-size: min(calc(28px + 17 * (100vw - 768px) / 532), 45px);
  }
}

#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 .p-postal-code {
  width: 10em !important;
}
#contactform .select_box_1 {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select_box_1 {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 992px) {
  #contactform .select_box_1 {
    font-size: 16px;
  }
}
#contactform .select_box_1 .form-control, #contactform .select_box_1 .custom-select {
  font-size: 1em;
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #d8d8d8;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #d8d8d8;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  position: absolute;
  right: 0;
  top: calc(50% - 0.85em);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: normal;
  height: 1.8em;
  display: grid;
  place-items: center;
  padding: 0 0.5em;
  border-radius: 0.2em;
  background-color: var(--danger);
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm, .table-contact > tbody > tr > td .p-postal-code {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

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

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

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

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  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 {
    --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: var(--primary);
    --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 */
