@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: #EAEBF1;
}
.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
-------------------------------- */
/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

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

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

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

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

  .alignright {
    float: right;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-1 {
  color: #fff;
  text-align: left;
  min-width: 260px;
  padding: 1.125em 2.5em 1.125em 1.375em;
  border: none;
  border-radius: 0;
  background: linear-gradient(to right, #0350bf 0%, #0350bf 50%, #ff6b2b 100%);
  background-position: right center;
  background-size: 200% 100%;
  position: relative;
  transition: color .5s ease, background 0.5s ease;
}
.btn-1:hover {
  color: #fff;
  background-position: left center;
  transition: color .5s ease, background 1s ease;
}
.btn-1:hover i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 768px) {
  .btn-1 {
    min-width: 320px;
  }
}

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

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

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  white-space: nowrap;
  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;
}

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

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

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

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

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
/* --▼text-- */
.text-underline {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

.title-2 {
  padding-left: 1.2em;
  position: relative;
}
.title-2::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.8125);
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  color: #0350bf;
  font-size: min(calc(32px + 38 * (100vw - 375px) / 1025), 70px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-left: 0.1875em;
  position: relative;
}
.title-hh-1 > .fs-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1875em;
  height: 0.1875em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
.title-hh-1 > .fs-jp {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1025), 20px);
  line-height: normal;
  display: block;
  margin-top: 0.5em;
}
.title-hh-1.center {
  text-align: center;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}

.title-hh-2 {
  font-size: 1rem;
}
.title-hh-2 > .fs-txt {
  color: #0350bf;
  font-size: min(calc(24px + 12 * (100vw - 375px) / 1025), 36px);
  line-height: normal;
  display: block;
  padding-left: 0.22223em;
  position: relative;
}
.title-hh-2 > .fs-txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.22223em;
  height: 0.22223em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}

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

:root {
  --edge: calc(-15px - 40 * (100vw - 375px) / 1025);
}
@media print, screen and (min-width: 1400px) {
  :root {
    --edge: calc((1290px - 100vw) / 2);
  }
}

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

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

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

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* -------------------------------
	splide メイン用フェード
-------------------------------- */
.splide01 {
  position: relative;
  overflow: hidden;
}
.splide01 .slide {
  display: grid;
  place-content: center;
  height: calc(var(--app-h) * 0.6);
  text-align: center;
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide {
    height: var(--app-h);
  }
}
@media print {
  .splide01 .slide {
    height: 900px;
  }
}
.splide01 .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide01 .bg_icon {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  pointer-events: none;
  height: 100%;
  aspect-ratio: 963 / 970;
  background: url("../images/home/main_logo_icon.png") no-repeat center center/contain;
  opacity: 0.5;
}

