@charset "utf-8";

/* CSS Document */
html {
  width: 100%;
}


body {
  font-family: "Noto Sans JP";
  padding: 0;
  margin: 0;
  background-color: #DB0829;
  overflow-x: hidden;
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


a {
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}



p {
  line-height: 1.4;
}

img {
  width: 100%;
}

.pc_only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}



.w900_only {
  display: none;
}

@media screen and (max-width: 984px) {
  .w900_only {
    display: block;
  }
}




/********header**********/

#header {
  width: 100%;
  position: absolute;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 5px #BFBFBF;
  text-align: center;
  left: 0;
  top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/*
@media screen and (max-width: 767px) {
  #header {
    width: 10vw;
  }
}
*/


.lectlogo {
  padding: 10px 0 10px 10px;
  max-width: 130px;
  width: 100%;
  margin: 5px;

}

.lectlogo img {
  width: 100%;
}




/***********FV*************/

.fv-bk {
  background-color: #c0182f;
  background-image: radial-gradient(circle, #50253f 2.5px, transparent 2.5px), radial-gradient(circle, #50253f 2.5px, transparent 2.5px);
  background-position: 0 0, 12.5px 25px;
  background-size: 25px 50px;
  padding: 8em 10px 11em 10px;
  overflow: hidden;
  position: relative;
}

.fv-bk::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background-position: center;
  width: 900px;
  height: 900px;
  background: #DB0829;
  border-radius: 100%;
  z-index: 0;
  /* 下に配置（必要に応じ調整） */
  pointer-events: none;
  /* 円が操作の邪魔をしないようにしたい場合 */
}

.fv-bk::after {
  content: '';
  position: absolute;
  background-image: url(../img/fvaffter.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 110%;
  height: 160%;
  z-index: 0;
}

@media print, screen and (max-width: 768px) {
  .fv-bk {
    padding: 15em 10px
  }

  .fv-bk::before {
    width: 600px;
    height: 600px;
  }

  .fv-bk::after {
    background-image: url(../img/fvaffter-sp.png);
    width: 200%;
    height: 110%;
  }
}

@media print, screen and (max-width: 468px) {
  .fv-bk::before {
    width: 400px;
    height: 400px;
  }
}


.fv-inner {
  width: 80%;
  margin: 0 auto;
}





.main-title {
  max-width: 700px;
  margin: 3% auto 0;
  width: 100%;
  z-index: 10;
  position: relative;
}

@media print, screen and (max-width: 768px) {
  .main-title {
    max-width: 460px;
    margin: 10% auto 0;
    width: 95%;
  }
}




@media screen and (max-width: 768px) {
  .lectlogo {
    max-width: 102px;
    margin: 0px;
  }

  .nav .menu {
    height: 30px;
    width: 30px;
    top: 11px;
  }

  .fv-inner {
    width: 100%;
  }

  .main-title::after {
    right: 8%;
    bottom: -19%;
  }

  .main-title::before {
    left: 4%;
    width: 140px;
    height: 226px;
    bottom: -28%;
    transform: rotate(-40deg);
  }


}


@media screen and (max-width: 757px) {
  .main-title::before {
    left: 4%;
    width: 112px;
    height: 202px;
    bottom: -30%;
    transform: rotate(-53deg);
  }


  .main-title::after {
    width: 74px;
    height: 75px;

    right: 8%;
    bottom: -19%;
    transform: rotate(-11deg);
  }
}

@media screen and (max-width: 480px) {
  .main-title::before {
    bottom: -42%;
  }


  .main-title::after {
    bottom: -30%;
  }
}




/************レコメンド***************/
#recommend-con {
  position: relative;
  margin-top: 10em;
  padding: 0 10px;

}

.recommend-title {
  max-width: 660px;
  margin: 0 auto;
  width: 95%;

}



.featured-notice {
  font-size: 0.9em;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
}


@media screen and (max-width: 768px) {
  .featured-notice {
    font-size: 0.8em;
  }
}



