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

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

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

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

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

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

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

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

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

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: clamp(5px, 1.06667vw, 15px);
  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: 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: #fff;
  text-align: left;
  min-width: 13.7727em;
  height: 4.5em;
  display: inline-grid;
  align-items: center;
  border-radius: 22px;
  border: solid 1px #006db8;
  padding: 1em 3.7em 1em 1.4545em;
  background-color: #006db8;
  position: relative;
}
.btn-1 .icon {
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: solid 1px currentColor;
  position: absolute;
  right: 1.3em;
  top: 50%;
  margin-top: -.8em;
}
.btn-1 .icon i {
  font-size: 0.54545em;
  line-height: 1;
}
.btn-1:hover {
  color: #006db8;
  background-color: #fff;
}
.btn-1:hover .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

.btn-2 {
  color: #006db8;
  padding: 0;
  border: none;
  display: inline-grid;
  grid-template-columns: auto 2.9em;
  align-items: center;
  gap: 0 1.3em;
}
.btn-2 > .txt {
  font-weight: 400;
  line-height: 2;
  display: block;
  position: relative;
}
.btn-2 > .txt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left bottom;
  background-color: currentColor;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.btn-2 > .icon {
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: solid 1px currentColor;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.btn-2 > .icon > i {
  font-size: 0.9em;
  line-height: 1;
}
.btn-2:hover {
  color: #006db8;
}
.btn-2:hover > .txt::after {
  transform: scaleX(1);
  visibility: visible;
}
.btn-2:hover > .icon > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

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

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

a.tel_link {
  color: inherit;
}

/* -------------------------------
	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-22 {
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
}

/* --▼margin-- */
.mb-30 {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  display: flow-root;
  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 {
  border-bottom: solid 1px #ccc;
  padding-bottom: 0.75em;
}

.title-2 {
  border-left: solid 0.2em var(--primary);
  padding-left: 0.5em;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  color: var(--primary);
  font-weight: 700;
  font-size: min(calc(40px + 20 * (100vw - 375px) / 1125), 60px);
  line-height: 1.2;
  display: block;
}
.title-hh-1 > .fs-jp {
  font-weight: 700;
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
  display: block;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: calc(var(--container-padding) / -2);
}
@media print, screen and (min-width: 768px) {
  :root {
    --container-padding: clamp(30px, 13.0666666667vw, 196px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1500px) {
  :root {
    --edge: calc((1304px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  max-width: 1500px;
  padding-left: calc(var(--container-padding) / 2);
  padding-right: calc(var(--container-padding) / 2);
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

/* ---  --- */
.page_contact {
  position: relative;
  z-index: 0;
}
.page_contact::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(5px, 3.33334vw, 50px);
  left: clamp(5px, 3.33334vw, 50px);
  z-index: -1;
  pointer-events: none;
  border-radius: clamp(16px, 3.3vw, 66px);
  background-color: #eef3f9;
}

.page_contact_column p {
  line-height: 2.04545;
}

.page_contact_link {
  text-align: center;
  display: grid;
  justify-content: center;
  gap: 15px;
}
.page_contact_link .btn-1 {
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
}
.page_contact_link p {
  font-weight: 500;
  font-size: max(0.85em, 14px);
}
@media print, screen and (min-width: 768px) {
  .page_contact_link {
    justify-content: flex-start;
  }
}
@media print, screen and (min-width: 992px) {
  .page_contact_link {
    grid-template-columns: auto auto;
    gap: 30px;
    align-items: center;
  }
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  margin-top: 50px;
  margin-left: clamp(15px, 3.33334vw, 50px);
  margin-right: clamp(15px, 3.33334vw, 50px);
  border-radius: clamp(15px, 3.7vw, 74px);
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    margin-top: 120px;
  }
}
#mainvisual .slide-media {
  height: calc(var(--app-h) * 0.6);
  overflow: hidden;
}
#mainvisual .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .slide-media {
    height: calc(var(--app-h) - 50px);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .slide-media {
    height: calc(var(--app-h) - 50px);
  }
}
@media print, screen and (min-width: 992px) {
  #mainvisual .slide-media {
    height: calc(var(--app-h) - 120px);
  }
}
#mainvisual .mainvisual_content {
  color: #fff;
  padding-top: min(calc(100px + 103 * (100vw - 375px) / 1545), 203px);
  padding-bottom: min(calc(20px + 50 * (100vw - 375px) / 1545), 70px);
  padding-left: min(calc(20px + 50 * (100vw - 375px) / 1545), 70px);
  padding-right: min(calc(40px + 83 * (100vw - 375px) / 1545), 123px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
#mainvisual .mainvisual_content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  mix-blend-mode: color-dodge;
  background: url("../images/home/main_content_bg.png") no-repeat center center/100% 100%;
}
#mainvisual .mainvisual_content h2, #mainvisual .mainvisual_content p {
  margin: 0;
}
#mainvisual .mainvisual_content h2 {
  font-size: min(calc(22px + 42 * (100vw - 375px) / 1545), 64px);
  line-height: 1.25em;
}
#mainvisual .mainvisual_content h2 strong {
  font-weight: 400;
  font-size: 3.03125em;
  background: linear-gradient(127deg, #1fb3dd 0%, #006db8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#mainvisual .mainvisual_content .txt1 {
  font-weight: 700;
  font-size: min(calc(14px + 6 * (100vw - 375px) / 1545), 20px);
}
#mainvisual .mainvisual_content .txt2 {
  font-size: min(calc(11px + 3 * (100vw - 375px) / 1545), 14px);
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  color: var(--primary);
  font-weight: 700;
  font-size: min(calc(40px + 20 * (100vw - 375px) / 1125), 60px);
  line-height: 1.2;
  display: block;
}
.home_ttl_1 > .fs-jp {
  font-weight: 700;
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
  display: block;
}

