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

/* WP が勝手につける width / height 属性だけを無効化 */
table[width],
table td[width],
table th[width] {
  width: auto !important;
}

table[height],
table td[height],
table th[height] {
  height: auto !important;
}

.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 > thead > tr > th, .table-design-2 > thead > tr > td, .table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em 1.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > thead > tr > th, .table-design-2 > thead > tr > td {
  text-align: center;
  background-color: #efefef;
}
.table-design-2 > tbody > tr > th {
  background: #f5f5f5;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .table-design-2 > tbody > tr > th {
    width: var(--th-w);
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
  }
}

@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_inline_tel {
  list-style: none;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .list_inline_tel {
    display: flex;
  }
  .list_inline_tel > li + li:before {
    content: "/";
    padding: 0 1em;
  }
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  --color: var(--primary);
  border-top: solid 1px var(--color);
  height: 0;
}

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

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

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

  .alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
}
/* 画像を枠に収める */
.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: 1500px) {
  .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-map {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-map:hover {
  opacity: 0.65;
}

.btn-1 {
  --icon: "\F138";
  --bg-color: var(--primary);
  --after-color: #4576bc;
  color: #fff;
  padding: 1.05556em 1em 1.05556em 2em;
  border-radius: 50em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #014099;
  background-color: var(--bg-color);
}
.btn-1:after {
  content: var(--icon);
  font-weight: 400;
  font-family: "bootstrap-icons";
  letter-spacing: normal;
  margin-left: 1.6em;
  padding-left: 0.7em;
  border-left: solid 1px var(--after-color);
  display: block;
}
.btn-1:hover {
  color: var(--bg-color);
  background-color: #fff;
}

/* file icon */
.link-icon {
  text-align: left;
  padding-left: 3em;
  padding-right: 1.5em;
  position: relative;
}
.link-icon::before {
  content: "\f15b";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.125em;
  line-height: 1;
  position: absolute;
  left: 1.25em;
  top: 50%;
  margin-top: -.5em;
}
.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";
}

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

.box-style-1 {
  --bg-color: #FFFBCD;
  padding: 1.5em 1.5em;
  background-color: var(--bg-color);
}

/* -------------------------------
	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 {
  line-height: 1.2;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ptb-lg-150 {
    padding-top: min(calc(60px + 90 * (100vw - 320px) / 880), 150px);
    padding-bottom: min(calc(60px + 90 * (100vw - 320px) / 880), 150px);
  }
}
/**/
.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 {
  --color: var(--primary);
  font-weight: 500;
  border-left: solid 0.2em var(--color);
  padding-left: 0.5em;
}

.title-hh-1 {
  --color: var(--primary);
  font-size: 1rem;
  text-align: center;
}
.title-hh-1 > .fs-en {
  color: var(--color);
  font-weight: 500;
  font-size: min(calc(35px + 15 * (100vw - 375px) / 1125), 50px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-1 > .fs-jp {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1125), 20px);
  display: block;
  margin-top: .5em;
}

/* -------------------------------
	box line
-------------------------------- */
.center-line-1 {
  width: 1px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.center-line-1::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  animation: key-center-line-1 1.5s ease-in-out infinite;
  margin: auto;
}

@keyframes key-center-line-1 {
  0% {
    height: 0;
    top: 0;
  }
  50% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
/* -------------------------------
	bootstrap
-------------------------------- */
.container-fluid-xl {
  max-width: 1500px;
  width: 100%;
  padding-left: calc(15px + 83 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 83 * (100vw - 320px) / 1180);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1500px) {
  .container-fluid-xl {
    padding-left: 98px;
    padding-right: 98px;
  }
}

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: calc(var(--app-w) * 0.75);
  padding-top: 50px;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    padding-top: 120px;
  }
}
@media (orientation: landscape) and (max-width: 991px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    height: var(--app-h);
  }
}

.mainvisual_wrap {
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}
.mainvisual_wrap .box .photo {
  width: 100%;
  height: 100%;
}
.mainvisual_wrap .item1 {
  grid-column: 1;
  grid-row: 1 / 3;
}
.mainvisual_wrap .item2 {
  grid-column: 2;
  grid-row: 1;
}
.mainvisual_wrap .item3 {
  grid-column: 2;
  grid-row: 2;
}

