@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;
}
@media screen and (max-width: 374px){
    :root{
        font-size: 9px;
    }
}

*, *::before, *::after {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background:#e9e0ef;
  background-size: 100% auto;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);

  background: url("../images/bg_main.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  body::before {
    background: url("../images/bg_main._sp.png");
    background-size: 100% auto;
  }
}

:lang(en),
.en {
  font-family: "Inter", sans-serif;
}
img{
  width: 100%;
  height: auto;
}
a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}

.pc_case{display: block;}
.sp_case{display: none;}

.wrapper{
  position: relative;
  max-width: 768px;
  width: 92.1875%;
  margin: 0 auto;
}
.sec{padding: 80px 0 0;}
.containerbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.containerbox::after{
  content: "";
  display: block;
  width: 31.333%;
}
.item_box{
  position: relative;
  width: 31.333%;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  z-index: 10;
}
.item_img{
  position: relative;
  display: block;
}
.item_box img{
  display: block;
  border: 2px solid #d2bc6c;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.item_box::after{
  content: '＋';
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: #fadae2;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.item_img::after{
  bottom: 13px;
}

@media (max-width: 768px) {
  .sec{padding: 30px 0 0;}
  .item_box{width: 48%;}
  .pc_case{display: none;}
  .sp_case{display: block;}
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==============================
    header
=============================== */
header{
  position: relative;
  padding-top: 80px;
}

header::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../images/head_race.gif) repeat-x;
  background-size: auto 60px;

  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 768px) {
  header{padding-top: 20px;}
  header::before{
    background: url(../images/head_race.gif) repeat-x;
    background-size: auto 38px;
    background-position: top center;
  }
}

/* ==============================
    footer
=============================== */
#foot_shop{
  position: relative;
  padding: 40px 6%;
  z-index: 10;
}
#foot_shop p{
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.logo_aeon{
  display: block;
  max-width: 240px;
  width: 70%;
  margin: 0 auto 10px;
}

a:link.btn_aeon,
a:visited.btn_aeon{
  box-sizing: border-box;
  display: block;
  background: #e9546b;
  border-radius: 18px;
  color: #fff;
  font-size: 1.3rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  line-height: 36px;
  padding:0 20px;
  margin: 0 auto;
}
a:hover.btn_aeon{
  color: #fff;
  background: #e71e15;
}
#page_top{
  position: fixed;
  right: 0;
  bottom: -80px;
  display: block;
  width: 60px;
  height: 60px;
  z-index: 10;
}
#page_top:hover{opacity: 0.95;}

@media (max-width: 768px) {
  .logo_aeon{
    max-width: initial;
    width: 70%;
  }

}

/* 固定ボタンなど */
#pcbox_left,
#pcbox_right{
  position: fixed;
  min-width: 200px;
  width: 18vw;
  top: 50%;
  z-index: 10;
}
#pcbox_left{
  left: calc(50% - 768px / 2 - 0.5%);
  transform: translate(-100%, -50%);
}
#pcbox_right{
  left: calc(50% + 768px / 2 + 1.5%);
  transform: translateY(-50%);
}
#pcbox_right .pcbox_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

#pcbox_right a.btn_right{
  position: relative;
  width: 46%;
  height: auto;
}

/* pc side 途中から出てくる */
@media screen and (min-width: 1215px){
  .pcbox_inner{
    opacity: 0;
    transform: scale(0.96);
    transition:opacity 0.4s ease,transform 0.4s ease;
    pointer-events: none;
  }

  .pcbox_inner.is-show{
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

@media screen and (max-width: 1214px){
  #pcbox_left,
  #pcbox_right{
    display: none;
  }
}

footer{
  position: relative;
  z-index: 100;
}
#foot_btn{
  display: none;
}
@media screen and (max-width: 1214px){
  body{padding-bottom: 180px;}
  footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.6s ease-out;
  }
  footer::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #e9546b;
    z-index: 0;
  }

/* スクロールしたら下からfooterが出てくる */
  footer.is-show{
    transform: translateY(0);
  }

/* 固定ボタン */
  #foot_btn{
    position: relative;
    display: block;
    width: 65%;
    margin: 0 auto;
    z-index: 20;
  }
  #foot_btn .containerbox{
    display: flex;
    justify-content: space-between;
  }
  #foot_btn a.item_btn{
    position: relative;
    display: block;
    width: 33.33%;
    line-height: 0;
    border-right: 1px solid #fff;
    padding: 10px 0;
  }
  #foot_btn a.item_btn:nth-child(3n){
    border-right:none;
  }
  #foot_btn a.item_btn:first-child,
  #foot_btn a.item_btn:nth-child(2),
  #foot_btn a.item_btn:nth-child(3){
    border-bottom: 1px solid #fff;
  }
  #foot_btn a.item_btn img{
    display: block;
    width: auto;
    height: 22px;
    margin: auto;
  }

  #foot_btn a.item_btn:hover img{
    opacity: 0.95;
  }
}
@media screen and (max-width: 768px){
  body{padding-bottom: 80px;}

  footer .wrapper,
  #foot_btn{
    width: 100%;
  }
  #left_box,
  #right_box{
    display: none;
  }
    #foot_btn a.item_btn img{
      height: 15px;
    }
}


/* ==============================
    main
=============================== */
#bag,
#fashion,
#cosme,
#healing,
#practical,
#gourmet{
  margin-bottom: 80px;
}

.titl_main img{
  display: block;
  width: auto;
  height: 160px;
  margin: 0 auto 40px;
}


@media screen and (max-width: 768px){
  #bag,
  #fashion,
  #cosme,
  #healing,
  #practical,
  #gourmet{
    margin-bottom: 30px;
  }
  .titl_main img{height: 120px;}

}