/* ---  --- */
.home_head p {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .home_head p {
    font-size: min(calc(15px + 7 * (100vw - 768px) / 732), 22px);
  }
}

/* ---  --- */
.home_achievements {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_achievements > .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  left: 5px;
  z-index: -1;
  pointer-events: none;
  border-radius: clamp(16px, 3.3vw, 66px);
  background: url("../images/home/home_achievements_bg.jpg") no-repeat center center/cover;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_achievements > .bg {
    right: clamp(5px, 3.33334vw, 50px);
    left: clamp(5px, 3.33334vw, 50px);
  }
}
.home_achievements .container-fluid-xl {
  position: relative;
  z-index: 0;
}
.home_achievements .container-fluid-xl > .bg_en {
  position: absolute;
  z-index: -1;
  left: 20px;
  right: 20px;
  top: -15px;
  bottom: -15px;
  border-radius: 15px;
  background-color: #fff;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .home_achievements .container-fluid-xl > .bg_en {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
  }
}

.home_achievements_row {
  padding: 0 30px;
  display: grid;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .home_achievements_row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1065px;
    gap: min(calc(20px + 10 * (100vw - 768px) / 732), 30px);
    margin: 0 auto;
  }
}

.home_achievements_item {
  max-width: 335px;
  margin: 0 auto;
  border: solid 1px #1fb3dd;
  background-color: #fff;
}
.home_achievements_item .icon {
  aspect-ratio: 1/1;
}
.home_achievements_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_achievements_item .columns .ttl {
  font-weight: 700;
  font-size: min(calc(22px * (var(--ww-item) / 335)), 22px);
}
.home_achievements_item .columns .count {
  color: #1fb3dd;
  font-weight: 700;
  font-size: min(calc(25px * (var(--ww-item) / 335)), 25px);
  line-height: normal;
}
.home_achievements_item .columns .count .num {
  font-size: 2.6em;
}
@media screen and (max-width: 767px) {
  .home_achievements_item {
    padding: 20px 15px;
    border-radius: 16px;
    padding-left: 90px;
    position: relative;
  }
  .home_achievements_item .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    width: 60px;
    margin-top: -30px;
  }
  .home_achievements_item .columns .ttl {
    font-size: 16px;
  }
  .home_achievements_item .columns .count {
    font-size: 18px;
  }
  .home_achievements_item .columns .count .num {
    font-size: 2em;
  }
}
@media print, screen and (min-width: 768px) {
  .home_achievements_item {
    padding: min(calc(70px * (var(--ww-item) / 335)), 70px) 15px;
    border-radius: min(calc(30px * (var(--ww-item) / 335)), 30px);
  }
  .home_achievements_item .icon {
    width: min(calc(80px * (var(--ww-item) / 335)), 80px);
    margin: 15px auto 0;
  }
  .home_achievements_item .columns {
    text-align: center;
  }
}