/* 2:3（2行目 左右） */
@media (min-width: 768px) {
  /* 1:2 / 1:3（item1 を縦につなげる） */
}
/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_head h2 {
  color: var(--primary);
  font-size: min(calc(25px + 39 * (100vw - 375px) / 1125), 64px);
  line-height: 1.484375;
}
.home_head h3 {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.27777rem;
}

/* ---  --- */
.home_strengths_item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home_strengths_item .home_strengths_item_photo {
  color: #fff;
  line-height: normal;
  position: relative;
  z-index: 0;
}
.home_strengths_item .home_strengths_item_photo > .photo {
  aspect-ratio: 415 / 393;
}
.home_strengths_item .home_strengths_item_photo > .num {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  z-index: 10;
  font-size: 13px;
  text-align: center;
}
.home_strengths_item .home_strengths_item_photo > .num strong {
  font-weight: 500;
  font-size: 3.0769em;
  display: block;
}
.home_strengths_item .home_strengths_item_photo .txt {
  position: absolute;
  top: 40%;
  right: 1em;
  z-index: 10;
  font-size: 13px;
  line-height: normal;
  border-top: solid 1px #fff;
  padding-top: 0.75em;
}
.home_strengths_item .home_strengths_item_photo .txt > span {
  writing-mode: vertical-rl;
}
.home_strengths_item .home_strengths_item_column {
  padding-top: 1.66667rem;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.home_strengths_item .home_strengths_item_column h3 {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.22223rem;
}
.home_strengths_item .home_strengths_item_column h3 > span {
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  display: block;
  padding-left: 2.7em;
  position: relative;
}
.home_strengths_item .home_strengths_item_column h3 > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2em;
  height: 1px;
  background-color: currentColor;
}
.home_strengths_item .home_strengths_item_column .column {
  margin-top: auto;
}

/* ---  --- */
.home_flow {
  background-color: #e8eff8;
}

