@charset "utf-8";@charset "UTF-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}

.reverse {
    background-color: #EFE3E3;
    background-repeat: repeat-x;
    height: fit-content;
    background-size: auto, cover;
    position: relative;
    text-align: center;
    padding-top: 5%;
    padding-bottom:5%;
}

/* 縦ライン*/

 .vertical-line {
         width: 1px;
         height: 100px;
         background-color: #333;
         margin: 0 auto;
         padding-top:8%;
}

/* 横ライン*/

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 60em;
    margin-top: 5%;
}

 
/* BUYボタン*/

.border {
    border: solid 0.2px;
    background-color: #fff;
    margin: 0 auto;
    padding: 0% 0.5% 0% 0.5%;
    font-size: 0.8em;
    color: #000;

    letter-spacing: 0.1em;
    border-radius: 2px;
}


/* テキスト */

.text01 {
    font-size: 1.3em;
    line-height: 26px;
    width: 80%;
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 0 auto;
    padding-bottom: 1%;
}

.text01b {
    font-size: 1.3em;
    line-height: 26px;
    width: 95%;
    text-align: end;
    font-family: "Playfair Display", serif;
    margin: 0 auto;
}

.text02 {
    font-size: 1.1em;
    line-height: 26px;
    width: 95%;
    text-align:center;
    font-family: serif;
    margin: 0 auto;
    padding:5%;
}

.font01 {
    font-size: 3.5em;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    font-family: "Playfair Display", serif;
    padding:3%;
    color:#707070;
}

.blink {
	-webkit-animation: blink 1s ease infinite;
	animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.slideBox {
  width: 300;
  overflow: hidden;
  position: relative;
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 12s 0s infinite;
  animation: anime 12s 0s infinite;
}

.item1:nth-of-type(1) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
 12% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
 37% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 800px){
.br-sp {display: none; }
}

/* ボタン２*/

section {
    max-width: 300px;
    margin: 0 auto;
    padding-top:5%;
    padding-bottom:5%;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}

/* アイテムコンテナ*/

.parent {
    display: grid;
    grid-template-columns: repeat(1, 0.6fr);
    grid-template-rows: repeat(1, 0.6fr);
    gap: 5px;
    justify-content: center;
    margin-top: 3%;
}

.parent2 {
    display: grid;
    grid-template-columns: repeat(1, 0.5fr);
    grid-template-rows: repeat(1, 0.5fr);
    gap: 5px;
    justify-content: center;
    margin-top: 3%;
} 

.parent3 {
    display: grid;
    grid-template-columns: repeat(2, 0.3fr);
    grid-template-rows: repeat(2, 0.1fr);
    gap: 10px;
    justify-content: center;
    margin: 3%;
}
}
/*===============================================
tablet
===============================================*/
@media (max-width: 768px) {
section {
  max-width: 300px;
  margin: 0 auto;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}
}

.slideBox {
  height: 650px;
  width:  500px;
  overflow: hidden;
  position: relative;
}
/*===============================================
SMP
===============================================*/
@media (max-width: 430px) {
section {
    max-width: 300px;
    margin: 0 auto;
    padding-top:10%;
    padding-bottom:15%;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}

.sma{
    display: none;
}

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 90%;
    margin-top: 5%;
    padding: 5%;
}

.vertical-line {
     height: 100px; /* 縦の線の長さを調整 */
}

.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
}

.parent2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    margin-top: 3%;
    padding: 5%;
}

.parent3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 0.2fr);
        gap: 5px;
        justify-content: center;
        padding: 3%;
}


.text01 {
    font-size: 1.3em;
    line-height: 26px;
    width: 90%;
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 0 auto;
    padding-bottom: 3%;
}

.font01 {
    font-size: 3.0em;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    font-family: "Playfair Display", serif;
    padding: 3%;
    color: #707070;
    padding-top: 15%;
}
}
@media (max-width: 320px) {
.parent3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 0.2fr);
        gap: 10px;
        justify-content: center;
        padding: 2%;
}
}

.slideBox {
  height:500px;
  width:350px;
  overflow: hidden;
  position: relative;
}