/* ---  --- */
.home_business_item {
  margin-bottom: min(calc(40px + 40 * (100vw - 375px) / 1125), 80px);
}
.home_business_item:last-child {
  margin-bottom: 0;
}
.home_business_item .home_business_item_column {
  margin-top: 20px;
}
.home_business_item .home_business_item_column .ttl {
  font-size: 1rem;
}
.home_business_item .home_business_item_column .ttl > .fs-en {
  font-weight: 400;
  font-size: min(calc(31px + 20 * (100vw - 375px) / 1125), 51px);
  line-height: 1.3;
  display: block;
}
.home_business_item .home_business_item_column .ttl > .fs-jp {
  color: #006db8;
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
  display: block;
  margin-top: 1em;
}
@media print, screen and (min-width: 992px) {
  .home_business_item .home_business_item_column {
    margin-top: 0;
    padding-top: min(calc(0px + 50 * (100vw - 992px) / 506), 50px);
  }
  .home_business_item .home_business_item_column .ttl > .fs-en {
    font-size: min(calc(31px + 20 * (100vw - 992px) / 506), 51px);
  }
  .home_business_item .home_business_item_column .ttl > .fs-jp {
    font-size: min(calc(16px + 6 * (100vw - 992px) / 506), 22px);
  }
}
.home_business_item .photo {
  border-radius: min(calc(16px + 50 * (100vw - 375px) / 1125), 66px);
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .home_business_item:nth-child(odd) > .row > div:first-child {
    order: 13;
  }
  .home_business_item:nth-child(odd) .home_business_item_column {
    padding-right: min(calc(20px + 20 * (100vw - 992px) / 506), 40px);
  }
  .home_business_item:nth-child(odd) .photo {
    margin-right: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
  }
  .home_business_item:nth-child(even) .home_business_item_column {
    padding-left: min(calc(20px + 20 * (100vw - 992px) / 506), 40px);
  }
  .home_business_item:nth-child(even) .photo {
    margin-left: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
  }
}

