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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #D7DFDE;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #D7DFDE;
}
.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 #D7DFDE;
  border-left: 1px solid #D7DFDE;
}
.table-design-2 > thead > tr > th, .table-design-2 > thead > tr > td {
  text-align: center;
  padding: 1em;
  border-right: 1px solid #D7DFDE;
  border-bottom: 1px solid #D7DFDE;
  background-color: #BAEFED;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #D7DFDE;
  border-bottom: 1px solid #D7DFDE;
}
.table-design-2 > tbody > tr > th {
  background: #DEFDFC;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-icon-1 {
  line-height: 1.5;
  list-style: none;
  padding: 0;
}
.list-icon-1 > li {
  padding-left: 2em;
  margin-bottom: 0.5em;
  position: relative;
}
.list-icon-1 > li i {
  font-size: 1.5em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0px;
}
.list-icon-1 > li:last-child {
  margin-bottom: 0;
}

.list-underline-1 {
  list-style: none;
  padding: 0;
}
.list-underline-1 > li {
  padding-left: 1.25em;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #BBCBCA;
  position: relative;
}
.list-underline-1 > li::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.65);
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  height: 0;
  border-top: dashed 1px rgba(10, 186, 181, 0.5);
}

/* -------------------------------
	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, .photo-radius-30 img {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 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-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-line-1 {
  line-height: 2;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.btn-line-1::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-line-1:hover::after {
  transform: scaleX(1);
  visibility: visible;
}

.btn-1 {
  color: #fff;
  text-decoration: none;
  padding: 0.625em;
  padding-left: 1.25em;
  border-radius: 2px;
  min-width: 15em;
  display: inline-grid;
  align-items: center;
  grid-template-columns: 1fr 2.5em;
  box-shadow: 0px 5px 7px 0px rgba(153, 167, 167, 0.2);
  background-color: #27bab5;
  transition: all 0.3s ease;
}
.btn-1 > .txt {
  display: block;
  transition: letter-spacing 0.3s ease;
}
.btn-1 > .icon {
  color: #27bab5;
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background-color: #fff;
}
.btn-1.success {
  background-color: #2764ba;
  box-shadow: 0px 5px 7px 0px rgba(153, 158, 167, 0.2);
}
.btn-1.success > .icon {
  color: #2764ba;
}
.btn-1:hover {
  color: #fff;
}
.btn-1:hover > .txt {
  letter-spacing: 0.15em;
}
.btn-1:hover > .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

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

/* file icon */
.link-icon {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.link-icon::before, .link-icon::after {
  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 {
  display: none;
}
.link-icon[target="_blank"]::after {
  content: "\f35d";
  font-size: 0.75em;
  margin-left: 0.5em;
}
.link-icon:hover {
  opacity: 0.65;
}

@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: 600;
  font-family: "Kodchasan", sans-serif;
  line-height: 1.2;
  letter-spacing: normal;
}
.telphone small {
  font-size: 0.75em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	splide
-------------------------------- */
.splide_gallery .splide__arrow--prev, .splide_gallery .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #01b4ed;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide_gallery .splide__arrow--prev svg, .splide_gallery .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide_gallery .splide__arrow--prev {
  left: -1em;
}
.splide_gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide_gallery .splide__arrow--next {
  right: -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: 10px;
  height: 10px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #efefef;
}
.splide_gallery .splide__pagination__page.is-active {
  background-color: #01b4ed;
  pointer-events: auto;
}
.splide_gallery .splide-wrapper {
  position: relative;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: #f7fffe;
}

.bg-cr-2 {
  background-color: #f0fcfb;
}

.bg-cr-3 {
  background-color: #e0f8f8;
}

/* --▼text-- */
.text-kome {
  padding-left: 1.2em;
  position: relative;
}
.text-kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  padding-left: 0.75em;
  position: relative;
}
.title-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25em;
  height: 100%;
  border-radius: 1em;
  background-color: #0abab5;
}

.title-2 {
  line-height: 1.5;
  padding-left: 2em;
  position: relative;
}
.title-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon001.svg") no-repeat center center/contain;
}

.title-3 {
  line-height: 1.5;
  text-align: center;
}
.title-3::after {
  content: "";
  width: 2.2em;
  height: 1px;
  display: block;
  margin: 0.75em auto 0;
  background-color: currentColor;
  opacity: 0.5;
}

.title-hh-1 {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
.title-hh-1 > .fs-en {
  color: #0abab5;
  font-size: min(calc(30px + 18 * (100vw - 375px) / 1225), 48px);
  letter-spacing: 0.04em;
  line-height: normal;
  display: block;
}
.title-hh-1 > .fs-jp {
  color: #462e38;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1225), 24px);
  display: block;
  margin-top: 0.5em;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: calc(var(--container-padding) / -2);
}
@media print, screen and (min-width: 768px) {
  :root {
    --container-padding: clamp(30px, 8.125vw, 130px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1470px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  max-width: 1600px;
  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;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  --margintop: 50px;
  --marginbtm: clamp(15px, 2.5vw, 40px);
  background-color: #fff;
  margin: 0 clamp(15px, 2.5vw, 40px);
  margin-top: var(--margintop);
  padding-bottom: var(--marginbtm);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    --margintop: 137px;
  }
}
#mainvisual .mainvisual_image .slide-media {
  height: calc(var(--app-h) * 0.6);
  border-radius: clamp(10px, 1.5vw, 30px);
  overflow: hidden;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .mainvisual_image .slide-media {
    height: calc(var(--app-h) - var(--margintop) - var(--marginbtm));
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .mainvisual_image .slide-media {
    height: calc(var(--app-h) - var(--margintop) - var(--marginbtm));
  }
}
#mainvisual .mainvisual_image .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainvisual .mainvisual_content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
#mainvisual .mainvisual_content .inner {
  margin: auto 0 10%;
  padding-left: min(calc(20px + 138 * (100vw - 375px) / 1545), 158px);
}
#mainvisual .mainvisual_content .inner h2 {
  font-weight: 500;
  font-size: min(calc(23px + 25 * (100vw - 375px) / 1545), 48px);
  line-height: 1.75;
  margin: 0;
}
#mainvisual .mainvisual_content .inner p {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 1545), 18px);
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  #mainvisual .mainvisual_content .inner {
    margin: auto 0;
  }
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
.home_ttl_1 > .fs-en {
  color: #0abab5;
  font-size: min(calc(30px + 18 * (100vw - 375px) / 1225), 48px);
  letter-spacing: 0.04em;
  line-height: normal;
  display: block;
}
.home_ttl_1 > .fs-jp {
  color: #462e38;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1225), 24px);
  display: block;
  margin-top: 0.5em;
}