.mainvisual_content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
}
.mainvisual_content .inner {
  margin: auto 0;
  padding-left: clamp(15px, 2.5vw, 30px);
}
.mainvisual_content .inner h2 {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(28px + 44 * (100vw - 375px) / 1545), 72px);
  line-height: 1.458334;
  margin: 0;
}
.mainvisual_content .inner h2 > span {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.34723em;
  background-image: linear-gradient(90deg, #0350bf 0%, #ff6b2b 100%);
}
.mainvisual_content .inner p {
  color: #fff;
  font-size: min(calc(12px + 12 * (100vw - 375px) / 1545), 24px);
  text-shadow: 0px 1px 9px rgba(3, 80, 191, 0.3);
  margin-left: 1em;
  margin-top: 0.5em;
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  color: #0350bf;
  font-size: min(calc(40px + 40 * (100vw - 375px) / 1025), 80px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-left: 0.1875em;
  position: relative;
}
.home_ttl_1 > .fs-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1875em;
  height: 0.1875em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
.home_ttl_1 > .fs-jp {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  line-height: normal;
  display: block;
  margin-top: 0.5em;
}
.home_ttl_1.center {
  text-align: center;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}

.home_ttl_2 {
  font-size: 1rem;
}
.home_ttl_2 > .fs-en {
  color: #0350bf;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-left: 0.22223em;
  position: relative;
}
.home_ttl_2 > .fs-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.22223em;
  height: 0.22223em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
.home_ttl_2 > .fs-jp {
  font-size: min(calc(24px + 24 * (100vw - 375px) / 1025), 48px);
  line-height: normal;
  display: block;
  margin-top: 0.25em;
}

/* ---  --- */
.home_about {
  padding-top: clamp(50px, 13vw, 260px);
  padding-bottom: clamp(50px, 11.5vw, 230px);
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.home_about h3 {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  line-height: 2;
  margin-bottom: clamp(50px, 10vw, 200px);
}

.home_about_bg {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .home_about_bg {
    display: block;
  }
  .home_about_bg .img1 {
    position: absolute;
    right: 0;
    top: min(5vw, 100px);
    width: min(30vw, 600px);
  }
  .home_about_bg .img2 {
    position: absolute;
    left: 0;
    bottom: calc(0px - min(2.5vw, 50px));
    width: min(40vw, 800px);
  }
}

/* ---  --- */
.home_strengths {
  padding-top: clamp(50px, 15.75vw, 315px);
  padding-bottom: clamp(50px, 15vw, 300px);
}

.home_strengths_content {
  max-width: 630px;
  margin: 0 auto;
}
.home_strengths_content .row {
  gap: 60px 0;
}
@media print, screen and (min-width: 992px) {
  .home_strengths_content {
    max-width: inherit;
    margin: 0;
  }
}

.home_strengths_figure {
  max-width: 300px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.home_strengths_figure > .photo {
  aspect-ratio: 1/1;
}
.home_strengths_figure figcaption .num {
  color: #0350bf;
  font-size: min(calc(80px * (var(--ww-item) / 300)), 80px);
  line-height: 1;
  margin-top: -.5em;
  position: absolute;
  left: 0;
  top: 0;
}
.home_strengths_figure figcaption .ttl {
  font-weight: 700;
  font-size: min(calc(18px * (var(--ww-item) / 300)), 18px);
  line-height: 2;
  padding: 0.77777em;
}
.home_strengths_figure figcaption .icon {
  color: #fff;
  font-size: min(calc(18px * (var(--ww-item) / 300)), 18px);
  width: 2.22223em;
  height: 2.22223em;
  display: grid;
  place-items: center;
  background-color: #ff6b2b;
  position: absolute;
  right: 0;
  bottom: 0;
}
.home_strengths_figure figcaption .icon i {
  letter-spacing: normal;
  line-height: 1;
}
a > .home_strengths_figure .photo {
  overflow: hidden;
}
a > .home_strengths_figure .photo img {
  transition: all 0.5s ease;
}
a > .home_strengths_figure:hover .photo img {
  transform: scale(1.15);
}
a > .home_strengths_figure:hover figcaption .icon i {
  animation: arrow-out-in 0.5s ease-in-out forwards;
}

/* ---  --- */
.home_business {
  --color: #0350bf;
  position: relative;
  z-index: 0;
  margin-bottom: clamp(50px, 12.5vw, 250px);
}
.home_business .bg_txt {
  display: none;
}
.home_business .home_ttl_2 > .fs-en {
  color: var(--color);
}
.home_business .home_business_list {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home_business .home_business_list > li::before {
  color: var(--color);
  content: "■";
}
@media print, screen and (min-width: 992px) {
  .home_business {
    position: relative;
  }
  .home_business .home_business_content {
    padding-top: 2rem;
  }
  .home_business .bg_txt {
    display: block;
    position: absolute;
    top: -.55em;
    z-index: -1;
    font-size: min(6.2vw, 124px);
    line-height: 1;
    pointer-events: none;
  }
}

@media print, screen and (min-width: 992px) {
  .home_business__hojin .bg_txt {
    color: #f7f8fc;
    right: 0;
  }
  .home_business__hojin .photo {
    margin-left: var(--edge);
    margin-right: -15px;
  }
  .home_business__hojin .home_business_content {
    padding-left: min(calc(30px + 70 * (100vw - 992px) / 408), 110px);
  }
}

.home_business__kojin {
  --color: #ff6b2b;
}
@media print, screen and (min-width: 992px) {
  .home_business__kojin .bg_txt {
    color: #fff3ef;
    left: 0;
  }
  .home_business__kojin .row > div:first-child {
    order: 13;
  }
  .home_business__kojin .photo {
    margin-right: var(--edge);
    margin-left: -15px;
  }
  .home_business__kojin .home_business_content {
    padding-right: min(calc(30px + 70 * (100vw - 992px) / 408), 110px);
  }
}

/* ---  --- */
.home_news {
  margin-bottom: clamp(50px, 12.5vw, 250px);
}

.home_news_inner {
  padding: min(calc(15px + 25 * (100vw - 375px) / 1025), 40px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background: url("../images/common/bg001.png");
}

.home_news_list {
  --padding: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  max-height: min(70vh, 525px);
  padding-right: 15px;
  overflow: auto;
}
.home_news_list .home_news_list_item {
  padding: calc(var(--padding) * 2) var(--padding);
  border-bottom: solid 1px #cccccc;
}
.home_news_list .home_news_list_item:last-child {
  border-bottom: none;
}
@media print, screen and (min-width: 768px) {
  .home_news_list .home_news_list_item {
    padding-left: 20px;
    padding-right: calc(var(--padding) * 3);
    position: relative;
  }
}

.home_news_list_item_head {
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
  margin-bottom: 0.5em;
}
.home_news_list_item_head .cat {
  text-align: center;
  min-width: 6em;
  padding: 0 0.75em;
  background-color: #fff3ef;
}
.home_news_list_item_head .new {
  color: #ff0000;
}
@media print, screen and (min-width: 768px) {
  .home_news_list_item_head {
    font-size: 16px;
  }
}

.home_news_list_item_title {
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .home_news_list_item_title {
    font-size: 16px;
    display: block;
    overflow: visible;
  }
}

.home_news_list_item_btn {
  text-align: right;
  margin-top: 1em;
}
.home_news_list_item_btn .btn {
  color: #ff6b2b;
  font-size: 14px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 0;
}
.home_news_list_item_btn .btn > span {
  display: block;
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .home_news_list_item_btn {
    position: absolute;
    right: 0;
    top: 50%;
    margin: 0;
  }
  .home_news_list_item_btn .btn {
    color: #fff;
    font-size: min(calc(14px + 10 * (100vw - 768px) / 632), 24px);
    width: 2.83334em;
    height: 2.83334em;
    display: grid;
    place-items: center;
    border: solid 1px #ff6b2b;
    background-color: #ff6b2b;
    margin-top: -1.041666em;
  }
  .home_news_list_item_btn .btn > span {
    display: none;
  }
  .home_news_list_item_btn .btn:hover {
    color: #ff6b2b;
    background-color: #fff;
  }
}

/* ---  --- */
.home_contact {
  padding: clamp(50px, 8.57143vw, 120px) 0;
  position: relative;
  z-index: 0;
}
.home_contact::before, .home_contact::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: clamp(10px, 2.85714vw, 40px);
  background: url("../images/common/bg-line-1.png") repeat-x left center/contain;
}
.home_contact::before {
  top: 0;
}
.home_contact::after {
  bottom: 0;
}
.home_contact h2 {
  font-size: min(calc(24px + 16 * (100vw - 375px) / 1025), 40px);
  line-height: 1.2;
  text-align: center;
}
.home_contact h2 i {
  color: #ff6b2b;
  font-size: 1.8em;
  display: block;
  margin: 0 auto 0.1em;
}
.home_contact .txt1 {
  font-size: min(calc(16px + 4 * (100vw - 375px) / 1025), 20px);
}
@media print, screen and (min-width: 768px) {
  .home_contact .txt1 {
    font-size: min(calc(15px + 5 * (100vw - 768px) / 632), 20px);
  }
}

.home_contact_item {
  text-align: center;
  max-width: 410px;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.home_contact_item h3 {
  color: #fff;
  font-size: min(calc(24px * (var(--ww-item) / 410)), 24px);
  line-height: normal;
  width: 100%;
  height: 2.5em;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  background-color: #0350bf;
}
.home_contact_item .columns {
  padding: clamp(20px, calc(50px * (var(--ww-item) / 410)), 50px) 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
.home_contact_item .columns .telphone {
  color: #ff6b2b;
  font-size: min(calc(40px * (var(--ww-item) / 410)), 40px);
  display: flex;
  align-items: center;
  border-bottom: solid 1px #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.home_contact_item .columns .telphone img {
  width: 1.175em;
  margin-right: 0.25em;
}
.home_contact_item .icon {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: -1;
}
.home_contact_item .icon img {
  width: auto;
  height: min(calc(59px * (var(--ww-item) / 410)), 59px);
}

/* ---  --- */
.home_banner {
  margin: clamp(50px, 12.5vw, 250px) 0;
}

.home_banner_inner {
  padding: min(calc(30px + 30 * (100vw - 375px) / 1025), 60px) min(calc(15px + 45 * (100vw - 375px) / 1025), 60px);
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #f4f4f4;
}

.home_banner_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(calc(10px + 20 * (100vw - 375px) / 1025), 30px);
}
.home_banner_list > li {
  flex: 0 0 min(calc(150px + 193 * (100vw - 375px) / 1025), 343px);
}
.home_banner_list > li > a {
  text-decoration: none;
  width: 100%;
  aspect-ratio: 343 / 100;
  display: block;
  padding: 5px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: relative;
}
.home_banner_list > li > a::before {
  content: "\f08e";
  color: #bcbcbc;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: min(calc(10px + 6 * (100vw - 375px) / 1025), 16px);
  line-height: 1;
  position: absolute;
  bottom: 0.1em;
  right: 0.1em;
  margin-top: -.5em;
}
.home_banner_list > li > a img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: opacity 0.3s ease;
}
.home_banner_list > li > a:hover img {
  opacity: 0.65;
}

/* -------------------------------
	お知らせ
-------------------------------- */
/* ---  --- */
.news_item_list {
  --padding: min(calc(15px + 15 * (100vw - 375px) / 1025), 30px);
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}
.news_item_list .news_item_list_item {
  padding: calc(var(--padding) * 2) var(--padding);
  border-bottom: solid 1px #cccccc;
}
.news_item_list .news_item_list_item:last-child {
  border-bottom: none;
}
@media print, screen and (min-width: 768px) {
  .news_item_list .news_item_list_item {
    padding-left: 20px;
    padding-right: calc(var(--padding) * 3);
    position: relative;
  }
}

.news_item_list_item_head {
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
  margin-bottom: 0.5em;
}
.news_item_list_item_head .cat {
  text-align: center;
  min-width: 6em;
  padding: 0 0.75em;
  background-color: #fff3ef;
}
.news_item_list_item_head .new {
  color: #ff0000;
}
@media print, screen and (min-width: 768px) {
  .news_item_list_item_head {
    font-size: 16px;
  }
}

.news_item_list_item_title {
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .news_item_list_item_title {
    font-size: 16px;
    display: block;
    overflow: visible;
  }
}

.news_item_list_item_btn {
  text-align: right;
  margin-top: 1em;
}
.news_item_list_item_btn .btn {
  color: #ff6b2b;
  font-size: 14px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 0;
}
.news_item_list_item_btn .btn > span {
  display: block;
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .news_item_list_item_btn {
    position: absolute;
    right: 0;
    top: 50%;
    margin: 0;
  }
  .news_item_list_item_btn .btn {
    color: #fff;
    font-size: min(calc(14px + 10 * (100vw - 768px) / 632), 24px);
    width: 2.83334em;
    height: 2.83334em;
    display: grid;
    place-items: center;
    border: solid 1px #ff6b2b;
    background-color: #ff6b2b;
    margin-top: -1.041666em;
  }
  .news_item_list_item_btn .btn > span {
    display: none;
  }
  .news_item_list_item_btn .btn:hover {
    color: #ff6b2b;
    background-color: #fff;
  }
}

/* ---  --- */
.news_detail .title-1 {
  font-weight: 500;
}

.news_detail_head {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1025), 16px);
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
  margin-bottom: 0.5em;
}
.news_detail_head .cat {
  text-align: center;
  min-width: 6em;
  padding: 0 0.75em;
  background-color: #fff3ef;
}
.news_detail_head .new {
  color: #ff0000;
}

.news_detail_figure {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
.news_detail_figure figcaption {
  font-size: 0.9375rem;
  margin-top: 0.5em;
}

/**/
.news_detail_file > ul {
  --col:1;
  --gap:10px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media print, screen and (min-width: 768px) {
  .news_detail_file > ul {
    --col:2;
  }
}
@media print, screen and (min-width: 992px) {
  .news_detail_file > ul {
    --col:3;
  }
}
.news_detail_file > ul > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.news_detail_file > ul > li .btn {
  color: #000;
  text-align: left;
  display: block;
  border: solid 1px #ccc;
  padding: 0.75em 1em 0.75em 3em;
  position: relative;
}
.news_detail_file > ul > li .btn img {
  width: 1.5em;
  height: 1.5em;
  object-fit: scale-down;
  position: absolute;
  left: 0.75em;
  top: 50%;
  margin-top: -0.75em;
}
.news_detail_file > ul > li .btn:hover {
  color: #000;
  background-color: #efefef;
}

/* -------------------------------
	私たちについて
-------------------------------- */
/* ---  --- */
.aboutus_head {
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
}

.aboutus_head_image .img {
  max-width: inherit;
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .aboutus_head_image {
    margin-left: var(--edge);
    margin-right: min(calc(30px + 50 * (100vw - 375px) / 1025), 80px);
  }
}

.aboutus_head_content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.aboutus_head_content .inner {
  margin: auto 0;
}

/* ---  --- */
.aboutus_strengths_content_item {
  margin-bottom: min(calc(50px + 50 * (100vw - 375px) / 1025), 100px);
}
.aboutus_strengths_content_item:last-child {
  margin-bottom: 0;
}
.aboutus_strengths_content_item .ttl {
  font-size: 1rem;
}
.aboutus_strengths_content_item .ttl > .fs-en {
  color: #0350bf;
  font-size: min(calc(24px * (var(--ww) / 630)), 24px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
  padding-left: 0.22223em;
  position: relative;
}
.aboutus_strengths_content_item .ttl > .fs-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.22223em;
  height: 0.22223em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
.aboutus_strengths_content_item .ttl > .fs-en strong {
  font-size: 1.25em;
}
.aboutus_strengths_content_item .ttl > .fs-jp {
  font-size: min(calc(38px * (var(--ww) / 630)), 38px);
  line-height: normal;
  display: block;
  margin-top: 0.25em;
}
.aboutus_strengths_content_item .columns {
  line-height: 2;
}
@media print, screen and (min-width: 992px) {
  .aboutus_strengths_content_item:nth-child(odd) .photo {
    margin-left: calc(var(--edge) / 2);
    margin-right: min(calc(30px + 50 * (100vw - 375px) / 1025), 80px);
  }
  .aboutus_strengths_content_item:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .aboutus_strengths_content_item:nth-child(even) .photo {
    margin-right: calc(var(--edge) / 2);
    margin-left: min(calc(30px + 50 * (100vw - 375px) / 1025), 80px);
  }
}

.aboutus_table_1 > tbody > tr > th {
  font-weight: 400;
}
.aboutus_table_1 > tbody > tr > td {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .aboutus_table_1 > tbody > tr > th {
    max-width: 10em;
  }
}

/**/
.aboutus_nav_figure {
  border: solid 1px #efefef;
  height: auto;
  display: grid;
  grid-template-columns: min(calc(300px * (var(--ww-item) / 630)), 300px) 1fr;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.aboutus_nav_figure figcaption {
  font-size: min(calc(28px * (var(--ww-item) / 630)), 28px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.aboutus_nav_figure figcaption::before {
  content: "\f061";
  color: #0350bf;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -.5em;
}
.aboutus_nav_figure figcaption p {
  font-weight: 700;
  padding-right: 2.5em;
  margin: auto;
}
a > .aboutus_nav_figure {
  transition: background 0.3s ease;
}
a > .aboutus_nav_figure:hover {
  background-color: #efefef;
}

/* -------------------------------
	法人の方へ
-------------------------------- */
/**/
.hojin_figure {
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.hojin_figure .hojin_figure_image img {
  max-width: inherit;
  width: 100%;
}
.hojin_figure figcaption {
  padding: 20px 20px 40px;
}
.hojin_figure figcaption h4 {
  font-size: min(calc(24px * (var(--ww-item) / 410)), 24px);
  text-align: center;
  margin-bottom: 1rem;
}
.hojin_figure figcaption .column {
  font-size: 15px;
}

/* ---  --- */
.hojin_faq {
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
}

.hojin_faq_item {
  border-bottom: solid 1px #D0C9BE;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.hojin_faq_item:last-child {
  margin-bottom: 0;
}
.hojin_faq_item .icon {
  position: relative;
}
.hojin_faq_item .hojin_faq_ttl, .hojin_faq_item .hojin_faq_column {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  display: flex;
  position: relative;
}
.hojin_faq_item .hojin_faq_ttl::before, .hojin_faq_item .hojin_faq_column::before {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  flex: 0 0 1.25em;
  padding-right: 0.25em;
}
.hojin_faq_item .hojin_faq_ttl {
  margin-bottom: 1.5rem;
}
.hojin_faq_item .hojin_faq_ttl::before {
  content: "Q.";
  color: #0350bf;
  font-size: 1.5em;
}
.hojin_faq_item .hojin_faq_ttl h4 {
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 0;
}
.hojin_faq_item .hojin_faq_column::before {
  content: "A.";
  color: #ff6b2b;
  font-size: 1.5em;
  transform: scale(0.75);
  transform-origin: right top;
}
.hojin_faq_item .hojin_faq_column .inner {
  font-size: 1rem;
  flex: 1 1 0;
}

/* ---  --- */
.hojin_contact {
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.hojin_contact h3 {
  text-align: center;
  padding: 0.75em 15px;
  margin-bottom: 1.25em;
  background-color: #DAE9FE;
}
.hojin_contact .inner {
  padding: 0 min(calc(10px + 50 * (100vw - 375px) / 1025), 60px) min(calc(30px + 30 * (100vw - 375px) / 1025), 60px);
}
.hojin_contact h4 {
  color: #0350bf;
  font-size: min(calc(20px + 8 * (100vw - 375px) / 1025), 28px);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1em;
}
.hojin_contact h4 > .fs-jp {
  display: inline-block;
  padding-left: 0.1875em;
  position: relative;
}
.hojin_contact h4 > .fs-jp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1875em;
  height: 0.1875em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
@media print, screen and (min-width: 768px) {
  .hojin_contact h4 {
    font-size: min(calc(22px + 10 * (100vw - 768px) / 632), 32px);
  }
}
.hojin_contact .telphone {
  font-size: min(calc(25px + 20 * (100vw - 375px) / 1025), 45px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hojin_contact .telphone i {
  color: #ff6b2b;
  font-size: 1em;
  margin-right: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .hojin_contact .telphone {
    font-size: min(calc(25px + 20 * (100vw - 768px) / 632), 45px);
  }
}
.hojin_contact p {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1025), 16px);
  text-align: center;
  margin-top: 1em;
}
.hojin_contact .btn_box {
  padding: 0 15px;
}
.hojin_contact .btn_box .btn {
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1025), 24px);
  text-align: center;
  display: block;
  max-width: 460px;
  min-width: inherit;
  margin: 0 auto;
}
.hojin_contact .btn_box .btn::before {
  content: "\f0e0";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.25em;
}

/* -------------------------------
	個人の方へ
-------------------------------- */
/* ---  --- */
.kojin_values_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kojin_values_content .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 768px) {
  .kojin_values_content .inner {
    padding-left: min(calc(10px + 50 * (100vw - 768px) / 632), 60px);
  }
}
.kojin_values_content h4 {
  font-size: min(calc(24px + 12 * (100vw - 375px) / 1025), 36px);
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
  padding-left: 0.22223em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.kojin_values_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.22223em;
  height: 0.22223em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
.kojin_values_content .column {
  line-height: 2;
}

/* -------------------------------
	事故のご連絡
-------------------------------- */
/* ---  --- */
/**/
.accident_ttl_1 {
  line-height: 1.35;
  display: flex;
  align-items: center;
}
.accident_ttl_1::before, .accident_ttl_1::after {
  content: "";
  flex: 1 1 0;
  height: 16px;
  background-image: url("../images/common/bg-line-1.png");
  background-repeat: repeat-x;
  background-size: contain;
}
.accident_ttl_1::before {
  margin-right: 1em;
  background-position: left center;
}
.accident_ttl_1::after {
  margin-left: 1em;
  background-position: right center;
}
.accident_ttl_1 > .txt {
  text-align: center;
  display: block;
}

.accident_jiko_column h5 {
  text-align: center;
}
.accident_jiko_column h5 i {
  color: var(--success);
  font-size: 2em;
  line-height: 1;
  display: block;
  margin: 0 auto 0.15em;
}

/**/
.accident_jiko_row {
  --col:1;
  --gap:10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.accident_jiko_row > .accident_jiko_row_item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .accident_jiko_row {
    --col:2;
    --gap:20px;
  }
}
@media print, screen and (min-width: 992px) {
  .accident_jiko_row {
    --col:4;
    --gap:20px;
  }
}

.accident_jiko_tel {
  text-align: center;
  max-width: 280px;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .accident_jiko_tel {
    max-width: inherit;
  }
}
.accident_jiko_tel h3 {
  color: #fff;
  font-size: min(calc(24px * (var(--ww-item) / 410)), 24px);
  line-height: normal;
  width: 100%;
  height: 2.5em;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  background-color: #0350bf;
}
.accident_jiko_tel .columns {
  padding: clamp(20px, calc(50px * (var(--ww-item) / 410)), 50px) 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
.accident_jiko_tel .columns .telphone {
  color: #ff6b2b;
  font-size: min(calc(40px * (var(--ww-item) / 410)), 40px);
  display: flex;
  align-items: center;
}
.accident_jiko_tel .columns .telphone img {
  width: 1.175em;
  margin-right: 0.25em;
}
.accident_jiko_tel .icon {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: -1;
}
.accident_jiko_tel .icon img {
  width: auto;
  height: min(calc(59px * (var(--ww-item) / 410)), 59px);
}

/**/
.accident_seikyuu_column {
  padding: min(calc(50px + 50 * (100vw - 375px) / 1025), 100px) 15px;
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
}
.accident_seikyuu_column h5 {
  text-align: center;
}
.accident_seikyuu_column h5 i {
  color: var(--success);
  font-size: 2em;
  line-height: 1;
  display: block;
  margin: 0 auto 0.15em;
}
.accident_seikyuu_column .telphone {
  color: #ff6b2b;
  font-size: min(calc(25px + 25 * (100vw - 375px) / 1025), 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accident_seikyuu_column .telphone img {
  width: 1.175em;
  margin-right: 0.25em;
}
.accident_seikyuu_column dl {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1025), 16px);
  text-align: center;
  margin-top: 1rem;
}
.accident_seikyuu_column dl dt, .accident_seikyuu_column dl dd {
  margin: 0;
}
.accident_seikyuu_column dl dt {
  font-size: 1.0625em;
}

/* -------------------------------
	会社案内
-------------------------------- */
/* ---  --- */
.company_philosophy {
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
}

.company_philosophy_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}
.company_philosophy_list > li {
  font-size: min(calc(16px + 16 * (100vw - 375px) / 1025), 32px);
  display: flex;
  padding: 0 0.25em 1em;
  margin-bottom: 1em;
  border-bottom: solid 1px #ccc;
}
.company_philosophy_list > li .num {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
  flex: 0 0 2em;
}
.company_philosophy_list > li .txt {
  font-weight: 500;
  margin: auto 0;
  flex: 1 1 0;
}

/**/
.company_vision_point {
  height: 100%;
  padding: 50px 15px;
  box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.company_vision_point .num {
  color: var(--primary);
  font-size: min(calc(80px * (var(--ww-item) / 410)), 80px);
  line-height: 1;
  text-align: center;
  margin-bottom: 0.15em;
}
.company_vision_point h4 {
  font-size: min(calc(28px * (var(--ww-item) / 410)), 28px);
  text-align: center;
}
.company_vision_point .column {
  display: flex;
  flex: 1 1 0;
}
.company_vision_point .column .inner {
  font-size: min(calc(15px * (var(--ww-item) / 360)), 15px);
  margin: auto 0;
  width: 100%;
}
.company_vision_point .column .inner .txt1 {
  font-weight: 500;
  font-size: 1.06667em;
  text-align: center;
  margin-bottom: 0.5rem;
}

/**/
.company_overview {
  background-color: #FDF7F2;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
}
.tel_contact h3 {
  color: #0350bf;
  font-size: min(calc(20px + 12 * (100vw - 375px) / 1025), 32px);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}
.tel_contact h3 > .fs-jp {
  display: inline-block;
  padding-left: 0.1875em;
  position: relative;
}
.tel_contact h3 > .fs-jp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1875em;
  height: 0.1875em;
  border-radius: 50%;
  display: block;
  background-color: #ff6b2b;
}
@media print, screen and (min-width: 768px) {
  .tel_contact h3 {
    font-size: min(calc(22px + 10 * (100vw - 768px) / 632), 32px);
  }
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1025), 50px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_contact .telphone i {
  color: #ff6b2b;
  font-size: 1em;
  margin-right: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 632), 50px);
  }
}
.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;
  }
}
#contactform .list-radio, #contactform .list-checkbox {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
#contactform .list-radio > label, #contactform .list-checkbox > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .list-radio, #contactform .list-checkbox {
    gap: 0.25em 1.5em;
  }
  #contactform .list-radio > label, #contactform .list-checkbox > label {
    flex: 0 0 auto;
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em 0.1em;
  border-radius: 0;
  background-color: var(--danger);
  margin-top: -.75em;
  position: absolute;
  right: 0;
  top: 50%;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 12em !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.875rem;
  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 {
  background-color: #fafafa;
}
#policy .contents {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9375rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

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

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

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

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

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

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

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