/* ---  --- */
.home_company_head {
  position: relative;
}
.home_company_head > .logo {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(100px, 23.46667vw, 352px);
  aspect-ratio: 1/1;
  background: url("../images/home/home_company_logo.png") no-repeat center center/cover;
}
.home_company_head h3 {
  font-size: min(calc(30px + 30 * (100vw - 375px) / 1125), 60px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.home_company_head h4 {
  font-size: min(calc(20px + 12 * (100vw - 375px) / 1125), 32px);
  line-height: 2;
}

/* ---  --- */
.home_recruit {
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.home_recruit > .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/home/home_recruit.jpg") no-repeat center center/cover;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .home_recruit > .bg {
    top: 0;
    bottom: 0;
    left: clamp(15px, 3.33334vw, 50px);
    right: clamp(15px, 3.33334vw, 50px);
    background: url("../images/home/home_recruit.jpg") no-repeat left 35% center/cover;
    -webkit-mask-image: url("../images/home/home_recruit_mask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
  }
}
.home_recruit p {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(13px + 9 * (100vw - 375px) / 1125), 22px);
}
.home_recruit p strong {
  font-size: 1.25em;
}
@media print, screen and (min-width: 768px) {
  .home_recruit p strong {
    font-size: 1.454545em;
  }
}

@media screen and (max-width: 767px) {
  .home_recruit_inner {
    overflow: hidden;
  }
  .home_recruit_inner .home_recruit_ttl {
    display: grid;
    grid-template-columns: auto;
    justify-content: flex-start;
  }
  .home_recruit_inner .home_recruit_ttl .home_ttl_1 {
    padding: 1rem 2rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media print, screen and (min-width: 768px) {
  .home_recruit_inner {
    width: 100%;
    aspect-ratio: 1304 / 879;
    display: flex;
    flex-direction: column;
  }
  .home_recruit_inner .contents {
    margin-top: auto;
  }
}

.home_recruit_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_list {
    gap: 20px;
  }
}
.home_recruit_list > li .btn {
  font-weight: 700;
}

/* ---  --- */
.home_news_list .home_news_list_item {
  font-size: 16px;
  line-height: 1.5;
  padding: 1.17647em;
  border-bottom: solid 1px #dadada;
}
.home_news_list .home_news_list_item:has(> a) {
  padding: 0;
}
.home_news_list .home_news_list_item > a {
  color: #1c1c1c;
  padding: 1.17647em;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: background 0.3s ease;
}
.home_news_list .home_news_list_item > a:hover {
  background-color: #DEE2F1;
}
.home_news_list .home_news_list_item .date {
  font-weight: 700;
}
.home_news_list .home_news_list_item .date .new {
  color: #cc3333;
  font-size: 0.88235em;
  margin-left: 1em;
  display: inline-block;
}
.home_news_list .home_news_list_item .column {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .home_news_list .home_news_list_item {
    display: flex;
    align-items: center;
  }
  .home_news_list .home_news_list_item > a {
    display: flex;
    align-items: center;
  }
  .home_news_list .home_news_list_item .date {
    flex: 0 0 10.76em;
  }
  .home_news_list .home_news_list_item .column {
    flex: 1 1 0;
  }
}

/* -------------------------------
	お知らせ
-------------------------------- */
/* ---  --- */
.news_detail_date {
  font-weight: 700;
}
.news_detail_date .new {
  color: #cc3333;
  font-size: 0.88235em;
  margin-left: 1em;
  display: inline-block;
}

/* --- gallery --- */
.gallery_box {
  --col: 3;
  --gap: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .gallery_box {
    --gap: 20px;
  }
}
.gallery_box > .gallery_box_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  max-width: calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.gallery_box > .gallery_box_item:first-child {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
.gallery_box > .gallery_box_item {
  aspect-ratio: 4/3;
  position: relative;
  z-index: 0;
}
.gallery_box > .gallery_box_item:has(> a) {
  aspect-ratio: auto;
}
.gallery_box > .gallery_box_item > a {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 0;
}
.gallery_box > .gallery_box_item img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: clamp(5px, 1.06667vw, 15px);
  transform: translate(-50%, -50%);
}

.gallery_box_2 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  /* itemが1つだけ */
  /* itemが2つだけ */
}
.gallery_box_2 > .gallery_box_item {
  aspect-ratio: 4/3;
  position: relative;
  z-index: 0;
}
.gallery_box_2 > .gallery_box_item img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: clamp(5px, 1.06667vw, 15px);
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  .gallery_box_2 {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery_box_2:has(> .gallery_box_item:only-child) {
  grid-template-columns: 1fr;
}
.gallery_box_2:has(> .gallery_box_item:first-child:nth-last-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}

.news_detail_content_item:nth-child(even) > .row > div:first-child {
  order: 13;
}

.news_file > ul {
  font-size: 0.9em;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 992px) {
  .profile_message_inner {
    display: flex;
  }
  .profile_message_inner .profile_message_content {
    flex: 1 1 0;
    padding-right: min(calc(30px + 60 * (100vw - 992px) / 508), 90px);
  }
  .profile_message_inner .profile_message_career {
    flex: 0 0 46%;
  }
}

.profile_message_content .ceo_name {
  text-align: right;
  margin-top: 2rem;
}

.profile_message_career {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1125), 60px);
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1125), 30px);
  background-color: #E1F3FF;
}
.profile_message_career .ttl {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.profile_message_career ul {
  font-size: 0.85rem;
  list-style: none;
  padding: 0;
}
.profile_message_career ul > li {
  padding-left: 1.2em;
  margin-bottom: 1em;
  position: relative;
}
.profile_message_career ul > li:last-child {
  margin-bottom: 0;
}
.profile_message_career ul > li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #006db8;
  transform: scale(0.5);
}

