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

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

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

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-kome {
  list-style: none;
  padding-left: 0;
}
.list-kome > li {
  padding-left: 1.2em;
  position: relative;
}
.list-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_caption_1 {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  height: auto;
  position: relative;
}
.figure_caption_1 .image img {
  max-width: inherit;
  width: 100%;
}
.figure_caption_1 figcaption {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 4.5em;
  min-width: 15em;
  padding: 0 1.5em;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(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: 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-writing-1 {
  font-size: 19px;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  transition: opacity 0.3s ease;
}
.btn-writing-1::before {
  content: "";
  flex: 0 0 2.36842em;
  height: 1px;
  display: block;
  background-color: currentColor;
}
.btn-writing-1::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.5263em;
  display: block;
}
.btn-writing-1 .txt {
  display: block;
}
.btn-writing-1:hover {
  opacity: 0.5;
}
.btn-writing-1:hover::after {
  animation: arrow-x-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .btn-writing-1 {
    flex-direction: column;
  }
  .btn-writing-1::before {
    width: 1px;
    height: inherit;
  }
  .btn-writing-1 .txt {
    writing-mode: vertical-rl;
  }
  .btn-writing-1::after {
    content: "\f107";
  }
  .btn-writing-1:hover::after {
    animation: arrow-y-out-in 0.4s ease-in-out forwards;
  }
}

.btn-1 {
  font-size: 0.89473em;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  transition: opacity 0.3s ease;
}
.btn-1::before {
  content: "";
  flex: 0 0 2.36842em;
  height: 1px;
  display: block;
  background-color: currentColor;
}
.btn-1::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.5263em;
  display: block;
}
.btn-1 .txt {
  display: block;
}
.btn-1:hover {
  opacity: 0.5;
}
.btn-1:hover::after {
  animation: arrow-x-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-x-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;
  }
}
/* --- keyframes --- */
@keyframes arrow-y-out-in {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 600;
  white-space: nowrap;
}
.telphone small {
  font-size: 0.7619em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
 * parallax.css (GSAP + ScrollTrigger版)
 * 中央基準 & 複数セクション対応（下スクロールで画像は上へ）
 * 可変値:
 *   --parallax-img-height: 画像ラッパの高さ（%）。200% なら上下に各50%の余白。
 *   --parallax-scroll: 余白の何割を使うか 0..1（1=片側余白を使い切り）。
 * 構造: .parallax > .img > img
-------------------------------- */
.parallax {
  position: relative;
  overflow: hidden;
  /* 任意で調整 */
  --parallax-img-height: 150%;
  /* 片側+50%の余白 */
  --parallax-scroll: 0.9;
  /* 0..1: 使用割合。1で±maxを使い切る */
}

.parallax .img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: var(--parallax-img-height);
  transform: translate(-50%, -50%);
  /* 初期は中央合わせ。YはGSAPが制御 */
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.parallax .img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* -------------------------------
	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-- */
/* space */
.mt-50 {
  margin-top: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ptb-lg-120 {
    padding-top: min(calc(60px + 60 * (100vw - 375px) / 1125), 120px);
    padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1125), 120px);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  padding-bottom: 0.5em;
  border-bottom: solid 1px #cfcfcf;
}

.title-2 {
  font-weight: 600;
}
.title-2::after {
  content: "";
  width: 1.6em;
  height: 1px;
  display: block;
  margin-top: 0.75em;
  background-color: currentColor;
}

.title-hh-1 {
  font-size: 1rem;
  line-height: normal;
  display: grid;
}
.title-hh-1 > .fs-en {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.title-hh-1 > .fs-en::before {
  content: "";
  width: 1.6em;
  height: 1px;
  display: block;
  margin-bottom: 0.75em;
  background-color: currentColor;
}
.title-hh-1 > .fs-jp {
  font-weight: 500;
  font-size: min(calc(23px + 17 * (100vw - 375px) / 1125), 40px);
  line-height: 1.6635;
  display: block;
}
.title-hh-1.center {
  grid-template-columns: auto;
  justify-content: center;
}

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

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

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

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

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

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  margin-top: 50px;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    margin-top: 77px;
  }
}
#mainvisual .slide-media {
  height: calc(var(--app-h) * 0.6);
}
#mainvisual .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 992px) {
  #mainvisual .slide-media {
    height: calc(var(--app-h) - 77px);
  }
}

