/* 各要素のスタイル */ .item01 {
  position: relative;
  text-align: center;
}
.sample1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  line-height: 0;
  margin-left: auto;
}
.sample1 img {
  width: 100%;
  display: block;
} /* マスクスタイル - 初期状態は透明 */ .sample1 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0; /* 初期状態を非表示に */ background-color: rgba(0, 0, 0, 0.75);
  transition: opacity 0.5s ease; /* フェードインアニメーション */
} /* キャプションのスタイル - 初期状態は透明 */ .sample1 .caption {
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 0;
  opacity: 0; /* 初期状態を非表示に */ transition: opacity 0.5s ease; /* フェードインアニメーション */ line-height: 170%;
  font-size: 0.9em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 98%; /* 必要な幅のみ取る */ display: block;
}
.caption p {
  margin: 0; /* 左寄せ */ color: #fff;
  text-align: left; /* テキストのみ左揃え */ width: 100%;
}
.itemname{
    font-size: 0.8em!important;
    color: rgba(255,255,255,0.68);
    letter-spacing: -0.1em;
    padding-right: 0em!important;
}
@media screen and (max-width:768px) { /*　画面サイズが1500pxからはここを読み込む　*/ .caption p {
    line-height: 200%;
    letter-spacing: -0.03em;
  }
}
.caption a {
  line-height: 0;
  transition: color 0.3s ease; /* 色が変わる時間を設定 */ color: inherit !important;
}
.caption a:hover, .caption a:active {
  line-height: 0;
  color: #a49468!important;
} /* マスクとキャプションがフェードインされる際のスタイル */ .mask.fade-in {
  opacity: 1; /* マスクをフェードイン */
}
.caption.fade-in {
  opacity: 1; /* キャプションをフェードイン */
} /* ボタンのスタイル */ .itembtn {
  position: relative;
  margin-right: 3% !important;
  margin-bottom: 0.5em !important;
  margin-top: 0.5em;
  color: #9F9F9;
  padding-top: 1px;
  padding-right: 1px;
}
.credit {
  display: flex;
  justify-content: flex-end;
  line-height: 110%;
  align-items: center;
  padding-right: 3em;
  font-family: "Bodoni Moda", serif;
  font-family: "operetta-32", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75em;
  color: #000;
  opacity: 0.9;
    margin-left: -30%;
} /* トグルボタンのスタイル */ 

.toggle-button {
  width: 0.7em;
  height: 0.7em;
  position: relative;
  margin: 8px 0 0 auto;
  cursor: pointer;
}
.toggle-button .line {
  position: absolute;
  background-color: #000;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.toggle-button .horizontal {
  width: 0.8em;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.toggle-button .vertical {
  width: 1px;
  height: 0.8em;
  left: 52%;
  top: 0;
  transform: translateX(-50%);
} /* マスクが表示されたときに縦線を非表示 */ .show-button .vertical {
  height: 0;
  opacity: 0;
}