/* 3枚スライド */
/* 全体設定 */
.css-carousel-slider3 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}
.css-carousel-slider3 img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* 流れスライド設定 */
.css-carousel-slider3 .slide-wrap {
    width: 300%;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider3 15s infinite;
    animation-delay: 2s;
}
.css-carousel-slider3 .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main3 15s infinite;
    animation-delay: 2s;
}
.css-carousel-slider3 .slide {
    width: 100%;
}

/* スライダーアニメーションの設定 */
@keyframes css-carousel-slider3 {
    0% { transform: translateX(0); }

    27.3% { transform: translateX(calc(1 / 3 * -100%)); }
    33.3% { transform: translateX(calc(1 / 3 * -100%)); }

    60.6% { transform: translateX(calc(2 / 3 * -100%)); }
    66.6% { transform: translateX(calc(2 / 3 * -100%)); }

    94% { transform: translateX(calc(3 / 3 * -100%)); }
    100% { transform: translateX(calc(3 / 3 * -100%)); }
}

@keyframes css-carousel-slider-main3 {
    0% { transform: translateX(100%); }
    66.6% { transform: translateX(100%); }
    94% { transform: translateX(0%);}
}


/* shoplist*/

.list-8 {
    position: relative;
    padding: 1.5em 1em 1em 2.5em;
    border: 2px solid #212e51;
    max-width: 600px;
    margin: 0 auto;
}

.list-8 > div {
    position: absolute;
    top: -.65em;
    left: 1em;
    padding: 0 .5em;
    background-color: #fff;
    color: #212e51;
    font-weight: 600;
    font-size: 18px;
}

.list-8 ul {
    list-style-type: disc;
    margin: 0;
    padding: 0;
}

.list-8 li {
    padding: .3em .3em .3em 0;
}

.list-8 li::marker {
    color: #d025ab;
    font-size: 1.1em;
}


/* button*/
.button1 a {
    background: #212e51;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 350px;
    padding: 20px 25px;
    text-decoration: none;
    color: #fff;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-family: serif;
    font-size: 18px;
}
.button1 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button1 a:hover {
  background: #501f25;
  color: #FFF;
}
.button1 a:hover:after {
  right: 1.4rem;
}

/* accordion*/
.accordion {
    margin: 0 0 0 -10px;
}

.accordion-item {
    margin-bottom: 0.5rem;
    /* margin-left: -9px;*/
}

.accordion-check {
    display: none;
}

.accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    border-left: 10px solid #212e51;
    background-color: #efefef;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
}

.accordion-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%);
    color: #46aadc;
    text-align: center;
    font-size: 1.5rem;
    content: '+';
}

.accordion-box {
    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #fff;
    transition: all .5s;
}

.accordion-check:checked~.accordion-box {
    height: auto;
    opacity: 1;
    padding: 1rem;
}

.accordion-check:checked+.accordion-label:after {
    content: '-';
}


.accordion-box p {
    line-height: 1.5;
}




[type=checkbox]+label, [type=radio]+label {
    display: inline-block;
    vertical-align: baseline;
    margin-left: .5rem;
    margin-right: 1rem;
    margin-bottom: 0;
    width: 98%;
}

/* others */

.H__border-h5l {
    font-size: 16px;
    color: #333;
    background: #f8f6f5;
    border-left: 7px solid #501f25;
    border-bottom: 1px solid #501f25;
    padding: 6px 10px;
    font-weight: bold;
    margin: 20px 0;
}

.title_h4 {
    padding: 0 0 0 .7em;
    border-left: 7px solid #000;
    font-size: 21px;
    font-family: serif;
    margin: 20px 0;
}
.blue {
    color: #0006ff;
}
.pink {
    color: #ff00e9;
}
.lightblue {
    color: #00c7dd;
    font-weight: 500;
}
.white {
    color: #fff;
    font-weight: 500;
}
/* 価格表table */
.table_design01 {
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-family: serif;
  font-size: 15px;
}
.table_design01 th, .table_design01 td {
  border: 2px solid #fff;
  background-color: #fff;
  padding: 1em;
}
.table_design01 th {
  background-color: #f3f3f3;
  font-weight: bold;
  text-align: center;
  width: 40%;
  min-width: 4em;
}

/* slider 3*/
  .main_imgBox {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

  .main_logo {
    z-index:11;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:50%;
    height:auto;
}

  .main_img {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite; }

    .main_img:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }

    .main_img:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; }

    .main_img:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; }

    .main_img:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

    .main_img:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }

  .main_imgM {
    opacity: 0;
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite; }

    .main_imgM:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }

    .main_imgM:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; }

    .main_imgM:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; }

    .main_imgM:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

    .main_imgM:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }

@keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         transform: scale(1.1);
                    z-index:9;
    }
    100% { opacity: 0 }
}

@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         -webkit-transform: scale(1.05);
            z-index:9;
    }
    100% { opacity: 0 }
}


/* slider2 */
/* 親要素の設定 */
.gallery {
  width: 100%;
  overflow: hidden; /* 子要素がはみ出さないようにする */
}

/* スライダー部分の設定 */
.gallery_slide {
  display: flex; /* 横並びにする */
  width: 100%; /* 横幅いっぱいにする */
  animation: slide 12s linear infinite; /* アニメーションの設定 */
}

/* 各アイテムの設定 */
.gallery_slide li {
  flex: 0 0 40%; /* 1つの画像が全体のn分の1の幅を取る */
  width: 100%; /* 幅を指定 */
}

/* アニメーション（スライド） */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* 1周分の移動 */
  }
}
/* スライダー部分の設定 */
.gallery_slide {
  display: flex;
  width: 100%;
  animation: slide 12s linear infinite; /* 無限ループの設定 */
}
/* アニメーション（スライド） */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.gallery_slide {
  display: flex;
  width: 100%;
  animation: slide 12s linear infinite; /* 12秒で1周する設定 */
}

/* ブラウザで画像分け */
div.resize img.min {
	display: none;						/* 初期状態は、SP用画像を非表示に設定 */
}
div.resize img.big {
	display: block;						/* 初期状態は、PC用画像を表示に設定 */
	margin-top: 5px;
}
@media screen and (max-width: 625px) {
	div.resize img.min {
		display: block;					/* 625pxより小さい時は、SP用画像を表示に設定 */
	}
	div.resize img.big {
		display: none;					/* 625pxより小さい時は、PC用画像を非表示に設定 */
	}
}