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

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #C9C4BE;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #C9C4BE;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-design-1 > tbody > tr > th {
  font-weight: 500;
  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 #C9C4BE;
  border-left: 1px solid #C9C4BE;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #C9C4BE;
  border-bottom: 1px solid #C9C4BE;
}
.table-design-2 > tbody > tr > th {
  background: #F3EFEA;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

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

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-num-1 {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.list-num-1 > li {
  padding-left: 2em;
  margin-bottom: 0.75em;
  position: relative;
}
.list-num-1 > li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  counter-increment: number;
  content: counter(number) " .";
}
.list-num-1 > li:last-child {
  margin-bottom: 0;
}

.list-style-1 {
  list-style: none;
  padding: 0;
}
.list-style-1 > li {
  padding-left: 1.25em;
  position: relative;
}
.list-style-1 > li::before {
  content: "-";
  position: absolute;
  left: 0.2em;
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  height: 0;
  border-top: dotted 1px #ccc;
}

/* -------------------------------
	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 {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.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: 3em;
}
.btn-icon-l i {
  left: 1.2em;
}

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

.btn-1 {
  text-align: left;
  padding-right: 3em;
  position: relative;
}
.btn-1 > i {
  position: absolute;
  right: 1em;
  top: 50%;
  line-height: 1;
  margin-top: -.5em;
}
.btn-1:hover > i {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

.btn-w-250 {
  min-width: 250px;
}

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

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

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

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 500;
  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;
}

/* -------------------------------
	youtube
-------------------------------- */
.youtube {
  position: relative;
  padding-bottom: 56.3%;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

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

/* */
.bg_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* -------------------------------
	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) / 1125), 50px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  color: #3a3532;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
}
.title-1::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #e6bcc8;
  transform: scale(0.727273);
}

.title-2 {
  color: #3a3532;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.title-2::before {
  content: "";
  width: 1.25em;
  height: 1px;
  margin: 0 auto 1em;
  display: block;
  background-color: #e6bcc8;
}

.title-3 {
  color: #3a3532;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 0.75em;
  border-bottom: solid 1px #4a4a4a;
}

.ttl-fs-1 {
  font-size: min(calc(23px + 15 * (100vw - 375px) / 1125), 38px);
}

.title-hh-1 {
  color: #3a3532;
  font-size: 1rem;
  text-align: center;
}
.title-hh-1 > .fs-en {
  color: #5e5558;
  font-size: 20px;
  line-height: 1.2;
  display: block;
}
.title-hh-1 > .fs-jp {
  color: #3a3532;
  font-weight: 500;
  font-size: min(calc(23px + 15 * (100vw - 375px) / 1125), 38px);
  display: block;
}

/* -------------------------------
	bootstrap
-------------------------------- */
:root {
  --container-padding: 30px;
  --edge: calc(var(--container-padding) / -2);
}
@media print, screen and (min-width: 768px) {
  :root {
    --container-padding: clamp(30px, 13.0666666667vw, 196px);
    --edge: calc(var(--container-padding) / -2);
  }
}
@media print, screen and (min-width: 1500px) {
  :root {
    --edge: calc((1304px - 100vw) / 2);
  }
}

.container-fluid-xl {
  width: 100%;
  max-width: 1500px;
  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 {
  position: relative;
  z-index: 0;
}

.mainvisual_content {
  position: absolute;
  inset: 0;
}
.mainvisual_content img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 10% 15%;
}

/*
 * -- メイン用フェードビジュアル
 *
 */
