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

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

.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;
}

.table-design-3 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-design-3 > tbody > tr {
  border-bottom: 1px solid #d6d5c4;
}
.table-design-3 > tbody > tr > th, .table-design-3 > tbody > tr > td {
  padding: 1.5em 1em;
}
.table-design-3 > tbody > tr > th {
  color: var(--primary);
}
.table-design-3 > tbody > tr > td {
  padding-left: 2em;
}

@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: 0 0 0.75em;
    margin-bottom: 0.75em;
    border-bottom: 1px solid #C3C7BD;
  }
  .table-design-1.table-inline tbody > tr:last-child {
    margin-bottom: 0;
  }
  .table-design-1.table-inline tbody > tr > th {
    border-left: solid 0.2em #177a3d;
    border-bottom: none;
    padding: 0 0 0 0.5em;
  }
  .table-design-1.table-inline tbody > tr > td {
    padding: 0 0 0 0.7em;
    margin-top: .5em;
    border-bottom: none;
  }

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

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

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

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

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

  .alignright {
    float: right;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-1 {
  --bg-cr-top: #83b999;
  --bg-cr-btm: #127739;
  color: #fff;
  text-align: left;
  padding: 0.75em 3em 0.75em 1.5em;
  border-radius: 0.375em;
  border: solid 1px var(--bg-cr-btm);
  box-shadow: 0 0 0 1px #fff inset;
  background-image: linear-gradient(to bottom, var(--bg-cr-top) 0%, var(--bg-cr-btm) 50%, var(--bg-cr-btm) 100%);
  background-position: 50% 0%;
  background-size: 100% 200%;
  transition: background 0.3s ease;
  position: relative;
}
.btn-1 > i {
  position: absolute;
  right: 1em;
  top: 50%;
  line-height: 1;
  margin-top: -.5em;
}
.btn-1:hover {
  color: #fff;
  background-position: 50% 100%;
}
.btn-1:hover > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
.btn-1.orange {
  --bg-cr-top: #f6aa73;
  --bg-cr-btm: #f76904;
}

.btn-2 {
  font-size: 18px;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.btn-2 > .icon {
  color: #fff;
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #177a3d;
  transition: transform 0.3s ease;
}
.btn-2 > .icon > i {
  letter-spacing: normal;
  line-height: 1;
}
.btn-2 > .txt {
  color: #444;
  line-height: 2;
  margin-left: 0.55555em;
  display: block;
  position: relative;
}
.btn-2 > .txt:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left bottom;
  background-color: currentColor;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.btn-2:hover > .icon {
  transform: scale(1.2);
}
.btn-2:hover > .icon > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
.btn-2:hover > .txt:after {
  transform: scaleX(1);
  visibility: visible;
}
.btn-2.white > .icon {
  color: #177a3d;
  background-color: #fff;
}
.btn-2.white > .txt {
  color: #fff;
}

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

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

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

/* -------------------------------
	youtube
-------------------------------- */
.youtube {
  position: relative;
  padding-bottom: 56.3%;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

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

a.tel_link {
  color: inherit;
}

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

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

/* カテゴリー　一覧デザイン SP */
.cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cat_navi_list > li {
    line-height: 1.5;
    margin-bottom: 1px;
  }
  .cat_navi_list > li > a {
    color: #444;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding: 0.75em 3em 0.75em 1em;
    display: block;
    background-color: #efefef;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f061";
    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: #fff;
    background-color: #444;
  }
}

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

/* -------------------------------
	ページング
-------------------------------- */
.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 #444;
  background-color: #444;
  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;
  transition: color 0.3s ease, border 0.3s ease;
}
.paging span.paging-text a:hover {
  color: #000;
  border-color: #000;
}

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

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

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

/* --▼width-- */
.w-2em {
  width: 2em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  border-left: solid 0.2em var(--primary);
  padding-left: 0.5em;
}

.amn-title-hh-1 {
  font-weight: 500;
  font-size: min(calc(25px + 7 * (100vw - 375px) / 1125), 32px);
  line-height: 1.75;
  text-align: center;
}
.amn-title-hh-1 .txt {
  background: linear-gradient(90deg, #14793d 0%, rgba(20, 121, 61, 0) 100%);
  background-repeat: no-repeat;
  background-size: 200% .875em;
  background-position: 200% 0.875em;
  transition: background 3s ease;
  display: inline;
}
.amn-title-hh-1.is-active .txt {
  background-position: 100% 0.875em;
}
@media print {
  .amn-title-hh-1 .txt {
    background-position: 100% 0.875em;
  }
}

/* タイトル用フォントサイズ */
.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: 1500px;
  width: 100%;
  padding-left: calc(15px + 83 * (100vw - 375px) / 1125);
  padding-right: calc(15px + 83 * (100vw - 375px) / 1125);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1500px) {
  .container-fluid-xl {
    padding-left: 98px;
    padding-right: 98px;
  }
}

:root {
  --edge: calc(-15px - 65 * (100vw - 375px) / 1125);
}
@media print, screen and (min-width: 1500px) {
  :root {
    --edge: calc((1304px - 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;
}

/* ---  --- */
.page_contact {
  background-color: #edece0;
}
.page_contact h3 {
  font-weight: 500;
  font-size: min(calc(18px + 14 * (100vw - 375px) / 1125), 32px);
  text-align: center;
  margin-bottom: 1.5em;
}
.page_contact .telphone {
  font-size: min(calc(30px + 15 * (100vw - 375px) / 1125), 45px);
  text-align: center;
}
.page_contact .telphone i {
  color: var(--primary);
}
.page_contact .btn_box {
  text-align: center;
}
.page_contact .btn_box .btn {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
  text-align: center;
  display: block;
  padding: 0.75em 2em;
}
.page_contact .btn_box .btn i {
  position: static;
}
.page_contact .btn_box .btn:hover i {
  animation: none;
}
.page_contact .subtxt > ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .page_contact .subtxt > ul {
    display: flex;
    justify-content: center;
    gap: 0 2em;
  }
}
@media print, screen and (min-width: 992px) {
  .page_contact h3 {
    font-size: min(calc(20px + 8 * (100vw - 992px) / 508), 28px);
  }
  .page_contact .telphone {
    font-size: min(calc(30px + 15 * (100vw - 992px) / 508), 45px);
  }
  .page_contact .btn_box .btn {
    font-size: min(calc(18px + 6 * (100vw - 992px) / 508), 24px);
  }
}

/* -------------------------------
	メインビジュアル
-------------------------------- */
#mainvisual {
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    margin-top: 100px;
  }
}
#mainvisual .splide01 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#mainvisual .splide, #mainvisual .splide-wrapper, #mainvisual .splide__track, #mainvisual .slide, #mainvisual .slide-media {
  width: 100%;
  height: 100%;
}
#mainvisual .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainvisual_content {
  padding: min(calc(35px + 35 * (100vw - 375px) / 1125), 70px) 0;
}
.mainvisual_content h2 {
  color: #fff;
  font-weight: 500;
  font-size: min(calc(14px + 18 * (100vw - 375px) / 1125), 32px);
  text-align: center;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.36);
}
.mainvisual_content h2 img {
  display: block;
  margin: 0 auto 1em;
  width: clamp(30px, 3.0625em, 98px);
}

