@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 {
  color: #000;
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

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

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
  .table-design-1.table-inline tbody > tr > th {
    position: relative;
    padding-left: 1.25em;
  }
  .table-design-1.table-inline tbody > tr > th:before {
    content: "■";
    position: absolute;
    left: 0;
    transform: scale(0.75);
  }
}
/* -------------------------------
	list
-------------------------------- */
.lits-inline-1 {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25em;
}

.list-kome {
  line-height: 1.5;
  list-style: none;
  padding-left: 0;
}
.list-kome > li {
  padding-left: 1.2em;
  margin-bottom: 0.25em;
  position: relative;
}
.list-kome > li:before {
  content: "※";
  position: absolute;
  left: 0;
}
.list-kome > li:last-child {
  margin-bottom: 0;
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

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

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

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

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

  .alignright {
    float: right;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 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-map {
  color: #ee7500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  transform: scale(1.25);
}
.btn-map:hover {
  opacity: 0.65;
}

.btn-1 {
  color: #333;
  border: solid 1px #333;
  padding: 0.63235em 1.35em;
  border-radius: 10em;
  background-color: #f8cf4d;
}
.btn-1:hover {
  color: #f8cf4d;
  background-color: #333;
}
.btn-1.btn-icon-r {
  padding-right: 2.9em;
}
.btn-1.btn-icon-r > i {
  font-size: 1em;
  right: 1.35em;
}

.btn-img-1 {
  border: solid 1px #333;
  padding: 0.5em 1.5em;
  border-radius: 5px;
}
.btn-img-1:hover {
  opacity: 0.65;
}

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

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

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

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

a.tel_link {
  color: inherit;
}

/* -------------------------------
	テキスト　無限ループ
-------------------------------- */
.text-loop {
  pointer-events: none;
  overflow: hidden;
}
.text-loop__box {
  display: flex;
  width: 100vw;
}
.text-loop__item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-right: .25em;
}
.text-loop__item:nth-child(odd) {
  animation: text_loop 40s -20s linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 40s linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	背景固定
-------------------------------- */
.parallax {
  width: 100%;
  height: 50vw;
  position: relative;
  overflow: hidden;
}
.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* 少し余裕を持たせて切れ防止 */
  object-fit: cover;
  will-change: transform;
  z-index: -1;
}

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

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

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

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

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

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

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

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

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

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

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

.fs-20-28 {
  font-size: min(calc(20px + 8 * (100vw - 320px) / 1180), 28px);
}

.fs-18-22 {
  font-size: min(calc(18px + 4 * (100vw - 320px) / 1180), 22px);
}

/* --▼margin-- */
.mb30 {
  margin-bottom: 30px;
}

/* 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-130 {
  margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

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

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

.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-130 {
  padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

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

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

@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-130 {
    margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

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

  .mtb-lg-130 {
    margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
    margin-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }
}
@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-130 {
    padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

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

  .ptb-lg-130 {
    padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
    padding-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

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

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

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

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

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

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

  .mr-lg-full {
    margin-right: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
}
@media print, screen and (min-width: 1500px) {
  .ml-lg-full {
    margin-left: calc((1304px - var(--app-w)) / 2);
  }

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

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.title-2 {
  border-left: solid 0.2em #000;
  padding-left: 0.5em;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 .fs-en {
  font-size: min(calc(40px + 20 * (100vw - 320px) / 1180), 60px);
  line-height: 1;
  display: block;
}
.title-hh-1 .txt {
  font-size: min(calc(14px + 4 * (100vw - 320px) / 1180), 18px);
  line-height: 1.5;
  display: block;
  padding-left: 2em;
  margin-top: .5em;
  position: relative;
}
.title-hh-1 .txt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 1.25em;
  height: 1px;
  background-color: currentColor;
}

.title-hh-2 {
  font-size: 1rem;
  text-align: center;
}
.title-hh-2 .fs-en {
  font-size: min(calc(40px + 20 * (100vw - 320px) / 1180), 60px);
  line-height: 1;
  text-transform: uppercase;
  display: block;
}
.title-hh-2 .txt {
  font-size: min(calc(14px + 4 * (100vw - 320px) / 1180), 18px);
  line-height: 1.5;
  display: block;
  margin-top: .5em;
}

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

/* -------------------------------
	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 {
  margin-top: 50px;
  position: relative;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  #mainvisual {
    margin-top: 133px;
  }
}

.mainvisual_image {
  height: 50vh;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_image {
    height: auto;
    margin-left: 17.4%;
  }
}
.mainvisual_image .mainvisual_image_photo {
  --img-ww: 1652px;
  --img-hh: 867px;
  width: auto;
  height: 100%;
  aspect-ratio: 1652 / 867;
  object-fit: cover;
  object-position: center;
  background: url("../images/home/main_bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.mainvisual_image .mainvisual_image_photo .main_icon {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}
.mainvisual_image .mainvisual_image_photo .icon1 {
  width: calc((129px / var(--img-ww)) * 100%);
  left: calc((1127px / var(--img-ww)) * 100%);
  top: calc((222px / var(--img-hh)) * 100%);
  animation: key_main_icon_1 5s steps(2) infinite;
}
.mainvisual_image .mainvisual_image_photo .icon2 {
  width: calc((205px / var(--img-ww)) * 100%);
  left: calc((53px / var(--img-ww)) * 100%);
  top: calc((341px / var(--img-hh)) * 100%);
  animation: key_main_icon_2 3s steps(1) infinite;
}
.mainvisual_image .mainvisual_image_photo .icon3 {
  width: calc((170px / var(--img-ww)) * 100%);
  left: calc((374px / var(--img-ww)) * 100%);
  top: calc((577px / var(--img-hh)) * 100%);
  transform-origin: center bottom;
  animation: key_main_icon_3 6s steps(2) infinite;
}
.mainvisual_image .mainvisual_image_photo .icon4 {
  width: calc((202px / var(--img-ww)) * 100%);
  left: calc((994px / var(--img-ww)) * 100%);
  top: calc((396px / var(--img-hh)) * 100%);
  animation: key_main_icon_4 5s steps(1) infinite;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_image .mainvisual_image_photo {
    width: 100%;
    height: auto;
  }
}

@keyframes key_main_icon_1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes key_main_icon_2 {
  0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(10deg);
  }
}
@keyframes key_main_icon_3 {
  33% {
    transform: rotate(7deg);
  }
  66% {
    transform: rotate(-7deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes key_main_icon_4 {
  33% {
    transform: translate(-3%, 3%);
  }
  66% {
    transform: translate(3%, -3%);
  }
}
.mainvisual_content {
  padding-top: 20px;
}
.mainvisual_content h2 {
  font-size: 25px;
  letter-spacing: 0.08em;
  line-height: 1.55556;
  text-align: center;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .mainvisual_content {
    position: absolute;
    left: 0;
    top: 0;
    width: 17.4%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .mainvisual_content h2 {
    font-size: min(calc(20px + 25 * (100vw - 768px) / 1152), 45px);
    text-align: left;
    writing-mode: vertical-rl;
  }
}

@media screen {
  .amn-main-ttl {
    opacity: 0;
    filter: blur(10px);
  }
  .amn-main-ttl.is-active {
    opacity: 1;
    filter: blur(0px);
    transition: opacity 2s ease 0.3s, filter 2s ease 0.3s;
  }
}
/* -------------------------------
	home
-------------------------------- */
.home_wrap {
  --base-width: 667px;
}
.home_wrap .home_ttl_1 {
  font-size: clamp(40px, calc(60px * ((var(--width-home_measure_div) / 1px) / (var(--base-width) / 1px))), 60px);
}
.home_wrap .home_ttl_1 .fs-en {
  font-size: 1em;
}
.home_wrap .home_ttl_1 .txt {
  font-size: clamp(14px, calc(18px * ((var(--width-home_measure_div) / 1px) / (var(--base-width) / 1px))), 18px);
}

/* ---  --- */
.home_about {
  --base-width: 667px;
  background-color: #fff;
  overflow: hidden;
}
.home_about h2 {
  display: flex;
}
.home_about h2 > .in {
  display: block;
  position: relative;
}
.home_about h2 > .in:after {
  content: "";
  position: absolute;
  top: -8%;
  left: 101%;
  display: block;
  width: 2.26666em;
  aspect-ratio: 136 / 113;
  background: url("../images/home/home_ttl_icon_1.png") no-repeat center center/contain;
}
@media print, screen and (min-width: 768px) {
  .home_about h2 > .in:after {
    left: calc(100% + 1.5em);
  }
}
.home_about h3 {
  font-size: clamp(20px, calc(55px * ((var(--width-home_measure_div) / 1px) / (var(--base-width) / 1px))), 55px);
  margin-left: -0.6em;
  white-space: nowrap;
}
.home_about .box-flex-column {
  margin-bottom: 1.5rem;
}
.home_about .photo {
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_about .box-flex-column {
    margin-right: -30px;
    margin-bottom: 0;
  }
  .home_about .photo {
    aspect-ratio: auto;
    border-radius: 20px 0 0 20px;
    height: 842px;
  }
}

/* ---  ---*/
.home_service {
  background-color: #f0f0f0;
  overflow: hidden;
}
.home_service h2 {
  text-align: center;
}
.home_service h2 > .in {
  display: inline-grid;
  position: relative;
}
.home_service h2 > .in:before, .home_service h2 > .in:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home_service h2 > .in:before {
  right: 110%;
  width: 1.66666em;
  aspect-ratio: 25 / 17;
  background: url("../images/home/home_ttl_icon_2.png") no-repeat center center/contain;
}
.home_service h2 > .in:after {
  left: 110%;
  width: 1.86666em;
  aspect-ratio: 8 / 5;
  background: url("../images/home/home_ttl_icon_3.png") no-repeat center center/contain;
}
.home_service h2 > .in > .fs-en {
  line-height: 1;
  display: block;
}
.home_service h2 > .in > .txt {
  display: block;
  margin-top: .5em;
}
@media print, screen and (min-width: 768px) {
  .home_service h2 > .in:before {
    right: 126.8%;
  }
  .home_service h2 > .in:after {
    left: 126.8%;
  }
}
.home_service .container-fluid {
  max-width: 1668px;
}

/**/
.home_service_work {
  display: grid;
  gap: 50px min(calc(10px + 26 * (100vw - 320px) / 1348), 36px);
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: min(calc(50px + 120 * (100vw - 320px) / 1348), 170px);
}
@media print, screen and (min-width: 768px) {
  .home_service_work {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 1200px) {
  .home_service_work {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home_service_figure {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home_service_figure .photo {
  width: 100%;
  aspect-ratio: 382 / 291;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.home_service_figure figcaption {
  color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 30px 30px 0;
  background-color: #333;
}
.home_service_figure figcaption h3 {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  min-height: 3em;
  display: grid;
  place-items: center;
  margin-bottom: 1.5em;
}
.home_service_figure figcaption .column {
  font-size: 0.94445rem;
  line-height: 2.05882;
}
.home_service_figure figcaption .btns {
  font-size: 15px;
  text-align: center;
  margin-bottom: -1.26666em;
}
.home_service_figure figcaption .btns > span {
  color: #333;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12.33334em;
  height: 3.26666em;
  border-radius: 10em;
  border: solid 1px #333;
  background-color: #f8cf4d;
  transition: color 0.3s ease, border 0.3s ease, background 0.3s ease;
}
.home_service_figure figcaption .btns > span i {
  font-size: 1em;
  margin-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .home_service_figure figcaption h3 {
    font-size: clamp(20px, calc(var(--width-box) / 15.28), 25px);
  }
}
a > .home_service_figure figcaption {
  transition: color 0.3s ease, background 0.3s ease;
}
a > .home_service_figure:hover figcaption {
  color: #333;
  background-color: #f8cf4d;
}
a > .home_service_figure:hover figcaption .btns > span {
  color: #f8cf4d;
  border-color: #f8cf4d;
  background-color: #333;
}

/**/
.home_service_various h3 {
  font-size: min(calc(20px + 20 * (100vw - 320px) / 1180), 40px);
  line-height: 1.65;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_service_various h3:before, .home_service_various h3:after {
  content: "";
  display: block;
  width: 2px;
  height: 1.65em;
  background-color: currentColor;
}
.home_service_various h3:before {
  margin-right: 0.75em;
  transform: rotate(-35deg);
}
.home_service_various h3:after {
  margin-left: 0.75em;
  transform: rotate(35deg);
}
.home_service_various > .row {
  gap: 40px 0;
}

.home_service_various_head {
  margin-bottom: 40px;
  position: relative;
}
.home_service_various_head h4 {
  font-size: clamp(20px, calc(var(--measure-width) / 20), 30px);
  text-align: center;
  margin-bottom: 1em;
}
.home_service_various_head h4 > .fs-en {
  color: #dbdbdb;
  font-size: 0.66667em;
  line-height: normal;
  display: block;
  margin-bottom: 0.5em;
}
.home_service_various_head h4 > .txt {
  display: block;
}
.home_service_various_head .bg-icon {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}
.home_service_various_head .icon1 {
  width: 25%;
  left: -15px;
  top: -20px;
}
.home_service_various_head .icon2 {
  width: 25%;
  top: 50%;
  right: -15px;
}
.home_service_various_head .icon3 {
  width: 25%;
  left: -7%;
  bottom: -15px;
}
@media print, screen and (min-width: 992px) {
  .home_service_various_head .icon1 {
    width: min(calc((189 / 1304) * 100%), 189px);
    left: 0;
    top: auto;
    bottom: -10px;
    transform: translateX(-50%);
  }
  .home_service_various_head .icon2 {
    width: min(calc((183 / 1304) * 100%), 183px);
    left: 50%;
    top: auto;
    right: auto;
    bottom: -10px;
    transform: translateX(-50%);
  }
  .home_service_various_head .icon3 {
    width: min(calc((205 / 1304) * 100%), 205px);
    left: auto;
    right: 0;
    bottom: -10px;
    transform: translateX(50%);
  }
}

.home_service_various_head_column {
  height: 100%;
  padding: min(calc(20px + 50 * (100vw - 320px) / 1180), 80px) 0;
  border-radius: 20px;
  background-color: #fff;
}
.home_service_various_head_column .icon {
  width: 170px;
  aspect-ratio: 34 / 19;
  margin-left: auto;
  margin-right: auto;
}
.home_service_various_head_column .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_service_various_head_column .column {
  font-size: 0.94445rem;
  line-height: 2.05882;
  text-align: center;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
.home_service_various_head_column .column2 {
  line-height: 1.5;
  text-align: center;
}
.home_service_various_head_column .btns {
  text-align: center;
  margin-top: auto;
}
.home_service_various_head_column .btns .btn {
  font-size: 0.944445rem;
}
.home_service_various_head_column .btns .home_service_various_btn_1 {
  background-color: #fff;
}
.home_service_various_head_column .btns .home_service_various_btn_1 img {
  width: 130px;
}
.home_service_various_head_column .btns .home_service_various_btn_1:hover {
  background-color: #efefef;
}

.home_service_various_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: min(calc(20px + 50 * (100vw - 320px) / 1180), 80px) 0;
  border-radius: 20px;
  background-color: #fff;
}
.home_service_various_content h4 {
  font-size: clamp(20px, calc(var(--measure-width) / 20), 30px);
  text-align: center;
  margin-bottom: 1.5em;
}
.home_service_various_content h4 > .fs-en {
  color: #dbdbdb;
  font-size: 0.66667em;
  line-height: normal;
  display: block;
  margin-bottom: 0.5em;
}
.home_service_various_content h4 > .txt {
  display: block;
}
.home_service_various_content .column {
  font-size: 0.94445rem;
  line-height: 2.05882;
  padding: 0 min(calc(10px + 40 * (100vw - 320px) / 1180), 50px);
}
.home_service_various_content .btns {
  margin-top: auto;
  padding: 1.5rem 15px 0;
}
.home_service_various_content .btns > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.home_service_various_content .btns .btn {
  font-size: 0.944445rem;
}

/* ---  --- */
.home_company .photo {
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_company .photo {
    border-radius: 20px 0 0 20px;
    height: 598px;
  }
}
.home_company h2 {
  display: flex;
}
.home_company h2 > .in {
  display: block;
  position: relative;
}
.home_company h2 > .in:after {
  content: "";
  position: absolute;
  top: -8%;
  left: 101%;
  display: block;
  width: 3.16666em;
  aspect-ratio: 190 / 117;
  background: url("../images/home/home_ttl_icon_4.png") no-repeat center center/contain;
}
@media print, screen and (min-width: 768px) {
  .home_company h2 > .in:after {
    left: calc(100% + 1.5em);
  }
}
@media print, screen and (min-width: 992px) {
  .home_company .box-flex-column {
    margin-right: -30px;
  }
}

/* ---  --- */
.home_cooperation .photo {
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .home_cooperation .photo {
    border-radius: 0 20px 20px 0;
    height: 598px;
  }
}
.home_cooperation h2 .fs-en .icon {
  padding-right: 1em;
  display: inline-grid;
  position: relative;
}
.home_cooperation h2 .fs-en .icon:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.90909em;
  height: 1.654545em;
  background: url("../images/home/home_ttl_icon_5.png") no-repeat center bottom/contain;
}
@media print, screen and (min-width: 992px) {
  .home_cooperation h2 .fs-en {
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 992px) {
  .home_cooperation .box-flex-column {
    margin-left: -30px;
  }
}

/* ---  --- */
.page_contact {
  color: #fff;
  background-color: #333;
  overflow: hidden;
}
.page_contact h2 {
  font-size: min(calc(40px + 20 * (100vw - 320px) / 1180), 60px);
  text-align: center;
}
.page_contact h2 > .in {
  display: inline-grid;
  position: relative;
}
.page_contact h2 > .in:before, .page_contact h2 > .in:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page_contact h2 > .in:before {
  right: 110%;
  width: 1.66666em;
  aspect-ratio: 25 / 17;
  background: url("../images/home/home_ttl_icon_2.png") no-repeat center center/contain;
}
.page_contact h2 > .in:after {
  left: 110%;
  width: 1.86666em;
  aspect-ratio: 8 / 5;
  background: url("../images/home/home_ttl_icon_3.png") no-repeat center center/contain;
}
.page_contact h2 > .in > .fs-en {
  line-height: 1;
  display: block;
}
.page_contact h2 > .in > .txt {
  font-size: min(calc(15px + 3 * (100vw - 320px) / 1180), 18px);
  display: block;
  margin-top: .5em;
}
@media print, screen and (min-width: 768px) {
  .page_contact h2 > .in:before {
    right: 126.8%;
  }
  .page_contact h2 > .in:after {
    left: 126.8%;
  }
}
.page_contact .page_contact_column {
  text-align: center;
  padding: 25px 15px;
  border-radius: 30px;
  height: 100%;
  background-color: #494949;
}
.page_contact .page_contact_column .telphone {
  font-size: 30px;
  justify-content: center;
}
.page_contact .page_contact_column .btn {
  font-size: 19px;
  width: 12.10526em;
  height: 3.2105em;
  display: inline-grid;
  place-items: center;
}
@media print, screen and (min-width: 768px) {
  .page_contact .page_contact_column .telphone {
    font-size: min(calc(30px + 9 * (100vw - 768px) / 732), 39px);
    line-height: 1.564;
  }
}

/* ---  --- */
.news_list .news_list_item {
  padding: 20px 0;
  border-bottom: solid 1px #dadada;
  position: relative;
}
.news_list .news_list_item .date {
  font-size: 16px;
  line-height: 1.5;
}
.news_list .news_list_item .date .new {
  color: #ee7500;
  font-size: 12px;
  display: inline-grid;
  margin-left: 1em;
}
.news_list .news_list_item .column {
  font-size: 16px;
  line-height: 1.5;
}
.news_list .news_list_item .btns {
  text-align: right;
  margin-top: 0.5rem;
}
.news_list .news_list_item .btns > a {
  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 {
  width: 2.4375em;
  height: 2.4375em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 1px #333;
  background-color: #f8cf4d;
  transition: color 0.3s ease, background 0.3s ease;
}
.news_list .news_list_item .btns > a:hover .icon {
  color: #fff;
  background-color: #333;
}
@media print, screen and (min-width: 768px) {
  .news_list .news_list_item {
    display: flex;
  }
  .news_list .news_list_item .date {
    flex: 0 0 170px;
    padding-left: 15px;
  }
  .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;
  }
}
.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: #efefef;
}

/* -------------------------------
	お知らせ
-------------------------------- */
.topice_date {
  font-size: 16px;
  line-height: 1.5;
}
.topice_date .new {
  color: #ee7500;
  font-size: 12px;
  display: inline-grid;
  margin-left: 1em;
}

.topice_content_image {
  text-align: center;
}

.topice_content_column {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.topice_file .btn {
  text-align: left;
  display: block;
  padding-right: 1.5em;
  padding-left: 3em;
  position: relative;
}
.topice_file .btn i {
  position: absolute;
  left: 1em;
  top: 50%;
  font-size: 1.25em;
  line-height: 1;
  margin-top: -.5em;
}

.detail_back {
  text-align: center;
  border-top: solid 1px #efefef;
}

/* -------------------------------
	サービス（一覧）
-------------------------------- */
/* ----  --- */
.service_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.service_navi_list > li .btn {
  font-size: 13px;
  padding: 1em 0;
  border: solid 1px #333;
  border-radius: 3px;
  display: block;
  height: 100%;
}
.service_navi_list > li .btn > .fs-en {
  font-size: 2em;
  line-height: 1;
  display: block;
  margin-bottom: 0.15em;
}
.service_navi_list > li .btn .txt {
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 3em;
}
.service_navi_list > li .btn:hover {
  color: #fff;
  background-color: #333;
}
@media print, screen and (min-width: 768px) {
  .service_navi_list {
    grid-template-columns: repeat(4, 1fr);
  }
  .service_navi_list > li .btn {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 732), 16px);
  }
}

/* ---  --- */
.service_wrap {
  --width-service_ttl: 637px;
  --width-btn-ww: 381px;
  overflow: hidden;
}

.service_content .num {
  color: var(--primary);
  font-size: min(calc(50px + 50 * (100vw - 320px) / 1180), 100px);
  line-height: 1;
  text-align: center;
}
.service_content .title-2 {
  font-size: clamp(20px, calc(var(--width-service_ttl) / 18.2), 35px);
  white-space: nowrap;
}
.service_content .service_content_image .photo {
  border-radius: 15px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .service_content .service_content_image .photo {
    height: 560px;
  }
  .service_content:nth-child(odd) .service_content_image {
    margin-right: 11.37%;
    margin-left: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
  .service_content:nth-child(odd) .service_content_image .photo {
    border-radius: 0 20px 20px 0;
  }
  .service_content:nth-child(even) .service_content_row > div:first-child {
    order: 13;
  }
  .service_content:nth-child(even) .service_content_image {
    margin-left: 11.37%;
    margin-right: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
  .service_content:nth-child(even) .service_content_image .photo {
    border-radius: 20px 0 0 20px;
  }
}
@media print, screen and (min-width: 1500px) {
  .service_content:nth-child(odd) .service_content_image {
    margin-left: calc((1304px - var(--app-w)) / 2);
  }
  .service_content:nth-child(even) .service_content_image {
    margin-right: calc((1304px - var(--app-w)) / 2);
  }
}
.service_content .btns {
  --gap: 10px;
}
.service_content .btns > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: var(--gap);
}
.service_content .btns > ul > li {
  flex: 0 0 auto;
}
.service_content .btns > ul > li .btn-img-1 img {
  height: 2em;
}

.service_content_comment {
  color: #fff;
  font-size: 0.94445em;
  padding: min(calc(30px + 50 * (100vw - 320px) / 1180), 80px) min(calc(15px + 35 * (100vw - 320px) / 1180), 50px);
  background-color: #333;
  position: relative;
}
.service_content_comment .title-2 {
  border-left-color: var(--primary);
}
.service_content_comment .btn {
  font-size: clamp(16px, calc(var(--width-btn-ww) / 17), 22px);
  height: 100%;
  min-height: 5em;
  display: grid;
  place-items: center;
  border: solid 1px #333;
  border-radius: 0;
  padding: 0;
  background-color: var(--primary);
  position: relative;
}
.service_content_comment .btn:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1em 1em 0px 0px;
  border-color: #000 transparent transparent transparent;
}
.service_content_comment .btn i {
  position: absolute;
  right: 1.15em;
  top: 50%;
  line-height: 1;
  margin-top: -.5em;
}
.service_content_comment .btn:hover {
  color: #000;
  background-color: #fff;
}

@media print, screen and (min-width: 992px) {
  .service_content .service_content_comment:before {
    content: "";
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: #333;
    z-index: -1;
  }
  .service_content:nth-child(odd) .service_content_comment:before {
    left: 100%;
  }
  .service_content:nth-child(even) .service_content_comment:before {
    right: 100%;
  }
}

/* -------------------------------
	マンション・戸建て買取サービス
-------------------------------- */
/* ---  --- */
.purchase_reason {
  background-color: #f0f0f0;
}

.purchase_reason_columns {
  --measure-width: 637px;
  padding: clamp(20px, 7.849%, 50px) clamp(15px, 7.849%, 50px);
  height: 100%;
  background-color: #fff;
}
.purchase_reason_columns .num {
  font-size: clamp(40px, calc(var(--measure-width) / 7.9625), 80px);
  line-height: 1;
  text-align: center;
  opacity: 0.5;
}
.purchase_reason_columns h4 {
  font-size: clamp(22px, calc(var(--measure-width) / 19.90625), 32px);
  line-height: 1.5;
  text-align: center;
  display: grid;
  place-items: center;
  height: 3em;
}

/* ---  --- */
.service_flow {
  --margin: 30px;
}
.service_flow_step {
  border-bottom: solid 1px #ccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}
.service_flow_step:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--margin) * 0.6) var(--margin) 0px var(--margin);
  border-color: #ccc transparent transparent transparent;
  margin-left: calc(0px - (var(--margin) / 2));
}
.service_flow_step:last-child {
  margin-bottom: 0 !important;
}
.service_flow_step .num {
  font-size: 2em;
  line-height: 1;
  flex: 0 0 2em;
}
.service_flow_step h4 {
  margin: 0;
}
.service_flow_step .column {
  flex: 0 0 100%;
  margin-top: 10px;
}
@media print, screen and (min-width: 992px) {
  .service_flow_step {
    --num-size: 50px;
    --margin: 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: calc(var(--num-size) * 2 + 30px);
    padding-bottom: var(--margin);
    margin-bottom: var(--margin);
    min-height: calc(var(--num-size) * 2 + var(--margin));
  }
  .service_flow_step .num {
    position: absolute;
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    color: #fff;
    font-size: var(--num-size);
    display: grid;
    place-items: center;
    background-color: #333;
  }
  .service_flow_step h4 {
    margin-top: calc(var(--num-size) * 0.25);
  }
}

/* ---  --- */
.service_contact {
  text-align: center;
}
.service_contact .service_contact_inner {
  padding: 50px 15px;
  background-color: #efefef;
}
.service_contact .service_contact_inner h3 {
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1180), 32px);
}

/* -------------------------------
	リフォームシミュレーション
-------------------------------- */
/* ---  --- */
.reform_content_ttl_1 {
  font-size: min(calc(20px + 12 * (100vw - 320px) / 1180), 32px);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25em 1em;
  padding: 0.5em 0.5em;
  border-radius: 0.25em;
  background-color: #f0f0f0;
}
.reform_content_ttl_1 > .fs-en {
  font-size: 0.5em;
  padding: 0.25em 1.25em;
  border-radius: 10em;
  background-color: var(--primary);
}
.reform_content_ttl_1 > .txt {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  .reform_content_ttl_1 {
    flex-wrap: nowrap;
  }
  .reform_content_ttl_1 .txt {
    flex: 1 1 0;
  }
}

.reform_content_ttl_2 {
  font-size: 1.25em;
  padding-left: 1.25em;
  margin-bottom: 0.5rem;
  position: relative;
}
.reform_content_ttl_2:before {
  content: "■";
  position: absolute;
  left: 0;
}

/**/
.reform_content {
  --col-sm: 1;
  --col-md: 1;
  --col-lg: 1;
  --col-xl: 1;
  --gap: 5px;
}

.reform_content_item {
  margin-bottom: min(calc(50px + 50 * (100vw - 320px) / 1180), 100px);
}
.reform_content_item:last-child {
  margin-bottom: 0;
}

.reform_radio_row {
  --col: var(--col-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.reform_radio_row > .box {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1) )) / var(--col));
}
@media print, screen and (min-width: 768px) {
  .reform_radio_row {
    --col-md: var(--col-sm);
    --col: var(--col-md);
  }
}
@media print, screen and (min-width: 992px) {
  .reform_radio_row {
    --col-lg: var(--col-md);
    --col: var(--col-lg);
  }
}
@media print, screen and (min-width: 1200px) {
  .reform_radio_row {
    --col-xl: var(--col-lg);
    --col: var(--col-xl);
  }
}
.reform_radio_row.col_auto {
  justify-content: space-between;
}
.reform_radio_row.col_auto > .box {
  flex: 1 0 auto !important;
}

