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

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

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

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

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

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

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

/* 画像回り込み */
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: 1600px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-radius-30 {
  border-radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}
.photo-radius-30 img {
  border-radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}

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

/* -------------------------------
	btn
-------------------------------- */
.btn-primary {
  border: none;
}
.btn-primary:hover {
  background-color: #005f87;
}

.btn-success {
  border: none;
}
.btn-success:hover {
  background-color: #d15d00;
}

.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-arrow-r {
  display: inline-flex;
  align-items: center;
  padding-right: 0.75em;
}
.btn-arrow-r:after {
  content: "";
  width: 1.625em;
  aspect-ratio: 26 / 7;
  display: block;
  margin-left: 2em;
  background-image: url("../images/common/arrow-w-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.link_map {
  transition: opacity 0.3s ease;
}
.link_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;
}

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

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.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;
}

/* -------------------------------
	マーカー
-------------------------------- */
.marker_pink {
  --color: #facbcb;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, var(--color) 60%, var(--color) 95%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
  display: inline;
}

/* -------------------------------
	上部　カテゴリー
-------------------------------- */
.cat_navi {
  background-color: #fff;
}
.cat_navi .catbtn {
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.75em 1em;
  border-radius: 10em;
  background-color: var(--primary);
  position: relative;
}
.cat_navi .catbtn:after {
  content: "\f0c9";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -.5em;
  transition: transform .3s ease;
}
.cat_navi .catbtn.on:after {
  content: "\f00d";
  transform: rotate(180deg);
}
.cat_navi .catnavi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .cat_navi .catbtn {
    display: none;
  }
  .cat_navi .catnavi {
    display: block;
  }
}

/* カテゴリー　一覧デザイン SP */
.cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cat_navi_list {
    font-size: 15px;
  }
  .cat_navi_list > li {
    line-height: 1.5;
    border-bottom: solid 1px var(--primary);
  }
  .cat_navi_list > li > a {
    color: var(--primary);
    text-decoration: none;
    padding: 0.75em 3em 0.75em 1em;
    display: block;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover, .cat_navi_list > li.active > a {
    color: var(--primary);
  }
}

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

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

/* -------------------------------
	背景固定
-------------------------------- */
.parallax-window {
  height: 75vw;
  background: transparent;
}
@media print, screen and (min-width: 768px) {
  .parallax-window {
    height: 64vh;
    min-width: 50vw;
  }
}
.parallax-window > img {
  display: none;
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media print {
  .parallax-window {
    height: 500px;
  }
  .parallax-window > img {
    display: block;
  }

  .parallax-mirror {
    display: none !important;
  }
}
/* -------------------------------
	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;
}

.fw6 {
  font-weight: 600 !important;
}

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

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

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

.fs-16-18 {
  font-size: min(calc(16px + 2 * (100vw - 320px) / 1280), 18px);
}

.fs-16-20 {
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1280), 20px);
}

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

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

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

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

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

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

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

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

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

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

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

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

.mt-90 {
  margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.mb-90 {
  margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.mtb-90 {
  margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

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

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

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

.mt-120 {
  margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.mb-120 {
  margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.mtb-120 {
  margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.mt-150 {
  margin-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

.mb-150 {
  margin-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

.mtb-150 {
  margin-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  margin-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

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

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

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

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

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

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

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

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

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

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

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

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

.pt-90 {
  padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.pb-90 {
  padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.ptb-90 {
  padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

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

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

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

.pt-120 {
  padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.pb-120 {
  padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.ptb-120 {
  padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.pt-150 {
  padding-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

.pb-150 {
  padding-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

.ptb-150 {
  padding-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  padding-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .mt-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

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

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

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

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

  .mt-lg-120 {
    margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .mb-lg-120 {
    margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

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

  .mt-lg-150 {
    margin-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  }

  .mb-lg-150 {
    margin-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .pt-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

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

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

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

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

  .pt-lg-120 {
    padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .pb-lg-120 {
    padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

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

  .pt-lg-150 {
    padding-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  }

  .pb-lg-150 {
    padding-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
  }

  .ptb-lg-150 {
    padding-top: min(calc(45px + 105 * (100vw - 320px) / 1280), 150px);
    padding-bottom: min(calc(45px + 105 * (100vw - 320px) / 1280), 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 - 100vw) / 2);
  }

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

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

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

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - 100vw) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .photo-lg-r-full {
    margin-right: calc(-15px - 50 * (100vw - 320px) / 1280);
  }
}
@media print, screen and (min-width: 1600px) {
  .photo-lg-r-full {
    margin-right: calc((1470px - 100vw) / 2);
  }
}
/* 横幅いっぱいに広げるスタイル */
.ml-full {
  margin-left: -15px;
}

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

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

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

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

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

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

  .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full, .mr-xxl-full {
    margin-right: calc((1470px - 100vw) / 2);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  border-left: solid 0.2em #17b1ce;
  padding-left: 0.5em;
}

.title-2 {
  padding: 0.25em 0 0.25em 0.75em;
  border-radius: 5px;
  background: linear-gradient(to right, rgba(23, 177, 206, 0.5) 0%, rgba(23, 177, 206, 0) 100%);
}

.title-hh-1 {
  font-size: 1rem;
  position: relative;
}
.title-hh-1 > .fs-en {
  color: #17b1ce;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 100%;
}
.title-hh-1 > .fs-en:before {
  content: "●";
  transform: scale(0.5);
  margin-right: 0.25em;
}
.title-hh-1 > .txt {
  font-size: min(calc(28px + 14 * (100vw - 320px) / 1280), 42px);
  line-height: 1.42857;
  display: block;
}

.title-hh-2 {
  font-size: 1rem;
  line-height: 1.5;
}
.title-hh-2 > .fs-en {
  color: #17b1ce;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.title-hh-2 > .fs-en:before {
  content: "●";
  transform: scale(0.5);
  margin-right: 0.25em;
}
.title-hh-2 > .txt {
  font-size: min(calc(28px + 14 * (100vw - 320px) / 1280), 42px);
  display: block;
}

/* タイトル用フォントサイズ */
.fs-ttl-1 {
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1280), 32px);
}

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

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

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

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