.title {
  text-align: center;
  color: #00aaff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #00aaff;
  display: inline-block;
  padding-bottom: 5px;
}

.scroll-container {
  display: flex;
  overflow-x: scroll;
  gap: 24px;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #8A8A8A #eee;
  max-width: 1200px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #00aaff;
  border-radius: 4px;
}


.item {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}


@media screen and (max-width: 768px) {
  .item {
    scroll-snap-align: center;
    /* 中央でスナップ */
  }
}





.item-box {
  min-width: 220px;
  padding: 12px;
  text-align: center;
  flex-shrink: 0;
}

.item img {
  width: 380px;
  object-fit: contain;
  margin-bottom: 10px;
}

.item-button {
  background: #FFFFFF;
  margin: 0 auto;
  text-align: center;
  color: #DB0829;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  width: 46%;
  display: block;
  position: relative;
  font-weight: 600;

}

.item-button:hover {
  opacity: 0.8;
}



.scroll-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}


.scroll-wrap::before {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  width: 117px;
  height: 124px;
  left: -10%;
  top: 10%;
  transition: all 0.3s;
  z-index: 8;
}



.scroll-wrap::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  width: 117px;
  height: 124px;
  right: -11%;
  bottom: -20%;
  transition: all 0.3s;
  z-index: 8;
  transform: rotate(180deg);
}


@media screen and (max-width: 1490px) {
  .scroll-wrap::after, .scroll-wrap::before {
    display: none;
  }
}


@media screen and (max-width: 768px) {
  .recommend-title {
    width: 68%;
  }
}



/*********スクロールバー*************/

.scrollbar-wrap {
  position: fixed;
  /* 例: 画面下部に固定 */
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  padding-bottom: 24px;
  /* バーの高さ分 */
}

.scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefoxで標準バー非表示 */
  -ms-overflow-style: none;
  /* IE/Edgeで標準バー非表示 */
  scroll-behavior: smooth;
  padding-bottom: 2em;
  /* バーとの隙間 */
}


.scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safariで標準バー非表示 */
}


.custom-scrollbar {
  height: 8px;
  width: 90%;
  /* バーの長さ（好みで調整） */
  margin: 0 auto;
  background: #eee;
  border-radius: 4px;
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 8px;
}

.custom-thumb {
  height: 8px;
  width: 40px;
  /* 初期値。JSで動的に更新 */
  background: #8A8A8A;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  transition: background .2s;
}

.custom-thumb:hover {
  background: #8A8A8A;
}













/***************contents********************/

.con-wrap {
  padding: 2em 0;
  margin-top: 10em;
  padding-top: 11em;
}


.con {
  position: relative;
  width: 100%;
}

.con::before {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  width: 170px;
  height: 301px;
  left: 0%;
  top: 1%;
  transition: all 0.3s;
  z-index: 8;
}

.con::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  width: 170px;
  height: 301px;
  right: 0%;
  top: 1%;
  transition: all 0.3s;
  z-index: 8;
  transform: rotateY(180deg);
}

.category-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  border: solid 6px #ffffff;
  margin-bottom: 16em;
  margin-top: -5em;
}

.category-title {
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  margin-top: -6em;
  position: relative;
  z-index: 10;
}

.category-title2 {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  margin-top: -6em;
  position: relative;
  z-index: 10;
}



