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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.25em 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 #C5A4FA;
  border-left: 1px solid #C5A4FA;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #C5A4FA;
  border-bottom: 1px solid #C5A4FA;
}
.table-design-2 > tbody > tr > th {
  color: var(--primary);
  background: #EDE3FD;
}
.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-dot-1 {
  --bg: #caaedd;
  line-height: 1.6;
  list-style: none;
  padding: 0;
}
.list-dot-1 > li {
  padding-left: 1.2em;
  margin-bottom: 0.25em;
  position: relative;
}
.list-dot-1 > li:last-child {
  margin-bottom: 0;
}
.list-dot-1 > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.66666em;
  height: 0.66666em;
  border-radius: 50%;
  background-color: var(--bg);
}

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

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

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

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

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

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

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	画像拡大
-------------------------------- */
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-sns {
  width: 46px;
  aspect-ratio: 1/1;
  padding: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background-color: #1d1c1d;
  position: relative;
  z-index: 0;
}
.btn-sns::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background-color: #1d1c1d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  pointer-events: none;
}
.btn-sns img {
  width: 54.34783%;
  display: block;
}
.btn-sns:hover {
  color: #fff;
  background-color: #1d1c1d;
}
.btn-sns:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-mail {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10em;
  border: none;
  padding: 0 1.5em;
  height: 46px;
  background-color: #66457c;
  position: relative;
  z-index: 0;
}
.btn-mail img {
  width: auto;
  height: 1em;
  display: block;
  margin-right: 0.7em;
}
.btn-mail::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 10em;
  background-color: #66457c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  pointer-events: none;
}
.btn-mail:hover {
  color: #fff;
  background-color: #66457c;
}
.btn-mail:hover::after {
  transform: scaleX(1.1) scaleY(1.3);
  opacity: 0;
}

.btn-1 {
  --bg-color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.btn-1 > .icon {
  color: #fff;
  font-size: 0.72223em;
  line-height: 1;
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  margin-left: 1.75em;
  display: grid;
  place-items: center;
  background-color: var(--bg-color);
  position: relative;
  z-index: 0;
  transition: transform 0.3s ease;
}
.btn-1 > .icon::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 10em;
  background-color: var(--bg-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  pointer-events: none;
  transform: scale(0.8);
}
.btn-1:hover > .icon {
  transform: scale(1.15);
}
.btn-1:hover > .icon::after {
  transform: scale(1.3);
  opacity: 0;
}

.btn-2 {
  --color: #fff;
  --bg-color: #66457c;
  color: var(--color);
  font-weight: 500;
  text-align: left;
  display: inline-block;
  border-radius: 0.5em;
  border: none;
  padding: 0.75em 1.5em;
  border: solid 1px var(--bg-color);
  background-color: var(--bg-color);
  position: relative;
  z-index: 0;
}
.btn-2 img {
  width: auto;
  height: 1em;
  display: block;
  margin-right: 0.7em;
}
.btn-2:hover {
  color: var(--bg-color);
  background-color: var(--color);
}
.btn-2.white {
  --color: #66457c;
  --bg-color: #fff;
}

.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: 2.5em;
}
.btn-icon-l i {
  left: 1.2em;
}

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

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

/* -------------------------------
	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 {
  display: flex;
  align-items: center;
  line-height: 1;
  padding-top: 0.2em;
}
.telphone small {
  font-size: 0.8125em;
}
.telphone i {
  font-size: 0.66667em;
  line-height: 1;
  margin-right: 0.5em;
  margin-top: -0.25em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	splide
-------------------------------- */
/*
 * -- splide基本設定
 *
 */