.max-ww-1220 {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- form --- */
/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: 60vh;
  min-height: 120vw;
  display: flex;
  padding-top: 50px;
  position: relative;
  z-index: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: 100vh;
    min-height: auto;
  }
  @supports (height: 100dvh) {
    #mainvisual {
      height: 100dvh;
    }
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: 100vh;
    min-height: auto;
  }
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    padding-top: 100px;
  }
  @supports (height: 100dvh) {
    #mainvisual {
      height: 100dvh;
    }
  }
}
@media print {
  #mainvisual {
    height: 1000px;
  }
}
#mainvisual .scroll {
  display: none;
}
@media print, screen and (min-width: 992px) {
  #mainvisual .scroll {
    font-size: min(calc(12px + 4 * (100vw - 992px) / 928), 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: min(calc(15px + 15 * (100vw - 992px) / 928), 30px);
    bottom: -50px;
  }
  #mainvisual .scroll .fs-en {
    color: #686868;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 0 0.15em rgba(255, 255, 255, 0.7), 0 0 0.25em rgba(255, 255, 255, 0.4), 0 0 0.35em rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    display: block;
    margin-bottom: 10px;
  }
  #mainvisual .scroll:after {
    content: "";
    width: 1px;
    height: 150px;
    background-color: #686868;
    animation: scroll 1.5s infinite;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.mainvisual_content {
  padding-left: min(calc(15px + 125 * (100vw - 320px) / 1600), 140px);
  padding-right: 10%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content {
    padding-top: 100px;
  }
}
.mainvisual_content .inner {
  margin: auto 0 0;
  padding-bottom: 10%;
}
@media print, screen and (min-width: 992px) {
  .mainvisual_content .inner {
    margin: auto 0;
    padding: 0;
  }
}
.mainvisual_content .subttl {
  font-weight: 500;
  font-size: min(calc(14px + 4 * (100vw - 320px) / 1600), 18px);
  line-height: normal;
  text-transform: uppercase;
}
.mainvisual_content h2 {
  font-weight: 700;
  font-size: min(calc(20px + 28 * (100vw - 320px) / 1600), 48px);
  line-height: 1.770833;
  text-shadow: 0 0 0.15em rgba(255, 255, 255, 0.7), 0 0 0.25em rgba(255, 255, 255, 0.4), 0 0 0.35em rgba(255, 255, 255, 0.4);
  margin: 0.3em 0 0.5em;
}
.mainvisual_content .column {
  font-weight: 700;
  font-size: min(calc(14px + 6 * (100vw - 320px) / 1600), 20px);
  line-height: 1.75;
  text-shadow: 0 0 0.15em rgba(255, 255, 255, 0.7), 0 0 0.25em rgba(255, 255, 255, 0.4), 0 0 0.35em rgba(255, 255, 255, 0.4);
  border-left: solid 0.3em #17b1ce;
  padding-left: 1em;
}