/********category　bk**********/
.bk-pink {
  background-color: #f88d9b;
  background-image: radial-gradient(circle, #db0829 2.5px, transparent 2.5px), radial-gradient(circle, #db0829 2.5px, transparent 2.5px);
  background-position: 0 0, 12.5px 25px;
  background-size: 25px 50px;
  position: relative;
  z-index: 9;
}

.bk-purple {
  background-color: #9a97c3;
  background-image: radial-gradient(circle, #4339c2 2.5px, transparent 2.5px), radial-gradient(circle, #4339c2 2.5px, transparent 2.5px);
  background-position: 0 0, 12.5px 25px;
  background-size: 25px 50px;
  position: relative;
  z-index: 9;
}

.bk-yellow {
  background-color: #ffe58b;
  background-image: radial-gradient(circle, #ffaa00 2.5px, transparent 2.5px), radial-gradient(circle, #ffaa00 2.5px, transparent 2.5px);
  background-position: 0 0, 12.5px 25px;
  background-size: 25px 50px;
  position: relative;
  z-index: 9;
}






/********************sale item**************************/

.sale-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 8em;
  flex-wrap: wrap;
}


.sale-con {
  width: calc((100% - 125px) / 2);
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  margin-bottom: 1em;
  margin-left: 10px;
  margin-right: 10px;
}

.pink-shadow {
  box-shadow: 3px 3px 0px 0px rgba(219, 8, 41, 1);
}

.purple-shadow {
  box-shadow: 3px 3px 0px 0px rgba(67, 57, 194, 1);
}

.yellow-shadow {
  box-shadow: 3px 3px 0px 0px rgba(255, 170, 1, 1);
}

.saleFlex {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;

}


/*
.shop-logo{
	

	width: 100%;
	    max-width: 120px;
}
*/


.shop-logo img {
  display: block;
  max-width: 120px;
  /* shop-logoのmax-widthと同じに合わせる */
  width: 100%;
  height: auto;
  margin: 0 auto;
}


.shop-info {
  width: 300px;
  padding-left: 10%;
}


.shop-category {
  font-size: 1em;
  color: #fff;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
}


.floor {
  background-color: #9E9E9E;
  border-radius: 5px;
  padding: 3px 10px;
  margin-right: 3px;
}


.genre {
  background-color: #9A97C3;
  border-radius: 5px;
  padding: 3px 10px;
  margin-right: 3px;
}


.only-day {
  background-color: #505050;
  border-radius: 5px;
  padding: 3px 10px;
  margin-right: 3px;
}




.shop-name {
  font-size: 1em;
  color: #707070;
  font-weight: 400;
  text-decoration: underline;
}


.shop-name a {
  color: #707070;
}


.sale-item {
  font-size: 1.4em;
  color: #252525;
  font-weight: bold;
  margin-top: -6px;
}

.tax {
  font-size: 0.95em;
  color: #707070;
  font-weight: 400;
}


.price {
  font-size: 3em;
  color: #DB0829;
  font-weight: 600;
  text-align: end;
  line-height: 1em;
  margin-top: -10px;
  margin-bottom: 0px;
}

.price.small-p {
  font-size: 2.5em;
  line-height: 0.6em;
  margin-bottom: 0.5em;
}

.price-en {
  font-size: 2.5em;
  color: #DB0829;
  font-weight: 600;
  text-align: end;
  line-height: 0.6em;
  margin-top: -10px;
  margin-bottom: 10px;
}






.small-price {
  font-size: 0.5em;
}


.sale-notice {
  text-align: end;
  color: #707070;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}


.sale-2item {
  margin-top: 12px;
  margin-bottom: -6px;
}


/********************PICK UP**************************/

#pickup-con {
  margin-top: 15em;
  padding: 0 10px;
}


.pickup-inner {
  max-width: 1200px;
  margin: 0 auto;
  border: solid 2px #B79756;
  padding: 5em 1em 2em 1em;
}


.pickup-title {
  max-width: 463px;
  margin: 0 auto;
  width: 88%;
  background-color: #fff;
  padding: 10px;
  margin-top: -13em;
}


/**************mtタグ********************/
.otherevent_item {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.otherevent_item li {
  width: calc(100% / 3);
  padding: 10px;
  background-color: #ffffff;
  /* border: #FBB4A5 solid 3px; */
  border-radius: 13px;
  margin: 0 5px;
  box-shadow: 2px 3px 6px 0px rgba(1, 126, 123, 0.56);
}

@media screen and (min-width: 550px) {
  .otherevent_item li {
    width: calc(100% / 5);
  }
}


.otherevent_item li a {
  text-decoration: none;
}


.otherevent_image {
  background: #fff;
  position: relative;
  margin-bottom: 1em;
  display: flex;

  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: auto;
  align-items: center;

}

.otherevent_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}







/**************mtタグ 終********************/




.btn-link {

  max-width: 300px;

  display: block;
  text-align: center;
  margin: 0 auto;
}


.app_btn {
  max-width: 300px;
  margin: 2em auto 0 auto;
  background-color: #1C82B5;
  border-radius: 50px;
  padding: 12px 5px;
  box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, 0.33);

}

.app_btn p {
  text-align: center;
  font-size: 1.2em;
  color: #fff;
  font-weight: 400;
  position: relative;
  margin: 0 auto;
}


.app_btn p::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}