.splide01 {
  overflow: hidden;
}
.splide01 .slide-media {
  height: calc(var(--app-h) * 0.6);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  .splide01 .slide-media {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  .splide01 .slide-media {
    height: var(--app-h);
  }
}
.splide01 .slide-media img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	home
-------------------------------- */
.home_ttl_1 {
  font-size: 1rem;
  text-align: center;
}
.home_ttl_1 > .fs-en {
  color: #5e5558;
  font-size: 20px;
  line-height: 1.2;
  display: block;
}
.home_ttl_1 > .fs-jp {
  color: #3a3532;
  font-weight: 500;
  font-size: min(calc(23px + 15 * (100vw - 375px) / 1125), 38px);
  display: block;
}

/* ---  --- */
.home_about {
  padding: clamp(50px, 10vw, 200px) 0 0;
  background: url("../images/home/home_bg_1.png") no-repeat center top/auto min(100%, 1406px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .home_about {
    background: url("../images/home/home_bg_1.png") no-repeat center top/100% auto;
  }
}
.home_about h2 {
  color: #3a3532;
  font-size: min(calc(20px + 20 * (100vw - 375px) / 1125), 40px);
  line-height: 1.75;
  margin-top: 1em;
}

@media print, screen and (min-width: 992px) {
  .home_about_top_content {
    padding-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
}

@media print, screen and (min-width: 992px) {
  .home_about_btm_content {
    padding-right: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
}

.home_about_img_1 {
  margin-left: var(--edge);
  border-radius: 0 min(2vw, 30px) min(2vw, 30px) 0;
  overflow: hidden;
}

.home_about_img_2 {
  margin-right: var(--edge);
  border-radius: min(2vw, 30px) 0 0 min(2vw, 30px);
  overflow: hidden;
}

.home_about_column .title {
  color: #3a3532;
  font-weight: 500;
  font-size: min(calc(18px + 10 * (100vw - 375px) / 1125), 28px);
  line-height: 1.75;
}

/**/
.home_about_row_1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.home_about_row_1 > .home_about_column {
  flex: 0 0 100%;
}
.home_about_row_1 > .home_about_photo {
  flex: 0 0 64%;
  border-radius: 10px;
  margin-left: auto;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .home_about_row_1 {
    align-items: center;
  }
  .home_about_row_1 > .home_about_column {
    flex: 0 0 min(50%, 22.711875rem);
  }
  .home_about_row_1 > .home_about_photo {
    flex: 0 0 42.9454%;
    margin-left: auto;
    margin-right: 0;
  }
}

/**/
.home_about_row_2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.home_about_row_2 > .home_about_column {
  flex: 0 0 100%;
}
.home_about_row_2 > .home_about_column .btn-1 {
  width: 255px;
}
.home_about_row_2 > .home_about_photo {
  flex: 0 0 64%;
  border-radius: 10px;
  margin-right: auto;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .home_about_row_2 {
    align-items: flex-start;
  }
  .home_about_row_2 > .home_about_column {
    flex: 0 0 min(50%, 22.711875rem);
    padding-top: min(calc(0px + 100 * (100vw - 992px) / 508), 100px);
  }
  .home_about_row_2 > .home_about_photo {
    flex: 0 0 42.9454%;
    margin-left: 0;
    margin-right: auto;
  }
}

/* ---  --- */
.home_brand {
  padding: clamp(50px, 10vw, 200px) 0;
  background: url("../images/home/home_brand_bg.jpg") no-repeat center top/auto min(100%, 1274px);
}
@media print, screen and (min-width: 768px) {
  .home_brand {
    background: url("../images/home/home_brand_bg.jpg") no-repeat center top/cover;
  }
}

.home_brand_img {
  text-align: center;
}
.home_brand_img img {
  border-radius: 20px;
  border: solid 1px #c9c9c9;
}
.home_brand_img a img {
  transition: box-shadow 0.3s ease;
}
.home_brand_img a:hover img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.home_brand_content {
  max-width: 370px;
}
.home_brand_content h3 {
  font-weight: 500;
  font-size: min(calc(20px + 8 * (100vw - 375px) / 1125), 88px);
  line-height: 1.75;
  text-align: center;
}
.home_brand_content h3 small {
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.home_brand_content .btn_box {
  text-align: center;
  margin-top: 1.5rem;
}
.home_brand_content .btn_box .btn {
  width: 255px;
}
@media print, screen and (min-width: 768px) {
  .home_brand_content h3 {
    text-align: left;
  }
  .home_brand_content .btn_box {
    text-align: left;
  }
}
@media print, screen and (min-width: 992px) {
  .home_brand_content {
    margin-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
}

/* ---  --- */
.home_work {
  padding-bottom: clamp(50px, 10vw, 200px);
}

.home_work_splide {
  overflow: hidden;
}

.home_work_splide .splide__slide {
  position: relative;
  width: 48vw;
}
@media print, screen and (min-width: 768px) {
  .home_work_splide .splide__slide {
    width: min(24.4vw, 492px);
  }
}

.home_work_control {
  color: #6a523a;
  font-size: 14px;
  max-width: 1142px;
  padding: 0 15px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.home_work_control .home_work_pager {
  text-align: center;
}
.home_work_control .home_work_pager .home_work_text {
  margin-right: 1em;
}
.home_work_control .home_work_pager .home_work_count {
  font-weight: 500;
}
.home_work_control .home_work_pager button {
  color: #6a523a;
  width: 2.25em;
  height: 2.25em;
  border: solid 1px #6a523a;
  outline: none;
  border-radius: 50%;
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.home_work_control .home_work_pager button:hover {
  color: #fff;
  background-color: #6a523a;
}
.home_work_control .home_work_btn {
  text-align: center;
  margin-top: 15px;
}
.home_work_control .home_work_btn .btn {
  width: 255px;
}
@media print, screen and (min-width: 768px) {
  .home_work_control {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 992px) {
  .home_work_control {
    display: flex;
    align-items: center;
  }
  .home_work_control .home_work_btn {
    margin-left: auto;
  }
}

/**/
.home_work_figure {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_work_figure .photo-ofi {
  aspect-ratio: 1/1;
}
.home_work_figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.home_work_figure:hover figcaption {
  transform: translateY(0%);
}

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

.home_news_nav {
  margin-bottom: 15px;
}
.home_news_nav > .ttl {
  color: #3a3532;
  margin-bottom: 15px;
}
.home_news_nav > .nav-tabs {
  color: #3a3532;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-left: 10%;
}
.home_news_nav > .nav-tabs > li::after {
  content: "|";
  margin: 0 1em;
}
.home_news_nav > .nav-tabs > li:last-child::after {
  display: none;
}
.home_news_nav > .nav-tabs > li > a {
  line-height: 2;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.home_news_nav > .nav-tabs > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #3a3532;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.home_news_nav > .nav-tabs > li > a.active {
  font-weight: 700;
}
.home_news_nav > .nav-tabs > li > a:hover:after {
  transform: scaleX(1);
  visibility: visible;
}
@media print, screen and (min-width: 768px) {
  .home_news_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .home_news_nav > .ttl {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .home_news_nav > .nav-tabs {
    margin-left: 0;
  }
}

.home_news_content {
  max-height: clamp(380px, 70vh, 680px);
  background-color: #fff;
  overflow: auto;
}
.home_news_content .tab-content {
  padding: min(calc(20px + 30 * (100vw - 375px) / 1125), 50px) min(calc(15px + 97 * (100vw - 375px) / 1125), 112px);
}

.home_news_item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #e9e9e9;
}
.home_news_item .home_news_item_left {
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 992px) {
  .home_news_item {
    display: grid;
    grid-template-columns: 223px 1fr;
  }
  .home_news_item .home_news_item_left {
    padding-right: 30px;
    margin-bottom: 0;
  }
}

.home_news_date .new {
  color: #e6bcc8;
}

.home_news_cat {
  --color: #4a4a4a;
  font-size: 14px;
  line-height: normal;
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.home_news_cat > li {
  color: var(--color);
  border: solid 1px var(--color);
  padding: 0.2em 1em;
  border-radius: 5px;
}

.home_news_ttl {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 1.2em;
  position: relative;
}
.home_news_ttl::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #e6bcc8;
  transform: scale(0.727273);
}
@media print, screen and (min-width: 992px) {
  .home_news_ttl {
    font-size: min(calc(18px + 4 * (100vw - 992px) / 508), 22px);
  }
}

.home_news_gallery {
  --col:2;
  --gap: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-bottom: 1rem;
}
.home_news_gallery > figure {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
  aspect-ratio: 4/3;
}
.home_news_gallery > figure img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---  --- */
.home_instagram h2 {
  font-weight: 500;
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.home_instagram .btn {
  color: #e6bcc8 !important;
  font-weight: 500;
  padding: 0.75em 2em;
  border: solid 2px #e6bcc8;
  border-radius: 10em;
  background-color: #fff;
  cursor: pointer;
}
.home_instagram .btn:hover {
  color: #fff !important;
  background-color: #e6bcc8;
}

/* -------------------------------
	コンセプト
-------------------------------- */
/* ---  --- */
.concept_navi_list {
  font-size: min(calc(11px + 5 * (100vw - 375px) / 617), 16px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.concept_navi_list > li > a {
  color: #4a4a4a;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 0.75em 1em;
  border: solid 1px #4a4a4a;
  border-radius: 5px;
  position: relative;
  transition: color 0.3s ease, border 0.3s ease, background 0.3s ease;
}
.concept_navi_list > li > a > i {
  position: absolute;
  right: 0.75em;
  top: 50%;
  font-size: 0.8125em;
  line-height: 1;
  margin-top: -.5em;
}
.concept_navi_list > li > a:hover {
  color: #6a523a;
  border-color: #6a523a;
  background-color: #F7F4F1;
}
@media print, screen and (min-width: 992px) {
  .concept_navi_list {
    font-size: min(calc(13px + 3 * (100vw - 992px) / 508), 16px);
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---  --- */
.concept_content {
  position: relative;
  z-index: 0;
}
.concept_content > .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/common/bg002.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
@media print, screen and (min-width: 992px) {
  .concept_content.even .row > div {
    margin-left: auto;
  }
}

.concept_content_photo .inner {
  aspect-ratio: 4/3;
}
.concept_content_photo .inner img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 992px) {
  .concept_content_photo {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .concept_content_photo .inner {
    aspect-ratio: auto;
    width: 50%;
    height: var(--app-h);
    position: sticky;
    top: 80px;
  }
  .concept_content.odd .concept_content_photo .inner {
    margin-left: auto;
  }
}

.concept_content_content {
  padding: 50px 5%;
}
.concept_content_content .ttl h3 {
  font-size: min(calc(28px + 10 * (100vw - 375px) / 1125), 38px);
  flex: 1 1 0;
  margin: 0;
}
.concept_content_content .ttl h3 small {
  font-size: 0.64em;
  display: block;
  margin-top: 0.5em;
}
.concept_content_content .column h4 {
  font-weight: 500;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
}
.concept_content_content .logo {
  text-align: right;
}
.concept_content_content .logo img {
  width: min(36%, 240px);
}
@media print, screen and (min-width: 992px) {
  .concept_content_content {
    padding: clamp(50px, 10vw, 200px) 0;
  }
  .concept_content_content .column {
    line-height: 2.4;
  }
  .concept_content.odd .concept_content_content {
    padding-right: min(calc(32px + 80 * (100vw - 992px) / 508), 112px);
  }
  .concept_content.even .concept_content_content {
    padding-left: min(calc(32px + 80 * (100vw - 992px) / 508), 112px);
  }
}

/* ---  --- */
.concept_craftsmanship {
  background: url("../images/common/bg001.jpg");
}
.concept_craftsmanship .columns {
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .concept_craftsmanship .columns {
    line-height: 2.5;
    text-align: center;
  }
}

/* ---  --- */
.concept_quality {
  position: relative;
  z-index: 0;
}
.concept_quality > .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 5 / 3;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../images/common/bg004.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 20%, black 90%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 20%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.concept_quality .column {
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .concept_quality .column {
    line-height: 2.5;
  }
}
@media print, screen and (min-width: 992px) {
  .concept_quality .concept_pl_lg_112 {
    padding-left: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
  .concept_quality .concept_pr_lg_112 {
    padding-right: min(calc(12px + 100 * (100vw - 992px) / 508), 112px);
  }
  .concept_quality .concept_pt_lg_100 {
    padding-top: min(calc(20px + 80 * (100vw - 992px) / 508), 100px);
  }
}

.concept_quality_image img {
  border-radius: clamp(10px, 2vw, 30px);
}

/* -------------------------------
	商品一覧
-------------------------------- */
/* ---  --- */
.work_cat_navi_inner {
  padding: clamp(10px, 3.33334vw, 50px) clamp(15px, 3.33334vw, 50px);
  border-radius: clamp(10px, 2vw, 30px);
  background: url("../images/common/bg002.jpg");
}

.work_cat_navi_content {
  padding: clamp(10px, 3.33334vw, 50px) clamp(15px, 3.33334vw, 50px);
  border-radius: clamp(10px, 2vw, 30px);
  background: url("../images/common/bg002.jpg");
}
.work_cat_navi_content .tabs_category {
  border: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.work_cat_navi_content .tabs_category > li > a {
  font-size: min(calc(16px + 8 * (100vw - 375px) / 1125), 24px);
  text-decoration: none;
  width: 100%;
  aspect-ratio: 445 / 296;
  display: grid;
  place-items: center;
  border: solid 2px #fff;
  border-radius: clamp(10px, 2vw, 30px);
  background-color: #fff;
  overflow: hidden;
  transition: border 0.3s ease;
}
.work_cat_navi_content .tabs_category > li > a:hover {
  border-color: #ccc;
}
.work_cat_navi_content .tabs_category > li > a.active {
  border-color: #6a523a;
}
.work_cat_navi_content .tab-pane {
  margin-top: 15px;
  padding: min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
  border-radius: clamp(10px, 2vw, 30px);
  background-color: #fff;
}
.work_cat_navi_content .tab-pane .ttl {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0.75em;
}

.cat_sub_navi_list {
  font-size: min(calc(12px + 3 * (100vw - 375px) / 1125), 15px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}
.cat_sub_navi_list > li > a {
  --color: #4a4a4a;
  --size: 15px;
  color: var(--color);
  font-weight: 500;
  font-size: var(--size);
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: 1.3;
  text-decoration: none;
  padding: 0.5em 2.5em 0.5em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-radius: 10em;
  border: solid 1px var(--color);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.cat_sub_navi_list > li > a::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
  line-height: 1;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.5em;
}
.cat_sub_navi_list > li > a:hover, .cat_sub_navi_list > li.active > a {
  color: #fff;
  background-color: var(--color);
}

.work_cat_navi .catbtn {
  color: #3a3532;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.5em 1em;
  position: relative;
}
.work_cat_navi .catbtn::after {
  content: "\f0c9";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -.5em;
  transition: transform .3s ease;
}
.work_cat_navi .catbtn.on::after {
  content: "\f00d";
  transform: rotate(180deg);
}
@media print, screen and (min-width: 768px) {
  .work_cat_navi .catbtn::after {
    display: none;
  }
}
.work_cat_navi .catnavi .cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work_cat_navi .cat_navi_list {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  display: flex;
  flex-wrap: wrap;
  gap: 5px 1em;
}
.work_cat_navi .cat_navi_list > li {
  line-height: 1.5;
}
.work_cat_navi .cat_navi_list > li > a {
  color: #4a4a4a;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  text-decoration: none;
  padding: 0.75em 2em 0.75em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  position: relative;
}
.work_cat_navi .cat_navi_list > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #4a4a4a;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.work_cat_navi .cat_navi_list > li > a::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -.5em;
}
.work_cat_navi .cat_navi_list > li > a:hover, .work_cat_navi .cat_navi_list > li.active > a {
  color: #4a4a4a;
}
.work_cat_navi .cat_navi_list > li > a:hover::before, .work_cat_navi .cat_navi_list > li.active > a::before {
  transform: scaleX(1);
  visibility: visible;
}
.work_cat_navi .cat_navi_list > li.active > a {
  color: var(--primary);
  font-weight: 700;
}
@media print, screen and (min-width: 992px) {
  .work_cat_navi .cat_navi_list > li > a {
    padding: 0.5em 2em 0.5em 0.5em;
  }
}

/* ---  --- */
.work_item {
  position: relative;
  z-index: 0;
}
.work_item > .bg_img {
  position: absolute;
  inset: 0;
  background: url("../images/common/bg.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.work_item .subttl {
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
}
.work_item .ttl {
  font-weight: 500;
}

.work_item_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}
@media print, screen and (min-width: 768px) {
  .work_item_row {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  .work_item_row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.work_item_figure .photo-ofi {
  aspect-ratio: 1/1;
}
.work_item_figure figcaption {
  font-size: clamp(12px, calc(15px * (var(--ww-figure) / 304)), 15px);
  line-height: normal;
  padding: 0.5em 0.5em 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
a > .work_item_figure .photo-ofi img {
  transition: opacity 0.3s ease;
}
a > .work_item_figure:hover .photo-ofi img {
  opacity: 0.5;
}

/* -------------------------------
	商品詳細
-------------------------------- */
/* --- gallery --- */
.splide-gallery {
  max-width: 600px;
  margin: 0 auto;
}
.splide-gallery .splide__inner {
  position: relative;
}
.splide-gallery .splide__inner .photo-ofi {
  aspect-ratio: 1 / 1;
  background: url("../images/common/bg003.jpg") no-repeat center center/cover;
  border-radius: 10px;
}
.splide-gallery .splide__inner .photo-ofi img {
  border-radius: 10px;
}

/* 前へ / 次へボタン */
.splide-gallery .splide__arrow--prev, .splide-gallery .splide__arrow--next {
  font-size: 16px;
  display: grid;
  place-content: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -0.75em;
  z-index: 20;
}
.splide-gallery .splide__arrow--prev svg, .splide-gallery .splide__arrow--next svg {
  fill: #6a523a;
  width: 1em;
}
.splide-gallery .splide__arrow--prev:hover, .splide-gallery .splide__arrow--next:hover {
  outline: none;
}
.splide-gallery .splide__arrow--prev {
  left: 6px;
}
.splide-gallery .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.splide-gallery .splide__arrow--next {
  right: 6px;
}
.splide-gallery .splide__arrow:disabled {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.35;
  pointer-events: none;
}
.splide-gallery .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* サムネイル */
.splide-gallery .splide__pagination {
  --col:6;
  --gap:5px;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  gap: var(--gap);
  justify-content: flex-start;
}
@media print, screen and (min-width: 768px) {
  .splide-gallery .splide__pagination {
    --col:7;
  }
}
.splide-gallery .splide__pagination > li {
  flex: 0 0 calc((100% - (var(--gap) * (var(--col) - 1))) / var(--col));
}
.splide-gallery .splide__pagination > li button {
  border: none;
  padding: 0;
  outline: none;
  aspect-ratio: 1 / 1;
  border: solid 1px #efefef;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
.splide-gallery .splide__pagination > li button img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  padding: 2px;
}
.splide-gallery .splide__pagination > li button.is-active {
  border-color: #e6bcc8;
}

/* ---  --- */
.work_detail {
  position: relative;
  z-index: 0;
}
.work_detail > .bg_img {
  position: absolute;
  inset: 0;
  background: url("../images/common/bg.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}

@media print, screen and (min-width: 992px) {
  .work_detail_content {
    height: 100%;
  }
  .work_detail_content .inner {
    position: sticky;
    top: 100px;
  }
}
.work_detail_content .cat {
  font-weight: 500;
  font-size: 15px;
  margin: 0.5em 0;
}
.work_detail_content .cat > span {
  padding: 0.15em 1em;
  display: inline-block;
  border-radius: 10em;
  background-color: #efefef;
}
.work_detail_content h3 {
  font-weight: 400;
  font-size: clamp(20px, calc(32px * (var(--ww) / 637)), 32px);
}
.work_detail_content .work_cart {
  padding: clamp(20px, calc(50px * (var(--ww) / 637)), 50px);
  border-radius: clamp(10px, calc(20px * (var(--ww) / 637)), 20px);
  background: url("../images/common/bg001.jpg");
}
.work_detail_content .work_cart .ttl {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #4a4a4a;
}
.work_detail_content .work_cart .ttl::before {
  content: "●";
  opacity: 0.65;
  margin-right: 0.25em;
}
.work_detail_content .work_cart .work_cart_item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: dashed 1px #C4BCBC;
}
.work_detail_content .work_cart .work_cart_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.work_detail_content .work_cart .work_cart_item .txt {
  margin-bottom: 0.5rem;
}
.work_detail_content .work_cart .work_cart_item .btn i {
  font-size: 1.5em;
  line-height: 1;
}

/* ---  --- */
.work_detail_item {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
.work_detail_item:last-child {
  padding-bottom: min(calc(60px + 60 * (100vw - 375px) / 1125), 60px);
}

/* ---  --- */
.work_detail_table table {
  font-size: min(calc(13px + 3 * (100vw - 375px) / 1125), 16px);
}
.work_detail_table table > tbody > tr > th {
  font-weight: 500;
  width: 10.5em;
}

/* ---  --- */
.work_detail_cart {
  padding: min(calc(20px + 60 * (100vw - 375px) / 1125), 80px);
  border-radius: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  background: url("../images/common/bg001.jpg");
}
.work_detail_cart .ttl {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #4a4a4a;
}
.work_detail_cart .ttl::before {
  content: "●";
  opacity: 0.65;
  margin-right: 0.25em;
}
.work_detail_cart .work_cart_item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: dashed 1px #C4BCBC;
}
.work_detail_cart .work_cart_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.work_detail_cart .work_cart_item .txt {
  margin-bottom: 0.5rem;
}
.work_detail_cart .work_cart_item .btn i {
  font-size: 1.5em;
  line-height: 1;
}

/* ---  --- */
.work_detail_back {
  text-align: center;
}

/* -------------------------------
	会社概要
-------------------------------- */
/* ---  --- */
.company_greetings_figure {
  max-width: 526px;
  height: auto;
}
.company_greetings_figure > img {
  border-radius: 10px;
}
.company_greetings_figure figcaption p {
  text-align: right;
  margin-right: 1em;
  margin-top: 0.5em;
}
.company_greetings_figure figcaption p strong {
  font-weight: 400;
}

.company_greetings_item {
  position: relative;
  z-index: 0;
}
.company_greetings_item > .bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/common/bg001.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 15%, black 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 15%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.company_greetings_item .company_greetings_content h4 {
  font-weight: 500;
  font-size: clamp(23px, calc(40px * (var(--ww) / 637)), 40px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media print, screen and (min-width: 768px) {
  .company_greetings_item .company_greetings_image {
    height: 100%;
  }
  .company_greetings_item .company_greetings_image .company_greetings_figure {
    position: sticky;
    top: 100px;
  }
  .company_greetings_item .company_greetings_content {
    line-height: 2;
  }
  .company_greetings_item.odd .company_greetings_content {
    padding-left: min(calc(12px + 100 * (100vw - 768px) / 732), 112px);
  }
  .company_greetings_item.even .row > div:first-child {
    order: 13;
  }
  .company_greetings_item.even .company_greetings_content {
    padding-right: min(calc(12px + 100 * (100vw - 768px) / 732), 112px);
  }
}

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

.company_btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
  width: 250px;
}
.company_btn i {
  font-size: 1.5em;
  line-height: 1;
  margin-right: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .company_btn {
    font-size: min(calc(12px + 3 * (100vw - 768px) / 732), 15px);
    width: 100%;
  }
}

/* ---  --- */
.company_services {
  background: url("../images/common/bg004.jpg") no-repeat center center/cover;
}

.company_services_row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px) min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
}
@media print, screen and (min-width: 768px) {
  .company_services_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 992px) {
  .company_services_row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.company_services_figure {
  max-width: 415px;
  margin: 0 auto;
  height: auto;
}
.company_services_figure figcaption {
  padding: 15px 15px 0;
}
.company_services_figure figcaption h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.75rem;
}
.company_services_figure figcaption p {
  font-size: 15px;
  line-height: 1.75;
}

/* ---  --- */
.company_history {
  position: relative;
  z-index: 0;
}
.company_history > .bg_img {
  background-image: url("../images/common/bg001.jpg");
  position: absolute;
  inset: 0;
  z-index: -1;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}

/* -------------------------------
	取扱店舗一覧
-------------------------------- */
/* --- --- */
.shop_tenpo {
  position: relative;
  z-index: 0;
}
.shop_tenpo > .bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/common/bg004.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 9%, black 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 9%, black 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}

/* ---  --- */
.shop_online {
  position: relative;
  z-index: 0;
}
.shop_online > .bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/common/bg004.jpg");
}
.shop_online .btn {
  font-size: 13px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .shop_online .btn {
    font-size: min(calc(13px + 7 * (100vw - 768px) / 762), 20px);
  }
}

/* --- --- */
.shop_tenpo_image img {
  border-radius: 10px;
}

.shop_tenpo_content {
  padding-left: 10%;
}
@media print, screen and (min-width: 768px) {
  .shop_tenpo_content {
    padding: 0;
    display: flex;
  }
  .shop_tenpo_content .inner {
    margin: auto;
  }
}

.shop_tenpo_content_dl dt {
  padding-left: 1.2em;
  position: relative;
}
.shop_tenpo_content_dl dt::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #e6bcc8;
  transform: scale(0.8125);
}
.shop_tenpo_content_dl dd {
  font-size: 0.9375em;
}

.shop_list_1 {
  list-style: none;
  padding: 0;
}
.shop_list_1 > li {
  padding-left: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: dotted 1px #999999;
}
.shop_list_1 > li:last-child {
  margin-bottom: 0;
}
.shop_list_1 > li .ttl {
  font-weight: 500;
  font-size: 18px;
}
.shop_list_1 > li .column {
  font-size: 15px;
}

/* -------------------------------
	商材をお持ちの方へ
-------------------------------- */
/* ---  --- */
.seller_content {
  position: relative;
  z-index: 0;
}
.seller_content > .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.seller_content > .bg .bg_img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
}
.seller_content > .bg .bg01 {
  top: 0;
  background-image: url("../images/common/bg002.jpg");
  mask-image: url(../images/common/mask01.png);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: url(../images/common/mask01.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
.seller_content > .bg .bg02 {
  top: 50%;
  background-image: url("../images/common/bg003.jpg");
  mask-image: url(../images/common/mask02.png);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: url(../images/common/mask02.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}

.seller_subtext {
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .seller_subtext {
    line-height: 2.5;
  }
}

/**/
.seller_content_image {
  text-align: center;
  margin-bottom: 20px;
}
.seller_content_image img {
  border-radius: 10px;
}

.seller_content_content {
  line-height: 2;
  display: flex;
  height: 100%;
}
.seller_content_content .inner {
  margin: auto;
}
.seller_content_content h4 {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .seller_content_content {
    line-height: 2.5;
  }
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact {
  padding: min(calc(20px + 30 * (100vw - 375px) / 1125), 50px) min(calc(15px + 35 * (100vw - 375px) / 1125), 50px);
  border: solid 1px #c7c7c7;
  border-radius: min(calc(10px + 20 * (100vw - 375px) / 1125), 30px);
  background: url("../images/common/bg004.jpg") no-repeat center center/cover;
}
.tel_contact h3 {
  font-weight: 500;
  font-size: min(calc(20px + 15 * (100vw - 375px) / 1125), 35px);
  text-align: center;
}
.tel_contact .telphone {
  font-size: min(calc(30px + 20 * (100vw - 375px) / 1125), 50px);
  text-align: center;
}
.tel_contact .txt {
  font-size: min(calc(12px + 4 * (100vw - 375px) / 1125), 16px);
  text-align: center;
  margin-top: 1em;
}

.tel_contact_column .ttl h4 {
  font-weight: 500;
  font-size: min(calc(18px + 6 * (100vw - 375px) / 1125), 24px);
  text-align: center;
  margin: 0 0 1rem;
}
.tel_contact_column .column {
  font-size: 15px;
}
@media print, screen and (min-width: 768px) {
  .tel_contact_column .column {
    text-align: center;
  }
}

#contactform {
  position: relative;
  z-index: 0;
  /**/
}
#contactform > .bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/common/bg.jpg");
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100% 100%;
}
#contactform .form-control {
  border-color: #eee;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
#contactform .custom-select {
  box-shadow: none !important;
}
#contactform .custom-select:focus {
  border-color: #ccc;
}
#contactform input[type="file"] {
  font-size: 15px;
  letter-spacing: normal;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select-inline, #contactform .p-region {
    width: auto;
    display: inline;
  }
}
#contactform .radio_group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
}
#contactform .radio_group > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .radio_group {
    gap: 0.25em 1.5em;
  }
  #contactform .radio_group > label {
    flex: 0 0 auto;
  }
}
#contactform .list-radio, #contactform .list-checkbox {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
#contactform .list-radio > label, #contactform .list-checkbox > label {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 768px) {
  #contactform .list-radio, #contactform .list-checkbox {
    gap: 0.25em 1.5em;
  }
  #contactform .list-radio > label, #contactform .list-checkbox > label {
    flex: 0 0 auto;
  }
}

/* フォーム用　table */
.table-contact {
  line-height: 1.75;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}
.table-contact > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em 0;
}
.table-contact > tbody > tr > th {
  font-weight: 500;
  width: 15em;
  padding-left: 1em;
  position: relative;
}
.table-contact > tbody > tr > th .hisu {
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  padding: 0 0.75em;
  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);
  }

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

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