@charset 'utf-8';
/* ============ STYLE ============ */
* {
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #4c4c4c;
  background-attachment: fixed;
}
body.active {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #323232;
}
a:hover {
  cursor: pointer;
  opacity: 0.9;
}
*:focus {
  outline: none;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
body.scroll-disable {
  overflow: hidden;
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

.inner {
  width: 90%;
  margin: 0 auto;
}

/* -----------------------
  Wrap
-------------------------- */
main {
  overflow: hidden;
}
section {
  overflow: hidden;
  position: relative;
}
.wrap {
  width: 375px;
  max-width: 100%;
  margin: 0 auto;
}

.noteList {
  font-size: 12px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.noteList li {
  padding-left: 1em;
  text-indent: -1em;
}
.noteList li::before {
  content: "\203B";
}

@media only screen and (max-width: 640px) {
  .wrap {
    width: 100%;
  }
}

:root {
  --gray: #e6e6e6;
  --bg01: #f1eced;
  --pink01: #c8979f;
  --red: #bd5866;
}

@font-face {
  font-family: "bell";
  src: url(../font/bell-mt.php) format("woff");
}

/* -----------------------
  header
-------------------------- */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  max-width: 100%;
  z-index: 999;
}
header .hbg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--gray);
  z-index: 9999;
  border-radius: 13px;
}
header .hbg span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink01);
  width: 22px;
  height: 2px;
}
header .hbg span:first-child {
  top: 13px;
}
header .hbg span:nth-child(2) {
  top: 20px;
}
header .hbg span:last-child {
  top: 27px;
}
header .hbg.active span:first-child {
  transform: translate(-50%, 7px) rotate(45deg);
}
header .hbg.active span:nth-child(2) {
  opacity: 0;
}
header .hbg.active span:last-child {
  transform: translate(-50%, -7px) rotate(-45deg);
}

.nav {
  width: 100%;
  height: 100vh;
  padding: 60px 0;
  background: #eacecc;
  text-align: center;
  visibility: hidden;
  display: none;
  opacity: 0;
  transition: 0.3s;
  overflow-y: scroll;
}
.nav.active {
  display: block;
  visibility: visible;
  opacity: 1;
}
.nav .nav_cont {
  width: 90%;
  margin: 20px auto 0;
  padding: 30px 5%;
  background: #fff;
  border-radius: 12px;
  counter-reset: list-counter;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.nav .nav_head {
  color: #c8979f;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.nav_head::before,
.nav_head::after {
  content: "";
  position: relative;
  width: 60px;
  height: 40px;
}
.nav_head::before {
  background: url(../img/ttl_left.png) no-repeat center / contain;
}
.nav_head::after {
  background: url(../img/ttl_right.png) no-repeat center / contain;
}
/* .nav .nav_head::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/nav_head-bottom.png) repeat-x center / contain;
} */
.nav .nav_menu {
  margin: 30px auto 0;
  padding: 0 2.5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.nav .nav_menu li {
  width: 100%;
  margin-bottom: 10px;
}
.nav .nav_menu li a {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}
.nav .nav_menu li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #b3b3b3;
  border-right: solid 1px #b3b3b3;
  position: absolute;
  right: 10px;

  transform: rotate(45deg);
}

@media only screen and (max-width: 640px) {
  header {
    width: 100%;
  }
}

/* -----------------------
mv
-------------------------- */
#mv {
  padding: 50px 0 30px;
  background: url(../img/mvbg.png) no-repeat center/ cover;
}
.mvSlider {
  margin-top: -30px;
}
.mvSlider .swiper-wrapper {
  transition-timing-function: linear;
}
.mvSlider .swiper-slide {
  height: auto;
}
.mvSlider .swiper-slide img {
  padding-bottom: 2px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

/* -----------------------
 lead
-------------------------- */

/* -----------------------
menu
-------------------------- */
#menu {
  padding: 70px 0 40px;
  margin-top: -10px;
  background: var(--bg01);
  box-shadow: 0 0 5px var(--bg01);
}
.menu_head {
  color: #c8979f;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.menu_list {
  width: 90%;
  margin: 20px auto 0;
  padding: 30px 5% 20px;
  background: #fff;
  border-radius: 12px;
  counter-reset: list-counter;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.menu_list li {
  margin-bottom: 15px;
  counter-increment: list-counter;
}
.menu_list li a {
  padding-right: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.menu_list li a::before {
  content: counter(list-counter, decimal-leading-zero);
  margin-right: 20px;
  letter-spacing: -0.03em;
  color: var(--pink01);
  font-size: 36px;
  font-family: "bell", sans-serif;
  font-weight: 400;
}
.menu_list li a::after {
  content: "";
  margin: 0 0 0 auto;
  width: 6px;
  height: 6px;
  border-top: solid 1px #b3b3b3;
  border-right: solid 1px #b3b3b3;
  transform: rotate(135deg);
}

/* -----------------------
  coupon
-------------------------- */
#coupon {
  padding: 50px 0;
  position: relative;
}
.coupon_head {
  position: relative;
  width: 85%;
  height: 70px;
  margin: 0 auto 30px;
  text-align: center;
  background: var(--pink01);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  align-content: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
  box-shadow: 0 0 5px var(--pink01);
}
.coupon_head::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--pink01);
  box-shadow: 0 0 5px var(--pink01);
}

