@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-style-1 {
  list-style: none;
  padding: 0;
}
.list-style-1 > li {
  padding: 0.5em;
  border-bottom: dashed 1px rgba(191, 135, 112, 0.5);
}

.list-kome {
  font-size: 0.88888em;
  line-height: 1.5;
  list-style: none;
  padding: 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;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(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: 1700px) {
  .object-xxl-lt {
    object-position: left top;
  }

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

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

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

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

.photo-radius-20 {
  border-radius: 20px;
  overflow: hidden;
}

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

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

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

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

.btn-1 {
  color: #4a4a4a;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  border: solid 1px #ccccca;
  padding: 1.41667em 2.5em 1.41667em 1.77777em;
  border-radius: 0.55556em;
  min-width: 20.83334em;
  background: #ccccca;
  background: linear-gradient(to right, #ccccca 0%, #ccccca 50%, #ffffff 50%, #ffffff 100%);
  background-position: right center;
  background-size: 200% 104%;
  position: relative;
  transition: color .3s ease, background .3s ease;
}
.btn-1:hover {
  color: #333;
  background-position: left center;
}
.btn-1.btn-block {
  min-width: inherit;
}

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

/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.box-style-1 {
  color: #4a4a4a;
  line-height: 1.5;
  border-radius: 50em;
  padding: 0.91666em 3.66666em 0.91666em 1.55555em;
  display: inline-block;
  background-color: #e4cd7b;
}
.box-style-1:after {
  content: "";
  width: 3.33334em;
  height: 2px;
  display: inline-block;
  margin-left: 0.35em;
  background-color: currentColor;
}

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 1em;
  margin-right: 0.25em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

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

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

.fs-16-20 {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1325), 20px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-130 {
  margin-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

.mb-130 {
  margin-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

.mtb-130 {
  margin-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  margin-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-130 {
  padding-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

.pb-130 {
  padding-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

.ptb-130 {
  padding-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  padding-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .mt-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 375px) / 1325), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(28px + 62 * (100vw - 375px) / 1325), 90px);
  }

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

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

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

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

  .mt-lg-130 {
    margin-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  }

  .mb-lg-130 {
    margin-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .pt-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 375px) / 1325), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(28px + 62 * (100vw - 375px) / 1325), 90px);
  }

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

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

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

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

  .pt-lg-130 {
    padding-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  }

  .pb-lg-130 {
    padding-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  }

  .ptb-lg-130 {
    padding-top: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
    padding-bottom: min(calc(37px + 93 * (100vw - 375px) / 1325), 130px);
  }
}
/**/
.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;
}

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

.title-2 {
  border-bottom: solid 1px #4a4a4a;
  padding-bottom: 0.5em;
}

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

.title-hh-1 > .fs-en {
  font-weight: 500;
  font-size: min(calc(35px + 35 * (100vw - 375px) / 1325), 70px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .fs-jp {
  color: #4a4a4a;
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1325), 20px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-left: 1.75em;
  margin-top: 0.5em;
  position: relative;
}
.title-hh-1 > .fs-jp:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25em;
  height: 1.25em;
  background: url("../images/common/icon001.svg") no-repeat center center/contain;
}
.title-hh-1.center {
  text-align: center;
}
.title-hh-1.white > .fs-en {
  color: #fff;
}
.title-hh-1.white > .fs-jp:before {
  background: url("../images/common/icon001-2.svg") no-repeat center center/contain;
}

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

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

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-10 > [class^="col"], .row-10 > [class*=" col"] {
  padding-left: 5px;
  padding-right: 5px;
}

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

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

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  margin-top: 50px;
  padding: 0 20px;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    margin-top: 150px;
  }
}

.mainvisual_top {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_top {
    aspect-ratio: 16 / 9;
  }
}
@media print, screen and (min-width: 992px) {
  .mainvisual_top {
    aspect-ratio: 48 / 17;
  }
}
.mainvisual_top > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: inherit;
  object-fit: cover;
}
.mainvisual_top .txt {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(13px + 5 * (100vw - 375px) / 1125), 18px);
  text-align: center;
  text-shadow: 0.22223em 0.22223em 0.5556em rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
}
.mainvisual_top .txt:before, .mainvisual_top .txt:after {
  content: "";
  width: 3px;
  height: 4.44445em;
  background-color: #fff;
}
.mainvisual_top .txt:before {
  margin-right: 2.5em;
  transform: rotate(-45deg);
}
.mainvisual_top .txt:after {
  margin-left: 2.5em;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {
  .mainvisual_top .txt:before {
    margin-right: 4em;
  }
  .mainvisual_top .txt:after {
    margin-left: 4em;
  }
}
.mainvisual_top .container-fluid-xl {
  margin-top: auto;
}
.mainvisual_top .container-fluid-xl h2 {
  color: #333;
  font-size: min(calc(18px + 54 * (100vw - 375px) / 1325), 72px);
  line-height: normal;
  text-align: center;
  margin-bottom: -1px;
  height: 2.77777em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1em;
  background: url("../images/clinic/main_txt_bg.svg") no-repeat center bottom/100% 100%;
}
.mainvisual_top .container-fluid-xl h2 strong {
  color: #e4cd7b;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_top .container-fluid-xl h2 {
    padding-top: 0;
  }
}

