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

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

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

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
/* -------------------------------
	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: flex;
  align-items: center;
  justify-content: center;
}
.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: 1600px) {
  .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-arrow-1 {
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0 1em;
  position: relative;
}
.btn-arrow-1:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left bottom;
  background-color: currentColor;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.btn-arrow-1::after {
  content: "";
  width: 0.571428em;
  height: 0.571428em;
  display: block;
  background-image: url("../images/common/w-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.btn-arrow-1:hover {
  color: #fff;
}
.btn-arrow-1:hover:before {
  transform: scaleX(1);
  visibility: visible;
}

.btn-2 {
  color: #fff;
  font-weight: 500;
  border: none;
  min-width: 17.5em;
  padding: 1.125em 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10em;
  background: linear-gradient(to right, #819bb5 0%, #7d7f81 0%, #ebc891 0%, #3a3b3b 0%, #7a7a7a 0%, #5a5b5b 0%, #3a3b3b 0%, #7a7a7a 50%, #3a3b3b 100%);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, #819bb5 0%, #7d7f81 0%, #ebc891 0%, #3a3b3b 0%, #7a7a7a 0%, #7a7a7a 0%, #7a7a7a 0%, #3a3b3b 50%, #7a7a7a 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-2::after {
  content: "";
  width: 9px;
  height: 7px;
  display: block;
  margin-left: 0.5em;
  background: url("../images/common/w-arrow.png") no-repeat center center/contain;
  transition: transform 0.3s ease;
}
.btn-2:hover::before {
  opacity: 1;
}
.btn-2:hover::after {
  transform: translateX(0.5em);
}

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

/* -------------------------------
	無限ループ
-------------------------------- */
.text-loop {
  --s: 40s;
  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 var(--s) calc(var(--s) * -0.5) linear infinite;
}
.text-loop__item:nth-child(even) {
  animation: text_loop2 var(--s) linear infinite;
}

@keyframes text_loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------------
	上部　カテゴリー
-------------------------------- */
.cat_navi .catbtn {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  padding: 0.5em 1em;
  border-radius: 10px;
  background-color: #121212;
  position: relative;
}
.cat_navi .catbtn:after {
  content: "\f0c9";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  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 {
    padding: 20px;
    border-radius: 10px;
    background-color: #ebebeb;
  }
  .cat_navi_list > li {
    line-height: 1.5;
    padding: 2px;
  }
  .cat_navi_list > li:last-child {
    border-bottom: none;
  }
  .cat_navi_list > li > a {
    color: #0f0f11;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75em 3em 0.75em 1em;
    border-radius: 10px;
    display: block;
    position: relative;
    background-color: #D1D1D5;
  }
  .cat_navi_list > li > a::after {
    content: "";
    width: 9px;
    height: 7px;
    margin-top: -3px;
    background: url("../images/common/w-arrow-bk.svg") no-repeat center center/contain;
    position: absolute;
    right: 1.5em;
    top: 50%;
    transition: transform 0.3s ease;
  }
  .cat_navi_list > li > a:hover::after {
    transform: translateX(0.5em);
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background-color: #0f0f11;
  }
  .cat_navi_list > li.active > a::after {
    background: url("../images/common/w-arrow.svg") no-repeat center center/contain;
  }
}

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    --col:3;
    --gap:10px;
    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: #fff;
    font-weight: 500;
    text-decoration: none;
    border: none;
    padding: 0.75em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10em;
    background: linear-gradient(to right, #819bb5 0%, #7d7f81 0%, #ebc891 0%, #3a3b3b 0%, #7a7a7a 0%, #5a5b5b 0%, #3a3b3b 0%, #7a7a7a 50%, #3a3b3b 100%);
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .cat_navi_list > li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to right, #819bb5 0%, #7d7f81 0%, #ebc891 0%, #3a3b3b 0%, #7a7a7a 0%, #7a7a7a 0%, #7a7a7a 0%, #3a3b3b 50%, #7a7a7a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .cat_navi_list > li > a::after {
    content: "";
    width: 9px;
    height: 7px;
    display: block;
    margin-left: 0.5em;
    background: url("../images/common/w-arrow.png") no-repeat center center/contain;
    transition: transform 0.3s ease;
  }
  .cat_navi_list > li > a:hover::before {
    opacity: 1;
  }
  .cat_navi_list > li > a:hover::after {
    transform: translateX(0.5em);
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background: #0f0f11;
  }
  .cat_navi_list > li.active > a::before {
    display: none;
  }
  .cat_navi_list > li.active > a::after {
    transform: translateX(0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------
	ローディング
-------------------------------- */
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-color: #2d2d2e;
  z-index: 99999;
}
.complete #loading {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50vh);
  transition: all .5s ease;
}
.load_already #loading {
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
.second_opening #loading {
  display: none;
}
#loading .loading_inner {
  margin: auto 0;
  position: relative;
  z-index: 0;
}
#loading .loading_inner .logo {
  width: 18%;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 10;
  opacity: 0;
}
#loading .loading_inner .logo.is_show {
  animation: mvIntroShow 1s ease forwards;
}
#loading .loading_inner .logo.is_hide {
  animation: mvIntroHide 1s ease forwards;
}
#loading .loading_inner .text1 {
  color: #484949;
  font-size: 6vw;
  line-height: 1;
  text-align: center;
  width: 100%;
  opacity: 0;
}
#loading .loading_inner .text1.is_show {
  animation: mvIntroShow 1s ease forwards;
}
#loading .loading_inner .text1.is_hide {
  animation: mvIntroHide 1s ease forwards;
}