.main_splide {
  margin-left: auto;
  height: 100%;
}
@media print, screen and (min-width: 992px) {
  .main_splide {
    width: 79%;
    margin-right: min(calc(15px + 15 * (100vw - 992px) / 928), 30px);
  }
}
.main_splide .splide, .main_splide .splide-wrapper, .main_splide .splide__track, .main_splide .splide__list, .main_splide .splide__slide {
  height: 100%;
}
.main_splide .slide-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main_splide .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .main_splide .slide-media {
    border-radius: 200px 10px 10px 10px;
  }
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  color: #17b1ce;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.home_ttl_1 > .fs-en:before {
  content: "●";
  transform: scale(0.5);
  margin-right: 0.25em;
}
.home_ttl_1 > .txt {
  font-size: min(calc(32px + 10 * (100vw - 320px) / 1280), 42px);
  display: block;
}

/* ---  --- */
.home_about {
  position: relative;
}
.home_about:before {
  content: "";
  position: absolute;
  right: 0;
  top: -20vw;
  z-index: -1;
  width: 40.15vw;
  height: 60.15vw;
  background: url("../images/common/bg_img001.png") no-repeat center right/contain;
}

.home_about_top {
  position: relative;
  z-index: 0;
}
.home_about_top .bg_txt {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .home_about_top .bg_txt {
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.15em;
    z-index: -1;
    color: #f7f7f7;
    font-weight: 500;
    font-size: min(calc(100px + 100 * (100vw - 768px) / 1232), 200px);
    line-height: 1;
  }
}

.home_about_link .btn {
  padding: 0;
  display: block;
  border-radius: 10px;
}