/* -------------------------------
	home
-------------------------------- */
.home_property_row {
  --col:2;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px var(--gap);
}
@media print, screen and (min-width: 768px) {
  .home_property_row {
    --col:2;
    --gap:30px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_property_row {
    --col:3;
  }
}
@media print, screen and (min-width: 1200px) {
  .home_property_row {
    --col:4;
  }
}
.home_property_row > .home_property_row_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}

.home_property_figure > .photo {
  width: 100%;
  aspect-ratio: 400 / 267;
  overflow: hidden;
}
.home_property_figure > .photo img {
  object-fit: contain;
}
.home_property_figure figcaption {
  text-align: center;
  margin-top: 0.5em;
}
.home_property_figure figcaption p {
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .home_property_figure figcaption p {
    font-size: 0.9375rem;
  }
}
a > .home_property_figure > .photo img {
  transition: transform 0.3s ease;
}
a > .home_property_figure > .photo:hover img {
  transform: scale(1.15);
  transition: transform 0.8s ease;
}

/* ---  --- */
.home_business {
  color: #fff;
  background-color: #177a3d;
}
.home_business h2 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.75em;
}
.home_business p {
  line-height: 2;
}

/* ---  --- */
.home_news .txt_attention {
  color: #cc0000;
  font-weight: 400;
  font-style: italic;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_news .txt_attention::before, .home_news .txt_attention::after {
  content: "";
  width: 2px;
  height: 1.5625em;
  background-color: #cc0000;
}
.home_news .txt_attention::before {
  margin-right: 1em;
  transform: rotate(140deg);
}
.home_news .txt_attention::after {
  margin-left: 1em;
  transform: rotate(-140deg);
}

.home_news_content {
  max-width: 1142px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .home_news_content {
    max-height: 480px;
    overflow: auto;
    padding-right: 30px;
  }
}
.home_news_content .home_news_item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #cccccc;
}
.home_news_content .home_news_item:last-child {
  margin-bottom: 0;
}
.home_news_content .home_news_item {
  display: flex;
  align-items: stretch;
}
.home_news_content .home_news_item .image {
  flex: 0 0 clamp(80px, 26.61994%, 304px);
}
.home_news_content .home_news_item .content {
  flex: 1 1 0;
  padding-left: min(calc(15px + 15 * (100vw - 375px) / 1125), 30px);
}
.home_news_content .home_news_item .content .columns .home_news_item_head {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.home_news_content .home_news_item .content .columns .home_news_item_head .date {
  font-size: 13px;
  font-weight: 500;
  flex: 0 0 100%;
}
.home_news_content .home_news_item .content .columns .home_news_item_head .date .new {
  color: #cc0000;
  margin-left: 0.5em;
}
.home_news_content .home_news_item .content .columns .home_news_item_head .cat {
  color: #fff;
  font-weight: 500;
  font-size: min(calc(11px + 2 * (100vw - 375px) / 1125), 13px);
  padding: 0 1em 0.15em;
  border-radius: 10em;
  background-color: #177a3d;
}
@media print, screen and (min-width: 768px) {
  .home_news_content .home_news_item .content .columns .home_news_item_head {
    align-items: center;
  }
  .home_news_content .home_news_item .content .columns .home_news_item_head .date {
    flex: 0 0 auto;
    margin-right: 20px;
  }
}
.home_news_content .home_news_item .content .columns .title {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1125), 16px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home_news_content .home_news_item .content .view {
  text-align: right;
  margin-top: 10px;
}
.home_news_content .home_news_item .content .view .btn {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.home_news_content .home_news_item .content .view .btn > .txt {
  margin-right: 10px;
}
.home_news_content .home_news_item .content .view .btn > .icon {
  color: #fff;
  width: 2.77777em;
  height: 2.77777em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #444444;
  transition: transform 0.3s ease;
}
.home_news_content .home_news_item .content .view .btn > .icon > i {
  letter-spacing: normal;
  line-height: 1;
}
.home_news_content .home_news_item .content .view .btn:hover > .icon > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .home_news_content .home_news_item .content {
    display: flex;
  }
  .home_news_content .home_news_item .content .columns {
    flex: 1 1 0;
    margin: auto 0;
  }
  .home_news_content .home_news_item .content .view {
    text-align: right;
    margin-top: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
  }
  .home_news_content .home_news_item .content .view .btn {
    font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
    display: block;
    margin: auto;
  }
  .home_news_content .home_news_item .content .view .btn > .txt {
    display: none;
  }
}

/* ---  --- */
.home_satei {
  padding-top: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  padding-bottom: min(calc(17px + 30 * (100vw - 375px) / 573), 47px);
  background-color: #aaa;
  position: relative;
  z-index: 0;
}
.home_satei .parallax {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.home_satei .home_satei_ribon {
  position: absolute;
  left: 50%;
  bottom: max(calc(-17px - 21 * (100vw - 375px) / 573), -38px);
  max-width: 948px;
  width: 100%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.home_satei .home_satei_ribon > img {
  display: block;
}
.home_satei .home_satei_ribon .home_satei_ribon_2 {
  position: absolute;
  right: 0;
  bottom: min(calc(17px + 21 * (100vw - 375px) / 573), 38px);
  z-index: 10;
  width: 21.6245%;
}

.home_satei_content {
  width: 100%;
  max-width: 930px;
  aspect-ratio: 186 / 97;
  margin: 0 auto;
  position: relative;
}
.home_satei_content > .image {
  position: absolute;
  width: 48.38709%;
  height: auto;
}
.home_satei_content > .image .photo {
  --shadow: clamp(5px, calc(var(--ww-image) / 45) ,10px);
  width: 100%;
  aspect-ratio: 225 / 178;
  box-shadow: var(--shadow) var(--shadow) 0 rgba(255, 255, 255, 0.5);
}
.home_satei_content > .image figcaption {
  color: #fff;
  font-weight: 700;
  font-size: clamp(10px, calc(var(--ww-image) / 16.07143), 28px);
  line-height: normal;
  text-shadow: 0.14285em 0.14285em 0.35714em rgba(50, 107, 138, 0.004);
  position: absolute;
  z-index: 10;
}
.home_satei_content > .image-1 {
  left: 0;
  top: 0;
  z-index: 1;
}
.home_satei_content > .image-1 figcaption {
  top: 0.71428em;
  left: 0.71428em;
  text-shadow: 0.14285em 0.14285em 0.35714em #326b8a;
}
.home_satei_content > .image-2 {
  right: 0;
  top: 0;
  z-index: 1;
}
.home_satei_content > .image-2 figcaption {
  top: 0.71428em;
  right: 0.71428em;
  text-shadow: 0.14285em 0.14285em 0.35714em #0e4a98;
}
.home_satei_content > .image-3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.home_satei_content > .image-3 figcaption {
  width: 100%;
  text-align: center;
  bottom: 0.71428em;
  text-shadow: 0.14285em 0.14285em 0.35714em #161815;
}

/* ---  --- */
.home_contact {
  background-color: #edece0;
}

@media print, screen and (min-width: 768px) {
  .home_contact_columns {
    display: inline-block;
  }
}
@media print, screen and (min-width: 992px) {
  .home_contact_columns {
    padding-bottom: 50px;
    padding-left: 30px;
  }
}
.home_contact_columns .tel_box .telphone {
  color: #90755e;
  font-size: 35px;
  text-align: center;
}
.home_contact_columns .tel_box .telphone i {
  color: #177a3d;
  font-size: 0.75em;
}
.home_contact_columns .tel_box .txt {
  color: #90755e;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.home_contact_columns .tel_box .txt strong {
  font-weight: 500;
  font-size: 1.635em;
}
@media print, screen and (min-width: 768px) {
  .home_contact_columns .tel_box {
    display: flex;
    align-items: center;
  }
  .home_contact_columns .tel_box .telphone {
    font-size: 55px;
  }
  .home_contact_columns .tel_box .txt {
    font-size: 16px;
    white-space: nowrap;
    margin-left: 1em;
  }
}
@media print, screen and (min-width: 992px) {
  .home_contact_columns .tel_box .telphone {
    font-size: min(calc(50px + 30 * (100vw - 992px) / 508), 80px);
  }
  .home_contact_columns .tel_box .txt {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 508), 16px);
  }
}

.home_contact_columns_list {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
}
.home_contact_columns_list > li .btn {
  font-size: 18px;
  text-align: center;
  display: block;
  padding: 0.875em 2em;
}
@media print, screen and (min-width: 768px) {
  .home_contact_columns_list {
    gap: 17px;
    grid-template-columns: 1fr 1fr;
  }
}
@media print, screen and (min-width: 992px) {
  .home_contact_columns_list > li .btn {
    font-size: min(calc(16px + 8 * (100vw - 768px) / 732), 24px);
  }
}

.home_ttl_inst img {
  width: 1.5em;
  margin-right: 0.5em;
}

/* -------------------------------
	物件のご紹介
-------------------------------- */
/* ---  --- */
.bukken_list_row {
  --col:1;
  --gap:30px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.bukken_list_row > .bukken_list_row_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .bukken_list_row {
    --col: 2;
  }
}

/**/
.bukken_item {
  display: flex;
  flex-direction: column;
  border: solid 1px #ccc;
  padding: 10px;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .bukken_item {
    padding: min(calc(10px + 10 * (100vw - 768px) / 732), 20px);
  }
}
.bukken_item .bukken_item_head {
  padding-bottom: 10px;
}
.bukken_item .bukken_item_head .ttl {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
.bukken_item .bukken_item_head .tags {
  font-weight: 500px;
  font-size: 12px;
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.bukken_item .bukken_item_head .tags > .in {
  color: #fff;
  text-align: center;
  min-width: 4em;
  padding: 0 0.5em 0.15em;
  background-color: #444;
}
.bukken_item .bukken_item_columns {
  display: flex;
}
.bukken_item .bukken_item_columns .image {
  flex: 0 0 36%;
  margin: 0;
}
.bukken_item .bukken_item_columns .image .photo {
  aspect-ratio: 4 / 3;
}
.bukken_item .bukken_item_columns .image .photo img {
  object-fit: scale-down;
}
.bukken_item .bukken_item_columns .image a {
  transition: opacity 0.3s ease;
}
.bukken_item .bukken_item_columns .image a:hover {
  opacity: 0.65;
}
.bukken_item .bukken_item_columns .columns {
  flex: 0 0 64%;
  padding-left: 10px;
  margin: 0;
}
.bukken_item .bukken_item_columns .columns .price {
  font-weight: 500;
  font-size: 18px;
}
.bukken_item .htmlarea, .bukken_item .btn_box {
  padding-top: 10px;
}
.bukken_item .htmlarea {
  font-size: 14px;
}
.bukken_item .btn_box {
  text-align: right;
  margin-top: auto;
}
.bukken_item .btn_box .btn {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .bukken_item .columns {
    padding-left: min(calc(10px + 10 * (100vw - 768px) / 732), 20px);
  }
  .bukken_item .columns .price {
    font-size: min(calc(18px + 4 * (100vw - 768px) / 732), 22px);
  }
  .bukken_item .htmlarea, .bukken_item .btn_box {
    padding-top: min(calc(10px + 10 * (100vw - 768px) / 732), 20px);
  }
  .bukken_item .htmlarea {
    font-size: min(calc(14px + 2 * (100vw - 768px) / 732), 16px);
  }
}

.bukken_item_dl {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.bukken_item_dl > dt {
  color: #BDB28A;
  font-weight: 500;
  font-size: 15px;
  padding-left: 1.2em;
  position: relative;
}
.bukken_item_dl > dt::before {
  content: "■";
  position: absolute;
  left: 0;
}
.bukken_item_dl > dd {
  font-size: 0.9375em;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .bukken_item_dl {
    font-size: min(calc(14px + 2 * (100vw - 768px) / 732), 16px);
  }
}

/* -------------------------------
	物件のご紹介
-------------------------------- */
/* ---  --- */
@media print, screen and (min-width: 992px) {
  .bukken_detail_wrap {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 50px;
  }
}

/* ---  --- */
.bukken_search .ttl {
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.5em;
  background-color: #444;
  margin-bottom: 0.5em;
}
.bukken_search table {
  line-height: 1.5;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}
.bukken_search table > tbody > tr > th, .bukken_search table > tbody > tr > td {
  padding: 0.5em 1em;
}
.bukken_search table > tbody > tr > th {
  background-color: #edece0;
}
.bukken_search .buttons {
  margin-top: 0 !important;
}

.bukken_search_list_1 {
  font-size: 15px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}

.bukken_search_list_2 {
  font-size: 15px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em 1em;
}

/* */
.bukken_news .ttl {
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.5em;
  background-color: #444;
  margin-bottom: 0.5em;
}
.bukken_news .bukken_news_list {
  font-size: 0.875rem;
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bukken_news .bukken_news_list > li {
  border-bottom: dotted 1px #ccc;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
}
.bukken_news .bukken_news_list > li:last-child {
  margin-bottom: 0;
}
.bukken_news .bukken_news_list > li .columns {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.bukken_banner > ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ---  --- */
.bukken_detail_content .title-1 {
  font-weight: 500;
}
.bukken_detail_content .accordion-box {
  margin-bottom: 15px;
}

.bukken_detail_cat {
  font-size: 0.875rem;
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}
.bukken_detail_cat > .cat {
  color: #fff;
  padding: 0.35em 0.75em 0.5em;
  display: inline-block;
  background-color: #444;
}

.bukken_detail_tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: dotted 1px #ccc;
}
.bukken_detail_tags .tag1 {
  color: #90755e;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
.bukken_detail_tags .tag2 > ul {
  font-weight: 500px;
  font-size: 12px;
  line-height: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bukken_detail_tags .tag2 > ul > li {
  color: #fff;
  text-align: center;
  min-width: 4em;
  padding: 0 0.5em 0.15em;
  background-color: #444;
}

/**/
.bukken_detail_column01 > dl {
  padding: 0;
  margin: 0;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1em;
}
.bukken_detail_column01 > dl > dt, .bukken_detail_column01 > dl > dd {
  margin: 0;
}
.bukken_detail_column01 > dl > dt {
  padding-right: 1em;
  position: relative;
}
.bukken_detail_column01 > dl > dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
.bukken_detail_column01 > dl .price {
  color: #ff0000;
  font-weight: 500;
  font-size: 1.5em;
}

/**/
.bukken_mb {
  margin-bottom: 2rem;
}
.bukken_mb .ttl {
  font-weight: 700;
  font-size: 1.125rem;
  padding-left: 1.2em;
  position: relative;
}
.bukken_mb .ttl::before {
  content: "■";
  position: absolute;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .bukken_table_1 > tbody > tr > th {
    font-weight: 500;
    width: 28%;
  }
}

.bukken-detail_vr {
  position: relative;
  padding-bottom: 56.3%;
  overflow: hidden;
}
.bukken-detail_vr iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.bukken_gallery {
  --col:1;
  --gap:20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.bukken_gallery > .item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.bukken_gallery > .item figcaption {
  margin-top: 5px;
}
.bukken_gallery > .item figcaption p {
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .bukken_gallery {
    --col:2;
  }
}

/* -------------------------------
	アコーディオン
-------------------------------- */
.accordion-box > .ttl {
  color: #fff;
  font-weight: 900;
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1225), 28px);
  line-height: 1.5;
  padding: 0.5em 3em 0.5em 1.5em;
  background: #90755e;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.accordion-box > .ttl h4 {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
  margin: 0;
}
.accordion-box > .ttl .accordion_plus, .accordion-box > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.accordion-box > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.accordion-box > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #fff;
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.accordion-box > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-box.active > .ttl .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.accordion-box > .column {
  display: none;
  padding: 15px 0;
  background-color: #fff;
}
.accordion-box.active > .column {
  display: block;
}

/* --- gallery --- */
.splide-gallery .splide__inner {
  position: relative;
}
.splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 4 / 3;
}

/* 前へ / 次へボタン */
.splide-gallery .splide__arrow--prev, .splide-gallery .splide__arrow--next {
  font-size: min(calc(10px + 6 * (100vw - 375px) / 1125), 16px);
  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: #177a3d;
  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 {
  --col:10;
  --gap:5px;
  list-style: none;
  padding: 5px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: var(--gap);
}
@media print, screen and (min-width: 768px) {
  .splide-gallery .splide__pagination {
    --col:10;
  }
}
.splide-gallery .splide__pagination > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.splide-gallery .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  aspect-ratio: 4 / 3;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.splide-gallery .splide__pagination > li button.is-active img {
  opacity: 0.5;
}

/**/
.btns_box_1 {
  text-align: center;
}
.btns_box_1 .btn {
  font-size: min(calc(16px + 10 * (100vw - 375px) / 1125), 26px);
}

.btns_box_2 {
  text-align: center;
  border-top: dotted 1px #ccc;
}

/* -------------------------------
	企業情報
-------------------------------- */
/* ---  --- */
.company_message h4 {
  color: var(--success);
  font-weight: 500;
  text-align: center;
}

.company_parallax_1 {
  height: min(calc(250px + 250 * (100vw - 375px) / 1125), 500px);
}

@media print, screen and (min-width: 768px) {
  .company_table_1 > tbody > tr > th {
    font-size: min(calc(18px + 4 * (100vw - 768px) / 732), 22px);
    white-space: nowrap;
  }
}

/* ---  --- */
/* ---  --- */
/* -------------------------------
	新着情報
-------------------------------- */
/* ---  --- */
.information_list_content {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto;
}
.information_list_content .information_list_item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #cccccc;
}
.information_list_content .information_list_item:last-child {
  margin-bottom: 0;
}
.information_list_content .information_list_item {
  display: flex;
  align-items: stretch;
}
.information_list_content .information_list_item .image {
  flex: 0 0 clamp(80px, 26.61994%, 304px);
}
.information_list_content .information_list_item .image .photo {
  aspect-ratio: 4 / 3;
}
.information_list_content .information_list_item .image .photo img {
  object-fit: scale-down;
}
.information_list_content .information_list_item .content {
  flex: 1 1 0;
  padding-left: min(calc(15px + 15 * (100vw - 375px) / 1125), 30px);
}
.information_list_content .information_list_item .content .columns .information_list_item_head {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.information_list_content .information_list_item .content .columns .information_list_item_head .date {
  font-size: 13px;
  font-weight: 500;
  flex: 0 0 100%;
}
.information_list_content .information_list_item .content .columns .information_list_item_head .date .new {
  color: #cc0000;
  margin-left: 0.5em;
}
.information_list_content .information_list_item .content .columns .information_list_item_head .cat {
  color: #fff;
  font-weight: 500;
  font-size: min(calc(11px + 2 * (100vw - 375px) / 1125), 13px);
  padding: 0 1em 0.15em;
  border-radius: 10em;
  background-color: #177a3d;
}
@media print, screen and (min-width: 768px) {
  .information_list_content .information_list_item .content .columns .information_list_item_head {
    align-items: center;
  }
  .information_list_content .information_list_item .content .columns .information_list_item_head .date {
    flex: 0 0 auto;
    margin-right: 20px;
  }
}
.information_list_content .information_list_item .content .columns .title {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1125), 16px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.information_list_content .information_list_item .content .view {
  text-align: right;
  margin-top: 10px;
}
.information_list_content .information_list_item .content .view .btn {
  font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.information_list_content .information_list_item .content .view .btn > .txt {
  margin-right: 10px;
}
.information_list_content .information_list_item .content .view .btn > .icon {
  color: #fff;
  width: 2.77777em;
  height: 2.77777em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #444444;
  transition: transform 0.3s ease;
}
.information_list_content .information_list_item .content .view .btn > .icon > i {
  letter-spacing: normal;
  line-height: 1;
}
.information_list_content .information_list_item .content .view .btn:hover > .icon > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .information_list_content .information_list_item .content {
    display: flex;
  }
  .information_list_content .information_list_item .content .columns {
    flex: 1 1 0;
    margin: auto 0;
  }
  .information_list_content .information_list_item .content .view {
    text-align: right;
    margin-top: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
  }
  .information_list_content .information_list_item .content .view .btn {
    font-size: min(calc(12px + 6 * (100vw - 375px) / 1125), 18px);
    display: block;
    margin: auto;
  }
  .information_list_content .information_list_item .content .view .btn > .txt {
    display: none;
  }
}

/* ---  --- */
.information_detail_content {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto;
}
.information_detail_content .title-1 {
  font-weight: 500;
}
.information_detail_content .accordion-box {
  margin-bottom: 15px;
}

.information_detail_date {
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.information_detail_date > .new {
  color: #ff0000;
}

.information_detail_column01 > dl {
  padding: 0;
  margin: 0;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1em;
}
.information_detail_column01 > dl > dt, .information_detail_column01 > dl > dd {
  margin: 0;
}
.information_detail_column01 > dl > dt {
  padding-right: 1em;
  position: relative;
}
.information_detail_column01 > dl > dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
.information_detail_column01 > dl .price {
  color: #ff0000;
  font-weight: 500;
  font-size: 1.5em;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  border: solid min(calc(2px + 3 * (100vw - 375px) / 1125), 5px) #177a3d;
  padding: min(calc(20px + 30 * (100vw - 375px) / 1125), 50px);
  border-radius: min(calc(10px + 15 * (100vw - 375px) / 1125), 25px);
}
.tel_contact .telphone {
  font-size: min(calc(30px + 15 * (100vw - 375px) / 1125), 45px);
  text-align: center;
}
.tel_contact .telphone i {
  color: var(--primary);
}
.tel_contact .subtxt > ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .subtxt > ul {
    display: flex;
    justify-content: center;
    gap: 0 2em;
  }
}
@media print, screen and (min-width: 992px) {
  .tel_contact .telphone {
    font-size: min(calc(30px + 15 * (100vw - 992px) / 508), 45px);
    padding: 0 0.25em;
  }
}

.tel_contact2 {
  padding-top: min(calc(30px + 20 * (100vw - 375px) / 1180), 50px);
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .tel_contact2 {
    padding-bottom: min(calc(30px + 20 * (100vw - 375px) / 1180), 50px);
  }
}
.tel_contact2 .telphone {
  font-size: min(calc(30px + 15 * (100vw - 375px) / 1125), 45px);
  text-align: center;
}
.tel_contact2 .telphone i {
  color: var(--primary);
}
.tel_contact2 .subtxt > ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .tel_contact2 .subtxt > ul {
    display: flex;
    justify-content: center;
    gap: 0 2em;
  }
}
@media print, screen and (min-width: 992px) {
  .tel_contact2 .telphone {
    font-size: min(calc(30px + 15 * (100vw - 992px) / 508), 45px);
    padding: 0 0.25em;
  }
}
.tel_contact2 .bg_img {
  text-align: right;
  margin-top: 10px;
}
.tel_contact2 .bg_img img {
  width: 170px;
}
@media print, screen and (min-width: 992px) {
  .tel_contact2 .bg_img {
    position: absolute;
    right: max(calc(-20px - 20 * (100vw - 992px) / 508), -40px);
    bottom: 0;
    margin: 0;
    width: clamp(150px, 18.66667vw, 280px);
    aspect-ratio: 7 / 5;
  }
  .tel_contact2 .bg_img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: right bottom;
  }
}

#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 .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: 17em;
  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: 10em;
  background-color: var(--danger);
  margin-top: -.75em;
  position: absolute;
  right: 0;
  top: 50%;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 10em !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;
}
.table-contact > tbody > tr > td[colspan="2"] {
  padding-left: 1em;
}
.table-contact > tbody > tr > td[colspan="2"] .ttl {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@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;
  }
  .table-contact > tbody > tr > td[colspan="2"] {
    padding-left: 0;
  }
}

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

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

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

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9375rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

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

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

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

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

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

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

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