/* ---  --- */
.home_service {
  background-color: #f7fffe;
}

@media print, screen and (min-width: 768px) {
  .home_service_splide {
    visibility: visible;
  }
}
.home_service_splide .splide__list .splide__slide {
  width: clamp(280px, 50%, 470px);
}
@media print, screen and (min-width: 768px) {
  .home_service_splide .splide__list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .home_service_splide .splide__list .splide__slide {
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .home_service_splide .splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .home_service_splide .splide__pagination {
    position: static;
    margin-top: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .home_service_splide .splide__pagination li {
    line-height: 1;
  }
  .home_service_splide .splide__pagination__page {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d9d9d9;
    opacity: 1;
    transition: width 0.3s ease, background-color 0.3s ease;
  }
  .home_service_splide .splide__pagination__page.is-active {
    width: 24px;
    transform: none;
    background: #0abab5;
  }
}
.home_service_figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: clamp(15px, calc(30px * (var(--ww-item) / 470)), 30px);
  overflow: hidden;
}
.home_service_figure .home_service_figure_image {
  width: 100%;
  aspect-ratio: 94 / 53;
  overflow: hidden;
}
.home_service_figure .home_service_figure_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_service_figure figcaption {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.home_service_figure figcaption .icon {
  font-size: clamp(50px, calc(100px * (var(--ww-item) / 470)), 100px);
  line-height: 1;
  letter-spacing: normal;
  width: 1em;
  height: 1em;
  margin-top: -.5em;
  margin-left: clamp(15px, calc(30px * (var(--ww-item) / 470)), 30px);
  position: relative;
  z-index: 10;
}
.home_service_figure figcaption .icon img {
  display: block;
}
.home_service_figure figcaption .column {
  font-size: clamp(13px, calc(16px * (var(--ww-item) / 470)), 16px);
  padding: clamp(20px, calc(40px * (var(--ww-item) / 470)), 40px) clamp(15px, calc(30px * (var(--ww-item) / 470)), 30px);
}
.home_service_figure figcaption .column h3 {
  font-weight: 500;
  font-size: clamp(18px, calc(24px * (var(--ww-item) / 470)), 24px);
  margin-bottom: 0.5em;
}
.home_service_figure figcaption .view {
  color: #434343;
  font-size: clamp(15px, calc(18px * (var(--ww-item) / 470)), 18px);
  padding: 0 1.88888em;
  margin-top: auto;
  height: 4.44445em;
  display: flex;
  align-items: center;
  background-color: #9ae2e1;
  position: relative;
}
.home_service_figure figcaption .view i {
  font-size: 11px;
  line-height: 1;
  position: absolute;
  right: 32px;
  top: 50%;
  margin-top: -.5em;
}
a .home_service_figure .home_service_figure_image img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
a .home_service_figure figcaption .view {
  transition: letter-spacing 0.3s ease;
}
a .home_service_figure:hover .home_service_figure_image img {
  transform: scale(1.15);
}
a .home_service_figure:hover figcaption .view {
  letter-spacing: 0.25em;
}

/* ---  --- */
.home_policy {
  background-color: #f0fcfb;
}

.home_policy_item {
  --size: 100px;
  max-width: 480px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
.home_policy_item .icon {
  flex: 0 0 var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #a4e2e1;
  position: relative;
  z-index: 10;
}
.home_policy_item .column {
  flex: 1 1 0;
  border: solid 1px #0abab5;
  border-radius: 15px;
  padding: 20px;
  padding-left: calc(20px + (var(--size) * 0.35));
  margin-left: calc(0px - (var(--size) * 0.35));
  background-color: #ffffff;
}
.home_policy_item .column h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5em;
}
.home_policy_item .column p {
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .home_policy_item {
    --size: min(calc(100px + 100 * (100vw - 992px) / 608), 200px);
    --padding: min(calc(20px + 20 * (100vw - 992px) / 608), 40px);
    --radius: min(calc(15px + 15 * (100vw - 992px) / 608), 30px);
    flex-direction: column;
  }
  .home_policy_item .icon {
    width: var(--size);
    height: var(--size);
    margin: 0 auto;
  }
  .home_policy_item .column {
    flex: 1 1 0;
    border-radius: var(--radius);
    padding: var(--padding);
    padding-top: calc(var(--padding) + (var(--size) * 0.35));
    margin: 0;
    margin-top: calc(0px - (var(--size) * 0.35));
  }
  .home_policy_item .column h3 {
    font-weight: 500;
    font-size: min(calc(20px + 8 * (100vw - 992px) / 608), 28px);
    text-align: center;
  }
  .home_policy_item .column p {
    font-size: min(calc(14px + 2 * (100vw - 992px) / 608), 16px);
  }
}

/* ---  --- */
.home_price {
  padding: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px) 0;
  background-color: #e0f8f8;
  background-image: url("../images/common/bg001.png");
  position: relative;
  z-index: 0;
}
.home_price::before, .home_price::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.home_price::before {
  left: 0;
  top: 0;
  width: clamp(70px, 13.80208vw, 265px);
  aspect-ratio: 265 / 451;
  background-image: url("../images/home/home_price_bg_icon_left.png");
}
.home_price::after {
  right: 0;
  bottom: 0;
  width: clamp(70px, 11.45834vw, 220px);
  aspect-ratio: 11 / 12;
  background-image: url("../images/home/home_price_bg_icon_right.png");
}

.home_price_inner {
  padding: min(calc(20px + 60 * (100vw - 375px) / 1225), 80px) min(calc(15px + 80 * (100vw - 375px) / 1225), 95px);
  border: solid 1px #0abab5;
  border-radius: 30px;
  background-color: #fff;
}

.home_price_figure {
  border-radius: 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_price_figure .image {
  position: relative;
  z-index: 0;
}
.home_price_figure .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: rgba(70, 46, 56, 0.4);
}
.home_price_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_price_figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.home_price_figure figcaption p {
  color: #fff;
  font-weight: 500;
  font-size: min(calc(15px + 12 * (100vw - 375px) / 1225), 27px);
  letter-spacing: 0.04em;
  margin: 0;
  padding: 1.11112em;
}
.home_price_figure figcaption p i {
  margin-left: 0.3em;
}
a > .home_price_figure .image::after {
  transition: background 0.3s ease;
}
a > .home_price_figure figcaption p {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
a > .home_price_figure:hover .image::after {
  background-color: rgba(70, 46, 56, 0);
}
a > .home_price_figure:hover figcaption p {
  color: #462e38;
  letter-spacing: 0.15em;
}

/* ---  --- */
.home_gplf {
  padding: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px) 0;
  background-color: #011e47;
  background-image: url("../images/common/bg002.png");
}
.home_gplf .home_gplf_inner {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_gplf .home_gplf_inner .home_gplf_content {
  padding: 20px 15px;
}
.home_gplf .home_gplf_inner .home_gplf_content h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: normal;
}
.home_gplf .home_gplf_inner .home_gplf_content p strong {
  font-weight: 500;
  font-size: 1.5em;
}
.home_gplf .home_gplf_inner .home_gplf_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .home_gplf .home_gplf_inner {
    height: 371px;
    display: flex;
    flex-direction: column;
  }
  .home_gplf .home_gplf_inner .home_gplf_content {
    margin: auto 0;
    padding-left: min(calc(30px + 65 * (100vw - 992px) / 608), 95px);
  }
  .home_gplf .home_gplf_inner .home_gplf_content .view {
    position: absolute;
    right: 40px;
    bottom: 40px;
  }
  .home_gplf .home_gplf_inner .home_gplf_image {
    position: absolute;
    z-index: -1;
    inset: 0 0 0 clamp(500px, 45.91837%, 795px);
  }
}