.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev, .splide__arrow--next {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
  display: grid;
  place-content: center;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #5e5c5e;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide__arrow--prev svg, .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}

.splide__arrow--prev {
  left: 15px;
}
.splide__arrow--prev svg {
  transform: scale(-1, 1);
}

.splide__arrow--next {
  right: 15px;
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.splide__arrow:focus-visible {
  outline: none;
  outline-offset: 0;
  z-index: 1;
  transition: none;
}

/* ページング */
.splide__pagination {
  font-size: 0;
  gap: 3px 5px;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  padding: 0;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #fff;
}
.splide__pagination__page.is-active {
  background-color: #6e8f00;
  pointer-events: auto;
}

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

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

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    font-size: 0.88888rem;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  .cat_navi_list > li > a {
    --bg-color: var(--primary);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.75em 3em 0.75em 1em;
    border-radius: 12px;
    border: solid 1px var(--bg-color);
    background-color: var(--bg-color);
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover, .cat_navi_list > li.active > a {
    color: var(--bg-color);
    background-color: #fff;
  }
}
@media print, screen and (min-width: 1600px) {
  .cat_navi_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

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

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

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

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

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

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

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

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

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

/* --▼margin-- */
.mt40 {
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

.mt-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mb-80 {
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mtb-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mt-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mb-90 {
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mtb-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

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

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

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

.mt-120 {
  margin-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.mb-120 {
  margin-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.mtb-120 {
  margin-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  margin-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.mt-160 {
  margin-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

.mb-160 {
  margin-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

.mtb-160 {
  margin-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  margin-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

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

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

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

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

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

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

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

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

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

.pt-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pb-80 {
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.ptb-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pt-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.pb-90 {
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.ptb-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

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

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

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

.pt-120 {
  padding-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.pb-120 {
  padding-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.ptb-120 {
  padding-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  padding-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
}

.pt-160 {
  padding-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

.pb-160 {
  padding-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

.ptb-160 {
  padding-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  padding-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
}

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

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

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

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

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

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

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

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

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

  .mt-lg-80 {
    margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

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

  .mt-lg-90 {
    margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

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

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

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

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

  .mt-lg-120 {
    margin-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  }

  .mb-lg-120 {
    margin-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  }

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

  .mt-lg-160 {
    margin-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  }

  .mb-lg-160 {
    margin-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  }

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

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

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

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

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

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

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

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

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

  .pt-lg-80 {
    padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

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

  .pt-lg-90 {
    padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

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

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

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

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

  .pt-lg-120 {
    padding-top: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  }

  .pb-lg-120 {
    padding-bottom: min(calc(48px + 72 * (100vw - 320px) / 880), 120px);
  }

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

  .pt-lg-160 {
    padding-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  }

  .pb-lg-160 {
    padding-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  }

  .ptb-lg-160 {
    padding-top: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
    padding-bottom: min(calc(64px + 96 * (100vw - 320px) / 880), 160px);
  }
}
/**/
.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 {
  --bg-color: var(--primary);
  padding-left: 0.7em;
  position: relative;
}
.title-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.2em;
  height: 100%;
  border-radius: 0.1em;
  background-color: var(--bg-color);
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .txt {
  font-weight: 500;
  font-size: min(calc(24px + 12 * (100vw - 375px) / 1125), 36px);
  display: block;
}
.title-hh-1 > .fs-en {
  color: #caaedd;
  font-size: min(calc(14px + 4 * (100vw - 375px) / 1125), 18px);
  display: block;
  margin-top: 0.5em;
}

/* タイトル用フォントサイズ */
.ttl-fs-1 {
  font-size: 1.5625rem;
}
@media print, screen and (min-width: 768px) {
  .ttl-fs-1 {
    font-size: 2.1875rem;
  }
}
@media print, screen and (min-width: 992px) {
  .ttl-fs-1 {
    font-size: 2.5rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .ttl-fs-1 {
    font-size: 3.125rem;
  }
}

/* -------------------------------
	bootstrap
-------------------------------- */
.container-fluid-xl {
  max-width: 1600px;
  width: 100%;
  padding-left: calc(15px + 35 * (100vw - 375px) / 1125);
  padding-right: calc(15px + 35 * (100vw - 375px) / 1125);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 992px) {
  .container-fluid-xl {
    padding-left: calc(80px + 20 * (100vw - 992px) / 608);
    padding-right: calc(80px + 20 * (100vw - 992px) / 608);
  }
}
@media print, screen and (min-width: 1600px) {
  .container-fluid-xl {
    padding-left: 100px;
    padding-right: 100px;
  }
}

:root {
  --edge: calc(-15px - 35 * (100vw - 375px) / 1125);
}
@media print, screen and (min-width: 992px) {
  :root {
    --edge: calc(-80px - 20 * (100vw - 992px) / 608);
  }
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1400px - 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;
}

/* ---  --- */
.wrapper_inner {
  position: relative;
}

.side_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 999;
}

.side_pc {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .side_pc {
    position: sticky;
    top: 0;
    height: 100%;
    max-height: var(--app-h);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
  }
}

@media print, screen and (min-width: 992px) {
  .side_line_pc {
    margin: auto 0 0;
    pointer-events: auto;
  }
  .side_line_pc > a {
    font-size: min(calc(12px + 4 * (100vw - 992px) / 808), 16px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 6em;
    padding: 2em 0;
    margin: auto 0;
    border-radius: 0.5em;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: relative;
    z-index: 0;
  }
  .side_line_pc > a > img {
    width: 3.0625em;
  }
  .side_line_pc > a > .txt {
    font-weight: 700;
    text-align: center;
    display: block;
    padding-top: 1.125em;
    writing-mode: vertical-rl;
  }
  .side_line_pc > a:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  }
}

@media print, screen and (min-width: 992px) {
  .side_tel_pc {
    z-index: 990;
    color: #fff;
    font-size: min(calc(20px + 16 * (100vw - 992px) / 808), 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 8.44445em;
    aspect-ratio: 2 / 1;
    margin: 10vh 0 0;
    background: url("../images/common/side_tel_pc_bg.svg") no-repeat center center/contain;
    pointer-events: auto;
  }
  .side_tel_pc p {
    font-weight: 500;
    font-size: 0.5em;
    text-align: center;
    margin: 0.5em 0;
  }
  .side_tel_pc .telphone {
    font-size: 1em;
    justify-content: center;
  }
}

/**/
.side_foot {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  background-color: #fff;
}
.side_foot > .box {
  flex: 0 0 50%;
}
.side_foot > .box:first-child {
  position: relative;
}
.side_foot > .box:first-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
  width: 1px;
  background-color: #cacaca;
}
.side_foot .side_foot_line {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.side_foot .side_foot_line img {
  width: 23px;
  margin-right: 5px;
}
.side_foot .telphone {
  font-size: 18px;
  width: 100%;
  height: 50px;
  justify-content: center;
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .side_foot {
    display: none;
  }
}

/* -------------------------------
	上部category
-------------------------------- */
.cat_page_navi_list {
  list-style: none;
  padding: 0;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  padding-top: 80px;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    padding-top: 202px;
  }
  #mainvisual .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#mainvisual .image {
  aspect-ratio: 16 / 9;
  border-top-left-radius: min(calc(20px + 100 * (100vw - 375px) / 1545), 120px);
  border-top-right-radius: min(calc(20px + 100 * (100vw - 375px) / 1545), 120px);
  overflow: hidden;
}
#mainvisual .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  #mainvisual .image {
    aspect-ratio: auto;
  }
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .txt {
  font-weight: 500;
  font-size: min(calc(24px + 12 * (100vw - 375px) / 1125), 36px);
  display: block;
}
.home_ttl_1 > .fs-en {
  color: #caaedd;
  font-size: min(calc(14px + 4 * (100vw - 375px) / 1125), 18px);
  display: block;
}

/* ---  --- */
.home_news_figure {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
}
.home_news_figure .photo-ofi {
  aspect-ratio: 1/1;
  background-color: #d6d6d6;
}
.home_news_figure figcaption {
  padding: 1em 0 0;
}
.home_news_figure figcaption .date {
  font-weight: 500;
  margin-bottom: 0.25em;
}
.home_news_figure figcaption .date .new {
  color: #d60000;
  font-weight: 700;
  margin-left: 0.5em;
}
.home_news_figure figcaption .ttl {
  font-weight: 500;
  margin-bottom: 0.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_news_figure figcaption .cat {
  color: var(--primary);
  font-size: 0.88888em;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.home_news_figure figcaption .cat > .in {
  border: solid 1px currentColor;
  padding: 0.15em 1em;
  border-radius: 10em;
}

.home_news_splide {
  overflow: visible;
}
.home_news_splide .splide__arrow--prev {
  left: -10px;
}
.home_news_splide .splide__arrow--next {
  right: -10px;
}

/**/
.home_service .home_service_photo {
  max-width: 628px;
  position: relative;
  z-index: 0;
}
.home_service .home_service_photo:before, .home_service .home_service_photo:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.home_service .home_service_photo:before {
  top: 50%;
  left: var(--edge);
  right: 3%;
  z-index: -1;
  aspect-ratio: 860 / 377;
  background: url("../images/home/home_service_2.png") no-repeat center center/contain;
}
.home_service .home_service_photo:after {
  top: -12%;
  right: 75%;
  z-index: 10;
  width: calc((187 / 628) * 100%);
  aspect-ratio: 17 / 28;
  background: url("../images/home/home_service_1.png") no-repeat center center/contain;
}
.home_service .home_service_photo > img {
  border-radius: 24px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .home_service .home_service_photo:after {
    top: -12%;
    right: 91%;
  }
}
.home_service .home_service_content h3 {
  font-size: min(calc(var(--measure-width) / 19.02777), 36px);
  line-height: 1.6;
}

/**/
.home_about .row > div:nth-child(2) {
  z-index: 10;
}
.home_about .home_about_photo {
  max-width: 628px;
  position: relative;
  z-index: 0;
}
.home_about .home_about_photo:before, .home_about .home_about_photo:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.home_about .home_about_photo:before {
  top: 36%;
  right: var(--edge);
  left: -13.69427%;
  width: auto;
  z-index: -1;
  aspect-ratio: 971 / 447;
  background: url("../images/home/home_about_2.png") no-repeat center center/contain;
}
.home_about .home_about_photo:after {
  bottom: -10%;
  left: 80%;
  z-index: 10;
  width: calc((155 / 628) * 100%);
  aspect-ratio: 31 / 36;
  background: url("../images/home/home_about_1.png") no-repeat center center/contain;
}
.home_about .home_about_photo > img {
  border-radius: 24px;
  display: block;
}
@media print, screen and (min-width: 992px) {
  .home_about .home_about_photo {
    margin-left: auto;
  }
  .home_about .home_about_photo:after {
    bottom: -10%;
    left: 96%;
  }
}
.home_about .home_about_content h3 {
  font-size: min(calc(var(--measure-width) / 19.02777), 36px);
  line-height: 1.6;
}

/**/
.home_map {
  position: relative;
  z-index: 10;
}
.home_map .container-fluid {
  padding-left: min(calc(5px + 55 * (100vw - 375px) / 1225), 60px);
  padding-right: min(calc(5px + 55 * (100vw - 375px) / 1225), 60px);
}

.home_map_inner {
  --radius: min(calc(20px + 100 * (100vw - 375px) / 1225), 120px);
  padding: min(calc(30px + 60 * (100vw - 375px) / 1225), 90px) min(calc(15px + 80 * (100vw - 375px) / 1225), 95px);
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: #fffef6;
}

.home_map_row {
  display: flex;
  flex-wrap: wrap;
}
.home_map_row > div {
  flex: 0 0 100%;
}
.home_map_row .googlemap {
  width: 100%;
  height: 100% !important;
  padding: 0 !important;
  aspect-ratio: 170 / 113;
  border-radius: 24px;
}
.home_map_row > .item_content h3 {
  font-weight: 500;
  font-size: 1.33334em;
  margin-bottom: 1rem;
}
.home_map_row > .item_content .column {
  padding: 30px;
  border: solid 1px #d1d1d1;
  border-radius: 24px;
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .home_map_row > .item_map {
    flex: 0 0 42.236%;
  }
  .home_map_row > .item_content {
    flex: 1 1 0;
    padding-left: min(calc(30px + 60 * (100vw - 992px) / 608), 90px);
  }
}

/**/
.home_recruit {
  background-color: #b89eca;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_recruit .container-fluid {
  padding-left: min(calc(5px + 115 * (100vw - 375px) / 1225), 120px);
  padding-right: min(calc(5px + 115 * (100vw - 375px) / 1225), 120px);
}

.home_recruit_content {
  border-radius: 24px;
  padding: min(calc(20px + 70 * (100vw - 375px) / 1225), 90px);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.home_recruit_content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(50px, 14.2857%, 120px);
  aspect-ratio: 40 / 83;
  background: url("../images/home/home_recruitl_icon.png") no-repeat center center/contain;
  transform: translate(-55%, -20%);
}
@media print, screen and (min-width: 992px) {
  .home_recruit_content {
    padding: min(calc(30px + 60 * (100vw - 992px) / 808), 90px);
  }
}
.home_recruit_content h3 {
  color: var(--primary);
  font-size: min(calc(var(--measure-width) / 23.33334), 36px);
  line-height: 1.6;
}
.home_recruit_content p {
  color: #514f51;
  font-size: 14px;
}
.home_recruit_content .columns {
  border: solid 1px #9e82b1;
  border-radius: 12px;
  padding: 24px;
}
.home_recruit_content .columns + .columns {
  margin-top: 20px;
}
.home_recruit_content .columns h4 {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 1px 14px 2px;
  margin-bottom: 1em;
  display: inline-flex;
  background-color: #66457c;
}
.home_recruit_content .columns ul {
  color: #9e82b1;
  font-size: 500;
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.875em;
}

.home_recruit_scroll {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  background: url("../images/home/home_recruit_bg.png") no-repeat center center/cover;
}
.home_recruit_scroll .inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  height: 100%;
  transform: rotate(30deg);
}
.home_recruit_scroll .inner > .item {
  flex: 0 0 320px;
}

.vloop {
  --speed: 30s;
  height: 100%;
}
.vloop .vloop__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  gap: 30px;
  animation: vloop-up var(--speed) linear infinite;
}
.vloop .vloop__track .vloop__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vloop .vloop__track .vloop__group .item {
  width: 100%;
  aspect-ratio: 155 / 233;
  border-radius: 24px;
  overflow: hidden;
}
.vloop .vloop__track .vloop__group .item img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vloop .vloop__track.btt {
  animation: vloop-down var(--speed) linear infinite;
}

@keyframes vloop-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes vloop-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vloop__track {
    animation: none;
  }
}
/**/
.page_contact_inner {
  color: #fff;
  max-width: 1160px;
  padding: min(calc(20px + 70 * (100vw - 375px) / 1225), 90px) min(calc(20px + 98 * (100vw - 375px) / 1225), 118px);
  margin: 0 auto;
  border-radius: 40px;
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(1, 1fr);
  background-color: #7c5895;
  position: relative;
  z-index: 0;
}
.page_contact_inner:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(50px, 11.8965%, 138px);
  aspect-ratio: 138 / 155;
  background: url("../images/home/page_contact_i.png") no-repeat center center/contain;
  z-index: 10;
  pointer-events: none;
  transform: translate(50%, -15%);
}
@media print, screen and (min-width: 992px) {
  .page_contact_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_contact_inner .page_contact_tel {
  text-align: center;
  border: solid 1px #fff;
  border-radius: 12px;
  padding: 26px 0;
  margin-bottom: 12px;
}
.page_contact_inner .page_contact_tel .telphone {
  font-size: 32px;
  justify-content: center;
}
.page_contact_inner .page_contact_tel p {
  font-size: 14px;
  line-height: normal;
}
.page_contact_inner .page_contact_mail .btn {
  color: #66457c;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.94445em;
  border-radius: 12px;
  border: solid 1px #fff;
  background-color: #fff;
}
.page_contact_inner .page_contact_mail .btn:hover {
  color: #fff;
  background-color: #66457c;
}

/* -------------------------------
	新着情報
-------------------------------- */
.info_item_figure {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.info_item_figure .photo-ofi {
  aspect-ratio: 1/1;
  background-color: #d6d6d6;
}
.info_item_figure figcaption {
  padding: 1em 0 0;
}
.info_item_figure figcaption .date {
  font-weight: 500;
  margin-bottom: 0.25em;
}
.info_item_figure figcaption .date .new {
  color: #d60000;
  font-weight: 700;
  margin-left: 0.5em;
}
.info_item_figure figcaption .ttl {
  font-weight: 500;
}
a > .info_item_figure {
  transition: box-shadow 0.3s ease;
}
a > .info_item_figure:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

/**/
.info_detail {
  max-width: 1160px;
  margin: 0 auto;
}
.info_detail .info_date {
  font-weight: 500;
  margin-bottom: 0.25em;
}
.info_detail .info_date .new {
  color: #d60000;
  font-weight: 700;
  margin-left: 0.5em;
}

/* --- gallery --- */
.splide-gallery .splide__inner {
  position: relative;
}
.splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 16 / 9;
  background-color: #fafafa;
}
.splide-gallery .splide__inner .caption {
  font-weight: 500;
  font-size: 0.88888em;
  padding: 5px;
}

/* 前へ / 次へボタン */
.splide-gallery .splide__arrow--prev, .splide-gallery .splide__arrow--next {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 785), 18px);
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #1d1c1d;
  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:hover, .splide-gallery .splide__arrow--next:hover {
  outline: none;
}
.splide-gallery .splide__arrow--prev {
  left: 15px;
}
.splide-gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide-gallery .splide__arrow--next {
  right: 15px;
}
.splide-gallery .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.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 {
  --gap: 5px;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.splide-gallery .splide__pagination > li {
  flex: 0 0 calc((100% - (var(--gap) * 4)) / 5);
}
@media print, screen and (min-width: 768px) {
  .splide-gallery .splide__pagination > li {
    flex: 0 0 calc((100% - (var(--gap) * 9)) / 10);
  }
}
.splide-gallery .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide-gallery .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

/**/
.info_file .btn-2 {
  display: block;
}

/* -------------------------------
	提供サービス
-------------------------------- */
/**/
@media print, screen and (min-width: 1600px) {
  .service_navi .cat_navi_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---  --- */
.service_content_item {
  margin-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
}
.service_content_item .service_content_item_inner {
  padding: min(calc(20px + 60 * (100vw - 375px) / 1225), 80px);
  border-radius: min(calc(12px + 12 * (100vw - 375px) / 1225), 24px);
  background-color: #fff;
}
.service_content_item h3 {
  font-size: min(calc(22px + 16 * (100vw - 375px) / 1225), 38px);
  padding-left: 2.5em;
  position: relative;
}
.service_content_item h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2em;
  aspect-ratio: 26 / 33;
  background: url("../images/common/logo_icon.png") no-repeat center center/contain;
}
.service_content_item h3 > .fs-jp {
  color: var(--primary);
  font-size: 1em;
  display: block;
}
.service_content_item h3 > .fs-en {
  font-size: 0.63157em;
  display: block;
  margin-top: 0.5em;
}

.service_content_ttl_1 {
  color: #fff;
  font-weight: 500;
  padding: 0.1em 1.5em 0.2em;
  margin-bottom: 1rem;
  border-radius: 0.5em;
  display: inline-block;
  vertical-align: middle;
  background-color: #28a745;
}

@media screen and (max-width: 991px) {
  .service_table_1 > tbody > tr {
    width: 100%;
    display: block;
  }
  .service_table_1 > tbody > tr > th, .service_table_1 > tbody > tr > td {
    width: 100% !important;
    display: block;
  }
}
@media print, screen and (min-width: 992px) {
  .service_table_1 > tbody > tr > th {
    width: 14em;
  }
}

/* ---  --- */
.service_contact {
  color: #fff;
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px) min(calc(15px + 103 * (100vw - 375px) / 1225), 118px);
  margin: 0 auto;
  border-radius: min(calc(20px + 20 * (100vw - 375px) / 1225), 40px);
  background-color: #7c5895;
  page-break-inside: avoid;
}
.service_contact h4 {
  font-size: min(calc(16px + 16 * (100vw - 375px) / 1225), 32px);
  text-align: center;
}
.service_contact .service_contact_inner {
  --gap-x: 36px;
  --gap-y: 36px;
  display: grid;
  gap: var(--gap-y) var(--gap-x);
  grid-template-columns: repeat(1, 1fr);
}
@media print, screen and (min-width: 992px) {
  .service_contact .service_contact_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service_contact .service_contact_tel {
  text-align: center;
  border: solid 1px #fff;
  border-radius: 12px;
  padding: 26px 0;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.service_contact .service_contact_tel .in {
  display: block;
}
.service_contact .service_contact_tel .telphone {
  font-size: 32px;
  justify-content: center;
}
.service_contact .service_contact_mail .btn {
  color: #66457c;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.94445em;
  border-radius: 12px;
  border: solid 1px #fff;
  background-color: #fff;
}
.service_contact .service_contact_mail .btn:hover {
  color: #fff;
  background-color: #66457c;
}
.service_contact .service_contact_file {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 5px;
}
.service_contact .service_contact_file > li .btn {
  color: #66457c;
  font-weight: 500;
  font-size: 0.88888em;
  text-align: left;
  border-radius: 10em;
  display: block;
  padding: 0.75em 1.5em 0.75em 3.5em;
  border: solid 1px #fff;
  background-color: #fff;
  position: relative;
}
.service_contact .service_contact_file > li .btn i {
  position: absolute;
  left: 1.25em;
  top: 50%;
  font-size: 1.25em;
  line-height: 1;
  margin-top: -.5em;
}
.service_contact .service_contact_file > li .btn:hover {
  color: #fff;
  background-color: #66457c;
}

/**/
.service_flow_1 {
  list-style: none;
  padding-left: 0;
  margin-left: 10px;
  position: relative;
}
.service_flow_1 > li {
  padding-left: 30px;
  padding-bottom: 1.5rem;
  position: relative;
}
.service_flow_1 > li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #cacaca;
}
.service_flow_1 > li:first-child::before {
  top: 1em;
}
.service_flow_1 > li:last-child {
  padding-bottom: 0;
}
.service_flow_1 > li .ttl {
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.service_flow_1 > li .ttl::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: -7px;
  background-color: var(--primary);
}
.service_flow_1 > li .ttl strong {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1;
  display: block;
  margin-right: 0.5em;
  flex: 0 0 5em;
  position: relative;
}
.service_flow_1 > li .ttl strong:after {
  content: "→";
  position: absolute;
  right: 0;
  transform: scale(0.75);
}
.service_flow_1 > li .column {
  padding: 0.5em 1.2em;
  border-radius: 6px;
  background-color: #f1f1f1;
}

/* -------------------------------
	採用について
-------------------------------- */
/* ---  --- */
.recruit_point_figure {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.recruit_point_figure > .photo {
  border-radius: 12px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.recruit_point_figure figcaption {
  padding: 15px;
}
.recruit_point_figure figcaption .num {
  color: #555;
  font-size: clamp(18px, calc(var(--width-col-w) / 22.3), 20px);
}
.recruit_point_figure figcaption .num strong {
  font-size: 2em;
}
.recruit_point_figure figcaption h4 {
  color: var(--primary);
  font-size: clamp(18px, calc(var(--width-col-w) / 15.92857), 28px);
}
.recruit_point_figure figcaption .columns {
  font-size: 0.88888rem;
}

/* ---  --- */
@media print, screen and (min-width: 1600px) {
  .recruit_navi .cat_navi_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**/
.recruit_outline_item {
  padding: min(calc(20px + 60 * (100vw - 375px) / 1225), 80px);
  margin-bottom: min(calc(30px + 30 * (100vw - 375px) / 1225), 60px);
  border-radius: min(calc(12px + 12 * (100vw - 375px) / 1225), 24px);
  background-color: #fff;
  page-break-inside: avoid;
}
.recruit_outline_item:last-child {
  margin-bottom: 0;
}
.recruit_outline_item .title-1 {
  --bg-color: var(--success);
}
@media only screen and (max-width: 767px) {
  .recruit_outline_item .table-design-1 colgroup {
    display: none !important;
  }
  .recruit_outline_item .table-design-1 > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .recruit_outline_item .table-design-1 > tbody > tr > th, .recruit_outline_item .table-design-1 > tbody > tr > td {
    width: 100% !important;
    display: block;
    padding: 0;
  }
  .recruit_outline_item .table-design-1 > tbody > tr > th + td, .recruit_outline_item .table-design-1 > tbody > tr > td + td {
    margin-top: .5em;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit_outline_item .table-design-1 > tbody > tr > th {
    width: 10em;
  }
}

.recruit_outline_item_entry {
  --radius: min(calc(12px + 12 * (100vw - 375px) / 1225), 24px);
  --border-size: min(calc(1px + 4 * (100vw - 375px) / 1225), 5px);
}
.recruit_outline_item_entry h5 {
  color: #fff;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  text-align: center;
  padding: 0.75em 0.25em;
  margin: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: #66457c;
}
.recruit_outline_item_entry .columns {
  border: solid var(--border-size) #66457c;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
}
.recruit_outline_item_entry .columns h6 {
  text-align: center;
  margin-bottom: 0.5em;
}
.recruit_outline_item_entry .columns .telphone {
  font-size: 30px;
  justify-content: center;
}
.recruit_outline_item_entry .columns .subtxt {
  font-size: 13px;
  text-align: center;
  margin-top: .5em;
}
.recruit_outline_item_entry .columns .btns {
  margin-top: 1rem;
}
.recruit_outline_item_entry .columns .btns .btn {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 14em;
  height: 3em;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.recruit_outline_item_entry .columns .btns .btn svg {
  width: 1em;
  margin-right: 10px;
  margin-top: 0.1em;
}
.recruit_outline_item_entry .columns .btns .btn svg .cls-1 {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
@media print, screen and (min-width: 992px) {
  .recruit_outline_item_entry .columns > .row > div:first-child {
    border-right: solid 1px #cacaca;
  }
  .recruit_outline_item_entry .columns .telphone {
    font-size: min(calc(30px + 15 * (100vw - 992px) / 608), 35px);
  }
  .recruit_outline_item_entry .columns .subtxt {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 608), 16px);
  }
  .recruit_outline_item_entry .columns .btns .btn {
    font-size: min(calc(18px + 7 * (100vw - 992px) / 608), 25px);
  }
}

/* -------------------------------
	法人紹介
-------------------------------- */
/* ---  --- */
.about_greeting_inner {
  line-height: 1.75;
  display: flow-root;
}
.about_greeting_inner .image {
  width: 60%;
  max-width: 264px;
  margin: 0 auto 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .about_greeting_inner {
    line-height: 2.2;
  }
  .about_greeting_inner .image {
    float: right;
    width: 25%;
    max-width: 264px;
    margin: 0 0 3rem 3rem;
  }
}

/* ---  --- */
.about_policy_inner {
  border-radius: 24px;
  background-color: #fffef6;
  position: relative;
  z-index: 0;
}
.about_policy_inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--edge) / 1.5);
  right: calc(var(--edge) / 1.5);
  z-index: -1;
  border-radius: 24px;
  background-color: #fffef6;
}
.about_policy_inner h4 {
  color: #66457c;
  font-size: min(calc(30px + 80 * (100vw - 375px) / 1225), 80px);
  text-align: center;
}
.about_policy_inner h4 ruby rt {
  margin-bottom: 0.25em;
}
.about_policy_inner h4 > .txt2 {
  color: #28a745;
  font-size: 0.75em;
  display: block;
}

/* ---  --- */
.about_access {
  background-color: #b89eca;
}

.about_access_column {
  padding: clamp(20px, 3.125vw, 50px);
  border-radius: 24px 24px 0 0;
  background-color: #fff;
}

/* ---  --- */
.about_volunteer_inner {
  padding: min(calc(20px + 60 * (100vw - 375px) / 1225), 80px) min(calc(20px + 96 * (100vw - 375px) / 1225), 116px);
  border-radius: 24px;
  background-color: #fffef6;
  position: relative;
  z-index: 0;
}

/* ---  --- */
.about_document_item {
  border-radius: 12px;
  padding: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
  background-color: #fff;
}
.about_document_item .title-1 {
  --bg-color: var(--success);
  font-size: 1.25em;
  margin-bottom: 10px;
}
.about_document_item .about_document_item_list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  .about_document_item .about_document_item_list {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 1200px) {
  .about_document_item .about_document_item_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about_document_item .about_document_item_list > li .btn {
  font-size: 16px;
  display: flex;
  height: 100%;
  align-items: center;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
}
.tel_contact + .tel_contact {
  margin-top: 10px;
}
.tel_contact .ttl {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  padding: 0.5em;
  margin-bottom: 10px;
  border-radius: 12px;
  background-color: #28a745;
}
.tel_contact .column .telphone {
  color: var(--primary);
  font-size: 32px;
  justify-content: center;
}
.tel_contact .column .subtxt {
  font-size: 13px;
  text-align: center;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact {
    padding: 15px;
    border-radius: 12px;
    display: flex;
  }
  .tel_contact .ttl {
    font-size: min(calc(14px + 10 * (100vw - 768px) / 832), 24px);
    line-height: 1.5;
    flex: 0 0 15em;
    margin: 0;
    min-height: 4em;
    display: grid;
    place-items: center;
  }
  .tel_contact .column {
    flex: 1 1 0;
    display: flex;
    align-items: center;
  }
  .tel_contact .column .telphone {
    font-size: min(calc(22px + 28 * (100vw - 768px) / 832), 50px);
    flex: 1 1 0;
    margin: 0;
  }
  .tel_contact .column .subtxt {
    font-size: min(calc(12px + 6 * (100vw - 768px) / 832), 18px);
    flex: 0 0 22em;
    margin: 0;
  }
}

#contactform {
  /**/
}
#contactform .form-control {
  border-color: #D7CED5;
  background-color: #F5EFF2;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #D7CED5;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #D7CED5;
  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;
}
#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 .txt-hisu {
  color: #fff;
  font-weight: 500;
  font-size: 0.66666em;
  line-height: 1.7;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.75em 0.1em;
  margin-right: 0.5em;
  margin-top: -0.35em;
  border-radius: 3px;
  background-color: var(--danger);
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #C2BAC7;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #C2BAC7;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  color: #66457c;
  font-weight: 700;
  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.1em 0.75em 0.2em;
  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: 14em !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;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.88888rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

  .amn-fade-up {
    transform: translateY(var(--translate-y));
  }
  .amn-fade-up.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--translate-y) * -1));
  }
  .amn-fade-down.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-left {
    transform: translateX(var(--translate-x));
  }
  .amn-fade-left.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--translate-x) * -1));
  }
  .amn-fade-right.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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