.home_flow_content {
  --icon-w: 100px;
  position: relative;
  z-index: 0;
}
.home_flow_content:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: calc(var(--icon-w) / 2);
  width: 1px;
  background-color: var(--primary);
  z-index: -1;
}
.home_flow_content .home_flow_content_item {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.home_flow_content .home_flow_content_item:last-child {
  padding-bottom: 0;
}
.home_flow_content .home_flow_content_item .icon {
  flex: 0 0 var(--icon-w);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px var(--primary);
  background-color: #fff;
}
.home_flow_content .home_flow_content_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.6);
}
.home_flow_content .home_flow_content_item .column {
  color: var(--primary);
  line-height: 1.5;
  padding-left: 30px;
  flex: 1 1 0;
}
.home_flow_content .home_flow_content_item .column p {
  font-weight: 700;
  font-size: 1.11112em;
  margin: 0;
}
.home_flow_content .home_flow_content_item .column p small {
  font-size: 0.85em;
}
.home_flow_content .home_flow_content_item .column .step {
  font-weight: 500;
  font-size: 0.88888em;
}
.home_flow_content .home_flow_content_item .column .step strong {
  font-size: 1.25em;
  font-weight: 500;
}
.home_flow_content .home_flow_content_item .column .free {
  color: #af6b25;
  font-weight: 500;
  font-size: 0.72223em;
  line-height: 2;
  text-align: center;
  width: 3.77em;
  border: solid 1px #af6b25;
  border-radius: 3px;
  margin-top: 1em;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .home_flow_content {
    --icon-w: min(calc(100px + 42 * (100vw - 768px) / 732), 142px);
    display: flex;
    justify-content: space-between;
  }
  .home_flow_content:before {
    top: calc(var(--icon-w) / 2);
    bottom: auto;
    left: 0;
    right: 0;
    width: inherit;
    height: 1px;
  }
  .home_flow_content .home_flow_content_item {
    flex-direction: column;
  }
  .home_flow_content .home_flow_content_item .icon {
    width: var(--icon-w);
  }
  .home_flow_content .home_flow_content_item .column {
    font-size: min(calc(14px + 6 * (100vw - 768px) / 732), 20px);
    text-align: center;
    padding: 15px 0 0;
  }
  .home_flow_content .home_flow_content_item .column .free {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---  --- */
@media print, screen and (min-width: 992px) {
  .home_news h2 {
    text-align: left;
  }
}

/* ---  --- */
.news_list .news_list_item {
  padding: 20px 10px;
  border-bottom: solid 1px #dadada;
  position: relative;
}
.news_list .news_list_item .date {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.5;
}
.news_list .news_list_item .date .new {
  color: #bc8f61;
  font-size: 14px;
  display: inline-grid;
  margin-left: 1em;
}
.news_list .news_list_item .column {
  line-height: 1.5;
}
.news_list .news_list_item .btns {
  text-align: right;
  margin-top: 0.5rem;
}
.news_list .news_list_item .btns > a {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.news_list .news_list_item .btns > a .fs-en {
  margin-right: 1em;
}
.news_list .news_list_item .btns > a .icon {
  color: var(--primary);
  width: 2.4375em;
  height: 2.4375em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 1px var(--primary);
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.news_list .news_list_item .btns > a:hover .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 768px) {
  .news_list .news_list_item {
    display: flex;
    padding: 1.25em 1em;
  }
  .news_list .news_list_item .date {
    flex: 0 0 170px;
  }
  .news_list .news_list_item .btns {
    position: absolute;
    inset: 0;
    z-index: 10;
    margin: 0;
    padding-right: 15px;
  }
  .news_list .news_list_item .btns > a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
  }
  .news_list .news_list_item .btns > a .fs-en {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .news_list .news_list_item:has(.btns > a) {
    transition: background 0.3s ease;
  }
  .news_list .news_list_item:has(.btns > a) .column {
    padding-right: 65px;
  }
  .news_list .news_list_item:has(.btns > a):hover {
    background-color: #E7F1FE;
  }
}

/* ---  --- */
.home_support_wrap {
  background-color: #eaf1fe;
}

.home_support {
  --ww: 920px;
  --hh: 602px;
  max-width: 920px;
  aspect-ratio: 460 / 301;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.home_support > .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../images/home/home_item_logo.png") no-repeat center center/contain;
}
.home_support > .item {
  position: absolute;
  z-index: 10;
}
.home_support .item1 {
  left: calc((0px / var(--ww)) * 100%);
  top: calc((110px / var(--hh)) * 100%);
  width: calc((222px / var(--ww)) * 100%);
}
.home_support .item2 {
  left: calc((252px / var(--ww)) * 100%);
  top: calc((0px / var(--hh)) * 100%);
  width: calc((155px / var(--ww)) * 100%);
}
.home_support .item3 {
  right: calc((252px / var(--ww)) * 100%);
  top: calc((0px / var(--hh)) * 100%);
  width: calc((155px / var(--ww)) * 100%);
}
.home_support .item4 {
  right: calc((0px / var(--ww)) * 100%);
  top: calc((110px / var(--hh)) * 100%);
  width: calc((222px / var(--ww)) * 100%);
}
.home_support .item5 {
  right: calc((0px / var(--ww)) * 100%);
  bottom: calc((110px / var(--hh)) * 100%);
  width: calc((222px / var(--ww)) * 100%);
}
.home_support .item6 {
  right: calc((252px / var(--ww)) * 100%);
  bottom: calc((0px / var(--hh)) * 100%);
  width: calc((155px / var(--ww)) * 100%);
}
.home_support .item7 {
  left: calc((252px / var(--ww)) * 100%);
  bottom: calc((0px / var(--hh)) * 100%);
  width: calc((155px / var(--ww)) * 100%);
}
.home_support .item8 {
  left: calc((0px / var(--ww)) * 100%);
  bottom: calc((110px / var(--hh)) * 100%);
  width: calc((222px / var(--ww)) * 100%);
}
@media screen {
  .home_support .amn-fade-up, .home_support .amn-fade-down, .home_support .amn-fade-left, .home_support .amn-fade-right, .home_support .amn-zoom-in {
    --duration: 1.8s;
  }
}

/* -------------------------------
	お知らせ
-------------------------------- */
.news_detail .date {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.news_detail .date .new {
  color: #bc8f61;
  font-size: 14px;
  display: inline-grid;
  margin-left: 1em;
}

/**/
.my-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  padding: 0;
  margin: 0;
}
.my-gallery > br {
  display: none;
}
.my-gallery > dl {
  padding: 0;
  margin: 0;
}
.my-gallery > dl > dt, .my-gallery > dl > dd {
  padding: 0;
  margin: 0;
}
.my-gallery > dl > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.my-gallery > dl > dt img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.my-gallery > dl > dt a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.my-gallery > dl > dd {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .my-gallery.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media print, screen and (min-width: 992px) {
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .my-gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .my-gallery.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .my-gallery.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .my-gallery.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .my-gallery.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .my-gallery.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}

/* -------------------------------
	事業内容
-------------------------------- */
.business_content:nth-of-type(even) {
  background-color: #EFF6FE;
}
.business_content h3 {
  text-align: center;
  margin-bottom: 0;
}
.business_content .business_content_column h4 {
  color: var(--primary);
  font-weight: 500;
}
@media print, screen and (min-width: 992px) {
  .business_content .business_content_column {
    padding-left: min(calc(15px + 30 * (100vw - 992px) / 508), 45px);
  }
}

/* -------------------------------
	よくある質問
-------------------------------- */
.faq_list_item {
  --size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
  padding: min(calc(20px + 30 * (100vw - 375px) / 1125), 50px) min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: #EFF5FE;
}
.faq_list_item .ttl .icon, .faq_list_item .content .icon {
  font-size: calc(var(--size) * 1.25);
  line-height: 1;
  flex: 0 0 calc(var(--size) * 2.5);
  max-width: calc(var(--size) * 2.5);
  height: calc(var(--size) * 2.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.faq_list_item .ttl {
  line-height: 1.75;
  display: flex;
  margin-bottom: 1.5rem;
}
.faq_list_item .ttl .icon {
  color: #fff;
  background-color: var(--primary);
}
.faq_list_item .ttl .txt {
  color: var(--primary);
  font-weight: 500;
  font-size: var(--size);
  padding-left: calc(var(--size) * 0.5);
  padding-top: calc(var(--size) * 0.375);
  margin: 0;
}
.faq_list_item .content {
  display: flex;
}
.faq_list_item .content .icon {
  color: #fff;
  background-color: var(--success);
}
.faq_list_item .content .column {
  padding-left: calc(var(--size) * 0.5);
  padding-top: calc(var(--size) * 0.375);
}

/* -------------------------------
	プライバシーポリシー・勧誘方針
-------------------------------- */
/* ---  --- */
.policy_anchor ul {
  font-size: min(calc(10px + 6 * (100vw - 375px) / 393), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.policy_anchor ul > li {
  flex: 1 1 0;
  border-left: solid 1px #ccc;
  padding: 1px;
}
.policy_anchor ul > li:last-child {
  border-right: solid 1px #ccc;
}
.policy_anchor ul > li .btn {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0.5em;
  border-radius: 3px;
  background-color: #F9F5F2;
  transition: background 0.3s ease;
  position: relative;
}
.policy_anchor ul > li .btn .icon {
  color: #fff;
  font-size: 0.875em;
  line-height: 1;
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-left: 1em;
  background-color: #bc8f61;
}
.policy_anchor ul > li .btn:hover {
  background-color: #fff;
}
.policy_anchor ul > li .btn:hover .icon i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

/* ---  --- */
.policy_content h4 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  margin: 2.5rem 0 0;
  border-bottom: solid 1px #666;
}
.policy_content p, .policy_content ol, .policy_content ul {
  margin: 1rem 0;
}
.policy_content ul {
  line-height: 1.5;
  list-style: none;
  padding-left: 0;
}
.policy_content ul > li {
  padding-left: 1.25em;
  margin-bottom: 0.5em;
  position: relative;
}
.policy_content ul > li:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.5);
}
.policy_content ul > li:last-child {
  margin-bottom: 0;
}
.policy_content > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.policy_content > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
.policy_content > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

.policy_dl_1 {
  line-height: 1.5;
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0.5em 0;
  padding: 1em;
  border-radius: 3px;
  background-color: #f3f3f3;
}
.policy_dl_1 > dt, .policy_dl_1 > dd {
  font-weight: 500;
  margin: 0;
}
.policy_dl_1 > dt {
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
  padding-right: 1em;
  position: relative;
}
.policy_dl_1 > dt:after {
  content: "：";
  position: absolute;
  right: 0;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  color: #fff;
  background-color: #000;
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.tel_contact p {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  text-align: center;
  margin-top: 1em;
}

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

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em;
  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: 8em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

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

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

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

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

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