/* ---  --- */
.profile_overview {
  background-color: #F6F7F9;
}

.profile_overview_item {
  border: solid 1px #CCD1DD;
  padding: 30px;
  height: 100%;
  background-color: #fff;
}
.profile_overview_item .ttl {
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: solid 1px #efefef;
}
.profile_overview_item .column {
  font-size: 0.8em;
}

/* ---  --- */
.profile_access {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.profile_access .columns {
  margin-bottom: 30px;
  padding-left: 5%;
}
.profile_access .columns .ttl {
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.profile_access .columns .ttl .in {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #1fb3dd;
}
.profile_access .columns ul {
  font-size: 0.8em;
}
.profile_access .googlemap {
  border-radius: 10px;
  margin-top: auto;
}
@media print, screen and (min-width: 992px) {
  .profile_access .googlemap {
    margin-left: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
  }
  .profile_access.even .columns {
    order: 2;
    margin-top: auto;
  }
  .profile_access.even .googlemap {
    order: 1;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
  }
}

/* -------------------------------
	業務内容
-------------------------------- */
/* ---  --- */
.business_head_main .photo {
  border-radius: clamp(15px, 3.3vw, 66px);
}
@media print, screen and (min-width: 992px) {
  .business_head_main .photo {
    margin-right: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
    overflow: hidden;
  }
}

.business_head_main_column {
  margin-top: 20px;
}
.business_head_main_column .ttl {
  font-size: 1rem;
}
.business_head_main_column .ttl > .fs-en {
  font-weight: 400;
  font-size: min(calc(31px + 20 * (100vw - 375px) / 1125), 51px);
  line-height: 1.3;
  display: block;
}
.business_head_main_column .ttl > .fs-jp {
  color: #006db8;
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
  display: block;
  margin-top: 1em;
}
@media print, screen and (min-width: 992px) {
  .business_head_main_column {
    margin-top: 0;
    padding-top: min(calc(0px + 50 * (100vw - 992px) / 506), 50px);
    padding-right: min(calc(20px + 20 * (100vw - 992px) / 506), 40px);
  }
  .business_head_main_column .ttl > .fs-en {
    font-size: min(calc(31px + 20 * (100vw - 992px) / 506), 51px);
  }
  .business_head_main_column .ttl > .fs-jp {
    font-size: min(calc(16px + 6 * (100vw - 992px) / 506), 22px);
  }
}

/**/
.business_head_item {
  padding: min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
  margin-bottom: min(calc(25px + 25 * (100vw - 375px) / 1125), 50px);
}
.business_head_item:last-child {
  margin-bottom: 0;
}
.business_head_item:nth-child(odd) {
  border-radius: 10px;
  background-color: #eef3f9;
}
.business_head_item .photo {
  border-radius: clamp(15px, 2.13334vw, 32px);
  height: auto;
  overflow: hidden;
}
.business_head_item .row {
  gap: 20px 0;
}
.business_head_item .business_head_item_column h4 {
  color: var(--primary);
  font-size: min(calc(20px + 8 * (100vw - 375px) / 1125), 28px);
}
.business_head_item .business_head_item_column h4 small {
  color: #333;
  font-size: 16px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .business_head_item .business_head_item_column .column {
    font-size: 0.85em;
  }
}
@media print, screen and (min-width: 992px) {
  .business_head_item:nth-child(odd) .business_head_item_column {
    padding-left: min(calc(30px + 70 * (100vw - 992px) / 508), 100px);
  }
  .business_head_item:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .business_head_item:nth-child(even) .business_head_item_column {
    padding-right: min(calc(30px + 70 * (100vw - 992px) / 508), 100px);
  }
}

/* ---  --- */
.business_sr_main .photo {
  border-radius: clamp(15px, 3.3vw, 66px);
}
@media print, screen and (min-width: 992px) {
  .business_sr_main .photo {
    margin-right: calc(var(--edge) + clamp(15px, 3.33334vw, 50px));
    overflow: hidden;
  }
}

.business_sr_main_column {
  margin-top: 20px;
}
.business_sr_main_column .ttl {
  font-size: 1rem;
}
.business_sr_main_column .ttl > .fs-en {
  font-weight: 400;
  font-size: min(calc(31px + 20 * (100vw - 375px) / 1125), 51px);
  line-height: 1.3;
  display: block;
}
.business_sr_main_column .ttl > .fs-jp {
  color: #006db8;
  font-size: min(calc(16px + 6 * (100vw - 375px) / 1125), 22px);
  display: block;
  margin-top: 1em;
}
@media print, screen and (min-width: 992px) {
  .business_sr_main_column {
    margin-top: 0;
    padding-top: min(calc(0px + 50 * (100vw - 992px) / 506), 50px);
    padding-right: min(calc(20px + 20 * (100vw - 992px) / 506), 40px);
  }
  .business_sr_main_column .ttl > .fs-en {
    font-size: min(calc(31px + 20 * (100vw - 992px) / 506), 51px);
  }
  .business_sr_main_column .ttl > .fs-jp {
    font-size: min(calc(16px + 6 * (100vw - 992px) / 506), 22px);
  }
}

/**/
.business_sr_item {
  padding: min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
  margin-bottom: min(calc(25px + 25 * (100vw - 375px) / 1125), 50px);
}
.business_sr_item:last-child {
  margin-bottom: 0;
}
.business_sr_item:nth-child(odd) {
  border-radius: 10px;
  background-color: #eef3f9;
}
.business_sr_item .photo {
  height: auto;
  overflow: hidden;
}
.business_sr_item .row {
  gap: 20px 0;
}
.business_sr_item .business_sr_item_column h4 {
  color: var(--primary);
  font-size: min(calc(20px + 8 * (100vw - 375px) / 1125), 28px);
}
.business_sr_item .business_sr_item_column h4 small {
  color: #333;
  font-size: 16px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .business_sr_item .business_sr_item_column .column {
    font-size: 0.85em;
  }
}
@media print, screen and (min-width: 992px) {
  .business_sr_item:nth-child(odd) .business_sr_item_column {
    padding-left: min(calc(30px + 70 * (100vw - 992px) / 508), 100px);
  }
  .business_sr_item:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .business_sr_item:nth-child(even) .business_sr_item_column {
    padding-right: min(calc(30px + 70 * (100vw - 992px) / 508), 100px);
  }
}

/**/
.business_sr_content_item {
  margin-bottom: min(calc(50px + 50 * (100vw - 375px) / 1125), 100px);
}
.business_sr_content_item:last-child {
  margin-bottom: 0;
}
.business_sr_content_item .ttl {
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1125), 28px);
  line-height: 2;
  text-align: left;
  margin: 1.5em 0;
}
.business_sr_content_item .ttl br {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .business_sr_content_item .ttl {
    text-align: center;
  }
  .business_sr_content_item .ttl br {
    display: block;
  }
}
.business_sr_content_item .link_list > ul {
  font-size: 0.85rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.business_sr_content_item .link_list > ul > li .btn {
  font-size: 0.85rem;
}

.business_sr_content_item_photo {
  max-width: 800px;
  width: 80%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.business_sr_content_item_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business_sr_content_item_box .business_sr_content_item_box_ttl {
  color: var(--primary);
}

.business_sr_content_item_image {
  text-align: center;
}
.business_sr_content_item_image img {
  border-radius: clamp(12px, 2.2vw, 33px);
}

.business_sr_content_item_box2 h5 {
  font-size: 1.2rem;
}
.business_sr_content_item_box2 .table-design-1 {
  font-size: 0.85rem;
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
.recruit_head h3 {
  font-size: min(calc(16px + 22 * (100vw - 375px) / 1125), 38px);
  line-height: 2;
  text-align: center;
}
.recruit_head p {
  font-weight: 500;
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1125), 16px);
  text-align: center;
}
.recruit_head .recruit_head_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
}
.recruit_head .recruit_head_nav > ul > li {
  flex: 0 0 calc((100% - 10px) / 2);
}
.recruit_head .recruit_head_nav > ul > li .btn {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1125), 16px);
  padding: 0.75em 1em;
  display: block;
}

