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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #C6CBC0;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #C6CBC0;
}
.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
-------------------------------- */
.lits-kome {
  list-style: none;
  padding: 0;
}
.lits-kome > li {
  padding-left: 1.2em;
  position: relative;
}
.lits-kome > li::before {
  content: "※";
  position: absolute;
  left: 0;
}

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

.figure_design_1 {
  padding: 5px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.figure_design_1 figcaption {
  font-size: 0.88888rem;
  padding: 10px;
}
.figure_design_1 figcaption .inner .ttl {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .figure_design_1 {
    display: grid;
    grid-template-columns: 36% 1fr;
  }
  .figure_design_1 .image img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .figure_design_1 figcaption .inner {
    margin: auto 0;
    padding-left: 20px;
    padding-top: 20px;
  }
  .figure_design_1 figcaption .inner .ttl {
    font-size: 1.11112rem;
    margin-bottom: 0.5rem;
  }
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(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: flex;
  align-items: center;
  justify-content: center;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

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

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

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

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

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

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

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

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

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

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

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

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 992px) {
  .object-lg-lt {
    object-position: left top;
  }

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

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

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

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1200px) {
  .object-xl-lt {
    object-position: left top;
  }

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

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

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

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1400px) {
  .object-xxl-lt {
    object-position: left top;
  }

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

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

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

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

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

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-1 {
  --color: #f7bf64;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
}
.btn-1 .txt {
  margin-right: 10px;
}
.btn-1 .icon {
  color: #fff;
  font-size: 1.11112em;
  line-height: 1;
  letter-spacing: normal;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--color);
}
.btn-1:hover {
  color: var(--color);
}
.btn-1:hover > .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

/* file icon */
.link-icon:before {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon[href$=".pdf"]:before {
  content: "\f1c1";
}
.link-icon[href$=".xls"]:before, .link-icon[href$=".xlsx"]:before {
  content: "\f1c3";
}
.link-icon[href$=".doc"]:before, .link-icon[href$=".docx"]:before {
  content: "\f1c2";
}
.link-icon [target="_blank"]:before {
  content: "\f35d";
  font-size: 0.875em;
}

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

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

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

a.tel_link {
  color: inherit;
}

/* -------------------------------
	カーニング
-------------------------------- */
.kern-open {
  display: inline-block;
  letter-spacing: -0.5em;
  transform: translateX(-0.5em);
}

.kern-close {
  display: inline-block;
  letter-spacing: -0.5em;
}

/* -------------------------------
	パンくず
-------------------------------- */
.breadcrumb_wrap {
  padding: 6px 0;
  position: absolute;
  left: 0;
  width: 100%;
}
.breadcrumb_wrap .panlist {
  color: #777;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
}
.breadcrumb_wrap .panlist > li {
  display: flex;
  align-items: center;
}
.breadcrumb_wrap .panlist > li > a {
  color: #777;
  white-space: nowrap;
}
.breadcrumb_wrap .panlist > li.active > a {
  color: #aaa;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb_wrap .panlist > li + li:before {
  content: ">";
  letter-spacing: normal;
  display: block;
  padding: 0 0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mt-lg-120 {
    margin-top: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }

  .mb-lg-120 {
    margin-bottom: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }

  .mtb-lg-120 {
    margin-top: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
    margin-bottom: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 375px) / 1025), 50px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pt-lg-120 {
    padding-top: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }

  .pb-lg-120 {
    padding-bottom: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }

  .ptb-lg-120 {
    padding-top: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
    padding-bottom: min(calc(42px + 78 * (100vw - 375px) / 1025), 120px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

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

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

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

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

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

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - var(--app-w)) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - var(--app-w)) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - var(--app-w)) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - var(--app-w)) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - var(--app-w)) / 4);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  --border-color: var(--primary);
  border-left: solid 4px var(--border-color);
  padding-left: 15px;
}

.title-2 {
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0;
  background: url("../images/common/bg002.svg") no-repeat center center/contain;
}

.title-hh-1 {
  --color: var(--primary);
  font-size: 1rem;
  text-align: center;
}
.title-hh-1 > .fs-en {
  font-size: min(calc(35px + 25 * (100vw - 375px) / 1025), 60px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .fs-en::first-letter {
  color: var(--color);
  font-size: 1.35em;
}
.title-hh-1 > .fs-jp {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1025), 20px);
  display: block;
  margin-top: 0.5em;
}
.title-hh-1.success {
  --color: var(--success);
}

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

:root {
  --edge: calc(-15px - 40 * (100vw - 375px) / 1025);
}
@media print, screen and (min-width: 1400px) {
  :root {
    --edge: calc((1290px - 100vw) / 2);
  }
}

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

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

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

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

