@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;
}

.image2 {
margin: auto;
  display: block;
}

.image2 img {
  width: 90%;
  margin: auto;
  display: block;
}


/* ボックス */

.box2 {
  float: left;
  width: 50%;
}

.box3 {
  float: left;
  width: 33.3333%;
}

.box4 {
  float: left;
  width: 25%;
}

.boxA {
  border: none;
  &:after {
    content: "";
    display: block;
  }
}


/* 縦ライン */

 .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.0em;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    font-family: "Playfair Display", serif;
    padding:0%;
    color:#333333;
}

.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;}
}

.sp-only {
  display: none;
}

@media screen and (max-width: 575px) {
  .sp-only {
    display: block;
  }
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 14s 0s infinite;
  animation: anime 14s 0s infinite;
}

.item1:nth-of-type(1) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.item1:nth-of-type(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.item1:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.item1:nth-of-type(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.item1:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.item1:nth-of-type(6) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.item1:nth-of-type(7) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.item1:nth-of-type(8) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
.item1:nth-of-type(9) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
.item1:nth-of-type(10) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
.item1:nth-of-type(11) {
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}
.item1:nth-of-type(12) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.item1:nth-of-type(13) {
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
}


/* ふわっとアニメーション */
@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: 450px){
.br-sp {display: none; }
}


/*-------------------------------------------------------------------
scroll_up ｜下から上へ出現
-------------------------------------------------------------------*/
.scroll_up {
  transition: 1.2s ease-in-out;
  transform: translateY(80px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*-------------------------------------------------------------------
scroll_left ｜左から出現
-------------------------------------------------------------------*/
.scroll_left {
    -webkit-transition: 1.2s ease-in-out;
    -moz-transition: 1.2s ease-in-out;
    -o-transition: 1.2s ease-in-out;
    transition: 1.2s ease-in-out;
    transform: translateX(-100px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*-------------------------------------------------------------------
scroll_right ｜右から出現
-------------------------------------------------------------------*/
.scroll_right {
    -webkit-transition: 1.2s ease-in-out;
    -moz-transition: 1.2s ease-in-out;
    -o-transition: 1.2s ease-in-out;
    transition: 1.2s ease-in-out;
    transform: translateX(100px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/*-------------------------------------------------------------------
横に流れるスライドショー
-------------------------------------------------------------------*/
.slide-container {
    width: 100%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 12s infinite linear 1s backwards;
}
.slide{
  width: 300px;
  object-fit:cover;
  border: 5px solid #FFF;
}
@keyframes slide-flow {
     0% {transform: translateX(0);}
 0% {transform: translateX(-100%);}
}



/* ボタン２*/

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: 3px;
    justify-content: center;
    margin-top: 0%;
}

.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: 360px;
  width:  360px;
  overflow: hidden;
  position: relative;
}

/*======================================
SMP
======================================*/
@media (max-width: 450px) {
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: 0%;
}

.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: 360px;
  width:  360px;
  overflow: hidden;
}