.mainvisual_content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
}
.mainvisual_content .mainvisual_content_inner {
  font-size: 16px;
  width: 13.575em;
  height: 13.575em;
  margin: auto;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
}
.mainvisual_content .mainvisual_content_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/home/main_waku.svg") no-repeat center center/100% 100%;
  animation: 20s linear infinite rotation1;
}
.mainvisual_content .mainvisual_content_inner h2 {
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.2em;
  margin: 0;
}
.mainvisual_content .mainvisual_content_inner h2 > span {
  display: block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.57);
}
.mainvisual_content .mainvisual_content_inner h2 > .txt2 {
  padding-top: 4em;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_content .mainvisual_content_inner {
    font-size: min(calc(16px + 24 * (100vw - 768px) / 1152), 40px);
  }
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main_scroll_anime {
  position: absolute;
  bottom: 106px;
  right: min(3.91vw, calc(30px + 16px + 10px));
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 4;
  font-weight: 500;
  display: none;
}
@media print, screen and (min-width: 992px) {
  .main_scroll_anime {
    display: block;
  }
}

.main_scroll_anime::before {
  content: "";
  position: absolute;
  bottom: -106px;
  left: calc(16px + 10px);
  width: 1px;
  height: 160px;
  /*background: rgba(29, 32, 135, 0.5);*/
  background: none;
}

.main_scroll_anime::after {
  content: "";
  position: absolute;
  bottom: -106px;
  left: calc(16px + 10px);
  width: 1px;
  height: 160px;
  background: #fff;
  animation: lineAnime 3s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes lineAnime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_subttl_1 {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.home_subttl_1::before {
  content: "";
  width: 1.6em;
  height: 1px;
  display: block;
  margin-bottom: 0.75em;
  background-color: currentColor;
}

.home_ttl_1 {
  font-weight: 500;
  font-size: min(calc(23px + 17 * (100vw - 375px) / 1125), 40px);
  line-height: 1.6635;
}

/* ---  --- */
.home_about_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home_about_content .ttl h2 {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  margin: 0;
}
.home_about_content .column {
  text-align: center;
}
.home_about_content .link {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .home_about_content {
    flex-direction: row-reverse;
  }
  .home_about_content .ttl h2 {
    font-size: min(calc(20px + 20 * (100vw - 992px) / 508), 40px);
    writing-mode: vertical-rl;
  }
  .home_about_content .column {
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
  }
  .home_about_content .column p {
    font-size: min(calc(15px + 8 * (100vw - 992px) / 508), 23px);
    writing-mode: vertical-rl;
  }
  .home_about_content .link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

@media print, screen and (min-width: 992px) {
  .home_about_photo {
    margin-right: min(6.5vw, 130px);
    margin-left: calc(var(--edge) + min(4.8vw, 98px));
  }
}

/* ---  --- */
.home_grave {
  padding-bottom: min(10vw, 200px);
  background: url("../images/common/bg001.jpg");
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .home_grave {
    overflow: hidden;
  }
}

.home_grave_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.home_grave_gallery > .home_grave_gallery_box {
  flex: 0 0 40%;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .home_grave_gallery {
    display: block;
  }
  .home_grave_gallery > .home_grave_gallery_box {
    position: absolute;
  }
  .home_grave_gallery > .home_grave_gallery_box:nth-child(1) {
    left: 0;
    top: 333px;
    width: min(20.05vw, 401px);
  }
  .home_grave_gallery > .home_grave_gallery_box:nth-child(2) {
    right: 0;
    top: 75px;
    width: min(26.25vw, 525px);
  }
  .home_grave_gallery > .home_grave_gallery_box:nth-child(3) {
    left: 50%;
    bottom: 0;
    width: min(20.05vw, 401px);
    transform: translateX(-50%);
  }
}

/* ---  --- */
.home_precinct {
  padding: clamp(50px, 9vw, 180px) 0;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.home_precinct .row > div {
  position: static !important;
}

.home_precinct_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: flex-start;
}
.home_precinct_gallery .home_precinct_photo {
  aspect-ratio: 1/1;
}
.home_precinct_gallery .home_precinct_photo.img1 {
  margin-top: 30px;
}
@media print, screen and (min-width: 992px) {
  .home_precinct_gallery {
    grid-template-columns: 1fr;
  }
  .home_precinct_gallery .home_precinct_photo {
    aspect-ratio: auto;
  }
  .home_precinct_gallery .home_precinct_photo.img1 {
    margin-top: 0;
    margin-right: min(calc(15px + 55 * (100vw - 992px) / 508), 70px);
  }
  .home_precinct_gallery .home_precinct_photo.img2 {
    position: absolute;
    right: 0;
    top: min(6.5vw, 130px);
    width: min(28.25vw, 565px);
  }
}

@media print, screen and (min-width: 992px) {
  .home_precinct_content {
    padding-left: min(calc(15px + 45 * (100vw - 992px) / 508), 60px);
    padding-bottom: min(calc(30px + 70 * (100vw - 992px) / 508), 100px);
  }
}

/* ---  --- */
.home_event {
  padding-bottom: 50px;
  background: url("../images/common/bg001.jpg");
}
@media print, screen and (min-width: 992px) {
  .home_event {
    padding-bottom: 0;
  }
}

.home_event_gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.home_event_gallery_figure {
  position: relative;
}
.home_event_gallery_figure figcaption {
  color: #fff;
  font-size: clamp(16px, calc(30px * (var(--ww-item) / 749)), 30px);
  line-height: normal;
  position: absolute;
  left: 1.66667em;
  bottom: 1em;
  z-index: 10;
}
.home_event_gallery_figure figcaption .num {
  font-size: 0.5em;
  margin-bottom: 0.5em;
}

.home_event_content .inner {
  padding: 50px 0;
}
@media print, screen and (min-width: 992px) {
  .home_event_content {
    height: 100%;
  }
  .home_event_content .inner {
    position: sticky;
    top: 77px;
    padding: clamp(50px, 9vw, 180px) 0;
  }
}

/* ---  --- */
.home_access {
  padding: clamp(50px, 8vw, 160px) 0;
  background-color: #fff;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_access .googlemap {
    margin-right: var(--edge);
    padding-top: 0;
    height: 492px;
  }
}
.home_access .map_btn {
  line-height: normal;
  margin-top: 20px;
}
.home_access .map_btn .btn {
  vertical-align: middle;
}

.home_img_1 {
  width: 100%;
  height: clamp(120px, 25.35vw, 507px);
  position: relative;
}
.home_img_1 .parallax {
  position: absolute;
  inset: 0;
}

/* -------------------------------
	長徳寺について
-------------------------------- */
/* ---  --- */
.about_history_gallery {
  display: grid;
  gap: 10px;
}
.about_history_gallery .figure_caption_1 {
  font-size: min(calc(16px * (var(--ww-item) / 466)), 16px);
}
@media print, screen and (min-width: 768px) {
  .about_history_gallery {
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
  }
}
@media print, screen and (min-width: 992px) {
  .about_history_gallery {
    grid-template-columns: 1fr;
  }
}

@media print, screen and (min-width: 992px) {
  .about_history_gallery {
    margin-right: min(calc(0px + 60 * (100vw - 992px) / 508), 60px);
  }

  .about_history_content {
    padding-left: min(calc(20px + 60 * (100vw - 992px) / 508), 80px);
  }
}
/* ---  --- */
.about_slider {
  background: url("../images/common/bg001.jpg");
}

/* ---  --- */
.about_overview {
  position: relative;
  z-index: 0;
}

.about_overview_bg {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .about_overview_bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .about_overview_bg .about_overview_figure {
    position: absolute;
    height: auto;
  }
  .about_overview_bg .img01 {
    right: 0;
    top: 120px;
    width: clamp(100px, 34.55vw, 681px);
  }
  .about_overview_bg .img02 {
    right: 5vw;
    bottom: 5vw;
    width: clamp(100px, 24.6vw, 492px);
  }
}

/* -------------------------------
	納骨堂のご案内
-------------------------------- */
/* ---  --- */
.grave_head_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grave_head_content .ttl h3 {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  margin: 0;
}
.grave_head_content .column {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .grave_head_content {
    flex-direction: row-reverse;
    position: sticky;
    top: 120px;
  }
  .grave_head_content .ttl h3 {
    font-size: min(calc(20px + 20 * (100vw - 992px) / 508), 40px);
    writing-mode: vertical-rl;
  }
  .grave_head_content .column {
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
  }
  .grave_head_content .column p {
    font-size: min(calc(15px + 8 * (100vw - 992px) / 508), 23px);
    writing-mode: vertical-rl;
  }
}

.grave_head_image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grave_head_image > .grave_head_image_item {
  width: 80%;
}
.grave_head_image > .grave_head_image_item:last-child {
  margin-left: auto;
}
@media print, screen and (min-width: 992px) {
  .grave_head_image {
    gap: 30px;
    margin-left: calc(var(--edge) + min(4.8vw, 98px));
  }
  .grave_head_image > .grave_head_image_item {
    width: min(90%, 637px);
  }
}

/**/
.grave_picup {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1125), 24px);
}
.grave_picup .grave_picup_item {
  display: grid;
  grid-template-columns: 5em 1fr;
  align-items: center;
  margin-bottom: 1.75em;
  padding: 1.25em 1em 1.25em 2em;
  border-radius: 10px;
  background-color: #f3f3f3;
}
.grave_picup .grave_picup_item:last-child {
  margin-bottom: 0;
}
.grave_picup .grave_picup_item .num {
  font-size: 3em;
}
.grave_picup .grave_picup_item .columns {
  line-height: 1.75;
}

/**/
.grave_point_item {
  border-left: solid 1px #000;
  padding: 15px 0 15px 15px;
  height: 100%;
}
.grave_point_item .point {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.grave_point_item .point::before {
  content: "";
  width: 1.6em;
  height: 1px;
  display: block;
  margin-bottom: 0.75em;
  background-color: currentColor;
}
.grave_point_item h5 {
  font-weight: 500;
  font-size: 18px;
}
.grave_point_item .column {
  font-size: 0.89473em;
}
@media print, screen and (min-width: 768px) {
  .grave_point_item {
    padding-left: min(calc(15px + 15 * (100vw - 768px) / 732), 30px);
  }
  .grave_point_item h5 {
    font-size: min(calc(16px + 8 * (100vw - 768px) / 732), 24px);
  }
}

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

/* ---  --- */
.grave_contact {
  background: url("../images/common/bg001.jpg");
}
.grave_contact .column {
  font-size: min(calc(15px + 7 * (100vw - 375px) / 1125), 22px);
  text-align: center;
}

.grave_contact_item {
  text-align: center;
}
.grave_contact_item .telphone {
  font-size: min(calc(30px + 8 * (100vw - 375px) / 1125), 38px);
  text-align: center;
}
.grave_contact_item .txt {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  text-align: center;
}
.grave_contact_item .ttl {
  font-size: min(calc(20px + 10 * (100vw - 375px) / 1125), 30px);
}
.grave_contact_item .btn_box .btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

/* -------------------------------
	年中行事
-------------------------------- */
.event_content_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1125), 120px);
}
.event_content_item .event_content_item_ttl {
  font-size: min(calc(20px + 18 * (100vw - 375px) / 1125), 38px);
  display: flex;
  justify-content: flex-start;
  width: 4.5em;
}
.event_content_item .event_content_item_ttl h4 {
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  margin: 0;
  padding-top: 2em;
  position: relative;
}
.event_content_item .event_content_item_ttl h4::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 1.25em;
  background-color: currentColor;
}
.event_content_item .event_content_item_ttl .column > ul {
  color: #888;
  font-size: clamp(12px, 0.5263em, 20px);
  line-height: 1.5;
  list-style: none;
  letter-spacing: 0.1em;
  padding: 0;
  margin: 0 0 0 auto;
  display: flex;
}
.event_content_item .event_content_item_ttl .column > ul > li {
  writing-mode: vertical-rl;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .event_content_item .event_content_item_column {
    padding-left: min(calc(0px + 60 * (100vw - 992px) / 508), 60px);
  }
}