.recruit_content {
  padding-bottom: min(calc(55px + 55 * (100vw - 375px) / 1125), 110px);
}
.recruit_content:last-child {
  padding-bottom: 0;
}

/* ---  --- */
.recruit_section {
  display: grid;
  gap: min(calc(40px + 40 * (100vw - 375px) / 1125), 80px) 0;
}

.recruit_section_ttl {
  color: var(--primary);
  display: flex;
  align-items: center;
  margin: 0;
}
.recruit_section_ttl::after {
  content: "";
  flex: 1 1 0;
  margin-left: 0.5em;
  height: 1px;
  background-color: var(--primary);
}

.recruit_section_caption {
  text-align: center;
}
.recruit_section_caption img {
  border-radius: clamp(16px, 4.4vw, 66px);
}

.recruit_section_box_2 {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1125), 60px) clamp(5px, 3.33334vw, 50px);
  border-radius: clamp(16px, 2.2vw, 33px);
  background-color: #eef3f9;
  position: relative;
  z-index: 0;
}

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

.recruit_section_box_3_item {
  border: solid 1px #AAB2B8;
  padding: clamp(15px, calc(30px * (var(--ww-item) / 414)), 30px);
  height: 100%;
}
.recruit_section_box_3_item .num {
  color: var(--info);
  font-weight: 700;
  font-size: clamp(15px, calc(50px * (var(--ww-item) / 414)), 50px);
  line-height: 1.3;
  text-align: center;
}
.recruit_section_box_3_item h5 {
  color: var(--primary);
  font-size: clamp(15px, calc(26px * (var(--ww-item) / 414)), 26px);
  text-align: center;
}
.recruit_section_box_3_item p {
  font-size: 0.85rem;
}

.recruit_section_box_3_item2 {
  color: #fff;
  font-size: min(0.85rem, 16px);
  line-height: 1.75;
  border: solid 1px #AAB2B8;
  padding: clamp(15px, calc(30px * (var(--ww-item) / 414)), 30px);
  height: 100%;
  background-color: #006db8;
}

.recruit_section_box_4 table {
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .recruit_section_box_4 table > tbody > tr > th {
    width: 12em;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_section_box_4 table {
    font-size: 17px;
  }
}

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

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

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em 0.15em;
  border-radius: 10em;
  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, #policy .contents .ttl {
  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) " )";
}

/* 初期状態：確認画面は非表示 */
.confirm_area {
  display: none;
}

/* Contact Form 7：ラジオボタン整形 */
.list-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.list-radio .wpcf7-list-item {
  margin: 0;
}

.list-radio label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* 同意チェック */
.agree label,
.wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* CF7 エラー表示 */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 14px;
  line-height: 1.5;
}

/* エラー時の入力欄 */
.wpcf7-not-valid {
  border-color: #dc3545;
}

/* 確認画面側 */
.confirm_area .table-contact span {
  display: inline-block;
  white-space: pre-wrap;
}

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