/* ---  --- */
.anchor_link {
  padding: 50px 0 0;
}
.anchor_link .anchor_link_list {
  --col: 1;
  --gap: 10px;
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1025), 16px);
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.anchor_link .anchor_link_list > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.anchor_link .anchor_link_list > li > a {
  color: #f7bf64;
  text-align: center;
  text-decoration: none;
  display: grid;
  place-items: center;
  padding: 0.5em 3em 0.5em 1.5em;
  border: solid 1px #f7bf64;
  height: 100%;
  background-color: #fff;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.anchor_link .anchor_link_list > li > a i {
  position: absolute;
  right: 1em;
  top: 50%;
  line-height: 1;
  margin-top: -.5em;
}
.anchor_link .anchor_link_list > li > a:hover {
  color: #fff;
  background-color: #f7bf64;
}

/* ---  --- */
.page_contact {
  position: relative;
  z-index: 0;
}
.page_contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0%;
  bottom: 50%;
  z-index: -1;
  background-color: #e7f8eb;
}
@media print, screen and (min-width: 992px) {
  .page_contact::before {
    left: clamp(15px, 2.60417vw, 50px);
  }
}

.page_contact_inner {
  padding: min(calc(30px + 20 * (100vw - 375px) / 1025), 50px);
  border-radius: min(calc(10px + 30 * (100vw - 375px) / 1025), 40px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
.page_contact_inner h3 {
  font-size: min(calc(25px + 15 * (100vw - 375px) / 1025), 40px);
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0;
  background: url("../images/common/bg002.svg") no-repeat center center/contain;
}
.page_contact_inner .page_contact_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 30px 0;
}
.page_contact_inner .page_contact_row .page_contact_item {
  flex: 0 0 100%;
  padding: 0 15px;
}
@media print, screen and (min-width: 992px) {
  .page_contact_inner .page_contact_row .page_contact_item.left {
    flex: 1 1 0;
  }
  .page_contact_inner .page_contact_row .page_contact_item.right {
    flex: 0 0 50%;
    border-left: solid 1px #ccc;
  }
}
.page_contact_inner .page_contact_row .page_contact_item h4 {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  text-align: center;
  margin-bottom: 0.5rem;
}
.page_contact_inner .page_contact_row .page_contact_item .btn_box {
  text-align: center;
}
.page_contact_inner .page_contact_row .page_contact_item .btn_box .btn {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1025), 24px);
  display: block;
  margin: 0 auto;
  max-width: 360px;
}
.page_contact_inner .page_contact_row .page_contact_item .page_contact_tel_list {
  color: var(--primary);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 992px) {
  .page_contact_inner .page_contact_row .page_contact_item h4 {
    font-size: min(calc(20px + 4 * (100vw - 992px) / 408), 24px);
  }
  .page_contact_inner .page_contact_row .page_contact_item .btn_box {
    margin-top: min(calc(15px + 11 * (100vw - 992px) / 408), 26px);
  }
  .page_contact_inner .page_contact_row .page_contact_item .btn_box .btn {
    font-size: min(calc(18px + 6 * (100vw - 992px) / 408), 24px);
  }
  .page_contact_inner .page_contact_row .page_contact_item .page_contact_tel_list {
    font-size: min(calc(24px + 14 * (100vw - 992px) / 408), 38px);
  }
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#mainvisual .scroll-down {
  display: none;
}
@media print, screen and (min-width: 768px) {
  #mainvisual .scroll-down {
    position: absolute;
    bottom: clamp(15px, 2.60417vw, 50px);
    right: clamp(15px, 2.60417vw, 50px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
#mainvisual .scroll-text {
  color: #fff;
  font-size: 14px;
  writing-mode: vertical-rl;
  margin: 0;
  font-weight: 500;
}
#mainvisual .scroll-down .line {
  width: 2px;
  height: 80px;
  background: #fff;
  animation: slideDown 2s infinite;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}