/* .coupon_txt::before,
.coupon_txt::after {
  content: "";
  height: 50px;
  width: 5px;
  border-radius: 10px;
  background: #fff;
}
.coupon_txt::before {
  transform: rotate(-20deg);
}
.coupon_txt::after {
  transform: rotate(20deg); */

.coupon_note {
  position: relative;
  font-size: 12px;
  z-index: 1;
}
#coupon .swiper-wrapper {
  margin-bottom: 10px;
}
#coupon .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

/* -----------------------
商品部分
-------------------------- */
.pd_bg {
  padding: 5px 0 100px;
  background: #eacecc;
  box-shadow: 0 0 5px #eacecc;
}
.pd_section {
  margin: 70px auto 0;
}
.cat_ttl {
  width: 82%;
  height: 50px;
  position: relative;
  margin: 0 auto 0;
  background: var(--pink01);
  border-radius: 25px;
  color: #fff;
  text-align: center;
  align-content: center;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.content_wrap {
  width: 90%;
  margin: -20px auto 0;
  padding: 40px 2.5% 10px;
  background: #fff;
  border: 1px solid var(--pink01);
  border-radius: 12px;
}
.cat_lead {
  padding-bottom: 30px;
  position: relative;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  border-bottom: 1px solid var(--pink01);
}
.pd_item {
  padding: 20px 4% 30px;
}
.pd_item:not(:last-child) {
  border-bottom: 1px solid #b3b3b3;
}
.pd_item .img {
  height: 145px;
}
.pd_item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd_item .desc {
  margin-top: 10px;
  text-align: center;
}
.pd_item .desc .name {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.1em;
  color: var(--red);
}
.pd_item .desc .name span {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
}
.pd_item .desc .txt {
  font-size: 14px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.pd_item .desc .indent {
  text-indent: -1em;
  padding-left: 1em;
}
.pd_item .desc .txt span {
  margin-top: 5px;
  display: block;
  font-size: 12px;
}
.pd_item .bnr {
  margin: 20px auto 0;
  display: block;
}
.pd_item .bnr_dummy {
  margin: 20px auto 0;
  width: 100%;
  height: 80px;
  display: block;
  background: #ccc;
  text-align: center;
  align-content: center;
}
.pd_btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pd_btn > a {
  position: relative;
  width: 50%;
  height: 40px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  box-shadow: 1px 2px 0 rgba(200, 151, 159, 0.5);
  letter-spacing: -0.05em;
}
.pd_btn > a::after {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.btn_detail {
  background: #fff;
  border: 1px solid var(--pink01);
  color: var(--red);
}
.btn_detail::after {
  border-top: solid 1px var(--red);
  border-right: solid 1px var(--red);
}
.btn_coupon {
  background: var(--pink01);
  color: #fff;
}
.btn_coupon::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

/* -----------------------
  footer
-------------------------- */
.footer {
  width: 100%;
  margin: 0 auto 0;
  background: #fff;
  text-align: center;
}
.footerLogo {
  width: 186px;
  margin: 0 auto;
  padding: 40px 0 0;
}
.footerLogo a:hover {
  opacity: 0.7;
  cursor: pointer;
}
.copyright {
  margin: 30px 0 0;
  padding-bottom: 40px;
  font-size: 10px;
  line-height: 1.4em;
}

.w10 {
  width: 10%;
  margin: 0 auto;
}
.w20 {
  width: 20%;
  margin: 0 auto;
}
.w30 {
  width: 30%;
  margin: 0 auto;
}
.w40 {
  width: 40%;
  margin: 0 auto;
}
.w50 {
  width: 50%;
  margin: 0 auto;
}
.w60 {
  width: 60%;
  margin: 0 auto;
}
.w70 {
  width: 70%;
  margin: 0 auto;
}
.w80 {
  width: 80%;
  margin: 0 auto;
}
.w90 {
  width: 90%;
  margin: 0 auto;
}
.w95 {
  width: 95%;
  margin: 0 auto;
}

.mt05 {
  margin-top: 5px;
}
.mt15 {
  margin-top: 15px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mt-05 {
  margin-top: -5px;
}

.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.mr40 {
  margin-right: 40px;
}
.mr50 {
  margin-right: 50px;
}
.mr60 {
  margin-right: 60px;
}
.mr70 {
  margin-right: 70px;
}
.mr80 {
  margin-right: 80px;
}
.mr90 {
  margin-right: 90px;
}

.mb05 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb110 {
  margin-bottom: 110px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb130 {
  margin-bottom: 130px;
}
.mb160 {
  margin-bottom: 160px;
}
.mb180 {
  margin-bottom: 180px;
}

.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.ml40 {
  margin-left: 40px;
}
.ml50 {
  margin-left: 50px;
}
.ml60 {
  margin-left: 60px;
}
.ml70 {
  margin-left: 70px;
}
.ml80 {
  margin-left: 80px;
}
.ml90 {
  margin-left: 90px;
}

.pd05 {
  padding: 5px;
}
.pd10 {
  padding: 10px;
}
.pd20 {
  padding: 20px;
}
.pd30 {
  padding: 30px;
}
.pd40 {
  padding: 40px;
}
.pd50 {
  padding: 50px;
}
.pd60 {
  padding: 60px;
}
.pd70 {
  padding: 70px;
}
.pd80 {
  padding: 80px;
}
.pd90 {
  padding: 90px;
}

.pt05 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt90 {
  padding-top: 90px;
}

.pr05 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr20 {
  padding-right: 20px;
}
.pr30 {
  padding-right: 30px;
}
.pr40 {
  padding-right: 40px;
}
.pr50 {
  padding-right: 50px;
}
.pr60 {
  padding-right: 60px;
}
.pr70 {
  padding-right: 70px;
}
.pr80 {
  padding-right: 80px;
}
.pr90 {
  padding-right: 90px;
}

.pb05 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb70 {
  padding-bottom: 70px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb90 {
  padding-bottom: 90px;
}

.pl05 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl20 {
  padding-left: 20px;
}
.pl30 {
  padding-left: 30px;
}
.pl40 {
  padding-left: 40px;
}
.pl50 {
  padding-left: 50px;
}
.pl60 {
  padding-left: 60px;
}
.pl70 {
  padding-left: 70px;
}
.pl80 {
  padding-left: 80px;
}
.pl90 {
  padding-left: 90px;
}

.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}

.fs10 {
  font-size: 10px;
}

.ls_75 {
  letter-spacing: -0.075em;
}