.mainvisual_content {
  text-align: center;
}
.mainvisual_content h3 {
  color: #4a4a4a;
  font-size: 24px;
  margin-bottom: 1rem;
}
.mainvisual_content p small {
  font-size: 0.88888em;
  display: inline-block;
}
.mainvisual_content ul {
  color: #fff;
  font-size: 13px;
  text-align: center;
  list-style: none;
  padding: 0.5em 1em;
  margin: 0;
  border-radius: 50em;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #b67c65;
}
.mainvisual_content ul > li {
  padding: 0 1em;
}
.mainvisual_content ul > li small {
  font-size: 0.88888em;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_content ul {
    font-size: min(calc(13px + 5 * (100vw - 768px) / 432), 18px);
  }
}

/* -------------------------------
	clinic
-------------------------------- */
/* ---  --- */
.clinic_ttl_1 > .fs-en {
  font-weight: 500;
  font-size: min(calc(40px + 40 * (100vw - 375px) / 1325), 80px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.clinic_ttl_1 > .fs-jp {
  color: #4a4a4a;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1325), 24px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: inline-block;
  padding-left: 1.75em;
  margin-top: 0.5em;
  position: relative;
}
.clinic_ttl_1 > .fs-jp:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25em;
  height: 1.25em;
  background: url("../images/common/icon001.svg") no-repeat center center/contain;
}
.clinic_ttl_1.center {
  text-align: center;
}
.clinic_ttl_1.white > .fs-en {
  color: #fff;
}
.clinic_ttl_1.white > .fs-jp:before {
  background: url("../images/common/icon001-2.svg") no-repeat center center/contain;
}

/* ---  --- */
@media print, screen and (min-width: 768px) {
  .clinic_about_inner {
    padding: 60px 0 40px;
    border-radius: 0 20px 0 0;
    background: url("../images/clinic/home_about_bg.png") no-repeat center top/cover;
  }
  .clinic_about_inner .columns {
    width: 57.547169%;
  }
}

/* ---  --- */
.clinic_service svg {
  width: 100%;
  display: block;
  vertical-align: middle;
  margin-bottom: -1px;
}
.clinic_service svg path {
  fill: #bf8770;
  fill-rule: evenodd;
}

.clinic_service_content {
  background-color: #bf8770;
}

.clinic_service_figure {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: solid 1px #fff;
  background-color: #b67c65;
  overflow: hidden;
}
.clinic_service_figure .photo {
  background-color: #fff;
  overflow: hidden;
}
.clinic_service_figure .photo a {
  transition: opacity 0.3s ease;
}
.clinic_service_figure .photo a:hover {
  opacity: 0.65;
}
.clinic_service_figure figcaption {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  padding: 20px clamp(15px, calc(var(--width-ww) * 0.05883), 30px) 30px;
}
.clinic_service_figure figcaption h3 {
  color: #fff;
  font-size: clamp(18px, calc(var(--width-ww) / 18.88888), 27px);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.clinic_service_figure figcaption h3 > .fs-en {
  color: #4a4a4a;
  font-size: 0.59259em;
  display: block;
}
.clinic_service_figure figcaption h3 > .txt {
  letter-spacing: 0.1em;
  display: block;
}
.clinic_service_figure figcaption p {
  font-size: clamp(14px, calc(var(--width-ww) * 0.03529), 18px);
  line-height: 2.22223;
}
.clinic_service_figure figcaption .btns {
  margin-top: auto;
  text-align: right;
}
.clinic_service_figure figcaption .btns .btn {
  color: #4a4a4a;
  font-size: clamp(13px, calc(var(--width-ww) * 0.03137), 16px);
  letter-spacing: 0.1em;
  width: 15em;
  height: 2.5em;
  display: inline-flex;
  align-items: center;
  padding-left: 2em;
  border-radius: 0.5em;
  background-color: #fff;
  transition: letter-spacing 0.3s ease;
}
.clinic_service_figure figcaption .btns .btn i {
  color: #d68c6f;
}
.clinic_service_figure figcaption .btns .btn:hover {
  letter-spacing: 0.25em;
}

/* ---  --- */
.clinic_instagram .btn-1 {
  width: 100%;
  max-width: 15em !important;
  min-width: inherit !important;
  cursor: pointer;
}

/* ---  --- */
.clinic_page_contact svg {
  width: 100%;
  display: block;
  vertical-align: middle;
  margin-bottom: -1px;
}
.clinic_page_contact svg path {
  fill: #bf8770;
  fill-rule: evenodd;
}
.clinic_page_contact .clinic_page_contact_inner {
  color: #fff;
  text-align: center;
  padding-top: 30px;
  background-color: #bf8770;
}
@media print, screen and (min-width: 768px) {
  .clinic_page_contact .clinic_page_contact_inner {
    padding-top: 0;
  }
}
.clinic_page_contact .clinic_page_contact_inner .telphone {
  font-size: min(calc(25px + 15 * (100vw - 375px) / 1325), 40px);
  justify-content: center;
}
.clinic_page_contact .clinic_page_contact_inner dl {
  color: #fff;
  font-size: 0.88888em;
  line-height: 1.75;
  padding: 0;
  margin: 1em 0 0;
  display: inline-grid;
  grid-template-columns: auto auto;
  justify-content: center;
  padding: 0.75em 2em;
  border-radius: 50em;
  background-color: rgba(255, 255, 255, 0.25);
}
.clinic_page_contact .clinic_page_contact_inner dl > dt {
  padding-right: 1.5em;
  position: relative;
}
.clinic_page_contact .clinic_page_contact_inner dl > dt:after {
  content: "：";
  position: absolute;
  right: 0;
}
.clinic_page_contact .clinic_page_contact_inner dl > dd {
  padding-left: 0.5em;
}
.clinic_page_contact .clinic_page_contact_inner dl > dt, .clinic_page_contact .clinic_page_contact_inner dl > dd {
  font-weight: 500;
  text-align: left;
  margin: 0;
  white-space: nowrap;
}
.clinic_page_contact .clinic_page_contact_inner .btn {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(16px + 12 * (100vw - 375px) / 1325), 28px);
  border: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4em;
  transition: color 0.3s ease, background 0.3s ease;
}
.clinic_page_contact .clinic_page_contact_inner .btn > i {
  font-size: 1.75em;
  margin-right: 0.25em;
}
.clinic_page_contact .clinic_page_contact_inner .btn:hover {
  color: #bf8770;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .clinic_page_contact .clinic_page_contact_inner .btn {
    height: 6em;
  }
}