/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.splide01::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: url("../images/home/main_point.png") no-repeat left top/auto 50%;
  pointer-events: none;
}
@media print, screen and (min-width: 768px) {
  .splide01::before {
    background: url("../images/home/main_point.png") no-repeat left top/cover;
  }
}
.splide01 .slide-media {
  width: 100%;
  height: calc(var(--app-h) * 0.6);
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide-media {
    height: var(--app-h);
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**/
.mainvisual_content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding-left: clamp(15px, 2.60417vw, 50px);
}
.mainvisual_content h2 {
  font-size: min(calc(16px + 40 * (100vw - 375px) / 1545), 56px);
  line-height: 1.47;
  margin: auto 0;
}
.mainvisual_content h2 strong {
  font-size: 1.2857em;
}
.mainvisual_content h2 > .in {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.25em 0.0892857em;
  margin: 0.357124em 0;
  background-color: #fff;
  position: relative;
}
.mainvisual_content h2 > .in::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.0892857em;
  background-image: -webkit-linear-gradient(0deg, #61ce77 0%, #acde54 100%);
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
  text-align: center;
}
.home_ttl_1 > .fs-en {
  font-size: min(calc(40px + 40 * (100vw - 375px) / 1025), 80px);
  line-height: 1;
  display: block;
}
.home_ttl_1 > .fs-en::first-letter {
  color: var(--primary);
  font-size: 1.35em;
}
.home_ttl_1 > .fs-jp {
  font-size: 1.11112em;
  display: block;
  margin-top: 0.5em;
}

/**/
.home_about {
  margin: clamp(50px, 10vw, 200px) 0;
}

.home_about_content {
  margin-bottom: min(calc(60px + 90 * (100vw - 375px) / 1025), 150px);
  position: relative;
  z-index: 0;
}
.home_about_content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  bottom: 0;
  z-index: -1;
  background-color: #e7f8eb;
}
@media print, screen and (min-width: 768px) {
  .home_about_content::before {
    top: 20%;
  }
}
@media print, screen and (min-width: 992px) {
  .home_about_content {
    height: min(calc(450px + 168 * (100vw - 992px) / 408), 618px);
    display: flex;
    align-items: center;
  }
  .home_about_content::before {
    top: auto;
    bottom: -50px;
    height: min(calc(300px + 100 * (100vw - 992px) / 408), 400px);
  }
  .home_about_content.odd::before {
    left: clamp(15px, 2.60417vw, 50px);
  }
  .home_about_content.even::before {
    right: clamp(15px, 2.60417vw, 50px);
  }
}
@media print, screen and (min-width: 992px) {
  .home_about_content .image {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
  }
  .home_about_content .image img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media print, screen and (min-width: 992px) {
  .home_about_content.odd .image {
    right: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .home_about_content.even .image {
    left: 0;
  }
  .home_about_content.even .row > div {
    margin-left: auto;
  }
}
.home_about_content .home_about_content_column {
  padding: min(calc(30px + 20 * (100vw - 375px) / 1025), 50px) 15px;
  margin-bottom: 30px;
  border-radius: min(calc(10px + 30 * (100vw - 375px) / 1025), 40px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
@media print, screen and (min-width: 768px) {
  .home_about_content .home_about_content_column {
    text-align: center;
  }
}
@media print, screen and (min-width: 992px) {
  .home_about_content .home_about_content_column {
    margin-bottom: 0;
  }
}
.home_about_content .home_about_content_column h3 {
  font-size: min(calc(25px + 15 * (100vw - 375px) / 1025), 40px);
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0;
  background: url("../images/common/bg002.svg") no-repeat center center/contain;
}
.home_about_content .home_about_content_column .columns strong {
  font-size: 1.33334em;
}

/**/
.home_btn_box {
  text-align: center;
}
.home_btn_box .btn {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1025), 24px);
  max-width: 480px;
  display: block;
  margin: 0 auto;
}

/* ---  --- */
.home_service {
  --color: #f7bf64;
  margin-top: clamp(50px, 12.5vw, 250px);
  margin-bottom: clamp(50px, 10vw, 200px);
  padding-bottom: clamp(50px, 10vw, 200px);
  position: relative;
  z-index: 0;
}
.home_service::after {
  content: "";
  position: absolute;
  top: min(calc(35px + 35 * (100vw - 375px) / 1025), 70px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background-color: #fdedd4;
}
@media print, screen and (min-width: 992px) {
  .home_service::after {
    left: clamp(15px, 2.60417vw, 50px);
  }
}
.home_service .home_ttl_1 {
  text-align: left;
}
.home_service .home_ttl_1 > .fs-en::first-letter {
  color: var(--color);
}
.home_service .bg_img {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .home_service .bg_img {
    display: block;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: -1;
    width: 41.66667%;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
  }
  .home_service .bg_img img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.home_service_column {
  padding: clamp(15px, 3.42857vw, 48px);
  border-radius: clamp(10px, 2.857vw, 40px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  max-width: 909px;
  margin-bottom: clamp(50px, 13.7857%, 193px);
  background: url("../images/common/bg001.png");
}
@media print, screen and (min-width: 992px) {
  .home_service_column {
    width: 70.4651%;
  }
}
.home_service_column h3 {
  --border-color: var(--color);
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  line-height: 2;
}

.home_service_item {
  text-decoration: none;
  padding: 20px clamp(10px, calc(20px * (var(--ww-item) / 410)), 20px);
  border-radius: 10px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.home_service_item h4 {
  --border-color: var(--color);
  font-size: clamp(16px, calc(24px * (var(--ww-item) / 410)), 24px);
  line-height: normal;
  margin-bottom: 20px;
}
.home_service_item .photo {
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}
.home_service_item .column {
  font-size: clamp(13px, calc(18px * (var(--ww-item) / 410)), 18px);
  margin-bottom: 20px;
}
.home_service_item .btn_box {
  text-align: right;
  margin-top: auto;
}
.home_service_item .btn_box .telphone {
  color: #61ce77;
  font-size: clamp(16px, calc(36px * (var(--ww-item) / 410)), 36px);
  text-align: center;
  margin-bottom: 0.5em;
}
.home_service_item .btn_box .btn-1 {
  --color: #f7bf64;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
}
.home_service_item .btn_box .btn-1 .txt {
  margin-right: 10px;
}
.home_service_item .btn_box .btn-1 .icon {
  color: #fff;
  font-size: 1.11112em;
  line-height: 1;
  letter-spacing: normal;
  width: 2.5em;
  height: 2.5em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--color);
}

a:has(.home_service_item) {
  color: #3c3c3c;
  text-decoration: none;
}
a:has(.home_service_item):hover {
  color: #3c3c3c;
}
a:has(.home_service_item) .home_service_item .photo img {
  transition: opacity 0.3s ease;
}
a:has(.home_service_item) .home_service_item .btn_box > .in {
  transition: color 0.3s ease;
}
a:has(.home_service_item) .home_service_item:hover .photo img {
  opacity: 0.65;
}
a:has(.home_service_item) .home_service_item:hover .btn_box > .in {
  color: #f7bf64;
}
a:has(.home_service_item) .home_service_item:hover .btn_box > .in .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

/* ---  --- */
.home_recruit {
  padding-top: clamp(50px, 10vw, 200px);
  padding-bottom: clamp(50px, 7.5vw, 150px);
  background: url("../images/home/home_recruit_bg.jpg") no-repeat center top/cover;
  overflow: hidden;
}

.home_recruit_content {
  margin-bottom: clamp(50px, 7.5vw, 150px);
  position: relative;
  z-index: 0;
}
.home_recruit_content h3 {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  line-height: 2;
}
.home_recruit_content .hr_line {
  width: 100px;
  height: 4px;
  margin: min(calc(25px + 25 * (100vw - 375px) / 1025), 50px) auto;
  background: #61ce77;
}
@media print, screen and (min-width: 768px) {
  .home_recruit_content h3 {
    text-align: center;
  }
  .home_recruit_content .column {
    text-align: center;
  }
}
.home_recruit_content .bg_img {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  .home_recruit_content .bg_img {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
    display: block;
  }
  .home_recruit_content .bg_img1 {
    top: 0;
    left: -305px;
    width: 337px;
  }
  .home_recruit_content .bg_img2 {
    bottom: 0;
    right: -300px;
    width: 300px;
  }
}

.home_recruit_merit h4 {
  font-size: min(calc(25px + 15 * (100vw - 375px) / 1025), 40px);
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0;
  background: url("../images/common/bg002.svg") no-repeat center center/contain;
}

.home_recruit_merit_item {
  max-width: 410px;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  background-color: #fff;
}
.home_recruit_merit_item .merit {
  font-weight: 700;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  line-height: normal;
  padding: 1.11111rem;
}
.home_recruit_merit_item .column {
  font-weight: 700;
  font-size: calc(20px * (var(--ww-item) / 410));
  padding: 1.11111rem;
}

/* ---  --- */
.home_instagram {
  padding-top: clamp(50px, 7.5vw, 150px);
  padding-bottom: clamp(50px, 10vw, 200px);
}
.home_instagram h2 > .fs-en::first-letter {
  color: #f7bf64;
}

.tagcolle-load-wrap {
  text-align: center;
}
.tagcolle-load-wrap .tagcolle-btn-default {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1025), 24px);
  max-width: 480px;
  display: block !important;
  margin: 0 auto !important;
  padding: 0.875em !important;
  border-radius: 10em !important;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05) !important;
  cursor: pointer;
  border: solid 1px #61ce77 !important;
  background-color: #61ce77 !important;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.tagcolle-load-wrap .tagcolle-btn-default::before {
  content: "\f149";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -.5em;
}
.tagcolle-load-wrap .tagcolle-btn-default:hover {
  color: #61ce77 !important;
  background-color: #fff !important;
}

/* -------------------------------
	深緑苑について
-------------------------------- */
/**/
.shinryokuen_anchor_link .anchor_link_list {
  --col: 2;
}
@media print, screen and (min-width: 768px) {
  .shinryokuen_anchor_link .anchor_link_list {
    --col: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .shinryokuen_anchor_link .anchor_link_list {
    --col: 6;
  }
}

/* ---  --- */
.shinryokuen_principles {
  background-color: #fdedd4;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .shinryokuen_principles {
    background-color: #fff;
    position: relative;
    z-index: 0;
  }
  .shinryokuen_principles::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: clamp(15px, 2.60417vw, 50px);
    z-index: -2;
    background-color: #fdedd4;
  }
}
.shinryokuen_principles .column strong {
  font-size: 1.125em;
}
@media print, screen and (min-width: 768px) {
  .shinryokuen_principles .column {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 732), 20px);
    text-align: center;
  }
  .shinryokuen_principles .column strong {
    font-size: 1.33334em;
  }
}