.app_btn p:hover::after {
  right: 10px;
}

.app_btn:hover {
  box-shadow: none;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .app_btn p {

    font-size: 1em;
  }

  .app_btn {
    max-width: 300px;
    padding: 20px 5px;
  }

  .btn-link {
    max-width: 300px;
  }

  .app_btn p::after {
    right: 9px;
  }
}




/***********************バナーリンク*****************************/

#contents-link {
  margin-bottom: 6em;
}



.banner-inner {
  padding: 20px;
  margin: 0 20px;
}

.banner-inner p {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2em;
  position: relative;
}



.banner-inner p::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -120%;
  left: 50%;
  margin-top: -4px;
  /*  transform: rotate(135deg);*/
  /*アニメーションの指定*/
  transition: all .3s;
  transform: translateY(-50%) translateX(-50%);
}



.banner-img {
  max-width: 295px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, 0.33);
  margin-top: 3em;
  line-height: 1px;
}

.banner-img:hover {
  box-shadow: none;
  transition: all .3s;
}




.tokuten-title {
  position: relative;
  padding: 1rem 1.5rem;
  color: #3A3A3A;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  display: table;
  margin: 0 auto;
  margin-top: 2em;
}


.tokuten-title::after {
  position: absolute;
  top: 11px;
  height: 40px;
  transform: rotate(30deg);
  content: '';
}

.tokuten-title::before {
  position: absolute;
  top: 11px;
  height: 40px;
  transform: rotate(-30deg);
  content: '';
}


.tokuten-title::before {
  border-left: solid 3px #3A3A3A;
  left: -10px;
}

.tokuten-title::after {
  border-right: solid 3px #3A3A3A;
  right: -10px;
}


.line-banner {
  max-width: 600px;
  margin: 0 auto;
  width: 94%;
  box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, 0.33);
  margin-top: 1em;
  line-height: 1px;
}

.line-banner:hover {
  box-shadow: none;
  transition: all .3s;
}




/********************footer***************************/

#footer {
  font-size: 10px;
  text-align: center;
  background: #EEEEEE;
  position: relative;
  z-index: 10;
}




.tc {
  text-align: center;
  font-size: 1.3em;
  font-weight: 500;
  color: #666666;
  display: inline-block;
}


@media screen and (max-width: 767px) {
  .tc {
    font-size: 1em;
  }

}

/*************top btn****************/
@media all and (-ms-high-contrast: none) {
  .line_anime {
    height: auto;
  }
}

.topbtn {
  z-index: 999;
}


.footer_txt {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.3em;
  text-shadow: 1px 1px 2px #666666;
}