/* ---  --- */
.home_instagram .btn-1 {
  color: #fff !important;
  text-align: left !important;
  display: inline-grid !important;
  padding: 0.625em !important;
  padding-left: 1.25em !important;
  background-color: #27bab5 !important;
  cursor: pointer;
}

/* ---  --- */
.page_contact {
  padding: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px) 0;
  background-color: #e0f8f8;
  background-image: url("../images/common/bg001.png");
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.page_contact::before, .page_contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.page_contact::before {
  left: 0;
  top: 0;
  width: clamp(70px, 7.8125vw, 150px);
  aspect-ratio: 75 / 118;
  background-image: url("../images/home/page_contact_icon_left.png");
}
.page_contact::after {
  right: 0;
  bottom: 0;
  width: clamp(70px, 12.65625vw, 243px);
  aspect-ratio: 243 / 401;
  background-image: url("../images/home/page_contact_icon_right.png");
}
.page_contact .page_contact_inner {
  padding: min(calc(40px + 40 * (100vw - 375px) / 1225), 80px) 0;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  border: solid 1px #0abab5;
  background: url("../images/common/page_contact_bg.jpg") no-repeat center center/cover;
}
.page_contact .page_contact_row {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_contact .page_contact_row {
    grid-template-columns: auto auto;
    gap: 0 min(calc(60px + 60 * (100vw - 768px) / 832), 832px);
  }
}
.page_contact .page_contact_row .page_contact_row_col h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.page_contact .page_contact_row .page_contact_row_col .telphone {
  color: #27bab5;
  font-size: 32px;
}
.page_contact .page_contact_row .page_contact_row_col .txt01 {
  color: #462e38;
  font-size: 14px;
}

/* -------------------------------
	事業内容
-------------------------------- */
/* ---  --- */
.service_head h3 {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .service_head p {
    text-align: center;
  }
}

/**/
.service_anchor_navi {
  background-color: #fff;
}
.service_anchor_navi .catbtn {
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.75em 1em;
  background-color: var(--primary);
  position: relative;
}
.service_anchor_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;
}
.service_anchor_navi .catbtn.on:after {
  content: "\f00d";
  transform: rotate(180deg);
}
.service_anchor_navi .catnavi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .service_anchor_navi .catbtn {
    display: none;
  }
  .service_anchor_navi .catnavi {
    display: block;
  }
}