.event_content_img {
  margin-bottom: 1rem;
}

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

@media print, screen and (min-width: 992px) {
  .event_tea_class_column {
    padding-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
}

/* -------------------------------
	境内案内
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 992px) {
  .precinct_content.odd .row > div:first-child {
    order: 13;
  }
  .precinct_content.odd .precinct_content_image {
    margin-left: min(3vw, 60px);
    margin-right: calc(var(--edge) + min(4.8vw, 98px));
  }
  .precinct_content.even .precinct_content_image {
    margin-left: calc(var(--edge) + min(4.8vw, 98px));
    margin-right: min(3vw, 60px);
  }
}

.precinct_content_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.precinct_content_ttl .num {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1125), 20px);
  line-height: normal;
  margin-bottom: 0.5em;
}
.precinct_content_ttl h3 {
  font-weight: 500;
  font-size: min(calc(23px + 37 * (100vw - 375px) / 1125), 60px);
  letter-spacing: 0.25em;
  line-height: normal;
  writing-mode: vertical-rl;
}

.precinct_content_column .subttl {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.precinct_content_column .subttl::before {
  content: "";
  width: 1.6em;
  height: 1px;
  display: block;
  margin-bottom: 0.75em;
  background-color: currentColor;
}
@media print, screen and (min-width: 992px) {
  .precinct_content_column {
    padding-top: min(calc(50px + 50 * (100vw - 992px) / 508), 100px);
  }
}

.precinct_content_item h4 {
  font-weight: 500;
  font-size: min(calc(20px + 10 * (100vw - 375px) / 1125), 30px);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .precinct_content_item h4 {
    font-size: min(calc(20px + 10 * (100vw - 768px) / 732), 30px);
  }
}

.precinct_gallery_1 {
  --col:2;
  --gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.precinct_gallery_1 > .precinct_gallery_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.precinct_gallery_1 > .precinct_gallery_item img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 768px) {
  .precinct_gallery_1 {
    --col:4;
  }
}

/* -------------------------------
	交通アクセス
-------------------------------- */
.access_content {
  max-width: 1200px;
  margin: 0 auto;
}
.access_content .telphone {
  font-size: min(calc(16px + 16 * (100vw - 375px) / 1125), 32px);
  padding-right: 1em;
}
.access_content .btn_box {
  text-align: right;
  margin-top: 1rem;
}

.access_root {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: dotted 1px #ccc;
}
.access_root:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.access_root .access_root_column {
  margin-top: 1.5rem;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background: url("../images/common/bg001.jpg");
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.tel_contact .txt {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  text-align: center;
}

#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);
  }

  .amn-bokasi {
    opacity: 0;
    filter: blur(15px);
    transition: opacity 1s ease, filter 1s ease;
  }
  .amn-bokasi.is-active {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    filter: blur(15px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@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: 1s 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 */