/* ---  --- */
@media print, screen and (min-width: 992px) {
  .shinryokuen_greeting .photo {
    margin-left: var(--edge);
    height: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .shinryokuen_greeting .shinryokuen_greeting_content {
    padding-left: min(calc(15px + 65 * (100vw - 992px) / 408), 80px);
  }
}

/* ---  --- */
.shinryokuen_history {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.shinryokuen_history::before {
  content: "";
  position: absolute;
  top: min(calc(27px + 27 * (100vw - 375px) / 1025), 54px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #e7f8eb;
}
@media print, screen and (min-width: 992px) {
  .shinryokuen_history::before {
    right: clamp(15px, 2.60417vw, 50px);
  }
}

/* ---  --- */
.shinryokuen_info_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  .shinryokuen_info_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 1200px) {
  .shinryokuen_info_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.shinryokuen_info_list > li .btn {
  text-align: left;
  display: block;
  padding-left: 4em;
  padding-right: 1.5em;
  border: solid 1px #ccc;
  background-color: #fafafa;
  position: relative;
}
.shinryokuen_info_list > li .btn > i {
  position: absolute;
  left: 1.5em;
  top: 50%;
  margin-top: -.5em;
  color: #ff0000;
  font-size: 1.25em;
  line-height: 1;
}
.shinryokuen_info_list > li .btn:hover {
  background-color: #fff;
}

/* -------------------------------
	特別養護老人ホーム
-------------------------------- */
/**/
.tokuyou_anchor_link .anchor_link_list {
  --col: 1;
}
@media print, screen and (min-width: 768px) {
  .tokuyou_anchor_link .anchor_link_list {
    --col: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .tokuyou_anchor_link .anchor_link_list {
    --col: 3;
  }
}

/* ---  --- */
.tokuyou_nursing h3 {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  line-height: normal;
  text-align: center;
}
.tokuyou_nursing h3 > strong {
  font-size: 1.5em;
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0;
  display: block;
  background: url("../images/common/bg002.svg") no-repeat center center/contain;
}
.tokuyou_nursing .tokuyou_nursing_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tokuyou_nursing .tokuyou_nursing_content .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 768px) {
  .tokuyou_nursing .tokuyou_nursing_content {
    padding-left: min(calc(15px + 65 * (100vw - 768px) / 632), 80px);
  }
}
.tokuyou_nursing .photo {
  border-radius: 10px;
  overflow: hidden;
}

/* ---  --- */
.tokuyou_eligible {
  background: url("../images/tokuyou/tokuyou_bg.jpg") no-repeat center top/cover;
}
.tokuyou_eligible h4 {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  text-align: center;
}

.tokuyou_eligible_box {
  padding: min(calc(15px + 35 * (100vw - 375px) / 1025), 50px);
  border-radius: min(calc(5px + 10 * (100vw - 375px) / 1025), 15px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
.tokuyou_eligible_box .title-2 {
  font-size: min(calc(22px + 6 * (100vw - 375px) / 1025), 28px);
}

.tokuyou_eligible_box_2 .title-2 {
  font-size: min(calc(22px + 6 * (100vw - 375px) / 1025), 28px);
}

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

.tokuyou_eligible_gallery_item {
  padding: 5px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.tokuyou_eligible_gallery_item figcaption {
  text-align: center;
  padding: 10px;
}

/* ---  --- */
.tokuyou_application_box {
  padding: min(calc(15px + 35 * (100vw - 375px) / 1025), 50px);
  border-radius: min(calc(5px + 10 * (100vw - 375px) / 1025), 15px);
  border: solid 1px #ddd;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
.tokuyou_application_box .title-1 {
  font-size: min(calc(22px + 6 * (100vw - 375px) / 1025), 28px);
}

.tokuyou_application_ol {
  font-weight: 700;
  font-size: 1.11112rem;
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.tokuyou_application_ol > li {
  padding-left: 2em;
  position: relative;
}
.tokuyou_application_ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

.tokuyou_application_kome {
  list-style: none;
  padding: 0;
  counter-reset: number;
}
.tokuyou_application_kome > li {
  padding-left: 2em;
  position: relative;
}
.tokuyou_application_kome > li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: "※" counter(number);
}

/* -------------------------------
	ショートステイ
-------------------------------- */
/**/
.tokuyou_anchor_link .anchor_link_list {
  --col: 1;
}
@media print, screen and (min-width: 768px) {
  .tokuyou_anchor_link .anchor_link_list {
    --col: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .tokuyou_anchor_link .anchor_link_list {
    --col: 3;
  }
}

/* ---  --- */
.shortstay_eligibility {
  background: url("../images/tokuyou/tokuyou_bg.jpg") no-repeat center top/cover;
}
.shortstay_eligibility .ttl1 {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  text-align: center;
}
.shortstay_eligibility .shortstay_eligibility_hr_1 {
  line-height: 1;
  display: flex;
  align-items: center;
}
.shortstay_eligibility .shortstay_eligibility_hr_1::before, .shortstay_eligibility .shortstay_eligibility_hr_1::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background-color: #C3EDCD;
}
.shortstay_eligibility .shortstay_eligibility_hr_1::before {
  margin-right: 10px;
}
.shortstay_eligibility .shortstay_eligibility_hr_1::after {
  margin-left: 10px;
}
.shortstay_eligibility .shortstay_eligibility_hr_1 > i {
  color: #C3EDCD;
  font-size: min(calc(25px + 25 * (100vw - 375px) / 1025), 50px);
  line-height: 1;
}
.shortstay_eligibility .shortstay_eligibility_hr_2 {
  text-align: center;
  line-height: 1;
}
.shortstay_eligibility .shortstay_eligibility_hr_2 > i {
  color: #61ce77;
  font-size: min(calc(25px + 25 * (100vw - 375px) / 1025), 50px);
  line-height: 1;
}

.shortstay_eligibility_figure_1 {
  max-width: 400px;
  padding: 5px;
  margin: 0 auto;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.shortstay_eligibility_figure_1 .photo {
  aspect-ratio: 410 / 273;
}
.shortstay_eligibility_figure_1 figcaption {
  font-size: min(calc(18px * (var(--ww-item) / 390)), 18px);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5em;
}

.shortstay_eligibility_box_column {
  text-align: center;
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  padding: min(calc(20px + 10 * (100vw - 375px) / 1025), 30px) 15px;
  border: solid 5px #61ce77;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

/* ---  --- */
.shortstay_flow {
  position: relative;
  z-index: 0;
}
.shortstay_flow::after {
  content: "";
  position: absolute;
  top: min(calc(27px + 27 * (100vw - 375px) / 1025), 54px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background-color: #fdedd4;
}
@media print, screen and (min-width: 992px) {
  .shortstay_flow::after {
    right: clamp(15px, 2.60417vw, 50px);
  }
}

/* ---  --- */
.folw_step_item {
  padding: min(calc(20px + 20 * (100vw - 375px) / 1025), 40px);
  border-radius: min(calc(20px + 20 * (100vw - 375px) / 1025), 40px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
.folw_step_item:last-child {
  margin-bottom: 0;
}
.folw_step_item .folw_step_item_image {
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
}
.folw_step_item .folw_step_item_image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.folw_step_item .folw_step_item_column {
  padding-top: 20px;
}
.folw_step_item .folw_step_item_column .ttl {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  display: grid;
  grid-template-columns: 2.5em 1fr;
}
.folw_step_item .folw_step_item_column .ttl .num {
  color: #fff;
  font-size: 1.25em;
  line-height: 1;
  letter-spacing: normal;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #f7bf64;
}
.folw_step_item .folw_step_item_column .ttl .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .folw_step_item {
    display: flex;
    align-items: flex-start;
  }
  .folw_step_item .folw_step_item_image {
    flex: 0 0 30%;
  }
  .folw_step_item .folw_step_item_column {
    flex: 1 1 0;
    padding-left: min(calc(20px + 40 * (100vw - 768px) / 632), 60px);
  }
}

.folw_step_telphone {
  font-size: min(calc(28px + 10 * (100vw - 375px) / 1025), 38px);
}

/* -------------------------------
	居宅介護支援
-------------------------------- */
/**/
.kyotaku_anchor_link .anchor_link_list {
  --col: 1;
}
@media print, screen and (min-width: 768px) {
  .kyotaku_anchor_link .anchor_link_list {
    --col: 2;
  }
}
@media print, screen and (min-width: 1200px) {
  .kyotaku_anchor_link .anchor_link_list {
    --col: 4;
  }
}

/* ---  --- */
.kyotaku_flow {
  position: relative;
  z-index: 0;
}
.kyotaku_flow::after {
  content: "";
  position: absolute;
  top: min(calc(27px + 27 * (100vw - 375px) / 1025), 54px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background-color: #fdedd4;
}
@media print, screen and (min-width: 992px) {
  .kyotaku_flow::after {
    left: clamp(15px, 2.60417vw, 50px);
  }
}

/* ---  --- */
.kyotaku_plan .kyotaku_plan_image {
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .kyotaku_plan .kyotaku_plan_image {
    margin-left: min(calc(20px + 60 * (100vw - 992px) / 408), 80px);
    margin-right: calc(var(--edge) + clamp(15px, 2.60417vw, 50px));
  }
}
.kyotaku_plan .kyotaku_plan_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kyotaku_plan .kyotaku_plan_content .inner {
  margin: auto 0;
}

/* ---  --- */
.kyotaku_carelevel .kyotaku_carelevel_image {
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .kyotaku_carelevel .kyotaku_carelevel_image {
    margin-right: min(calc(20px + 60 * (100vw - 992px) / 408), 80px);
    margin-left: calc(var(--edge) + clamp(15px, 2.60417vw, 50px));
  }
}
.kyotaku_carelevel .kyotaku_carelevel_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kyotaku_carelevel .kyotaku_carelevel_content .inner {
  margin: auto 0;
}

/* -------------------------------
	よくあるご質問
-------------------------------- */
.faq_item {
  padding: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  margin-bottom: 20px;
  border-radius: min(calc(5px + 10 * (100vw - 375px) / 1025), 15px);
  border: solid 1px #ddd;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  background-image: url("../images/common/bg001.png");
}
.faq_item .faq_item_question, .faq_item .faq_item_answer {
  display: flex;
}
.faq_item .faq_item_question::before, .faq_item .faq_item_answer::before {
  content: "";
  color: #fff;
  font-size: min(calc(20px + 10 * (100vw - 375px) / 1025), 30px);
  line-height: 1;
  letter-spacing: normal;
  flex: 0 0 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
  padding-bottom: 0.15em;
  margin-right: 0.5em;
  background-color: var(--primary);
}
.faq_item .faq_item_question {
  margin-bottom: 10px;
}
.faq_item .faq_item_question::before {
  content: "Q";
  background-color: var(--primary);
}
.faq_item .faq_item_question .ttl {
  color: var(--primary);
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  line-height: 1.5;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq_item .faq_item_answer {
  line-height: 1.75;
}
.faq_item .faq_item_answer::before {
  content: "A";
  background-color: #3c3c3c;
}
.faq_item .faq_item_answer .column {
  display: flex;
  flex-direction: column;
}
.faq_item .faq_item_answer .column .inner {
  margin: auto 0;
}

/* -------------------------------
	施設紹介・アクセス
-------------------------------- */
.facility_anchor_link .anchor_link_list {
  --col: 2;
}
@media print, screen and (min-width: 768px) {
  .facility_anchor_link .anchor_link_list {
    --col: 3;
  }
}
@media print, screen and (min-width: 1200px) {
  .facility_anchor_link .anchor_link_list {
    --col: 4;
  }
}

/* ---  --- */
@media print, screen and (min-width: 768px) {
  .facility_head {
    font-size: min(calc(16px + 4 * (100vw - 768px) / 632), 20px);
    text-align: center;
  }
}

.facility_introduction {
  position: relative;
  z-index: 0;
}
.facility_introduction::before {
  content: "";
  position: absolute;
  top: min(calc(27px + 27 * (100vw - 375px) / 1025), 54px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #fdedd4;
}
.facility_introduction .title-hh-1 {
  --color: var(--success);
}
@media print, screen and (min-width: 992px) {
  .facility_introduction::before {
    left: clamp(15px, 2.60417vw, 50px);
  }
}

.facility_introduction_gallery {
  display: grid;
  gap: min(calc(10px + 20 * (100vw - 375px) / 1025), 30px);
  grid-template-columns: repeat(2, 1fr);
}
@media print, screen and (min-width: 768px) {
  .facility_introduction_gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.facility_introduction_gallery figure .photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility_introduction_gallery figure figcaption {
  text-align: center;
}

/* -------------------------------
	採用情報
-------------------------------- */
/* --- recruit_head --- */
@media print, screen and (min-width: 992px) {
  .recruit_head_photo {
    margin-left: var(--edge);
  }

  .recruit_head_content {
    padding-left: min(calc(15px + 65 * (100vw - 992px) / 408), 80px);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .recruit_head_content .inner {
    margin: auto 0;
  }
}
/* ---  --- */
.recruit_merit_figure {
  max-width: 410px;
  margin: 0 auto;
}
.recruit_merit_figure figcaption {
  margin-top: 10px;
}
.recruit_merit_figure figcaption p {
  font-size: clamp(13px, calc(20px * (var(--ww-item) / 410)), 20px);
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.recruit_merit_figure figcaption p::before {
  content: "";
  position: absolute;
  left: 0.25em;
  top: 0;
  width: 0.2em;
  height: 100%;
  border-radius: 1em;
  background-color: #61ce77;
}

/* ---  --- */
.recruit_workplace_figure {
  max-width: 410px;
  margin: 0 auto;
}
.recruit_workplace_figure figcaption {
  margin-top: 10px;
}
.recruit_workplace_figure figcaption p {
  font-size: clamp(15px, calc(20px * (var(--ww-item) / 410)), 20px);
  line-height: 1.5;
  text-align: center;
}

/* ---  --- */
.recruit_job {
  position: relative;
  z-index: 0;
}
.recruit_job::before {
  content: "";
  position: absolute;
  top: min(calc(27px + 27 * (100vw - 375px) / 1025), 54px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #e7f8eb;
}
@media print, screen and (min-width: 992px) {
  .recruit_job::before {
    right: clamp(15px, 2.60417vw, 50px);
  }
}

/* ---  --- */
.recruit_list_1 {
  list-style: none;
  padding: 0;
}
.recruit_list_1 > li {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  margin-bottom: 0.25em;
}
.recruit_list_1 > li:last-child {
  margin-bottom: 0;
}
.recruit_list_1 > li .ttl::after {
  content: "：";
}

/* ---  --- */
.recruit_flow_item {
  border: solid 1px #ccc;
  padding: 0 clamp(10px, calc(30px * (var(--ww-item) / 410)), 30px);
  max-width: 410px;
  height: 100%;
  margin: 0 auto;
}
.recruit_flow_item h4 {
  color: #61ce77;
  font-size: clamp(20px, calc(30px * (var(--ww-item) / 410)), 30px);
  text-align: center;
  padding: 0.75em 0;
  border-bottom: solid 1px #ccc;
}
.recruit_flow_item .column {
  font-size: 0.88888rem;
  margin-top: .5em;
  padding-bottom: 1.5rem;
}
.recruit_flow_item .column .telphone {
  font-size: clamp(22px, calc(34px * (var(--ww-item) / 410)), 34px);
  text-align: center;
  margin-bottom: 0.5em;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  padding: min(calc(20px + 30 * (100vw - 375px) / 1025), 50px);
  border-radius: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background: url("../images/common/bg001.png");
}
.tel_contact h4 {
  font-size: min(calc(20px + 4 * (100vw - 375px) / 1025), 24px);
  text-align: center;
  margin-bottom: 1rem;
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1025), 50px);
  text-align: center;
}
.tel_contact .telphone i {
  color: var(--primary);
}
.tel_contact p {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1025), 16px);
  text-align: center;
  margin-top: 1em;
}
.tel_contact .tel_contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 0;
}
.tel_contact .tel_contact_list > li {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .tel_contact_list > li {
    flex: 0 0 auto;
    padding: 0 min(calc(40px + 40 * (100vw - 768px) / 632), 80px);
  }
  .tel_contact .tel_contact_list > li + li {
    border-left: solid 1px #ccc;
  }
  .tel_contact .tel_contact_list > li h4 {
    font-size: min(calc(20px + 4 * (100vw - 768px) / 632), 24px);
    text-align: center;
    margin-bottom: 1rem;
  }
  .tel_contact .tel_contact_list > li .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 632), 50px);
    text-align: center;
  }
  .tel_contact .tel_contact_list > li .telphone i {
    color: var(--primary);
  }
}

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

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

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

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

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

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-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;
  }
}
/* =====================================================
 * 下線
 * ===================================================== */
.amn-marker {
  background: linear-gradient(to bottom, rgba(247, 191, 100, 0) 0%, rgba(247, 191, 100, 0) 40%, rgba(247, 191, 100, 0.3) 40%, rgba(247, 191, 100, 0.3) 98%, rgba(247, 191, 100, 0) 98%, rgba(247, 191, 100, 0) 100%);
  background-repeat: no-repeat;
  background-size: 200% .8em;
  background-position: 100% 0.5em;
  transition: background 3s ease;
  display: inline;
}
@media screen {
  .amn-marker {
    background-position: 200% 0.5em;
  }
  .amn-marker.is-active {
    background-position: 100% 0.5em;
  }
}

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