/* ---  --- */
.home_service {
  background: url("../images/common/bg001.jpg");
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_service .bg_txt {
  position: absolute;
  right: 0;
  z-index: -1;
  color: #f5f5f5;
  font-size: min(calc(50px + 150 * (100vw - 320px) / 1600), 200px);
  line-height: 1;
  margin-top: -.05em;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .home_service .bg_txt {
    display: block;
  }
}

.home_service_content {
  padding: 30px 15px;
  border-radius: min(calc(15px + 85 * (100vw - 320px) / 1280), 100px);
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .home_service_content {
    padding-top: min(calc(30px + 30 * (100vw - 768px) / 832), 60px);
    padding-bottom: min(calc(30px + 30 * (100vw - 768px) / 832), 60px);
    padding-left: min(calc(30px + 65 * (100vw - 768px) / 832), 95px);
    padding-right: 0;
    position: relative;
    z-index: 0;
  }
  .home_service_content:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(50vw - 5px);
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    background-color: #fff;
  }
}
.home_service_content h3 {
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1280), 32px);
  line-height: normal;
  display: flex;
  align-items: center;
}
.home_service_content h3:before {
  content: "";
  width: 1.5625em;
  height: 1.5625em;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.home_service_content h3 > .txt {
  display: block;
  flex: 1 1 0;
  padding-left: 0.625em;
}
.home_service_content h3.icon1:before {
  background-image: url("../images/top/home_service_icon_1.png");
}
.home_service_content h3.icon2:before {
  background-image: url("../images/top/home_service_icon_2.png");
}
.home_service_content .column {
  font-weight: 400;
}
.home_service_content .home_service__list {
  color: #1295ad;
  font-size: min(calc(12px + 6 * (100vw - 320px) / 1280), 18px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.83333em 0.4444em;
}
.home_service_content .home_service__list > li {
  border: solid 1px #1295ad;
  border-radius: 10em;
  padding: 0.25em 1em;
}
@media print, screen and (min-width: 768px) {
  .home_service_content .home_service__list > li {
    padding: 0.75em 2.16666em;
  }
}
.home_service_content .btns {
  text-align: right;
  margin-top: 40px;
}

/* ---  --- */
.home_cases {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_cases:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 30.55vw;
  height: 46.8vw;
  margin-top: -10vw;
  background: url("../images/top/home_cases_bg.png") no-repeat center left/contain;
}
.home_cases .home_ttl_1 {
  position: relative;
  z-index: 0;
}
.home_cases .home_ttl_1:before {
  content: "CASES";
  color: #f7f7f7;
  font-size: min(calc(90px + 110 * (100vw - 320px) / 1280), 200px);
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.home_cases_splide__slide {
  width: min(calc(260px + 240 * (100vw - 320px) / 1280), 500px);
}
.home_cases_splide__slide > .photo {
  aspect-ratio: 10 / 9;
  border-radius: 10px;
  overflow: hidden;
}
.home_cases_splide__slide figcaption {
  padding-top: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}
.home_cases_splide__slide figcaption .sub_box_top {
  font-size: min(calc(12px + 4 * (100vw - 320px) / 1280), 16px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 1.875em;
  margin-bottom: 15px;
}
.home_cases_splide__slide figcaption .sub_box_top .date {
  font-weight: 400;
  line-height: normal;
}
.home_cases_splide__slide figcaption .sub_box_top .cat {
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.5;
  text-align: center;
  border: solid 1px #686868;
  border-radius: 10em;
  padding: 2px 1em 3px;
  min-width: 9.8em;
}
.home_cases_splide__slide figcaption .ttl {
  font-weight: 700;
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1280), 20px);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
a > .home_cases_splide__slide > .photo img {
  transition: transform 0.3s ease;
}
a > .home_cases_splide__slide:hover > .photo img {
  transform: scale(1.25);
}

/* -------------------------------
	業者様・企業様へのご案内
-------------------------------- */
/* ---  --- */
.service_head {
  position: relative;
}
.service_head:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 30.55vw;
  height: 46.8vw;
  margin-top: -10vw;
  background: url("../images/top/home_cases_bg.png") no-repeat center left/contain;
  pointer-events: none;
}
.service_head .service_head_content {
  position: relative;
  z-index: 10;
}
.service_head h3 {
  font-size: 25px;
}
.service_head .bg_txt {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .service_head .photo {
    margin-left: min(calc(15px + 80 * (100vw - 992px) / 608), 95px);
  }
  .service_head .bg_txt {
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.15em;
    color: #EFEFEF;
    font-size: min(calc(100px + 100 * (100vw - 992px) / 928), 200px);
    line-height: 1;
    letter-spacing: normal;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

/* ---  --- */
.service_strengths {
  background: url("../images/common/bg001.jpg");
}

.service_strengths_point {
  height: 100%;
  padding: min(7.8125%, 50px);
  border-radius: 50px;
  background-color: #fff;
}
.service_strengths_point h4 {
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.service_strengths_point h4 .num {
  color: #e47d2a;
  font-size: 2em;
  line-height: 1;
  display: block;
  width: 1.5em;
}
.service_strengths_point h4 .txt {
  flex: 1 1 0;
}
@media print, screen and (min-width: 992px) {
  .service_strengths_point h4 {
    font-size: min(calc(18px + 7 * (100vw - 992px) / 608), 25px);
  }
}

/* ---  --- */
.service_plan_list {
  font-size: min(calc(12px + 4 * (100vw - 320px) / 448), 16px);
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .service_plan_list {
    font-size: 15px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  .service_plan_list {
    font-size: 16px;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.service_plan_list > li {
  border: solid 1px #ccc;
  padding: 20px 10px;
}
.service_plan_list > li .icon {
  width: min(50%, 100px);
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
}
.service_plan_list > li .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service_plan_list > li .column {
  line-height: 1.5;
  text-align: center;
}

/* ---  --- */
.service_step {
  position: relative;
}
.service_step:before {
  content: "";
  position: absolute;
  right: 0;
  top: -20vw;
  z-index: -1;
  width: 40.15vw;
  height: 60.15vw;
  background: url("../images/common/bg_img001.png") no-repeat center right/contain;
  pointer-events: none;
}

.service_flow__item {
  display: flex;
}
.service_flow__item__step {
  flex: 0 0 70px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.service_flow__item__step:after {
  content: "";
  margin: 5px auto;
  display: block;
  flex: 1 1 0;
  width: 3px;
  background: url("../images/common/bg001.jpg");
}
.service_flow__item__content {
  flex: 1 1 0;
  padding-left: 20px;
  padding-bottom: 50px;
}
.service_flow__item:last-child .service_flow__item__step {
  min-height: auto !important;
}
.service_flow__item:last-child .service_flow__item__step:after {
  display: none !important;
}
.service_flow__item:last-child .service_flow__item__content {
  padding-bottom: 0px !important;
}
@media print, screen and (min-width: 768px) {
  .service_flow__item__step {
    flex: 0 0 130px;
    min-height: 180px;
  }
  .service_flow__item__content {
    padding-left: 60px;
    padding-bottom: 50px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_flow__item__step {
    flex: 0 0 170px;
    min-height: 220px;
  }
  .service_flow__item__content {
    padding-left: 60px;
    padding-bottom: 50px;
  }
}
.service_flow__item__step .step {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  background: url("../images/common/bg001.jpg");
}
.service_flow__item__step .step .in {
  display: block;
  margin: auto;
}
.service_flow__item__step .step .in > strong {
  font-size: 1.5em;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .service_flow__item__step .step {
    font-size: 25px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_flow__item__step .step {
    font-size: 30px;
  }
}
.service_flow__item__content {
  font-size: 0.875rem;
}
.service_flow__item__content .column {
  padding-top: 20px;
}
.service_flow__item__content .column h4 {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1280), 32px);
  line-height: normal;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .service_flow__item__content {
    font-size: 0.9375rem;
  }
  .service_flow__item__content .column {
    padding-top: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_flow__item__content {
    font-size: 1rem;
    display: flex;
  }
  .service_flow__item__content .column {
    flex: 1 1 0;
    padding-top: 40px;
  }
}

/* -------------------------------
	施工事例
-------------------------------- */
/* ---  --- */
.works_item {
  overflow: hidden;
}

/**/
.works_item_head {
  font-size: min(calc(12px + 4 * (100vw - 320px) / 1280), 16px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 1.875em;
  margin-bottom: 15px;
}
.works_item_head .date {
  font-weight: 400;
  line-height: normal;
}
.works_item_head .cat {
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.5;
  text-align: center;
  border: solid 1px #686868;
  border-radius: 10em;
  padding: 2px 1em 3px;
  min-width: 9.8em;
}

.works_item_gallery .ttl {
  font-size: min(calc(30px + 50 * (100vw - 320px) / 1280), 80px);
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: -.25em;
  position: relative;
  mix-blend-mode: multiply;
  z-index: 50;
}
.works_item_gallery .ttl:before, .works_item_gallery .ttl:after {
  content: "";
  flex: 1;
  height: 1px;
  display: block;
}
.works_item_gallery .ttl:before {
  margin-right: .75em;
  background-color: currentColor;
}
.works_item_gallery .ttl:after {
  margin-left: .75em;
  background-color: currentColor;
}
.works_item_gallery .ttl.before {
  color: #17b1ce;
}
.works_item_gallery .ttl.before:before {
  display: none;
}
.works_item_gallery .ttl.after {
  color: #e47d2a;
}
.works_item_gallery .ttl.after:after {
  display: none;
}

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

/* -------------------------------
	個人様・ご家庭向けサービス
-------------------------------- */
/* ---  --- */
.service_home_head {
  position: relative;
}
.service_home_head:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 30.55vw;
  height: 46.8vw;
  margin-top: -10vw;
  background: url("../images/top/home_cases_bg.png") no-repeat center left/contain;
  pointer-events: none;
}
.service_home_head .service_head_content {
  position: relative;
  z-index: 10;
}
.service_home_head h3 > .txt {
  font-size: min(calc(25px + 17 * (100vw - 320px) / 1280), 42px);
}
.service_home_head .bg_txt {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .service_home_head .photo {
    margin-left: min(calc(15px + 80 * (100vw - 992px) / 608), 95px);
  }
  .service_home_head .bg_txt {
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.15em;
    color: #f7f7f7;
    font-size: min(calc(100px + 100 * (100vw - 992px) / 928), 200px);
    line-height: 1;
    letter-spacing: normal;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

/* ---  --- */
.service_home_whyus {
  background: url("../images/common/bg001.jpg");
}

.service_home_whyus_content {
  line-height: 2;
}

/* ---  --- */
.service_home_list_content {
  margin-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}
.service_home_list_content:last-child {
  margin-bottom: 0;
}

.accordion-box-home {
  border: solid 1px #17b1ce;
  border-radius: 10px;
  margin-bottom: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}
.accordion-box-home:last-child {
  margin-bottom: 0;
}
.accordion-box-home > .ttl {
  color: #17b1ce;
  font-weight: 700;
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1280), 20px);
  line-height: 1.5;
  padding: 0.5em 3em 0.5em 1em;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.accordion-box-home > .ttl .accordion_plus, .accordion-box-home > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.accordion-box-home > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.accordion-box-home > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #17b1ce;
}
.accordion-box-home > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.accordion-box-home > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-box-home > .ttl.active .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box-home > .ttl.active .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.accordion-box-home > .column {
  padding: 20px;
  display: none;
}

/* ---  --- */
.service_home_cat {
  --bg-color: var(--primary);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service_home_cat > .in {
  color: #fff;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 10em;
  min-width: 7em;
  display: block;
  background-color: var(--bg-color);
}

/**/
.service_home_item_type1 {
  padding: clamp(20px, 3.125vw, 50px) clamp(15px, 3.125vw, 50px);
  border-radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
  background: url("../images/common/bg001.jpg");
}
.service_home_item_type1 > .box_photo {
  margin-bottom: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .service_home_item_type1 {
    display: flex;
    gap: 0 clamp(30px, 3.125vw, 50px);
  }
  .service_home_item_type1 > .box_photo {
    flex: 0 0 46%;
    order: 13;
    margin-bottom: 0;
  }
  .service_home_item_type1 .box_column {
    flex: 1 1 0;
  }
}
.service_home_item_type1 .box_photo {
  --radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}
.service_home_item_type1 .box_photo .photo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.service_home_item_type1 .box_photo .photo img {
  border-radius: var(--radius);
}
.service_home_item_type1 .box_column .ttl {
  color: var(--primary);
  font-size: min(calc(24px + 8 * (100vw - 320px) / 1280), 32px);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.service_home_item_type1 .box_column .price {
  color: var(--success);
  font-size: min(calc(16px + 8 * (100vw - 320px) / 1280), 24px);
  line-height: normal;
  margin-bottom: 1.5rem;
}
.service_home_item_type1 .box_column .price strong {
  font-size: 2em;
  line-height: 1;
  display: inline-block;
}

/**/
.service_home_item_type2 {
  height: 100%;
  padding: min(calc(20px + 10 * (100vw - 320px) / 1280), 30px);
  border-radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
  background: url("../images/common/bg001.jpg");
}
.service_home_item_type2 > .box_photo {
  margin-bottom: 1.2rem;
}
.service_home_item_type2 .box_photo {
  --radius: min(calc(10px + 20 * (100vw - 320px) / 1280), 30px);
}
.service_home_item_type2 .box_photo .photo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.service_home_item_type2 .box_photo .photo img {
  border-radius: var(--radius);
}
.service_home_item_type2 .box_column .ttl {
  color: var(--primary);
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1280), 32px);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.service_home_item_type2 .box_column .price {
  color: var(--success);
  font-size: min(calc(16px + 8 * (100vw - 320px) / 1280), 24px);
  line-height: normal;
  margin-bottom: 1.5rem;
}
.service_home_item_type2 .box_column .price strong {
  font-size: 2em;
  line-height: 1;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .service_home_item_type2 .box_column .ttl {
    font-size: min(calc(24px + 8 * (100vw - 768px) / 832), 32px);
  }
}

/**/
.service_home_item_type3 {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background: url("../images/common/bg001.jpg");
}
.service_home_item_type3 > .box_photo {
  margin-bottom: 1.2rem;
}
.service_home_item_type3 .box_photo {
  --radius: 15px;
}
.service_home_item_type3 .box_photo .photo {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.service_home_item_type3 .box_photo .photo img {
  border-radius: var(--radius);
}
.service_home_item_type3 .box_column .ttl {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.service_home_item_type3 .box_column .price {
  color: var(--success);
  font-size: 18px;
  line-height: normal;
  margin-bottom: 1.5rem;
}
.service_home_item_type3 .box_column .price strong {
  font-size: 2em;
  line-height: 1;
  display: inline-block;
}

/* ---  --- */
.service_home_step {
  color: #fff;
  background: url("../images/common/bg002.jpg");
}
.service_home_step .title-hh-2 > .fs-en {
  color: #fff;
}

.service_home_flow_item {
  display: flex;
}
.service_home_flow_item_step {
  flex: 0 0 70px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.service_home_flow_item_step:after {
  content: "";
  margin: 5px auto;
  display: block;
  flex: 1 1 0;
  width: 3px;
  background: url("../images/common/bg001.jpg");
}
.service_home_flow_item_content {
  flex: 1 1 0;
  padding-left: 20px;
  padding-bottom: 50px;
}
.service_home_flow_item:last-child .service_home_flow_item_step {
  min-height: auto !important;
}
.service_home_flow_item:last-child .service_home_flow_item_step:after {
  display: none !important;
}
.service_home_flow_item:last-child .service_home_flow_item_content {
  padding-bottom: 0px !important;
}
@media print, screen and (min-width: 768px) {
  .service_home_flow_item_step {
    flex: 0 0 130px;
    min-height: 180px;
  }
  .service_home_flow_item_content {
    padding-left: 60px;
    padding-bottom: 50px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_home_flow_item_step {
    flex: 0 0 170px;
    min-height: 220px;
  }
  .service_home_flow_item_content {
    padding-left: 60px;
    padding-bottom: 50px;
  }
}
.service_home_flow_item_step .step {
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  background: url("../images/common/bg001.jpg");
}
.service_home_flow_item_step .step .in {
  display: block;
  margin: auto;
}
.service_home_flow_item_step .step .in > strong {
  font-size: 1.5em;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .service_home_flow_item_step .step {
    font-size: 25px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_home_flow_item_step .step {
    font-size: 30px;
  }
}
.service_home_flow_item_content {
  font-size: 0.875rem;
}
.service_home_flow_item_content .column {
  padding-top: 20px;
}
.service_home_flow_item_content .column h4 {
  color: #fff;
  font-weight: 500;
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1280), 32px);
  line-height: normal;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .service_home_flow_item_content {
    font-size: 0.9375rem;
  }
  .service_home_flow_item_content .column {
    padding-top: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .service_home_flow_item_content {
    font-size: 1rem;
    display: flex;
  }
  .service_home_flow_item_content .column {
    flex: 1 1 0;
    padding-top: 40px;
  }
}

/* ---  --- */
.page_contact {
  position: relative;
}
.page_contact:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30vw;
  height: 46.9vw;
  margin-top: -23.5vw;
  background: url("../images/common/foot_contact_bg2.png") no-repeat center right/contain;
  pointer-events: none;
}
.page_contact:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/common/footer_bg.jpg");
  pointer-events: none;
}

.page_contact_inner {
  padding: 30px 20px;
  border-radius: 10px;
  background: url("../images/common/foot_contact_bg.jpg");
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.page_contact_inner .page_contact_inner__left {
  margin-bottom: 30px;
}
.page_contact_inner .page_contact_inner__left h2 {
  text-align: center;
}
.page_contact_inner .page_contact_inner__left p {
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .page_contact_inner {
    padding: min(calc(50px + 50 * (100vw - 768px) / 832), 100px) min(calc(50px + 60 * (100vw - 768px) / 832), 110px);
  }
  .page_contact_inner .page_contact_inner__left p {
    text-align: center;
  }
}
@media print, screen and (min-width: 1400px) {
  .page_contact_inner {
    display: flex;
  }
  .page_contact_inner .page_contact_inner__left {
    margin-bottom: 0;
    padding-right: 30px;
  }
  .page_contact_inner .page_contact_inner__left h2, .page_contact_inner .page_contact_inner__left p {
    text-align: left;
  }
  .page_contact_inner .page_contact_inner__right {
    margin-left: auto;
    padding-top: 30px;
  }
}
.page_contact_inner .bg_txt {
  display: none;
}
@media print, screen and (min-width: 1400px) {
  .page_contact_inner .bg_txt {
    display: block;
    position: absolute;
    right: -0.2em;
    bottom: -0.3em;
    z-index: -1;
    color: #fff;
    font-weight: 600;
    font-size: 200px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.page_contact__row {
  text-align: center;
}
.page_contact__row > .box:first-child {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #b1b1b1;
}
.page_contact__row h3 {
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.page_contact__row .telphone {
  font-size: 32px;
  margin: 1rem 0;
}
.page_contact__row p {
  font-weight: 400;
  font-size: 0.9375rem;
}
.page_contact__row .btn {
  display: flex;
  max-width: 250px;
  margin: 0 auto;
}
.page_contact__row .btn:after {
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .page_contact__row {
    display: flex;
    justify-content: center;
  }
  .page_contact__row > .box:first-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-right: 30px;
    margin-right: 30px;
    border-bottom: none;
    border-right: solid 1px #b1b1b1;
  }
}
@media print, screen and (min-width: 992px) {
  .page_contact__row > .box:first-child {
    padding-right: 50px;
    margin-right: 50px;
  }
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_staff {
  position: relative;
}
.company_staff:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 30.55vw;
  height: 46.8vw;
  margin-top: -10vw;
  background: url("../images/top/home_cases_bg.png") no-repeat center left/contain;
}

.company_staff_head {
  overflow: hidden;
}

.company_staff_head__content {
  line-height: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.company_staff_head__content .column {
  margin: auto 0;
}

.company_staff_head__photo {
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .company_staff_head__photo {
    border-top-left-radius: min(calc(50px + 50 * (100vw - 992px) / 608), 100px);
  }
}

/**/
.company_staff__name {
  font-size: 1rem;
  line-height: 1.5;
}
.company_staff__name > small {
  color: #fff;
  font-weight: 400;
  font-size: min(calc(13px + 2 * (100vw - 320px) / 1280), 15px);
  display: inline-block;
  padding: 2px 1.5em;
  border-radius: 10em;
  background-color: var(--primary);
}
.company_staff__name > .txt {
  font-size: min(calc(30px + 20 * (100vw - 320px) / 1280), 50px);
  display: block;
}

.company_staff_ceo {
  position: relative;
}
.company_staff_ceo:before {
  content: "";
  position: absolute;
  right: 0;
  top: -20vw;
  z-index: -1;
  width: 40.15vw;
  height: 60.15vw;
  background: url("../images/common/bg_img001.png") no-repeat center right/contain;
}
.company_staff_ceo__content {
  line-height: 2;
}
.company_staff_ceo__content .column {
  margin: auto 0;
}

/**/
.company_staff_list__row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 10px;
}
@media print, screen and (min-width: 768px) {
  .company_staff_list__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  .company_staff_list__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}

.company_staff_list__figure {
  max-width: 500px;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  background: url("../images/common/bg001.jpg");
}
@media print, screen and (min-width: 768px) {
  .company_staff_list__figure {
    max-width: inherit;
  }
}
.company_staff_list__figure > .photo img {
  border-radius: 10px;
}
.company_staff_list__figure figcaption {
  margin-top: 10px;
}
.company_staff_list__figure figcaption h4 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.company_staff_list__figure figcaption h4 > small {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  display: block;
  padding-left: 1em;
  position: relative;
}
.company_staff_list__figure figcaption h4 > small:before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.6);
}
.company_staff_list__figure figcaption h4 > .txt {
  font-size: min(calc(24px + 8 * (100vw - 320px) / 1280), 32px);
  display: block;
}

/* ---  --- */
.company_outline {
  background: url("../images/common/bg001.jpg");
}

/* ---  --- */
.company_map_content {
  color: #fff;
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #17b1ce;
}
.company_map_content .box:first-child {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #fff;
}
@media print, screen and (min-width: 992px) {
  .company_map_content {
    display: flex;
  }
  .company_map_content > .box {
    flex: 0 0 50%;
    padding: 2% 5%;
  }
  .company_map_content > .box:first-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
    border-right: solid 1px #fff;
  }
}
.company_map_content h4 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: flex;
}
.company_map_content h4 i {
  font-size: 1.5em;
  line-height: 1;
  margin-right: 0.25em;
}

/* ---  --- */
.company_recruit {
  position: relative;
  overflow: hidden;
}
.company_recruit:before {
  content: "";
  position: absolute;
  right: 0;
  top: -20vw;
  z-index: -1;
  width: 40.15vw;
  height: 60.15vw;
  background: url("../images/common/bg_img001.png") no-repeat center right/contain;
}
.company_recruit:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 30.55vw;
  height: 46.8vw;
  margin-top: 20vw;
  background: url("../images/top/home_cases_bg.png") no-repeat center left/contain;
}

.company_recruit__content {
  line-height: 2;
}

/**/
.company_recruit_welfare {
  border: solid 1px #17b1ce;
  border-radius: 30px;
  padding: min(8vw, 60px) min(6.25vw, 95px);
  background-color: #fff;
}
.company_recruit_welfare h4 {
  color: #fff;
  font-size: min(calc(25px + 10 * (100vw - 320px) / 1280), 35px);
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 10px;
  background-color: #17b1ce;
}

.company_recruit_welfare__row .box {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: dashed 1px #ccc;
}
.company_recruit_welfare__row .box h5 {
  padding-left: 1.1em;
  margin-bottom: 0.5rem;
  position: relative;
}
.company_recruit_welfare__row .box h5:before {
  content: "■";
  position: absolute;
  left: 0;
  color: #e47d2a;
  transform: scale(0.75);
}
@media print, screen and (min-width: 992px) {
  .company_recruit_welfare__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact .telphone {
  font-size: calc(20px + 16 * (100vw - 320px) / 880);
  text-align: center;
}
.tel_contact .telphone i {
  margin-right: 10px;
}
@media print, screen and (min-width: 1200px) {
  .tel_contact .telphone {
    font-size: 36px;
  }
}

#contactform {
  /**/
}
#contactform .form-control {
  border-color: #eee;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .custom-select {
  box-shadow: none !important;
}
#contactform input[type="file"] {
  font-size: 15px;
  letter-spacing: normal;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select-inline, #contactform .p-region {
    width: auto;
    display: inline;
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #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 {
  width: 15em;
  padding-left: 1em;
}
.table-contact > tbody > tr > th.hisu {
  background-image: url("../images/common/hisu.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm, .table-contact > tbody > tr > td .p-postal-code {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

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

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

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

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  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: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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