.service_anchor_navi_list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service_anchor_navi_list > li > a {
  letter-spacing: normal;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .service_anchor_navi_list {
    padding: 20px 15px;
    background-color: #e0f8f8;
  }
  .service_anchor_navi_list > li {
    margin-bottom: 2px;
  }
  .service_anchor_navi_list > li:last-child {
    margin-bottom: 0;
  }
  .service_anchor_navi_list > li > a {
    display: block;
    padding: 0.5em 1em;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .service_anchor_navi_list > li > a::before {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75em;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
  }
  .service_anchor_navi_list > li.avtive > a, .service_anchor_navi_list > li > a:hover {
    color: #fff;
    background-color: #0abab5;
  }
}
@media print, screen and (min-width: 768px) {
  .service_anchor_navi_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .service_anchor_navi_list > li > a {
    display: block;
    padding: 0.75em 1em;
    border-radius: 3px;
    background-color: #e0f8f8;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .service_anchor_navi_list > li > a::before {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75em;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
  }
  .service_anchor_navi_list > li.avtive > a, .service_anchor_navi_list > li > a:hover {
    color: #fff;
    background-color: #0abab5;
  }
}
@media print, screen and (min-width: 992px) {
  .service_anchor_navi_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---  --- */
.service_content_wrap .service_content {
  background-color: #f7fffe;
  position: relative;
  z-index: 0;
  position: relative;
  z-index: 0;
}
.service_content_wrap .service_content::after {
  content: "";
  position: absolute;
  top: 1%;
  right: 2%;
  z-index: -1;
  pointer-events: none;
  width: clamp(80px, 12.7604vw, 245px);
  aspect-ratio: 245 / 396;
  background-image: url("../images/company/company_greeting_bg_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.6;
}
.service_content_wrap .service_content:nth-child(even) {
  background-color: #f0fcfb;
}
.service_content_wrap .service_content:nth-child(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg001.png");
  opacity: 0.25;
}

.service_content_head .service_content_head_column {
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 992px) {
  .service_content_head {
    display: flex;
    gap: 30px;
  }
  .service_content_head .service_content_head_image {
    flex: 1 1 0;
  }
  .service_content_head .service_content_head_column {
    flex: 1 1 0;
  }
}

.service_content_ttl {
  font-size: min(calc(20px + 16 * (100vw - 375px) / 1225), 36px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.service_content_ttl .icon {
  width: 3em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  margin-bottom: 0.25em;
  background-color: #C0F0F0;
  margin-top: -1.5em;
  margin-left: 0.5em;
}
.service_content_ttl .icon img {
  padding: 20px;
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media print, screen and (min-width: 992px) {
  .service_content_ttl {
    font-size: min(calc(24px + 12 * (100vw - 992px) / 608), 36px);
    margin-left: 0;
    margin-top: 1em;
  }
  .service_content_ttl .icon {
    margin-top: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 992px) {
  .service_content_head_column {
    font-size: min(calc(16px + 4 * (100vw - 992px) / 608), 20px);
    line-height: 2;
    padding-left: min(calc(30px + 65 * (100vw - 992px) / 608), 95px);
  }
}

/* */
.service_point_1 {
  --size: 80px;
  max-width: 480px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
.service_point_1 .icon {
  flex: 0 0 var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #a4e2e1;
  position: relative;
  z-index: 10;
}
.service_point_1 .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18%;
}
.service_point_1 .column {
  flex: 1 1 0;
  border: solid 1px #0abab5;
  border-radius: 15px;
  padding: 20px;
  padding-left: calc(20px + (var(--size) * 0.35));
  margin-left: calc(0px - (var(--size) * 0.35));
  background-color: #ffffff;
}
.service_point_1 .column h3 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.service_point_1 .column p {
  font-size: 13px;
}
@media print, screen and (min-width: 992px) {
  .service_point_1 {
    --size: min(calc(100px + 100 * (100vw - 992px) / 608), 200px);
    --padding: min(calc(20px + 20 * (100vw - 992px) / 608), 40px);
    --radius: min(calc(15px + 15 * (100vw - 992px) / 608), 30px);
    flex-direction: column;
  }
  .service_point_1 .icon {
    width: var(--size);
    height: var(--size);
    margin: 0 auto;
  }
  .service_point_1 .column {
    flex: 1 1 0;
    border-radius: var(--radius);
    padding: var(--padding);
    padding-top: calc(var(--padding) + (var(--size) * 0.35));
    margin: 0;
    margin-top: calc(0px - (var(--size) * 0.35));
  }
  .service_point_1 .column h3 {
    font-weight: 500;
    font-size: min(calc(18px + 8 * (100vw - 992px) / 608), 26px);
    text-align: center;
  }
  .service_point_1 .column p {
    font-size: min(calc(14px + 2 * (100vw - 992px) / 608), 16px);
  }
}

/**/
.service_voice {
  border-top: solid 1px #0abab5;
}
.service_voice .service_voice_item {
  padding: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px) 15px;
  border-bottom: solid 1px #0abab5;
}
.service_voice .service_voice_item .service_voice_item_image {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto 15px;
  background-color: #fff;
  overflow: hidden;
}
.service_voice .service_voice_item .service_voice_item_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_voice .service_voice_item .service_voice_item_column .name {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0.75em;
}
.service_voice .service_voice_item .service_voice_item_column .name::before {
  content: "■";
  margin-right: 0.25em;
  transform: scale(0.75);
  display: inline-block;
}
.service_voice .service_voice_item .service_voice_item_column .column {
  font-size: 15px;
}
@media print, screen and (min-width: 768px) {
  .service_voice .service_voice_item {
    display: grid;
    grid-template-columns: min(16%, 200px) 1fr;
    gap: 30px;
  }
  .service_voice .service_voice_item .service_voice_item_image {
    width: auto;
    margin: 0;
  }
  .service_voice .service_voice_item .service_voice_item_column {
    display: flex;
    flex-direction: column;
  }
  .service_voice .service_voice_item .service_voice_item_column .inner {
    margin: auto 0;
  }
  .service_voice .service_voice_item .service_voice_item_column .inner .name {
    text-align: left;
  }
}

/**/
.service_contact {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px);
  border-radius: min(calc(10px + 20 * (100vw - 375px) / 1225), 30px);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05) inset;
  background-color: #fff;
}
.service_contact .ttl {
  font-size: min(calc(18px + 12 * (100vw - 375px) / 1225), 30px);
  letter-spacing: 0.04em;
  text-align: center;
}
.service_contact .ttl strong {
  font-size: 1.2em;
  display: inline-block;
}

.service_contact_row {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .service_contact_row {
    grid-template-columns: auto auto;
    gap: 0 min(calc(60px + 60 * (100vw - 768px) / 832), 832px);
  }
}
.service_contact_row .service_contact_row_col h3, .service_contact_row .service_contact_row_col h4 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.service_contact_row .service_contact_row_col .telphone {
  color: #27bab5;
  font-size: 32px;
}
.service_contact_row .service_contact_row_col .txt01 {
  color: #462e38;
  font-size: 14px;
}

/* -------------------------------
	ペット用フード・関連グッズ販売
-------------------------------- */
.service_pet_goods_banner {
  color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  background-color: #0abab5;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.service_pet_goods_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg001.png");
  opacity: 0.65;
}
.service_pet_goods_banner .column {
  margin-bottom: 1rem;
}
.service_pet_goods_banner .column h4 strong {
  color: #FFDD00;
  font-size: 1.25em;
}
.service_pet_goods_banner .column p strong {
  color: #FFDD00;
  font-size: 1.25em;
}
.service_pet_goods_banner > .image img {
  border-radius: 15px;
}
@media print, screen and (min-width: 768px) {
  .service_pet_goods_banner {
    display: flex;
    align-items: center;
    padding: min(calc(30px + 30 * (100vw - 768px) / 832), 60px) min(calc(30px + 95 * (100vw - 768px) / 832), 125px);
    border-radius: min(calc(15px + 15 * (100vw - 768px) / 832), 30px);
  }
  .service_pet_goods_banner > .column {
    flex: 1 1 0;
  }
  .service_pet_goods_banner > .column h4 {
    font-size: min(calc(23px + 13 * (100vw - 768px) / 832), 36px);
  }
  .service_pet_goods_banner > .column p {
    font-size: min(calc(16px + 6 * (100vw - 768px) / 832), 22px);
  }
  .service_pet_goods_banner > .image {
    flex: 0 0 clamp(200px, 36%, 345px);
  }
}

/* -------------------------------
	トリミング
-------------------------------- */
.service_pet_trimming_otoku h4 {
  color: #fd7e14;
  font-size: min(calc(22px + 23 * (100vw - 375px) / 1225), 45px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_pet_trimming_otoku h4 span {
  font-style: italic;
}
.service_pet_trimming_otoku h4::before, .service_pet_trimming_otoku h4::after {
  content: "";
  flex: 0 0 2px;
  height: 2em;
  background: #fd7e14;
  display: block;
}
.service_pet_trimming_otoku h4::before {
  margin-right: 1.5em;
  transform: rotate(-30deg);
}
.service_pet_trimming_otoku h4::after {
  margin-left: 1.5em;
  transform: rotate(30deg);
}
.service_pet_trimming_otoku .view {
  text-align: center;
}
.service_pet_trimming_otoku .view p {
  display: inline-block;
  padding-bottom: 0;
  border-bottom: solid 1px #462e38;
}
.service_pet_trimming_otoku .view a {
  text-decoration: none;
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
  align-items: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.service_pet_trimming_otoku .view a img {
  width: 40px;
  display: block;
}
.service_pet_trimming_otoku .view a:hover {
  opacity: 0.65;
}

.service_pet_trimming_otoku_row {
  --col:1;
  --gap:20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .service_pet_trimming_otoku_row {
    --col:3;
    justify-content: center;
  }
}
.service_pet_trimming_otoku_row .service_pet_trimming_otoku_row_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  padding: 20px;
  border-radius: 20px;
  border: solid 1px #0abab5;
  background-color: #fff;
}
.service_pet_trimming_otoku_row .service_pet_trimming_otoku_row_col .fs-en {
  color: #0abab5;
  font-size: 20px;
  text-align: center;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .service_pet_trimming_otoku_row .service_pet_trimming_otoku_row_col {
    padding: min(calc(20px + 20 * (100vw - 768px) / 832), 40px);
  }
}

/* -------------------------------
	ペットホテル
-------------------------------- */
.service_pet_hotel_room_item_1 {
  height: auto;
  border: solid 1px #0abab5;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #fff;
  overflow: hidden;
}
.service_pet_hotel_room_item_1 .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 768px) {
  .service_pet_hotel_room_item_1 .image {
    position: relative;
  }
  .service_pet_hotel_room_item_1 .image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, white 100%);
    pointer-events: none;
  }
}
.service_pet_hotel_room_item_1 .column {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.service_pet_hotel_room_item_1 .column .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 768px) {
  .service_pet_hotel_room_item_1 .column {
    padding-left: min(calc(0px + 125 * (100vw - 768px) / 832), 125px);
  }
}

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

/**/
.service_pet_hotel_room_column {
  max-width: 470px;
  height: 100%;
  margin: 0 auto;
  padding: min(calc(40px * (var(--ww-item) / 345)), 40px) clamp(15px, min(calc(20px * (var(--ww-item) / 345))), 20px);
  border-radius: 10px;
  background-color: #e0f8f8;
  position: relative;
  z-index: 0;
}
.service_pet_hotel_room_column .type {
  color: #fff;
  font-size: min(calc(18px * (var(--ww-item) / 345)), 18px);
  text-align: center;
  width: 6em;
  border-radius: 10em;
  margin: 0 auto 0.5em;
  background-color: #0abab5;
}
.service_pet_hotel_room_column .image img {
  border-radius: 10px;
}
.service_pet_hotel_room_column .ttl {
  font-size: min(calc(24px * (var(--ww-item) / 345)), 24px);
  font-weight: 700;
  text-align: center;
  margin: 0.5em 0;
}
.service_pet_hotel_room_column .column {
  font-size: min(calc(18px * (var(--ww-item) / 345)), 18px);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 10px;
}
.service_pet_hotel_room_column .point {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: min(calc(13px * (var(--ww-item) / 345)), 13px);
  letter-spacing: normal;
  line-height: 1.5;
  text-align: center;
  width: 8em;
  height: 8em;
  display: grid;
  place-items: center;
  margin-top: -5em;
  margin-right: 1em;
  background-color: #FF9E00;
}
.service_pet_hotel_room_column .point::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 1.5em;
  height: 2em;
  background-color: #FF9E00;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform: rotate(45deg);
}

/**/
.service_pet_hotel_room_point {
  color: #fff;
  padding: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
  border-radius: 16px;
  background-color: #0abab5;
}
.service_pet_hotel_room_point h5 {
  font-size: 20px;
}
@media print, screen and (min-width: 992px) {
  .service_pet_hotel_room_point h5 {
    font-size: min(calc(20px + 12 * (100vw - 992px) / 608), 32px);
  }
  .service_pet_hotel_room_point ul {
    font-size: min(calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
}

/**/
.service_pet_hotel_freespace h4 {
  color: #0abab5;
  font-size: min(calc(22px + 23 * (100vw - 375px) / 1225), 45px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_pet_hotel_freespace h4 span {
  font-style: italic;
}
.service_pet_hotel_freespace h4::before, .service_pet_hotel_freespace h4::after {
  content: "";
  flex: 0 0 2px;
  height: 2em;
  background: #0abab5;
  display: block;
}
.service_pet_hotel_freespace h4::before {
  margin-right: 1.5em;
  transform: rotate(-30deg);
}
.service_pet_hotel_freespace h4::after {
  margin-left: 1.5em;
  transform: rotate(30deg);
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_inner {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #e0f8f8;
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_column {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner {
  margin: auto 0;
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner .txt01 {
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner {
    padding-right: min(calc(0px + 95 * (100vw - 768px) / 832), 95px);
  }
  .service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner h4 {
    font-size: min(calc(22px + 12 * (100vw - 768px) / 832), 34px);
  }
  .service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner p {
    font-size: min(calc(16px + 2 * (100vw - 768px) / 832), 18px);
  }
  .service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner .txt01 {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 832), 20px);
  }
}
@media print, screen and (min-width: 992px) {
  .service_pet_hotel_freespace .service_pet_hotel_freespace_column .inner {
    margin: auto;
    padding: 0;
  }
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_image {
  height: 100%;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  overflow: hidden;
}
.service_pet_hotel_freespace .service_pet_hotel_freespace_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	ドッグラン【本牧山頂公園】
-------------------------------- */
.service_dog_run_note {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px) min(calc(15px + 80 * (100vw - 375px) / 1225), 95px);
  border-radius: min(calc(10px + 20 * (100vw - 375px) / 1225), 30px);
  background-color: #e0f8f8;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.service_dog_run_note::before, .service_dog_run_note::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.5;
}
.service_dog_run_note::after {
  right: 0;
  top: 3%;
  width: clamp(70px, 11.45834vw, 220px);
  aspect-ratio: 11 / 12;
  background-image: url("../images/home/home_price_bg_icon_right.png");
}
.service_dog_run_note ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.service_dog_run_note ol > li {
  padding-left: 2em;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px rgba(10, 186, 181, 0.5);
  position: relative;
}
.service_dog_run_note ol > li:last-child {
  margin-bottom: 0;
}
.service_dog_run_note ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* -------------------------------
	料金表
-------------------------------- */
/* ---  --- */
.price_anchor_navi_list {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1225), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px 0.5em;
  grid-template-columns: repeat(2, 1fr);
}
.price_anchor_navi_list > li > a {
  color: #434343;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 1em 1em;
  border-radius: 0.5em;
  background-color: #9ae2e1;
  transition: color 0.3s ease, background 0.3s ease;
}
.price_anchor_navi_list > li > a:hover {
  color: #fff;
  background-color: #0abab5;
}

/* ---  --- */
.price_head_ttl {
  border: dotted 3px #0abab5;
  padding: clamp(20px, 3.75vw, 60px);
  border-radius: clamp(10px, 1.875vw, 30px);
  background-color: #fff;
}
.price_head_ttl .price_head_ttl_price {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  margin-bottom: 20px;
}
.price_head_ttl .price_head_ttl_price .ttl {
  font-size: 24px;
  text-align: center;
}
.price_head_ttl .price_head_ttl_price .price {
  color: #0abab5;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding-top: 15px;
  margin-top: 15px;
  border-top: dashed 1px #462e38;
}
.price_head_ttl .price_head_ttl_price .price .fs-en {
  font-size: 32px;
}
.price_head_ttl .price_head_ttl_price .price .fs-en small {
  font-size: 0.75em;
}
.price_head_ttl .price_head_ttl_column .list-icon-1 {
  padding: 1.5em;
  border-radius: 0.25em;
  background-color: #C5F3EF;
}
@media print, screen and (min-width: 992px) {
  .price_head_ttl {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 0 30px;
    align-items: center;
  }
  .price_head_ttl .price_head_ttl_price {
    margin-bottom: 0;
  }
  .price_head_ttl .price_head_ttl_price .ttl {
    font-size: min(calc(24px + 8 * (100vw - 992px) / 608), 32px);
  }
  .price_head_ttl .price_head_ttl_price .price {
    font-size: 16px;
  }
  .price_head_ttl .price_head_ttl_price .price .fs-en {
    font-size: min(calc(32px + 13 * (100vw - 992px) / 608), 45px);
  }
  .price_head_ttl .price_head_ttl_price .price .fs-en small {
    font-size: 0.75em;
  }
  .price_head_ttl .price_head_ttl_column .list-icon-1 {
    font-size: min(calc(16px + 4 * (100vw - 992px) / 608), 20px);
  }
}

/* ---  --- */
.price_trimming {
  background-color: #f0fcfb;
}

/**/
.table-responsive.is-scroll-y > table > thead {
  position: sticky;
  top: 0;
}

.price_table_1 {
  white-space: nowrap;
  margin: 0;
}
.price_table_1 > tbody > tr > th {
  width: 22em;
}
.price_table_1 > tbody > tr > td {
  text-align: center;
}

.responsive_table_1 {
  margin: 0;
}
.responsive_table_1 > thead > tr > th, .responsive_table_1 > thead > tr > td {
  white-space: nowrap;
}
.responsive_table_1 > tbody > tr > th {
  width: 30%;
}
.responsive_table_1 > tbody > tr > td {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .responsive_table_1 > thead {
    display: none;
  }
  .responsive_table_1 > tbody > tr > th {
    width: 100%;
    display: block;
  }
  .responsive_table_1 > tbody > tr > td {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 8em;
    text-align: left;
    padding: 0;
  }
  .responsive_table_1 > tbody > tr > td .td_head {
    padding: 0.5em;
    background-color: #f3f3f3;
  }
  .responsive_table_1 > tbody > tr > td .td_column {
    padding: 0.5em;
    text-align: right;
    display: grid;
    align-items: center;
  }
}

.responsive_table_2 {
  margin-bottom: 0;
}
.responsive_table_2 > tbody > tr > th {
  width: 22em;
}
.responsive_table_2 > tbody > tr > td {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .responsive_table_2 {
    font-size: 15px;
    white-space: nowrap;
  }
  .responsive_table_2 > tbody > tr > th {
    width: auto;
  }
  .responsive_table_2 > tbody > tr > td {
    text-align: left;
  }
}

.table-box-2 {
  padding: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  border-radius: min(calc(5px + 10 * (100vw - 375px) / 1225), 15px);
  border: solid 1px #0abab5;
  background-color: #fff;
}

.price_txt_1 {
  color: #ff0000;
  font-weight: 700;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
}

.price_zisan {
  padding: min(calc(30px + 50 * (100vw - 375px) / 1225), 80px) 15px;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  border: solid 1px #0abab5;
  background-color: #e0f8f8;
  background-image: url("../images/common/bg001.png");
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.price_zisan::before, .price_zisan::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.price_zisan::before {
  left: 0;
  top: 0;
  width: clamp(70px, 13.80208vw, 265px);
  aspect-ratio: 265 / 451;
  background-image: url("../images/home/home_price_bg_icon_left.png");
}
.price_zisan::after {
  right: 0;
  bottom: 0;
  width: clamp(70px, 11.45834vw, 220px);
  aspect-ratio: 11 / 12;
  background-image: url("../images/home/home_price_bg_icon_right.png");
}
.price_zisan h4 {
  font-size: min(calc(20px + 8 * (100vw - 375px) / 1225), 28px);
  text-align: center;
}
.price_zisan .price_zisan_column > ul {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.price_zisan .price_zisan_column > ul > li {
  margin-bottom: 1em;
}
.price_zisan .price_zisan_column > ul > li i {
  color: #0abab5;
}
.price_zisan .price_zisan_txt1 {
  text-align: center;
}
.price_zisan .price_zisan_txt1 .in {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 20em;
  background-color: #fff;
}

/* ---  --- */
.responsive_table_3 {
  text-align: center;
}
.responsive_table_3 > tbody > tr > td {
  text-align: center;
}
.responsive_table_3 > tbody > tr > td.thead_color {
  background-color: #BAEFED;
}
@media screen and (max-width: 767px) {
  .responsive_table_3 > thead > tr > th {
    font-size: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .responsive_table_3 {
    table-layout: fixed;
  }
}

.price_pet_hotel_plus {
  font-size: 50px;
  line-height: 1;
  text-align: center;
  margin: 0.5em 0;
}

.price_pet_hotel_otoku {
  padding: min(calc(30px + 50 * (100vw - 375px) / 1225), 80px) 15px;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #FEF3EA;
  background-image: url("../images/common/bg003.png");
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_ttl {
  color: #fd7e14;
  font-size: min(calc(25px + 20 * (100vw - 375px) / 1225), 45px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_ttl span {
  font-style: italic;
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_ttl::before, .price_pet_hotel_otoku .price_pet_hotel_otoku_ttl::after {
  content: "";
  flex: 0 0 2px;
  height: 2em;
  background: #fd7e14;
  display: block;
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_ttl::before {
  margin-right: 1.5em;
  transform: rotate(-30deg);
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_ttl::after {
  margin-left: 1.5em;
  transform: rotate(30deg);
}
.price_pet_hotel_otoku .price_pet_hotel_otoku_column .txt01 {
  color: #ff0000;
  font-weight: 700;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1225), 24px);
  text-align: center;
}

.price_pet_hotel_note .price_pet_hotel_note_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price_pet_hotel_note .price_pet_hotel_note_list > li {
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  border-bottom: dashed 1px #ccc;
}
.price_pet_hotel_note .price_pet_hotel_note_list > li:last-child {
  margin-bottom: 0;
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 768px) {
  .company_greeting {
    position: relative;
    z-index: 0;
  }
  .company_greeting::before, .company_greeting::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    width: clamp(80px, 12.7604vw, 245px);
    aspect-ratio: 245 / 396;
    background-image: url("../images/company/company_greeting_bg_1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .company_greeting::before {
    top: 0;
    left: -5%;
  }
  .company_greeting::after {
    right: 0;
    bottom: 0;
  }
}

.company_greeting_photo {
  max-width: 345px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ccc;
}
.company_greeting_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company_greeting_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company_greeting_column .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 768px) {
  .company_greeting_column {
    padding-left: min(calc(0px + 125 * (100vw - 768px) / 832), 125px);
  }
  .company_greeting_column .title-hh-1 {
    text-align: left;
  }
}

/* ---  --- */
.company_community_care {
  background-color: #f0fcfb;
  position: relative;
  z-index: 0;
  position: relative;
  z-index: 0;
}
.company_community_care::before, .company_community_care::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: clamp(80px, 12.7604vw, 245px);
  aspect-ratio: 245 / 396;
  background-image: url("../images/company/company_greeting_bg_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.5;
}
.company_community_care::before {
  top: 2%;
  left: 0;
}
.company_community_care::after {
  right: 2%;
  bottom: 3%;
}

.company_community_care_content .company_community_care_content_image {
  max-width: 220px;
  width: 60%;
  margin: 0 auto 1rem;
}
@media print, screen and (min-width: 768px) {
  .company_community_care_content {
    display: flex;
    gap: min(calc(30px + 30 * (100vw - 768px) / 832), 60px);
  }
  .company_community_care_content .company_community_care_content_image {
    flex: 0 0 220px;
  }
  .company_community_care_content .company_community_care_content_column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
  }
  .company_community_care_content .company_community_care_content_column .inner {
    margin: auto 0;
  }
}

.company_community_care_contribution {
  max-width: 720px;
  margin: 0 auto;
}
.company_community_care_contribution .company_community_care_contribution_image {
  margin-bottom: 1rem;
}
.company_community_care_contribution .company_community_care_contribution_image img {
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
}
@media print, screen and (min-width: 992px) {
  .company_community_care_contribution {
    max-width: inherit;
    display: flex;
    gap: min(calc(30px + 30 * (100vw - 768px) / 832), 60px);
  }
  .company_community_care_contribution .company_community_care_contribution_image {
    flex: 0 0 40%;
  }
  .company_community_care_contribution .company_community_care_contribution_column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
  }
  .company_community_care_contribution .company_community_care_contribution_column .inner {
    margin: auto 0;
  }
}

/* ---  --- */
.company_access {
  padding-bottom: 40px;
  background-color: #f0fcfb;
}
.company_access .googlemap {
  border-radius: 12px;
  margin: 0 clamp(15px, 2.5vw, 40px);
}

.company_access_dl {
  border-left: solid 1px #462e38;
  padding-left: 1em;
  margin-left: 1em;
}
.company_access_dl dd {
  font-size: 15px;
}
.company_access_dl dd .subtxt .in {
  color: #fff;
  font-size: 17px;
  display: inline-block;
  padding: 0.5em 1.5em;
  border-radius: 0.5em;
  background-color: #0abab5;
}

.company_access_img_2 {
  border: solid 1px var(--primary);
}

.company_access_content2 .telphone {
  font-size: 28px;
}
@media print, screen and (min-width: 992px) {
  .company_access_content2 {
    padding-left: min(calc(30px + 70 * (100vw - 992px) / 608), 100px);
  }
  .company_access_content2 .telphone {
    font-size: min(calc(28px + 6 * (100vw - 992px) / 608), 34px);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact_inner {
  padding: min(calc(30px + 50 * (100vw - 375px) / 1225), 80px) 15px;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1225), 30px);
  background-color: #e0f8f8;
  background-image: url("../images/common/bg001.png");
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.tel_contact_inner::before, .tel_contact_inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.tel_contact_inner::before {
  left: 0;
  top: 0;
  width: clamp(70px, 13.80208vw, 265px);
  aspect-ratio: 265 / 451;
  background-image: url("../images/home/home_price_bg_icon_left.png");
}
.tel_contact_inner::after {
  right: 0;
  bottom: 0;
  width: clamp(70px, 11.45834vw, 220px);
  aspect-ratio: 11 / 12;
  background-image: url("../images/home/home_price_bg_icon_right.png");
}

.tel_contact_row {
  display: grid;
  gap: 30px;
}
.tel_contact_row .tel_contact_row_col .telphone {
  font-size: min(calc(26px + 24 * (100vw - 375px) / 1225), 50px);
  text-align: center;
}
.tel_contact_row .tel_contact_row_col .subtxt {
  color: #7A6970;
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1225), 16px);
  text-align: center;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_row {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 0 min(calc(30px + 30 * (100vw - 768px) / 832), 60px);
  }
  .tel_contact_row .tel_contact_row_col .telphone {
    font-size: min(calc(26px + 17 * (100vw - 768px) / 832), 43px);
    text-align: center;
  }
  .tel_contact_row .tel_contact_row_col .subtxt {
    font-size: min(calc(12px + 4 * (100vw - 768px) / 832), 16px);
    text-align: center;
    margin-top: 0.5em;
  }
}

#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;
  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 {
  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 {
  .amn-blur-1 {
    --duration: 1s;
    --easing: ease-out;
    opacity: 0;
    filter: blur(1em);
    transition: opacity var(--duration) var(--easing), filter var(--duration) var(--easing);
  }
  .amn-blur-1.is-active {
    opacity: 1;
    filter: blur(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 and (min-width: 768px) {
  .js-row-md-up > * {
    --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-md-up > *.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 */