.reform_radio_row > .box label {
  color: #333;
  line-height: 1.5;
  text-align: center;
  display: block;
  border-radius: 5px;
  border: solid 1px #333;
  padding: 0.25em 0.75em;
  background: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.reform_radio_row > .box label > .img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.reform_radio_row > .box label:hover {
  background-color: #efefef;
}
.reform_radio_row > .box input:checked + label {
  color: #000;
  background: var(--primary);
}
.reform_radio_row > .box input {
  display: none;
}

.reform_place {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: dashed 1px #ccc;
}
.reform_place:last-child {
  margin-bottom: 0;
}
.reform_place_image {
  flex: 0 0 80px;
}
.reform_place_ttl {
  flex: 0 0 calc(100% - 80px);
  padding-left: 20px;
}
.reform_place_ttl h4 {
  font-size: 20px;
  margin: 0;
}
.reform_place_column {
  flex: 0 0 100%;
  padding-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .reform_place {
    display: block;
    padding-left: 170px;
    min-height: 180px;
    position: relative;
  }
  .reform_place_image {
    width: 150px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .reform_place_ttl {
    flex: 0 0 auto;
    padding-left: 0px;
    margin-top: auto;
  }
  .reform_place_ttl h4 {
    font-size: 23px;
  }
  .reform_place_column {
    flex: 0 0 auto;
    margin-bottom: auto;
  }
}

/**/
.reform_total {
  padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  background-color: #333;
}
.reform_total .ttl {
  color: #fff;
}
.reform_total .column {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
  background-color: #fff;
}
.reform_total .column .num {
  font-size: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  line-height: 1;
}
.reform_total .column .txt {
  line-height: 1.75;
  padding-left: 10px;
}
@media print, screen and (min-width: 768px) {
  .reform_total {
    display: flex;
    align-items: center;
  }
  .reform_total .ttl {
    font-size: min(calc(20px + 10 * (100vw - 320px) / 1180), 30px);
    white-space: nowrap;
    padding-right: 1em;
  }
  .reform_total .column {
    flex: 1 1 0;
  }
}

/* -------------------------------
	解体工事紹介
-------------------------------- */
/* ---  --- */
.dismantling_reason {
  --width-figure-ww: 415px;
  background-color: #f0f0f0;
}

.dismantling_reason_figure {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.dismantling_reason_figure .photo {
  position: relative;
  z-index: -1;
}
.dismantling_reason_figure figcaption {
  padding-bottom: min(calc(20px + 50 * (100vw - 320px) / 1180), 50px);
}
.dismantling_reason_figure figcaption .num {
  font-size: clamp(13px, calc(var(--width-figure-ww) / 8.3), 50px);
  line-height: 1;
  text-align: center;
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--primary);
}
.dismantling_reason_figure figcaption h4 {
  font-size: clamp(22px, calc(var(--width-figure-ww) / 12.96875), 32px);
  line-height: 1.5;
  text-align: center;
  display: grid;
  place-items: center;
  margin: 0.5em 0;
}
.dismantling_reason_figure figcaption .column {
  font-size: clamp(12px, calc(var(--width-figure-ww) / 20), 17px);
  text-align: center;
  padding: 0 1em;
}

/* */
.dismantling_work {
  --width-figure-ww: 415px;
  background-color: #E1E0E0;
}

.dismantling_work_row {
  --col: 2;
  --gap: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.dismantling_work_row_col {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.dismantling_work_row_col figcaption p {
  font-size: clamp(13px, calc(var(--width-figure-ww) / 23), 18px);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .dismantling_work_row {
    --col: 3;
    --gap: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .dismantling_work_row {
    --gap: 30px;
  }
}

/* -------------------------------
	公共工事&工事経歴
-------------------------------- */
.biography_head {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.biography_head > .text-loop {
  font-size: clamp(70px, 10vw, 200px);
  line-height: 0.75;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}
.biography_head h3, .biography_head p {
  text-align: center;
}

.biography_box {
  aspect-ratio: 4/3;
}
@media print, screen and (min-width: 768px) {
  .biography_box {
    height: 500px;
  }
}

/**/
.biography_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #c0c0c0;
  border-left: 1px solid #c0c0c0;
}
.biography_table > thead > tr > th, .biography_table > thead > tr > td {
  text-align: center;
  padding: 1em;
  border-right: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  background-color: #efefef;
}
.biography_table > tbody > tr > th, .biography_table > tbody > tr > td {
  font-size: 0.944445em;
  padding: 1em;
  border-right: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
}
.biography_table > tbody > tr > th {
  background: #eee;
}
.biography_table > tbody > tr > td {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .biography_table > tbody > tr > th:nth-child(1), .biography_table > tbody > tr > td:nth-child(1) {
    width: 36%;
  }
  .biography_table > tbody > tr > th:nth-child(2), .biography_table > tbody > tr > td:nth-child(2) {
    width: auto;
  }
  .biography_table > tbody > tr > th:nth-child(3), .biography_table > tbody > tr > td:nth-child(3) {
    width: 9em;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .biography_table {
    border: none;
  }
  .biography_table > thead {
    display: none;
  }
  .biography_table > tbody > tr {
    width: 100%;
    display: block;
    border: solid 1px #c0c0c0;
    margin-bottom: 5px;
  }
  .biography_table > tbody > tr > th, .biography_table > tbody > tr > td {
    width: 100% !important;
    display: block;
    border: none;
  }
  .biography_table > tbody > tr > th:nth-child(1), .biography_table > tbody > tr > td:nth-child(1) {
    padding: 10px;
    background-color: #efefef;
  }
  .biography_table > tbody > tr > th:nth-child(2), .biography_table > tbody > tr > td:nth-child(2) {
    padding: 10px;
  }
  .biography_table > tbody > tr > th:nth-child(2):before, .biography_table > tbody > tr > td:nth-child(2):before {
    content: "工事件名";
    line-height: 1.2;
    display: block;
    border-left: solid 3px #333;
    padding-left: 0.5em;
    margin-bottom: 5px;
  }
  .biography_table > tbody > tr > th:nth-child(3), .biography_table > tbody > tr > td:nth-child(3) {
    padding: 0 10px 10px;
  }
  .biography_table > tbody > tr > th:nth-child(3):before, .biography_table > tbody > tr > td:nth-child(3):before {
    content: "完成年月：";
    font-size: 0.875em;
  }
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_qualifications_row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
}
.company_qualifications_row > dl {
  line-height: 1.5;
  flex: 0 0 calc((100% - (2em * 0)) / 1);
  display: grid;
  grid-template-columns: 1fr 2em;
  align-items: center;
  border-bottom: solid 1px #efefef;
  padding: 1em;
  margin: 0;
}
.company_qualifications_row > dl > dt, .company_qualifications_row > dl > dd {
  padding: 0;
  margin: 0;
}
.company_qualifications_row > dl > dt {
  padding-right: 1.25em;
}
.company_qualifications_row > dl > dd {
  text-align: right;
}
@media print, screen and (min-width: 992px) {
  .company_qualifications_row > dl {
    flex: 0 0 calc((100% - (2em * 1)) / 2);
  }
}

/* ---  --- */
.company_access_dl {
  font-size: min(calc(12px + 5 * (100vw - 320px) / 1180), 17px);
  line-height: 1.75;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  margin: 0;
}
.company_access_dl > dt, .company_access_dl > dd {
  padding: 0;
  margin: 0;
}
.company_access_dl > dt {
  padding-right: 1.25em;
}
.company_access_dl > dd {
  text-align: right;
}

/* -------------------------------
	協力会社募集
-------------------------------- */
/* ---  --- */
.cooperation_head {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.cooperation_head .bg_txt {
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: -0.18em;
  z-index: -1;
  color: #f0f0f0;
  font-size: max(10vw, 45px);
  line-height: 1;
}

/* ---  --- */
.cooperation_merit {
  background-color: #f0f0f0;
}

.cooperation_merit_content {
  margin-bottom: min(calc(50px + 30 * (100vw - 320px) / 880), 80px);
}
.cooperation_merit_content:last-child {
  margin-bottom: 0;
}
.cooperation_merit_content .cooperation_merit_image .photo {
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .cooperation_merit_content .cooperation_merit_image .photo {
    height: 500px;
  }
  .cooperation_merit_content:nth-child(odd) .cooperation_merit_image {
    margin-right: 11.37%;
    margin-left: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
  .cooperation_merit_content:nth-child(odd) .cooperation_merit_image .photo {
    border-radius: 0 20px 20px 0;
  }
  .cooperation_merit_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .cooperation_merit_content:nth-child(even) .cooperation_merit_image {
    margin-left: 11.37%;
    margin-right: calc(-15px - 83 * (100vw - 320px) / 1180);
  }
  .cooperation_merit_content:nth-child(even) .cooperation_merit_image .photo {
    border-radius: 20px 0 0 20px;
  }
}
@media print, screen and (min-width: 1500px) {
  .cooperation_merit_content:nth-child(odd) .cooperation_merit_image {
    margin-left: calc((1304px - var(--app-w)) / 2);
  }
  .cooperation_merit_content:nth-child(even) .cooperation_merit_image {
    margin-right: calc((1304px - var(--app-w)) / 2);
  }
}

.cooperation_merit_ttl {
  font-size: clamp(23px, calc(var(--width-content) / 15), 42px);
}
.cooperation_merit_ttl > .fs-en {
  color: var(--primary);
  font-size: 0.75em;
  display: block;
}
.cooperation_merit_ttl > .txt {
  display: block;
}

/* ---  --- */
.cooperation_flow_item {
  border: solid 1px #ccc;
  padding: 5px;
  max-width: 550px;
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.cooperation_flow_item h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.75em 0;
}
.cooperation_flow_item h4 .fs-en {
  color: var(--primary);
  font-size: 1.5em;
  line-height: 1;
  margin-right: 0.25em;
}
.cooperation_flow_item .photo {
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
}
.cooperation_flow_item .column {
  font-size: 0.94445em;
  padding: 15px;
}
@media print, screen and (min-width: 992px) {
  .cooperation_flow_item h4 {
    font-size: min(calc(26px + 6 * (100vw - 992px) / 508), 32px);
  }
  .cooperation_flow_item p {
    font-size: min(calc(15px + 2 * (100vw - 992px) / 508), 17px);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact_row {
  display: grid;
  gap: 1px;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tel_contact_row > .box {
  color: #fff;
  padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px) 0;
  background-color: #333;
}
.tel_contact_row > .box h4 {
  text-align: center;
}
.tel_contact_row > .box .telphone {
  font-size: 28px;
  justify-content: center;
}
.tel_contact_row > .box .subtxt {
  font-size: 0.88888em;
  text-align: center;
  margin-top: .5em;
}
.tel_contact_row > .box .line_qr {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_row > .box .telphone {
    font-size: min(calc(28px + 8 * (100vw - 768px) / 732), 36px);
    height: 90px;
  }
}

/**/
.form_head h3 {
  font-size: min(calc(20px + 18 * (100vw - 320px) / 1180), 38px);
  text-align: center;
}
.form_head h3 .in {
  display: inline-block;
  border-bottom: solid 2px #333;
  padding-bottom: 0.5em;
}
.form_head h3 .in strong {
  font-size: 1.25em;
}
.form_head .form_head_column {
  font-size: min(calc(14px + 6 * (100vw - 320px) / 1180), 20px);
  text-align: center;
}

.form_head_row {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.form_head_row > .box {
  color: #fff;
  flex: calc((100% - (1px * 0)) / 1);
  padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px) 0;
  background-color: #333;
}
.form_head_row > .box h4 {
  text-align: center;
  margin-bottom: min(calc(10px + 20 * (100vw - 320px) / 1180), 30px);
}
.form_head_row > .box .telphone {
  font-size: 28px;
  justify-content: center;
}
.form_head_row > .box .subtxt {
  font-size: 0.88888em;
  text-align: center;
  margin-top: .5em;
}
.form_head_row > .box .line_qr {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background-color: #fff;
}
.form_head_row > .box .mailbox {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .form_head_row > .box {
    flex: calc((100% - (1px * 2)) / 3);
  }
  .form_head_row > .box h4 {
    font-size: min(calc(16px + 12 * (100vw - 768px) / 732), 28px);
  }
  .form_head_row > .box .telphone {
    font-size: min(calc(24px + 12 * (100vw - 768px) / 732), 36px);
    height: 90px;
  }
  .form_head_row > .box .subtxt {
    font-size: min(calc(12px + 4 * (100vw - 768px) / 732), 16px);
  }
  .form_head_row > .box .mailbox {
    display: grid;
    place-items: center;
    height: 90px;
  }
  .form_head_row > .box .mailbox .btn {
    font-size: min(calc(17px + 7 * (100vw - 768px) / 732), 24px);
    padding-top: 0.75em;
    padding-bottom: 0.25em;
    border-color: var(--primary);
    border-radius: 10px;
  }
  .form_head_row > .box .mailbox .btn i {
    font-size: 1.5em;
    line-height: 1;
    display: block;
    margin: 0 auto;
  }
}

#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 {
  --th-ww: 14em;
  line-height: 1.75;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th {
  width: var(--th-ww);
  background-color: #f0f0f0;
  position: relative;
}
.table-contact > tbody > tr > th.hisu {
  background-image: url("../images/common/hisu.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.table-contact > tbody > tr > th .hisu {
  position: absolute;
  right: 1em;
  top: 50%;
  color: var(--danger);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: normal;
  padding: 0.1em 0.5em 0.15em;
  border-radius: 3px;
  margin-top: -.6em;
  border: solid 1px var(--danger);
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 8em !important;
  display: inline;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
  }
  .table-contact > tbody > tr > th {
    padding: 0.5em 1em;
  }
}

.table-contact-2 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}
.table-contact-2 > tbody > tr > th, .table-contact-2 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-contact-2 > tbody > tr > th {
  color: #000;
  padding-left: 1em;
  width: 12em;
  border-bottom: solid 1px #EBBB20;
}
.table-contact-2 > tbody > tr > td {
  padding-left: 1em;
  border-bottom: 1px solid #D3CDBA;
}
@media only screen and (max-width: 767px) {
  .table-contact-2 > tbody > tr {
    width: 100%;
    display: block;
    padding: 0.5em;
    border-bottom: 1px solid #D3CDBA;
  }
  .table-contact-2 > tbody > tr > th, .table-contact-2 > tbody > tr > td {
    width: 100% !important;
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .table-contact-2 > tbody > tr > th {
    position: relative;
    padding-left: 1.25em;
  }
  .table-contact-2 > tbody > tr > th:before {
    content: "■";
    position: absolute;
    left: 0;
    transform: scale(0.75);
    color: #EBBB20;
  }
  .table-contact-2 > tbody > tr > td {
    margin-top: .5em;
  }
}

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

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

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

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

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

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

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

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

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

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

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