.scrollaction {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.scrollaction .actionactive {
  opacity: 1;
  transform: translate(0, 0);
}

.topbtn {
  display: inline-block;
  padding-top: 0;
  position: fixed;
  bottom: 16px;
  right: 15px;
}

.topbtn a {
  text-decoration: none;
}

.topbtn::before {
  animation: scroll 3.5s infinite;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(135deg);
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .topbtn {
    bottom: 3%;
  }

}





@keyframes scroll {
  0% {
    transform: rotate(135deg) translate(0, 0);
  }

  80% {
    transform: rotate(135deg) translate(-20px, 20px);
  }

  0%, 80%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.con__evenbtn .scrollaction,
.eventall__link-btn-arrow .scrollaction {
  transform: translate(-100px, 0);
}

.con__evenbtn .scrollaction.actionactive,
.eventall__link-btn-arrow .scrollaction.actionactive {
  opacity: 1;
  transform: translate(0, 0);
}

/*************top 終****************/



/********************sp*****************************/


@media screen and (max-width: 1250px) {
  .con-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}





@media screen and (max-width: 984px) {
  .shop-category {
    font-size: 0.9em;
  }


  .shop-info {
    padding-left: 7%;
  }


  .floor {

    padding: 3px 3px;
    margin-right: 3px;
  }


  .genre {

    padding: 3px 3px;
    margin-right: 3px;
  }


  .only-day {
    padding: 3px 3px;
    margin-right: 3px;
  }

  .shop-logo img {
    max-width: 77px;
  }


  .price-en {
    line-height: 0.8em;
    margin-top: -1px;
  }

}





@media screen and (max-width: 768px) {

  .con-wrap {
    margin-top: 6em;
  }



  .con::after, .con::before {
    display: none;
  }

  .bk-bule::after, .bk-bule::before {
    display: none;
  }

  .bk-yellow::after, .bk-yellow::before {
    display: none;
  }


  .sale-list {
    margin-top: 2em;
    margin-left: 15px;
    margin-right: 15px;
  }

  .sale-con {

    width: calc((89%) / 1);
  }

  .category-title {
    width: 70%;
  }

  .category-title2 {
    width: 70%;
  }



  .shop-category {
    font-size: 0.8em;
  }



  .shop-logo img {
    max-width: 117px;
  }


  .shop-info {
    width: 355px;
  }

  .shop-name {
    font-size: 0.9em;
  }

  .sale-item {
    font-size: 1.3em;
  }

  .tax {
    font-size: 0.9em;
  }

  .price {
    font-size: 2.4em;
  }


  .price.small-p {
    font-size: 2.4em;
    line-height: 1em;
    margin-bottom: 0px;
  }

  .price-en {
    font-size: 2.4em;
  }

  .category-wrap {
    margin-top: -3em;
    margin-bottom: 15em;
  }


  .bannerFlex {
    display: block;
  }

  .banner-inner p {
    font-size: 1.1em;
  }

  .pickup-title {
    margin-top: -9em;
  }

  .mgn-minus {
    margin-bottom: 5em;
  }

  #pickup-con {
    margin-top: 9em;
  }


}

@media screen and (max-width: 472px) {
  .tokuten-title {
    font-size: 1.1em;

  }

  .tokuten-title::before {
    left: 8px;
  }


  .tokuten-title::after {
    right: 8px;
  }
}




/*マーカー*/
.marker {
  background: linear-gradient(transparent 70%, #FFEB5F 30%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}


/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

@media screen and (max-width: 768px) {

  .marker {
    background: linear-gradient(transparent 75%, #FFEB5F 25%);
    display: inline;
    /* 背景の繰り返しを停止 */
    background-repeat: no-repeat;

    /* マーカーの横方向を0にして縮める */
    background-size: 0% 100%;

    /* マーカーが引かれる速度を指定 */
    transition: background-size 1.5s;
  }


  /* マーカーが引かれる際に付与するクラス */
  .marker.on {
    /* 横方向を100%にして、マーカーを引く */
    background-size: 100% 100%;
  }




}



.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  /* 30px下から開始 */
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*スクロールアップ*/
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.navi_btn {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 180px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn_brw {
  margin: 10px;
  position: relative;
}

.btn_brw a {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 10px;
  background-color: #FFFFFF;
  border: #50253F solid 4px;
}

.ladies::before {
  position: absolute;
  content: "";
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 0px;
  left: -4px;
  z-index: 2;
}

@media print,
screen and (min-width: 768px) {
  .ladies::before {
    opacity: 0;
  }

  .ladies:hover::before {
    opacity: 1;
  }
}


.kids::before {
  position: absolute;
  content: "";
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  bottom: 0px;
  left: -4px;
  z-index: 2;
}

@media print,
screen and (min-width: 768px) {
  .kids::before {
    opacity: 0;
  }

  .kids:hover::before {
    opacity: 1;
  }
}


.goods::before {
  position: absolute;
  content: "";
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  top: 0px;
  right: -4px;
  z-index: 2;
}

@media print,
screen and (min-width: 768px) {
  .goods::before {
    opacity: 0;
  }

  .goods:hover::before {
    opacity: 1;
  }
}


.youme::before {
  position: absolute;
  content: "";
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  bottom: 0px;
  right: -4px;
  z-index: 2;
}

@media print, screen and (min-width: 768px) {
  .youme::before {
    opacity: 0;
  }

  .youme:hover::before {
    opacity: 1;
  }
}


.btn_youme {
  margin: 10px;
  position: relative;
}

.btn_youme a {
  background-color: #8C86DF;
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 10px;
  border: #50253F solid 4px;
}

.btn_txt {
  position: relative;
  margin: auto;
  width: 95%;
  padding: 50px 0;
}

.btn_txt.fgoods {
  padding: 30px 0;
}

.btn_brw a::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 0;
  border-bottom: solid 3px #DB0829;
  border-right: solid 3px #DB0829;
  transform: rotate(45deg);
  position: absolute;
  left: 44%;
  bottom: 20px;
  margin: auto;
}

.btn_txt_main {
  color: #DB0829;
  font-weight: 800;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.2;
}

.btn_txt_sub {
  color: #DB0829;
  font-weight: 500;
  text-align: center;
  font-size: 0.8em;
}

.btn_txtyoume {
  position: relative;
  margin: auto;
  width: 95%;
  padding: 40px 0;
}

.btn_youme a::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 0;
  border-bottom: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  left: 44%;
  bottom: 20px;
  margin: auto;
}


.btn_txt_mainyoume {
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.2;
}

@media screen and (max-width:767px) {
  .navi_btn {
    margin: 40px auto 60px;
  }

  .btn_brw a {
    display: inline-block;
    width: 100px;
    height: 100px;
    padding: 5px;
    border: #50253F solid 3px;
  }

  .ladies::before {
    width: 35px;
    height: 35px;
  }

  .kids::before {
    width: 35px;
    height: 35px;
  }

  .goods::before {
    width: 35px;
    height: 35px;
  }

  .youme::before {
    width: 35px;
    height: 35px;
  }


  .btn_txt {
    padding: 30px 0;
  }

  .btn_txt.fgoods {
    padding: 20px 0;
  }

  .btn_brw a::before {
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #DB0829;
    border-right: solid 2px #DB0829;
    transform: rotate(45deg);
    bottom: 10px;
  }

  .btn_txt_main {
    font-size: 1em;
  }

  .btn_txt_sub {
    font-size: 0.6em;
  }

  .btn_youme a {
    display: inline-block;
    width: 100px;
    height: 100px;
    padding: 5px;
    border: #50253F solid 3px;
  }

  .btn_txtyoume {
    padding: 30px 0;
  }

  .btn_txt_mainyoume {
    font-size: 0.9em;
    font-weight: 900;
  }

  .btn_youme a::before {
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    bottom: 10px;
  }
}

.circle01 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 16%;
  left: -8%;
  background: #EFDB95;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

.circle02 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 2%;
  left: 12%;
  background: #ffffff;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

.circle03 {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 2%;
  left: 2%;
  background: #A3D6C5;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

.circle04 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 6%;
  right: -3%;
  background: #9A97C3;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

.circle05 {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 12%;
  right: 2%;
  background: #F88D9B;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

.circle06 {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -15%;
  right: 30%;
  background: #FFFFFF;
  border: #50253F solid 2px;
  border-radius: 100%;
  z-index: 1;
}

@media print, screen and (max-width: 768px) {
  .circle01 {
    width: 130px;
    height: 130px;
    top: 6%;
    left: -8%;
  }

  .circle02 {
    display: none;
  }

  .circle03 {
    width: 100px;
    height: 100px;
    bottom: -2%;
    left: -2%;
  }

  .circle04 {
    width: 130px;
    height: 130px;
    top: 90%;
    right: -3%;
  }

  .circle05 {
    width: 100px;
    height: 100px;
    bottom: 85%;
    right: -2%;
  }

  .circle06 {
    display: none;
  }

}

.navi-acc01 {
  position: absolute;
  content: "";
  background-color: #F88D9B;
  border: #50253F solid 2px;
  border-radius: 100%;
  width: 170px;
  height: 170px;
  bottom: -50%;
  right: -15%;
}

.ttl-datte {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #50253fc7;
  padding: 20px 0 10px;
  width: 100%;
  z-index: 20;
  text-align: center;
}

.ttl-datte-img {
  max-width: 800px;
  width: 95%;
  margin: auto;
  text-align: center;
}

.navi-acc02 {
  position: absolute;
  width: 50px;
  top: 5%;
  left: -2%;
}

@media print, screen and (max-width: 768px) {
  .navi-acc01 {
    display: none;
  }

  .navi-acc02 {
    display: none;
  }
}

.recommend-acc01 {
  position: absolute;
  content: "";
  background-color: #9A97C3;
  border: #50253F solid 2px;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  bottom: -30%;
  left: -5%;
}

@media print, screen and (max-width: 768px) {
  .recommend-acc01 {
    display: none;
  }
}

.ladies-acc01 {
  position: absolute;
  width: 50px;
  top: 5%;
  left: 4%;
}

.ladies-acc02 {
  position: absolute;
  width: 80px;
  top: 2%;
  right: 2%;
}

.ladies-acc03 {
  position: absolute;
  width: 50px;
  bottom: 5%;
  left: 4%;
}

.ladies-acc04 {
  position: absolute;
  width: 50px;
  bottom: -3%;
  right: 2%;
}

@media print, screen and (max-width: 768px) {
  .ladies-acc01 {
    display: none;
  }

  .ladies-acc02 {
    width: 80px;
    top: 102%;
    right: 10%;
  }

  .ladies-acc03 {
    width: 50px;
    bottom: -5%;
    left: 10%;
  }

  .ladies-acc04 {
    display: none;
  }
}

.goods-acc01 {
  position: absolute;
  content: "";
  background-color: #A3D6C5;
  border: #50253F solid 2px;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  top: -10%;
  right: -5%;
}

.goods-acc02 {
  position: absolute;
  width: 80px;
  bottom: 10%;
  left: 2%;
}

.goods-acc03 {
  position: absolute;
  content: "";
  background-color: #FFFFFF;
  border: #50253F solid 2px;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  bottom: -10%;
  right: -5%;
}

.goods-acc04 {
  position: absolute;
  width: 50px;
  bottom: 50%;
  right: 4%;
}

@media print, screen and (max-width: 768px) {
  .goods-acc01 {
    display: none;
  }

  .goods-acc02 {
    width: 80px;
    top: 102%;
    right: 10%;
  }

  .goods-acc03 {
    display: none;
  }

  .goods-acc04 {
    width: 50px;
    bottom: -5%;
    right: 10%;
  }
}

.kids-acc01 {
  position: absolute;
  content: "";
  background-color: #EFDB95;
  border: #50253F solid 2px;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  bottom: -10%;
  left: -5%;
}

.kids-acc02 {
  position: absolute;
  width: 80px;
  bottom: 8%;
  right: 2%;
}

@media print, screen and (max-width: 768px) {
  .kids-acc01 {
    display: none;
  }

  .kids-acc02 {
    position: absolute;
    width: 80px;
    bottom: -10%;
    right: 12%;
  }
}