/* -------------------------------
	サービス内容
-------------------------------- */
.service_navi_list {
  font-size: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  .service_navi_list {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 932), 16px);
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.service_navi_list > li > a {
  color: #4a4a4a;
  line-height: 1.5;
  letter-spacing: normal;
  text-decoration: none;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 10em;
  height: 4.6em;
  background-color: #efefef;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.service_navi_list > li > a:before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1.2em;
  margin-top: -.5em;
}
.service_navi_list > li > a:hover {
  color: #fff;
  background-color: #bf8770;
}

/* --- --- */
.service_ttl_1 {
  color: var(--primary);
  font-weight: 500;
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1325), 28px);
  line-height: 2;
  text-align: center;
}

/* ---  --- */
/* ---  --- */
.service_table_1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid rgba(191, 135, 112, 0.5);
  border-left: 1px solid rgba(191, 135, 112, 0.5);
}
.service_table_1 > tbody > tr {
  background-color: rgba(255, 255, 255, 0.5);
}
.service_table_1 > tbody > tr > th, .service_table_1 > tbody > tr > td {
  font-weight: 500;
  padding: 1em;
  border-right: 1px solid rgba(191, 135, 112, 0.5);
  border-bottom: 1px solid rgba(191, 135, 112, 0.5);
}
.service_table_1 > tbody > tr:nth-child(even) {
  background-color: rgba(191, 135, 112, 0.2);
}
@media screen and (max-width: 767px) {
  .service_table_1 {
    border: none;
  }
  .service_table_1 > tbody > tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    border: 1px solid rgba(191, 135, 112, 0.5);
    padding: 1em;
  }
  .service_table_1 > tbody > tr > th, .service_table_1 > tbody > tr > td {
    border: none;
    padding: 0;
  }
  .service_table_1 > tbody > tr > th:nth-child(1), .service_table_1 > tbody > tr > td:nth-child(1) {
    flex: 0 0 100%;
    padding-left: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: dashed 1px rgba(191, 135, 112, 0.5);
  }
  .service_table_1 > tbody > tr > th:nth-child(2), .service_table_1 > tbody > tr > td:nth-child(2) {
    text-align: center;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .service_table_1 > tbody > tr > th:nth-child(3), .service_table_1 > tbody > tr > td:nth-child(3) {
    text-align: right;
    flex: 0 0 9em;
  }
}
@media print, screen and (min-width: 768px) {
  .service_table_1 > tbody > tr > th:nth-child(1), .service_table_1 > tbody > tr > td:nth-child(1) {
    width: auto;
  }
  .service_table_1 > tbody > tr > th:nth-child(2), .service_table_1 > tbody > tr > td:nth-child(2) {
    text-align: center;
    width: 20%;
  }
  .service_table_1 > tbody > tr > th:nth-child(3), .service_table_1 > tbody > tr > td:nth-child(3) {
    text-align: right;
    width: 20%;
    min-width: 12em;
  }
}

