@charset "UTF-8";
.blockshadow {
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), 2px 0 4px rgba(0, 0, 0, 0.4);
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}
/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

/* パンくず */
.Breadcrumb {
  padding: 1em;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

.maincontents {
  overflow: hidden;
  color: #fff;
  font-family: serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2.0em;
  padding: 10px 15px 10px 15px;
}
.itemtitle {
    font-family: 'EB Garamond', serif; 
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 0px 5px 0px 5px;
    text-align:center;
    font-weight:lighter;
    color:#fff;
}
.maintitle {
  position: relative;
  padding: 0 55px;
  text-align: center;
}

.maintitle:before, .maintitle:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #fff;
}

.maintitle:before {
  left: 0;
}

.maintitle:after {
  right: 0;
}
.title {
font-size:36px;
color:#fff;
font-family: 'EB Garamond';
font-weight:lighter;
line-height:1.2em;    
}

.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
.box{
  position: relative;
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.centersp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button002 {
  display: inline-block;
  margin:5px;    
  padding: 3px 10px;
  color: #fff;
  border: solid 1px #fff;    
  text-decoration: none;
  font-family: Arial;
  text-align: center;
  font-size: 12px;
  width: 80px;
 }
.button002 a:hover {
  color: #333;
}
.button002 a:visited {
  color: #333;
}
.button002 a:link {
  color: #333;
}

/* flexbox*/
.flex-container {
  display: flex;
}

.left {
  flex-basis: 50%;
}

@media (min-width: 768px) {
.videoPC{
max-width:500px;
}
}

.right {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
}

.right-item {
  flex: 1;
  padding: 5px;
}

@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .left {
    flex-basis: 100%;
  }

  .right {
    flex-basis: 100%;
    display: flex;
    flex-direction: column; /* デフォルトの表示順序に戻す */
    align-items: flex-end; /* 要素を右寄せにする */
  }

  .right-item {
    width: 100%;
  }
}

/* Color */
.color-container {
    display: flex;
    align-items: center; /* 垂直方向にセンタリング */
    gap: 5px;
  }

  .color-circle {
    display: inline-table;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    box-shadow: 0 0 0 0.5px #ccc;
    overflow: hidden;
  }

  .color-label {
    font-size: 12px;
    white-space: nowrap; /* テキストが折り返されないようにする */
  }

.color-circle span{
  display: table-cell;
}
.color-circle .black {
  background: #000;
}
.color-circle .beige{
  background: #EFE3D3;
}
.color-circle .white{
  background: #fff;
}
.color-circle .pink{
  background: #E0848C;
}
.color-circle .brown{
  background: #9C8269;
}
.color-circle .navy{
  background: #4C5778;
}
.color-circle .purple{
  background: #553477;
}
.color-circle .darkgreen{
  background: #1C4F4F;
}
.color-circle .orangebrown{
  background: #8B4513;
}

/* スライダー */
html, body {
  margin: 0;
  padding: 0;
}
.splide {
  width: 100%;
  margin: 0 auto;
}
.splide__track {
  margin-bottom: 30px;
}

.splide__slide {
  height: 100%;
}
.splide__slide img {
  width: 100%;
}
.splide-design {
  max-width: 960px;
  margin: auto;
}
@media (min-width: 768px) {
  .splidePC {
  max-width:500px;
  margin: auto;      
  }