@keyframes wrapper_up {
  from {
    transform: translateY(50vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes mvIntroShow {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes mvIntroHide {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.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 {
  padding-bottom: 0.5em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.title-2 {
  padding-left: 1.5em;
  position: relative;
}
.title-2::before {
  content: "■";
  position: absolute;
  left: 0;
  transform: scale(0.65);
  opacity: 0.5;
}

.title-hh-1 {
  font-size: 1rem;
}
.title-hh-1 > .fs-en {
  font-size: min(calc(50px + 50 * (100vw - 375px) / 1225), 100px);
  line-height: 1.25;
  display: block;
}
.title-hh-1 > .fs-jp {
  font-weight: 400;
  font-size: 1rem;
  display: inline-block;
  padding-left: 2em;
  position: relative;
}
.title-hh-1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  margin-top: -.25em;
  background-color: currentColor;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: calc(var(--container-padding) / -2);
}
@media print, screen and (min-width: 768px) {
  :root {
    --container-padding: clamp(30px, 8.125vw, 130px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1600px) {
  :root {
    --edge: calc((1470px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  max-width: 1600px;
  padding-left: calc(var(--container-padding) / 2);
  padding-right: calc(var(--container-padding) / 2);
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#mainvisual .slide-media {
  height: calc(var(--app-h) * 0.6);
}
#mainvisual .slide-media img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual .slide-media {
    height: var(--app-h);
  }
}
#mainvisual .mainvisual_content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  #mainvisual .mainvisual_content {
    padding: 0;
  }
}
#mainvisual .mainvisual_content .fs-en {
  color: #fff;
  font-size: clamp(30px, 11.45834vw, 220px);
  line-height: 0.81818;
  margin-right: 0.272727em;
}
#mainvisual .mainvisual_content .fs-jp {
  font-size: clamp(16px, 1.4583334vw, 28px);
  line-height: 2;
  display: flex;
  align-items: flex-end;
}
#mainvisual .mainvisual_content .fs-jp::after {
  content: "";
  width: 1.875em;
  height: 1px;
  margin-bottom: 1em;
  margin-left: 0.57em;
  display: block;
  background-color: #fff;
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
}
.home_ttl_1 > .fs-en {
  font-size: min(calc(50px + 70 * (100vw - 375px) / 1225), 120px);
  line-height: 1.25;
  display: block;
}
.home_ttl_1 > .fs-jp {
  font-weight: 400;
  font-size: 1rem;
  display: inline-block;
  padding-left: 2em;
  position: relative;
}
.home_ttl_1 > .fs-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  margin-top: -.25em;
  background-color: currentColor;
}

/* ---  --- */
.home_about {
  background: url("../images/home/home_about_bg.jpg") no-repeat center center/cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_about > .bg {
  width: min(100vw, 500px);
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(36%);
  pointer-events: none;
}
.home_about > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 28s linear infinite;
}
@media print, screen and (min-width: 768px) {
  .home_about {
    min-height: 100vh;
    max-height: 768px;
    display: flex;
    flex-direction: column;
  }
  .home_about > .bg {
    width: auto;
    height: 100%;
  }
  .home_about .container-fluid-xl {
    margin: auto;
  }
}
@media print {
  .home_about {
    min-height: auto;
  }
}

.home_about_content h2 {
  font-weight: 500;
  font-size: min(calc(20px + 15 * (100vw - 375px) / 1225), 35px);
  text-align: center;
}
.home_about_content p {
  font-size: min(calc(14px + 10 * (100vw - 375px) / 1225), 24px);
  text-align: center;
  line-height: 1.75;
}
.home_about_content p.fs-en {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ---  --- */
.home_service {
  background-color: #2e2e2e;
}
.home_service h2 {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 992px) {
  .home_service {
    position: relative;
    z-index: 0;
  }
  .home_service > .bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .home_service > .bg .bg_img {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/home/home_service_bg.png") no-repeat center center/cover;
  }
  .home_service .home_service_content {
    padding-bottom: min(15%, 150px);
  }
}

.home_service_item {
  border: solid 1px #5a5a5a;
  border-radius: 20px;
  padding: min(calc(20px + 70 * (100vw - 375px) / 1225), 90px);
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: min(calc(20px + 70 * (100vw - 375px) / 1225), 90px);
  background: #343434 url("../images/home/home_service_bg.png") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.home_service_item:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 992px) {
  .home_service_item {
    grid-template-columns: 52.24964% 1fr;
  }
}
.home_service_item > .bg_txt {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  color: #2c2c2d;
  font-size: clamp(100px, 13.75vw, 220px);
  line-height: 0.81818;
  white-space: nowrap;
}
@media print, screen and (min-width: 992px) {
  .home_service_item > .bg_txt {
    top: 0;
    bottom: auto;
  }
}
.home_service_item .home_service_item_column {
  display: flex;
  flex-direction: column;
}
.home_service_item .home_service_item_column .inner {
  margin: auto 0;
}
.home_service_item .home_service_item_column .inner .num {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
.home_service_item .home_service_item_column .inner h3 {
  font-weight: 500;
  font-size: min(calc(20px + 16 * (100vw - 375px) / 1225), 36px);
  line-height: normal;
  margin-bottom: 0.6em;
}
.home_service_item .home_service_item_column .inner .column {
  font-size: 16px;
  line-height: 1.6;
}
.home_service_item .home_service_item_column .inner .more {
  margin-top: 20px;
}
.home_service_item .home_service_item_column .inner .more a {
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .home_service_item .home_service_item_column .inner .column {
    font-size: 18px;
  }
}

/* ---  --- */
.home_works {
  padding-bottom: min(calc(50px + 110 * (100vw - 375px) / 1225), 160px);
  background-color: #ebebeb;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_works::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0 0 min(calc(20px + 70 * (100vw - 375px) / 1225), 90px) min(calc(20px + 70 * (100vw - 375px) / 1225), 90px);
  background: url("../images/common/bg001.jpg");
}
.home_works .bg_txt {
  color: rgba(0, 0, 0, 0);
  font-size: 16.66667vw;
  line-height: 0.82828;
  white-space: nowrap;
  text-stroke: min(calc(1px + 2 * (100vw - 375px) / 1225), 3px) #262626;
  -webkit-text-stroke: min(calc(1px + 2 * (100vw - 375px) / 1225), 3px) #262626;
}
.home_works .home_works_column p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  margin-bottom: 0.5em;
}
.home_works .home_works_column p.fs-en {
  font-size: 14px;
}

.home_works_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #fff;
}
.home_works_nav > ul > li {
  border-bottom: solid 1px #fff;
}

.home_works_nav_figure {
  padding: min(calc(10px + 10 * (100vw - 375px) / 1225), 20px);
  display: grid;
  grid-template-columns: clamp(80px, 38.88888%, 280px) 1fr;
  gap: min(calc(20px + 50 * (100vw - 375px) / 1225), 70px);
  align-items: center;
  transition: background 0.5s ease;
}
.home_works_nav_figure .image {
  overflow: hidden;
}
.home_works_nav_figure .image img {
  transition: transform 0.5s ease;
}
.home_works_nav_figure figcaption {
  position: relative;
  z-index: 0;
}
.home_works_nav_figure figcaption::after {
  content: "";
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1225), 16px);
  width: 1em;
  height: 1em;
  margin-top: -.5em;
  background: url("../images/common/w-arrow.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: transform 0.5s ease;
}
.home_works_nav_figure figcaption p {
  font-weight: 500;
  font-size: min(calc(16px + 16 * (100vw - 375px) / 1225), 32px);
  line-height: 1.75;
}
.home_works_nav_figure figcaption p small {
  font-size: min(calc(14px + 2 * (100vw - 375px) / 1225), 16px);
  line-height: normal;
  display: block;
}
.home_works_nav_figure:hover {
  background-color: #222223;
}
.home_works_nav_figure:hover .image img {
  transform: scale(1.15);
}
.home_works_nav_figure:hover figcaption::after {
  transform: translateX(10px);
}

.home_works_content {
  border-radius: 16px;
  background: url("../images/home/home_works_contact_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.home_works_content .home_works_content_image img {
  border-radius: 16px;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .home_works_content .home_works_content_image {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 47%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, black 0%, black 47%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .home_works_content .home_works_content_image {
    position: absolute;
    left: 0;
    top: 0;
    width: 64%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
  .home_works_content .home_works_content_image img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.home_works_content .column {
  padding: 0px 15px 30px;
}
.home_works_content .column h3 {
  font-weight: 500;
  font-size: min(calc(22px + 18 * (100vw - 375px) / 1225), 40px);
  line-height: 1.5;
}
.home_works_content .column p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
}
@media print, screen and (min-width: 992px) {
  .home_works_content .column {
    padding: min(calc(40px + 40 * (100vw - 992px) / 608), 80px);
  }
  .home_works_content .column p {
    font-size: min(calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

/* ---  --- */
.home_recruit {
  color: #0f0f11;
  background-color: #ebebeb;
}
.home_recruit h2 {
  color: #0f0f11;
}

.home_recruit_content {
  position: relative;
  z-index: 0;
}
.home_recruit_content .slider_inner {
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: min(calc(20px + 45 * (100vw - 375px) / 1225), 65px) 0;
}

.home_recruit_column {
  border-radius: 20px;
  border: solid 1px #5a5a5a;
  padding: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px) min(calc(15px + 35 * (100vw - 375px) / 1225), 50px);
  display: flex;
  flex-direction: column;
  max-width: 721px;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.8);
}
@media print, screen and (min-width: 768px) {
  .home_recruit_column {
    width: 64%;
  }
}
@media print, screen and (min-width: 1200px) {
  .home_recruit_column {
    min-height: 768px;
  }
}
.home_recruit_column .inner {
  margin: auto 0;
}
.home_recruit_column .inner p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
}
.home_recruit_column .inner p.fs-en {
  font-size: 14px;
  line-height: 1.75;
}

.js-loop-slider {
  height: 100%;
}
.js-loop-slider .splide__track, .js-loop-slider .splide__list, .js-loop-slider .splide__slide {
  height: 100%;
}
.js-loop-slider .photo {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}

/* ---  --- */
.page_contact {
  padding-top: min(calc(50px + 40 * (100vw - 375px) / 1225), 90px);
  padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1225), 120px);
  background: url("../images/home/page_contact_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}

.page_contact_inner .text1 {
  font-size: min(calc(16px + 2 * (100vw - 375px) / 1225), 18px);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 2em;
}
.page_contact_inner .page_contact_tel, .page_contact_inner .page_contact_btn {
  text-align: center;
  width: 100%;
  max-width: 418px;
  height: 100%;
  padding: clamp(20px, calc(37px * (var(--ww-item) / 418)), 37px) 0;
  margin: 0 auto;
  border-radius: 12px;
  border: solid 1px #5a5a5a;
  display: grid;
  place-items: center;
  background-color: rgba(51, 51, 52, 0.8);
}
.page_contact_inner .page_contact_tel .telphone, .page_contact_inner .page_contact_btn .telphone {
  font-size: clamp(20px, calc(40px * (var(--ww-item) / 418)), 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_contact_inner .page_contact_tel .telphone small, .page_contact_inner .page_contact_btn .telphone small {
  font-size: 0.5em;
  margin-right: 0.5em;
}
.page_contact_inner .page_contact_tel .subtxt, .page_contact_inner .page_contact_btn .subtxt {
  font-size: 14px;
  margin-top: 0.5em;
}
.page_contact_inner .page_contact_btn {
  font-weight: 500;
  font-size: clamp(14px, calc(18px * (var(--ww-item) / 418)), 18px);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.page_contact_inner .page_contact_btn::after {
  content: "";
  width: 9px;
  height: 7px;
  display: block;
  margin-left: 0.5em;
  background: url("../images/common/w-arrow.png") no-repeat center center/contain;
  transition: transform 0.3s ease;
}
.page_contact_inner .page_contact_btn:hover {
  background-color: rgba(21, 21, 22, 0.8);
}
.page_contact_inner .page_contact_btn:hover::after {
  transform: translateX(0.5em);
}

.page_contact_list {
  --col:1;
  --gap:13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  list-style: none;
  padding: 0 min(calc(15px + 80 * (100vw - 375px) / 1225), 95px);
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .page_contact_list {
    --col:3;
  }
}
.page_contact_list > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}

/* -------------------------------
	事業内容
-------------------------------- */
.service_content {
  overflow: hidden;
  position: relative;
}
.service_content > .bg_txt {
  font-size: clamp(60px, 11.45834vw, 220px);
  line-height: 0.82828;
  position: absolute;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  opacity: 0.2;
}
@media print, screen and (min-width: 992px) {
  .service_content:nth-child(odd) > .bg_txt {
    top: 0;
    bottom: auto;
  }
  .service_content:nth-child(odd) .service_content_column {
    padding-left: min(calc(25px + 100 * (100vw - 992px) / 608), 125px);
  }
}
.service_content:nth-child(even) {
  background: url("../images/common/bg002.jpg");
}
@media print, screen and (min-width: 992px) {
  .service_content:nth-child(even) > .bg_txt {
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
  }
  .service_content:nth-child(even) .row > div:first-child {
    order: 13;
  }
  .service_content:nth-child(even) .service_content_column {
    padding-right: min(calc(25px + 100 * (100vw - 992px) / 608), 125px);
  }
}

.service_content_image, .service_content_column {
  max-width: 720px;
  margin: 0 auto;
}
@media print, screen and (min-width: 992px) {
  .service_content_image, .service_content_column {
    max-width: 100%;
    margin: 0;
  }
}

.service_content_column h3 {
  font-size: min(calc(22px + 16 * (100vw - 375px) / 1225), 38px);
}
.service_content_column h3 > .fs-en {
  font-size: 2.63157em;
  line-height: 1;
  display: block;
}
.service_content_column .column {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  margin: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px) 0;
}

/**/
.service_content_rei {
  padding: clamp(25px, 3.75vw, 60px) min(calc(15px + 115 * (100vw - 375px) / 1225), 125px);
  border: solid 1px #5a5a5a;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.15);
}
.service_content_rei h4 {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_content_rei h4::before, .service_content_rei h4::after {
  content: "";
  flex: 0 0 2em;
  height: 1px;
  background: #fff;
  display: block;
}
.service_content_rei h4::before {
  margin-right: .5em;
}
.service_content_rei h4::after {
  margin-left: .5em;
}

.service_content_rei_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .service_content_rei_list > li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
    padding: 0 15px 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
  .service_content_rei_list > li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .service_content_rei_list {
    display: flex;
    justify-content: center;
  }
  .service_content_rei_list > li {
    flex: 0 0 25%;
    border-right: solid 1px rgba(255, 255, 255, 0.2);
  }
  .service_content_rei_list > li:last-child {
    border-right: none;
  }
  .service_content_rei_list > li .icon {
    max-width: 189px;
    width: 64%;
    aspect-ratio: 46 / 33;
    margin: 0 auto;
  }
  .service_content_rei_list > li .icon img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }
  .service_content_rei_list > li .text {
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
  }
}

/* -------------------------------
	施工実績
-------------------------------- */
/* ---  --- */
.works_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}
@media print, screen and (min-width: 768px) {
  .works_list {
    gap: 50px 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .works_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works_list_item_figure {
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  border: solid 1px #5a5a5a;
  background-color: #343434;
}
.works_list_item_figure .image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.works_list_item_figure .image img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works_list_item_figure figcaption {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  padding: 10px;
}
.works_list_item_figure figcaption .ttl {
  font-weight: 500;
  font-size: min(calc(13px + 5 * (100vw - 375px) / 1225), 18px);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.works_list_item_figure figcaption .more {
  font-size: min(calc(11px + 4 * (100vw - 375px) / 1225), 15px);
  text-align-last: right;
  margin-top: auto;
  padding-top: 1em;
  display: none;
}
.works_list_item_figure figcaption .more .in {
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0 1em;
  position: relative;
}
.works_list_item_figure figcaption .more .in::after {
  content: "";
  width: 0.571428em;
  height: 0.571428em;
  display: block;
  background-image: url("../images/common/w-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
a > .works_list_item_figure .image img {
  transition: transform 0.7s ease;
}
a > .works_list_item_figure figcaption .more {
  display: block;
}
a > .works_list_item_figure figcaption .more .in::after {
  transition: transform 0.3s ease;
}
a > .works_list_item_figure:hover .image img {
  transform: scale(1.15);
}
a > .works_list_item_figure:hover figcaption .more .in::after {
  transform: translateX(5px);
}

/* ---  --- */
.works_detail_dl {
  font-size: min(calc(13px + 5 * (100vw - 375px) / 1225), 18px);
  line-height: 1.75;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
}
.works_detail_dl > dt, .works_detail_dl > dd {
  padding: 0.5em 0.75em;
  margin: 0;
  border-bottom: solid 1px #ccc;
}
.works_detail_dl > dt {
  color: #AAAAAA;
}

/* ---  --- */
.works_before_bfter {
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px) min(calc(15px + 110 * (100vw - 375px) / 1225), 125px);
  border-radius: min(calc(10px + 40 * (100vw - 375px) / 1225), 50px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  border: solid 1px #5a5a5a;
  background-color: #343434;
}
.works_before_bfter .box .ttl {
  font-size: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
  line-height: normal;
  text-align: center;
  margin-bottom: 5px;
}
.works_before_bfter .box .photo-ofi {
  overflow: hidden;
  border-radius: min(calc(5px + 25 * (100vw - 375px) / 1225), 30px);
  background-color: #111;
  position: relative;
}
.works_before_bfter .box .photo-ofi img {
  padding: 1px;
  border-radius: min(calc(5px + 25 * (100vw - 375px) / 1225), 30px);
}
.works_before_bfter > .before {
  flex: 0 0 50%;
}
.works_before_bfter > .after {
  flex: 0 0 64%;
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .works_before_bfter > .before {
    flex: 0 0 calc(50% - 30px);
  }
  .works_before_bfter > .after {
    flex: 0 0 calc(50% - 30px);
    margin-left: auto;
  }
}

/* ---  --- */
.works_detail_slider {
  position: relative;
  z-index: 0;
}
.works_detail_slider::before {
  content: "";
  background: url("../images/common/bg001.jpg");
  position: absolute;
  inset: 0px var(--edge) 0px var(--edge);
  z-index: -1;
  pointer-events: none;
}
.works_detail_slider .splide {
  z-index: 0;
}

.clinic-main-splide {
  width: 70%;
  margin: 0 auto;
  overflow: visible;
}
@media print, screen and (min-width: 768px) {
  .clinic-main-splide {
    width: 50%;
  }
}
.clinic-main-splide .splide__track {
  overflow: visible;
}
.clinic-main-splide .splide__slide .slide {
  transform: scale(0.8);
  transform-origin: center center;
  opacity: 0.5;
  transition: opacity 0.1s ease, transform 0.3s ease;
}
.clinic-main-splide .splide__slide .slide .slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.clinic-main-splide .splide__slide .slide .slide-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.clinic-main-splide .splide__slide .slide .slide-txt {
  font-weight: 500;
  font-size: min(calc(13px + 5 * (100vw - 320px) / 1280), 18px);
  text-align: center;
  padding-top: 10px;
}
.clinic-main-splide .splide__slide.is-prev .slide, .clinic-main-splide .splide__slide.is-next .slide {
  opacity: 0.5;
}
.clinic-main-splide .splide__slide.is-active .slide {
  transform: scale(1);
  opacity: 1;
}
.clinic-main-splide .splide__arrow--prev, .clinic-main-splide .splide__arrow--next {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .clinic-main-splide .splide__arrow--prev, .clinic-main-splide .splide__arrow--next {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
    display: block;
  }
}
.clinic-main-splide .splide__arrow--prev {
  left: -2em;
}
.clinic-main-splide .splide__arrow--next {
  right: -2em;
}

.clinic-thumbs-splide-inner {
  margin-top: 20px;
}

.clinic-thumbs-splide .splide__slide {
  cursor: pointer;
  background-color: #000;
}
.clinic-thumbs-splide .splide__slide .slide {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.clinic-thumbs-splide .splide__slide .slide img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.clinic-thumbs-splide .splide__slide.is-active {
  cursor: default;
}
.clinic-thumbs-splide .splide__slide.is-active img {
  opacity: 0.5;
}
.clinic-thumbs-splide .splide__arrow--prev, .clinic-thumbs-splide .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 30px;
  height: 100%;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #000;
  position: absolute;
  top: 0;
  z-index: 20;
}
.clinic-thumbs-splide .splide__arrow--prev svg, .clinic-thumbs-splide .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.clinic-thumbs-splide .splide__arrow--prev:hover, .clinic-thumbs-splide .splide__arrow--next:hover {
  outline: none;
}
.clinic-thumbs-splide .splide__arrow--prev {
  left: -30px;
}
.clinic-thumbs-splide .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.clinic-thumbs-splide .splide__arrow--next {
  right: -30px;
}
.clinic-thumbs-splide .splide__arrow:disabled {
  pointer-events: none;
}
.clinic-thumbs-splide .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* -------------------------------
	採用情報
-------------------------------- */
/* ---  --- */
.recruit_head {
  background: url("../images/common/bg001.jpg");
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .recruit_head_image {
    margin-left: var(--edge);
    margin-right: min(calc(30px + 65 * (100vw - 992px) / 608), 95px);
  }
}

.recruit_head_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.recruit_head_content .inner {
  margin: auto 0;
}
.recruit_head_content .inner h3 {
  font-weight: 500;
  font-size: min(calc(22px + 26 * (100vw - 375px) / 1225), 48px);
}
.recruit_head_content .inner p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
}
@media print, screen and (min-width: 992px) {
  .recruit_head_content .inner h3 {
    font-size: min(calc(28px + 20 * (100vw - 992px) / 608), 48px);
  }
  .recruit_head_content .inner p {
    font-size: min(calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

.recruit_head_charm {
  border-radius: min(calc(10px + 20 * (100vw - 375px) / 1225), 30px);
  padding: min(calc(20px + 40 * (100vw - 375px) / 1225), 60px);
  background-color: #222;
  background: url("../images/recruit/recruit_head_bg.jpg") no-repeat center center/cover;
}
.recruit_head_charm h4 {
  font-size: min(calc(22px + 13 * (100vw - 375px) / 1225), 35px);
  text-align: center;
}

.recruit_head_charm_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit_head_charm_list > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #4c4c4c;
}
.recruit_head_charm_list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
@media print, screen and (min-width: 992px) {
  .recruit_head_charm_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .recruit_head_charm_list > li {
    margin: 0;
    padding: 0 20px;
    border-bottom: none;
    border-right: solid 1px #4c4c4c;
  }
}

@media screen and (max-width: 991px) {
  .recruit_head_charm_item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
  }
  .recruit_head_charm_item .column h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0.5rem;
  }
  .recruit_head_charm_item .column p {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media print, screen and (min-width: 992px) {
  .recruit_head_charm_item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
  }
  .recruit_head_charm_item .icon img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .recruit_head_charm_item .column {
    max-width: 260px;
    margin: 0 auto;
  }
  .recruit_head_charm_item .column h5 {
    font-weight: 500;
    font-size: min(calc(18px + 6 * (100vw - 992px) / 608), 24px);
    line-height: normal;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .recruit_head_charm_item .column p {
    font-size: min(calc(14px + 2 * (100vw - 992px) / 608), 16px);
    line-height: 1.75;
  }
}
/* ---  --- */
.recruit_benefits_subtxt {
  font-weight: 500;
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
  text-align: center;
}

.recruit_benefits_row {
  display: grid;
  gap: 10px;
}
@media print, screen and (min-width: 992px) {
  .recruit_benefits_row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.recruit_benefits_item {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  border: solid 1px #5a5a5a;
  background-color: #343434;
}
.recruit_benefits_item h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5em;
  flex: 0 0 100%;
}
.recruit_benefits_item .icon {
  flex: 0 0 70px;
  height: 70px;
}
.recruit_benefits_item .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recruit_benefits_item .column {
  font-size: 15px;
  line-height: 1.75;
  flex: 1 1 0;
  padding-left: 20px;
}
@media print, screen and (min-width: 992px) {
  .recruit_benefits_item {
    max-width: 100%;
    height: 100%;
    display: block;
    padding: 30px 0;
  }
  .recruit_benefits_item h4 {
    font-size: min(calc(20px + 6 * (100vw - 992px) / 608), 26px);
    text-align: center;
  }
  .recruit_benefits_item .icon {
    width: 100%;
    height: min(calc(60px + 20 * (100vw - 992px) / 608), 80px);
    margin: min(calc(16px + 14 * (100vw - 992px) / 608), 30px) 0;
  }
  .recruit_benefits_item .column {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 608), 16px);
    text-align: center;
  }
}

/* ---  --- */
.recruit_hob_description {
  color: #0f0f11;
  background-color: #ebebeb;
  overflow: hidden;
}

/* */
@media screen and (max-width: 991px) {
  .flow_content {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .flow_content_item {
    color: #fff;
    background-color: #2d2d2e;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: grid;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .flow_content_item::after {
    content: "\F128";
    color: #0f0f11;
    font-family: "bootstrap-icons";
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-left: -15px;
  }
  .flow_content_item:last-child {
    margin-bottom: 0;
  }
  .flow_content_item:last-child::after {
    display: none;
  }
  .flow_content_item .columns {
    text-align: center;
  }
  .flow_content_item .columns .step {
    color: #0f0f11;
    font-weight: 500;
    font-size: 12px;
    padding: 0 1em;
    border-radius: 1em;
    display: inline-block;
    background-color: #ebebeb;
  }
  .flow_content_item .columns .ttl {
    font-weight: 700;
    font-size: 18px;
    margin: 0.5em 0;
  }
  .flow_content_item .columns .column {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 992px) {
  .flow_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .flow_content_item {
    color: #fff;
    padding: min(calc(15px + 15 * (100vw - 992px) / 507), 30px);
    border-radius: 10px;
    background-color: #2d2d2e;
    position: relative;
  }
  .flow_content_item::after {
    content: "\F138";
    color: #0f0f11;
    font-family: "bootstrap-icons";
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-top: -15px;
  }
  .flow_content_item:last-child::after {
    display: none;
  }
  .flow_content_item .columns {
    text-align: center;
  }
  .flow_content_item .columns .step {
    color: #0f0f11;
    font-weight: 500;
    font-size: 12px;
    padding: 0 1em;
    border-radius: 1em;
    display: inline-block;
    background-color: #ebebeb;
  }
  .flow_content_item .columns .ttl {
    font-weight: 700;
    font-size: min(calc(18px + 8 * (100vw - 992px) / 608), 26px);
    line-height: 1.5;
    min-height: 3em;
    margin: 0.5em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .flow_content_item .columns .column {
    font-size: min(calc(12px + 4 * (100vw - 992px) / 608), 16px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 991px) {
  .js-row-flow > * {
    --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-flow > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
@media screen and (min-width: 992px) {
  .js-row-flow > * {
    --translate-x: -30%;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateX(var(--translate-x));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-flow > *.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }
}
/* -------------------------------
	代表挨拶
-------------------------------- */
/* ---  --- */
.company_greeting .message_name {
  line-height: normal;
  text-align: right;
  margin-top: 2rem;
}
.company_greeting .message_name strong {
  font-size: 1.2em;
}

.company_greeting_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company_greeting_content .inner {
  margin: auto 0;
}
@media print, screen and (min-width: 992px) {
  .company_greeting_content {
    padding-left: min(calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

/* ---  --- */
.company_group {
  background: url("../images/common/bg001.jpg");
}

.company_group_1 {
  background: url("../images/common/bg001.jpg");
}

.company_group_2 {
  background: url("../images/common/bg002.jpg");
}

.company_group_link {
  border-radius: 16px;
  background: url("../images/home/home_works_contact_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.company_group_link .company_group_link_image img {
  border-radius: 16px;
  opacity: 0.8;
}
@media screen and (max-width: 991px) {
  .company_group_link .company_group_link_image {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 47%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, black 0%, black 47%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
}
@media print, screen and (min-width: 992px) {
  .company_group_link .company_group_link_image {
    position: absolute;
    left: 0;
    top: 0;
    width: 64%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-position: 50% 50%;
    mask-size: 100% 100%;
  }
  .company_group_link .company_group_link_image img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.company_group_link .column {
  padding: 0px 15px 30px;
}
.company_group_link .column .logo {
  width: 200px;
}
.company_group_link .column h3 {
  font-weight: 500;
  font-size: min(calc(22px + 18 * (100vw - 375px) / 1225), 40px);
  line-height: 1.5;
}
.company_group_link .column h3 small {
  font-weight: 400;
  font-size: 0.65em;
}
.company_group_link .column p {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1225), 24px);
}
@media print, screen and (min-width: 992px) {
  .company_group_link .column {
    padding: min(calc(40px + 40 * (100vw - 992px) / 608), 80px);
  }
  .company_group_link .column p {
    font-size: min(calc(16px + 8 * (100vw - 992px) / 608), 24px);
  }
}

/**/
.company_group_access_item {
  border: solid 1px #5a5a5a;
  border-radius: 20px;
  padding: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: min(calc(20px + 30 * (100vw - 375px) / 1225), 50px);
  background-color: #343434;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.company_group_access_item:last-child {
  margin-bottom: 0;
}
.company_group_access_item .company_group_access_column {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.company_group_access_item .company_group_access_column .inner {
  margin: auto 0;
}
.company_group_access_item .company_group_access_column .inner h3 {
  padding-left: 1.2em;
  position: relative;
}
.company_group_access_item .company_group_access_column .inner h3::before {
  content: "■";
  position: absolute;
  left: 0;
  opacity: 0.65;
  transform: scale(0.5);
}
.company_group_access_item .company_group_access_map .googlemap {
  border-radius: 10px;
}
@media print, screen and (min-width: 992px) {
  .company_group_access_item {
    grid-template-columns: 1fr 64%;
  }
  .company_group_access_item .company_group_access_map .googlemap {
    padding-top: 0;
    height: 100%;
    aspect-ratio: 16 / 9;
  }
}

.company_group_rental {
  background: url("../images/common/bg002.jpg");
}

/* --- --- */
.company_access {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .company_access .googlemap {
    margin-left: var(--edge);
    padding-top: 0;
    height: 100%;
  }
}

.company_access_content h4 {
  padding-left: 1.2em;
  position: relative;
}
.company_access_content h4::before {
  content: "■";
  position: absolute;
  left: 0;
  opacity: 0.65;
  transform: scale(0.5);
}
.company_access_content .text1 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
}
.company_access_content .column {
  border-left: solid 1px #6d6d6d;
  padding-left: 20px;
}
.company_access_content .column + .column {
  margin-top: 20px;
}
.company_access_content .column .ttl {
  font-weight: 700;
}
.company_access_content .column > ul {
  font-size: 15px;
  list-style: none;
  padding: 0;
}
.company_access_content .column > ul > li {
  font-weight: 500;
}
.company_access_content .column > ul > li > ul {
  list-style: none;
  padding: 0;
}
.company_access_content .column > ul > li > ul > li {
  padding-left: 1.2em;
  position: relative;
}
.company_access_content .column > ul > li > ul > li::before {
  content: "├";
  position: absolute;
  left: 0;
}
.company_access_content .column > ul > li > ul > li:last-child::before {
  content: "└";
}
@media print, screen and (min-width: 992px) {
  .company_access_content {
    padding: min(calc(25px + 25 * (100vw - 992px) / 608), 50px) 0;
    padding-left: min(calc(30px + 95 * (100vw - 992px) / 608), 125px);
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  background: url("../images/common/bg001.jpg");
}

.tel_contact_col {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: min(calc(20px + 17 * (100vw - 375px) / 1225), 37px) 0;
  margin: 0 auto;
  border-radius: 12px;
  border: solid 1px #5a5a5a;
  display: grid;
  place-items: center;
  background-color: rgba(51, 51, 52, 0.8);
}
.tel_contact_col .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1225), 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_contact_col .telphone small {
  font-size: 0.5em;
  margin-right: 0.5em;
}
.tel_contact_col .subtxt {
  font-size: 14px;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_col .telphone {
    font-size: min(calc(30px + 20 * (100vw - 768px) / 832), 50px);
  }
}

#contactform {
  /**/
}
#contactform .form-control {
  color: #181818;
  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 {
  color: #181818;
  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;
  border-radius: 10em;
  background-color: var(--danger);
  margin-top: -.75em;
  position: absolute;
  right: 0;
  top: 50%;
}
.table-contact > tbody > tr > td {
  padding-left: 2em;
}
.table-contact > tbody > tr > td .sm {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .p-postal-code {
  width: 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.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .table-contact > tbody > tr > th + td, .table-contact > tbody > tr > td + td {
    margin-top: .5em;
  }
}

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

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

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

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

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