/* -------------------------------
	選ばれる理由
-------------------------------- */
/* ---  --- */
.strong_head h4 {
  font-weight: 500;
}
.strong_head h4 strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5;
  display: block;
  margin-bottom: 0.25em;
}

/* ---  --- */
.strong_reason svg {
  width: 100%;
  display: block;
  vertical-align: middle;
  margin-bottom: -1px;
}
.strong_reason svg path {
  fill: #bf8770;
  fill-rule: evenodd;
}
.strong_reason_inner {
  background-color: #bf8770;
}

.strong_reason_item .photo {
  margin-bottom: 1rem;
}
.strong_reason_item .columns h4 > .fs-en {
  color: var(--warning);
  font-size: 0.75em;
  display: inline-block;
  margin-bottom: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .strong_reason_item .photo {
    margin-bottom: 0;
  }
  .strong_reason_item .columns h4 {
    margin-top: .75em;
  }
  .strong_reason_item:nth-child(odd) .row > div:first-child {
    order: 13;
  }
  .strong_reason_item:nth-child(odd) .photo {
    margin-left: 5%;
  }
  .strong_reason_item:nth-child(even) .photo {
    margin-right: 5%;
  }
}

/* ---  --- */
.strong_symptoms_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.strong_symptoms_row > .box {
  flex: 0 0 calc((100% - (10px * 1)) / 2);
}
.strong_symptoms_row > .box:first-child {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .strong_symptoms_row {
    gap: 10px;
  }
  .strong_symptoms_row > .box {
    flex: 0 0 calc((100% - (10px * 2)) / 3) !important;
  }
}
@media print, screen and (min-width: 992px) {
  .strong_symptoms_row {
    gap: 20px;
  }
  .strong_symptoms_row > .box {
    flex: 0 0 calc((100% - (20px * 2)) / 3) !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .strong_symptoms_row {
    gap: 30px;
  }
  .strong_symptoms_row > .box {
    flex: 0 0 calc((100% - (30px * 2)) / 3) !important;
  }
}
.strong_symptoms_row > .box video {
  width: 100%;
  vertical-align: middle;
}
.strong_symptoms_row > .box figure > img {
  display: block;
  max-width: inherit;
  width: 100%;
}
.strong_symptoms_row > .box figure figcaption {
  color: #4a4a4a;
  text-align: center;
  margin-top: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strong_symptoms_row > .box figure figcaption:before, .strong_symptoms_row > .box figure figcaption:after {
  content: "";
  flex: 0 0 2em;
  height: 1px;
  background: #4a4a4a;
  display: block;
}
.strong_symptoms_row > .box figure figcaption:before {
  margin-right: .5em;
}
.strong_symptoms_row > .box figure figcaption:after {
  margin-left: .5em;
}

/* ---  --- */
.strong_voice svg {
  width: 100%;
  display: block;
  vertical-align: middle;
  margin-bottom: -1px;
}
.strong_voice svg path {
  fill: #FAF5F4;
  fill-rule: evenodd;
}
.strong_voice_inner {
  background-color: #FAF5F4;
}

.strong_voice_row {
  gap: 30px 0;
}

.strong_voice_figure {
  border-radius: 15px;
  padding: 30px 15px;
  box-shadow: 5px 5px 20px rgba(191, 135, 112, 0.25);
  background-color: #fff;
}
.strong_voice_figure > .image {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px #bf8770;
  margin: 0 auto 1rem;
  overflow: hidden;
  background-color: #fff;
}
.strong_voice_figure > .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15%;
}
.strong_voice_figure figcaption .ttl {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.5em;
}
.strong_voice_figure figcaption .column {
  font-size: 0.88888rem;
  line-height: 1.75;
}

/* -------------------------------
	医院案内
-------------------------------- */
/* ---  --- */
.about_head h4 {
  font-size: min(calc(24px + 36 * (100vw - 375px) / 1325), 60px);
  line-height: normal;
  text-align: center;
  margin-bottom: 1.25em;
}
.about_head h4 > span {
  line-height: 1;
  background-image: linear-gradient(90deg, #e4cd7b 0%, #e4cd7b 50%, rgba(228, 205, 123, 0) 50%, rgba(228, 205, 123, 0) 100%);
  background-size: 0.5em 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 0.25em;
}
@media print, screen and (min-width: 992px) {
  .about_head .column {
    line-height: 2.5;
    text-align: center;
  }
}
.about_head .about_head_content {
  padding: min(calc(30px + 30 * (100vw - 375px) / 1325), 60px) 15px;
  border-radius: 20px;
}

/* ---  --- */
.about_information .photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .about_information .photo {
    aspect-ratio: auto;
    height: 100%;
  }
}

.about_hours svg {
  width: 100%;
  display: block;
  vertical-align: middle;
  margin-bottom: -1px;
}
.about_hours svg path {
  fill: #bf8770;
  fill-rule: evenodd;
}
.about_hours_inner {
  background-color: #bf8770;
  overflow: hidden;
}

.about_hours_table {
  font-size: min(calc(8px + 10 * (100vw - 375px) / 1325), 18px);
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.about_hours_table > thead > tr > th, .about_hours_table > thead > tr > td, .about_hours_table > tbody > tr > th, .about_hours_table > tbody > tr > td {
  text-align: center;
  padding: 1em 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.about_hours_table > thead > tr > th {
  color: #fff;
  text-align: center;
  background-color: #bf8770;
}
.about_hours_table > tbody > tr > th {
  background-color: #DCBEB2;
}
.about_hours_table > tbody > tr > td {
  color: #4a4a4a;
  background-color: #DCBEB2;
}
.about_hours_table > tbody > tr > td > .nami {
  display: block;
  margin: 0 auto;
  transform: rotate(90deg);
}

/* ---  --- */
.about_map .googlemap {
  border-radius: 20px;
}

/* -------------------------------
	スタッフ紹介
-------------------------------- */
.staff_item {
  --padding: min(calc(20px + 60 * (100vw - 375px) / 1325), 80px);
  padding: var(--padding);
  border-radius: calc(var(--padding) / 2);
  background-color: rgba(191, 135, 112, 0.1);
}

.staff_item .staff_item_head .images {
  max-width: 510px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  overflow: hidden;
}
.staff_item .staff_item_head .content .subtxt {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0.25em 1.5em;
  border-radius: 10em;
  background-color: var(--warning);
}
.staff_item .staff_item_head .content h4 {
  font-size: 28px;
  line-height: 1.75;
  text-align: center;
}
.staff_item .staff_item_head .content h4 small {
  font-weight: 500;
  font-size: 0.65em;
  display: block;
}
.staff_item .staff_item_head .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.staff_item .staff_item_head .content ul > li {
  padding: 0.5em;
  border-bottom: dashed 1px rgba(191, 135, 112, 0.8);
}
@media print, screen and (min-width: 768px) {
  .staff_item .staff_item_head {
    display: flex;
    align-items: center;
  }
  .staff_item .staff_item_head .images {
    flex: 0 0 clamp(240px, 30%, 510px);
    max-width: inherit;
    margin: 0;
  }
  .staff_item .staff_item_head .content {
    flex: 1 1 0;
  }
  .staff_item .staff_item_head .content h4 {
    font-size: min(calc(24px + 22 * (100vw - 768px) / 932), 46px);
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .staff_item:nth-child(odd) .staff_item_head .images {
    order: 2;
  }
  .staff_item:nth-child(odd) .staff_item_head .content {
    order: 1;
    padding-right: 10%;
  }
  .staff_item:nth-child(even) .staff_item_head .images {
    order: 1;
  }
  .staff_item:nth-child(even) .staff_item_head .content {
    order: 2;
    padding-left: 10%;
  }
}

.staff_item_column > .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;
  border-radius: 10px;
  background: #bf8770;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.staff_item_column > .ttl .accordion_plus, .staff_item_column > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.staff_item_column > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.staff_item_column > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #fff;
}
.staff_item_column > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.staff_item_column > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.staff_item_column.active > .ttl {
  border-radius: 10px 10px 0 0;
}
.staff_item_column.active > .ttl .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.staff_item_column.active > .ttl .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.staff_item_column > .column {
  padding: 1rem;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}

.staff_item_column + .staff_item_column {
  margin-top: 10px;
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@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: var(--primary);
    --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 */
