@charset "euc-jp";
/****************************************************************************************************************************/
/*
/*
/* = Layout Style
/*
/*
/****************************************************************************************************************************/
/*------------------------------------------------
reset
--------------------------------------------------*/
html, body, header, footer, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, address, abbr, acronym, aress, article, aside, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, section,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, nav,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
button, hr {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: inherit;
  background: transparent;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
  font-style: normal;
  text-align: left;
  list-style: none;
  position: relative;
  line-height: 1;
}

body {
  position: relative;
  min-width: min(98vw, 1000px);
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 100%;
  }
}

body.scrollnone {
  overflow: hidden;
}

img,
svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
p a{
  text-decoration: underline;
}
/*
/*
/* = Common style
/*
/*
/* ------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

a,
.pointer,
button,
input[type=submit] {
  transition: all 0.3s ease;
}
a:hover,
.pointer:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.5;
}

.pointer {
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.objectfit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(98vw, 1000px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

.content {
  background-size: 2000px;
  background-position: center top;
  background-repeat: no-repeat;
}

.flexSpace {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flexEnd {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.flexSpace.center,
.flexEnd.center {
  align-items: center;
}

body {
  margin: 0;
  padding: 0;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.6rem, 16px);
  line-height: 1;
  font-weight: 400;
  /*background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/content-bg.png) no-repeat center bottom;
  background-repeat: repeat-y;*/
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/content-bg.png) no-repeat center bottom, url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/content-bg.png) no-repeat center top;
}
@media screen and (max-width: 767px) {
  body {
    background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/content-bg.png) no-repeat center 50px, url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/content-bg.png) no-repeat center bottom;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
/*------------------------------------------------
 Title
--------------------------------------------------*/
.ttl {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 64px 0 32px;
}
@media screen and (max-width: 767px) {
  .ttl {
    font-size: 15px;
  }
}
.ttl span {
  display: block;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  color: #00b4ca;
  padding: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .ttl span {
    font-size: 13px;
    padding-top: 8px;
  }
}

/*------------------------------------------------
 Button
--------------------------------------------------*/
.btn-base {
  position: relative;
  display: inline-block;
  width: 260px;
  height: 60px;
  line-height: 60px;
  border: 1px solid transparent;
  font-size: 16px;
  text-align: center;
  background-color: transparent;
  transition: all 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .btn-base {
    width: 195px;
    height: 45px;
    line-height: 45px;
    font-size: 12px;
  }
}
.btn-base span {
  display: inline-block;
  font-size: 12px;
  font-family: "Quicksand", sans-serif;
  color: #80c0cb;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn-base span {
    font-size: 9px;
    top: 55%;
  }
}
.btn-base::before {
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: left center;
  z-index: -1;
}
.btn-base:not([disabled]):hover {
  color: #008197;
  background-color: transparent;
  opacity: 1;
}
.btn-base:not([disabled]):hover::before {
  transform-origin: right center;
  transform: scaleX(0);
}
.btn-base.btn-blue {
  color: #ffffff;
  border-color: #008197;
}
.btn-base.btn-blue::before {
  background-color: #008197;
}

.btn-wrap {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    padding-bottom: 32px;
  }
}

/*
/*
/* = Header style
/*
/*
/* ------------------------------------------------------------------------------------- */
.header {
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: #9fe1dd;
}
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    height: 60px;
    background-color: #9fe1dd;
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
  }
}
.scroll .header {
  animation: fadein 0.4s ease;
  background-color: #9fe1dd;
  height: 60px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-inner {
    aspect-ratio: auto;
    height: 60px;
    padding-left: svw(10);
    padding-right: svw(10);
  }
}
.header-logo {
  position: absolute;
  left: 3px;
  top: 15px;
  display: inline-block;
  width: min(20vw, 277px);
  z-index: 1;
}
.scroll .header-logo {
  width: 190px;
  top: 5px;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header-btn {
    position: absolute;
    left: 10px;
    top: 6px;
    z-index: 102;
    width: 46px;
    height: 46px;
  }
  .header-btn span,
  .header-btn span::before,
  .header-btn span::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 1px;
    background-color: #339aac;
    transition: all 0.3s;
  }
  .header-btn span {
    top: 0;
    bottom: 0;
  }
  .header-btn span::before {
    top: -6px;
  }
  .header-btn span::after {
    top: 6px;
  }
  .scrollnone .header-btn span {
    background: transparent;
  }
  .scrollnone .header-btn span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .scrollnone .header-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.header-shopbtn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 84px;
}
.header-shopbtn ul {
  width: 100%;
  flex-wrap: nowrap;
}
.header-shopbtn ul li {
  width: calc(50% - 2px);
  border: solid 1px #339aac;
  padding: 9px;
}
.header-nav {
  width: 100%;
  position: absolute;
  right: 0px;
  top: 22px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.scroll .header-nav {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .header-nav {
    position: fixed;
    top: 60px;
    left: 0;
    background-color: #9fe1dd;
    width: 100%;
    /*height: calc(100svh - 60px);*/
    height: 100vh;
    z-index: 99999;
    overflow-y: scroll;
    display: none;
  }
}
.header-nav--global {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav--global {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
  }
}
.header-nav--global li {
  border-right: solid 1px rgba(255, 255, 255, 0.5);
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  .header-nav--global li {
    width: 100%;
    border: none;
    padding: 0 34px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav--global li:first-of-type a {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 768px) {
  .header-nav--global li:last-of-type {
    border: none;
    padding-right: 0;
  }
}
.header-nav--global li:last-of-type a {
  padding-right: 0;
}
.scroll .header-nav--global li {
  padding: 0 11px;
}
.scroll .header-nav--global li:nth-of-type(4), .scroll .header-nav--global li:nth-of-type(5), .scroll .header-nav--global li:nth-of-type(6) {
  border: none;
  padding-right: 0;
}
.header-nav--global li .nav-01::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_01.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-01::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-01::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li .nav-02::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_02.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-02::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-02::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li .nav-03::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_03.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-03::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-03::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li .nav-04::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_04.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-04::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-04::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li .nav-05::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_05.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-05::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-05::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li .nav-06::before {
  content: "";
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_06.svg) no-repeat center top;
  background-size: cover;
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 8px;
}
.scroll .header-nav--global li .nav-06::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .header-nav--global li .nav-06::before {
    margin: 0 20px 0 0;
  }
}
.header-nav--global li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 0px 11px;
  letter-spacing: 0px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header-nav--global li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav--global li a {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 24px 16px 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    line-height: 1;
    font-size: 16px;
  }
}
.header-nav--global li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  border: 2px solid transparent;
}
@media screen and (max-width: 767px) {
  .header-nav--global li a::after {
    content: none;
  }
}
.header-nav--global li a:hover {
  opacity: 1;
  text-decoration: none;
}
.header-nav--global li a:hover::after {
  width: 96%;
  height: 0;
  border-bottom-color: #008197;
  transition: width 0.5s;
}
.scroll .header-nav--global li a:hover::after {
  content: none;
}
.scroll .header-nav--global li a:hover {
  opacity: 0.5;
}
.scroll .header-nav--global li a {
  padding: 12px 5px;
}
@media screen and (max-width: 1024px) {
  .scroll .header-nav--global li a {
    padding: 12px 0;
    font-size: 12px;
  }
}
.scroll .header-nav--global li a.cart, .scroll .header-nav--global li a.login {
  width: 110px;
  border: solid 1px #339aac;
  padding: 12px 8px 10px 32px;
  text-align: center;
  transition: background-color 0.3s;
}
@media screen and (max-width: 1024px) {
  .scroll .header-nav--global li a.cart, .scroll .header-nav--global li a.login {
    width: 100px;
  }
}
.scroll .header-nav--global li a.cart::before, .scroll .header-nav--global li a.login::before {
  content: "";
  width: 23px;
  height: 23px;
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.scroll .header-nav--global li a.cart:hover, .scroll .header-nav--global li a.login:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.scroll .header-nav--global li a.cart::before {
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_05.svg) no-repeat center top;
  background-size: cover;
}
.scroll .header-nav--global li a.login::before {
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/header/icon_06.svg) no-repeat center top;
  background-size: cover;
}
.header-nav .shop-menu {
  width: 100%;
  padding: 0 70px;
  margin-top: 48px;
}
.header-nav .shop-menu li a {
  display: block;
  margin-bottom: 22px;
  font-weight: 500;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
/*
/* = Footer Guide style
/*
/*
/* ------------------------------------------------------------------------------------- */
.footer-guide {
  padding-top: 96px;
  padding-bottom: 192px;
}
@media screen and (max-width: 767px) {
  .footer-guide {
    padding: 70px 0 96px;
  }
}
.footer-guide .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-guide .container {
    flex-direction: column;
  }
}
.footer-guide .container section {
  width: calc(50% - 25px);
}
@media screen and (max-width: 767px) {
  .footer-guide .container section {
    width: 100%;
  }
}
.footer-guide .container section h3 {
  font-size: 20px;
  text-align: center;
  padding: 30px;
  border-top: solid 1px #7eaeb5;
  border-bottom: solid 1px #7eaeb5;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer-guide .container section h3 {
    font-size: 15px;
    padding: 23px;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopguide {
    margin-bottom: 24px;
  }
}
.footer-guide .container section.shopguide ul {
  padding-left: 55px;
}
.footer-guide .container section.shopguide ul li {
  font-size: min(2vw, 20px);
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopguide ul li {
    font-size: 15px;
  }
}
.footer-guide .container section.shopguide ul li:not(:last-of-type) {
  margin-bottom: 1em;
}
.footer-guide .container section.shopguide ul li::before {
  content: "・";
  display: inline-block;
}
.footer-guide .container section.shopinfo .flex {
  display: flex;
  justify-content: center;
}
.footer-guide .container section.shopinfo .shopinfo--logo {
  width: 110px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopinfo .shopinfo--logo {
    width: 82.5px;
  }
}
.footer-guide .container section.shopinfo .shopinfo--data li {
  margin-bottom: 1em;
}
.footer-guide .container section.shopinfo .shopinfo--data span {
  display: flex;
  font-size: min(2vw, 20px);
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopinfo .shopinfo--data span {
    font-size: 15px;
  }
}
.footer-guide .container section.shopinfo .shopinfo--data span.sns-insta::before {
  content: "";
  display: inline-block;
  background: url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/footer/icon-instagram.png) no-repeat center center;
  background-size: cover;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopinfo .shopinfo--data span.sns-insta::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}
.footer-guide .container section.shopinfo .shopinfo--data a {
  display: block;
  color: #7eaeb5;
}
@media screen and (max-width: 767px) {
  .footer-guide .container section.shopinfo .shopinfo--data a {
    font-size: 12px;
  }
}

/*
/*
/* = Footer style
/*
/*
/* ------------------------------------------------------------------------------------- */
#footer {
  background: #dfebec url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/footer/bg_flower.png) no-repeat center 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #footer {
    background-size: 100%;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    background: #dfebec url(https://file003.shop-pro.jp/PA01503/783/assets/images/common/footer/bg_flower_sp.png) no-repeat center 16px;
    background-size: 100%;
  }
}
#footer .container {
  padding: 96px 0 192px;
}
@media screen and (max-width: 767px) {
  #footer .container {
    padding: 70px 0 140px;
  }
}
#footer .container .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #footer .container .company-info {
    padding-bottom: 32px;
  }
}
#footer .container .company-info--logo {
  padding-bottom: 64px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .container .company-info--logo {
    padding-bottom: 32px;
  }
}
#footer .container .company-info--logo img {
  width: 278px;
}
@media screen and (max-width: 767px) {
  #footer .container .company-info--logo img {
    width: 208px;
  }
}
#footer .container .company-info--logo span {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #footer .container .company-info--logo span {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #footer .container .company-info--address p {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
  }
}
#footer .container .footer-nav--link {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
  padding-top: 64px;
}
#footer .container .footer-nav--link li {
  padding: 0 15px;
}
#footer .container .footer-nav--link li:not(:last-of-type) {
  border-right: solid 1px #000000;
}
#footer .container .footer-nav--link02 {
  display: flex;
  justify-content: center;
  padding-bottom: 64px;
  padding-top: 32px;
  border-top: solid 1px #7eaeb5;
}
#footer .container .footer-nav--link02 li {
  padding: 0 12px;
  font-size: min(1.6vw, 16px);
}
#footer .container .footer-nav--link02 li:not(:last-of-type) {
  border-right: solid 1px #000000;
}
#footer .container .copyright {
  text-align: center;
  color: #00b4ca;
  font-weight: normal;
  font-family: "Quicksand", sans-serif;
}
@media screen and (max-width: 767px) {
  #footer .container .copyright {
    font-size: 14px;
  }
}

#totop {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
}

#totop a {
  display: block;
  background: url("https://file003.shop-pro.jp/PA01503/783/assets/images/common/totop.png") no-repeat center top;
  background-size: 100%;
  height: 48px;
  width: 48px;
  text-indent: -9999px;
}
@media screen and (max-width: 767px) {
  #totop a {
    background: url("https://file003.shop-pro.jp/PA01503/783/assets/images/common/totop_sp.png") no-repeat center top;
    background-size: cover;
    height: 40px;
    width: 40px;
  }
}

@media screen and (min-width: 768px) {
  .scroll_fadein {
    opacity: 0;
    visibility: hidden;
  }
}

body.scroll .scroll_fadein {
  opacity: 1;
  visibility: visible;
  animation: fadein 0.3s ease;
}

.anchor {
  display: block;
  position: relative;
  z-index: -9999;
  margin-top: -73px;
  padding-top: 73px;
}

/*
/*
/* = Slider style
/*
/*
/* ------------------------------------------------------------------------------------- */
.base-button-prev,
.base-button-next {
  width: 48px !important;
  height: 48px !important;
  cursor: pointer !important;
  font-size: 0;
  top: 34% !important;
}
@media screen and (max-width: 767px) {
  .base-button-prev,
  .base-button-next {
    width: 36px;
    height: 36px;
  }
}

.base-button-prev {
  left: 22px;
}

.base-button-next {
  right: 22px;
}

.base-button-prev::before,
.base-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.base-button-prev::after,
.base-button-next::after {
  content: none !important;
}

.base-button-prev::before {
  background: url(https://file003.shop-pro.jp/PA01503/783/assets//images/top/arrow-l.png) no-repeat;
  background-size: cover;
}

.base-button-next::before {
  background: url(https://file003.shop-pro.jp/PA01503/783/assets//images/top/arrow-r.png) no-repeat;
  background-size: cover;
}

.base-pagination {
  bottom: 0.25rem;
}
.base-pagination .swiper-pagination-bullet {
  background-color: transparent;
  font-size: 0;
  border-radius: 4px;
  border: solid 1px #9fe1dd;
  opacity: 1;
  width: 40px;
  height: 8px;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .base-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 7px;
    margin: 0 4px;
  }
}
.base-pagination .swiper-pagination-bullet-active {
  background-color: #9fe1dd;
}

/*
/*
/*
/* = Inner Mainvisuial
/*
/*
/* ------------------------------------------------------------------------------------- */
#inner .mv {
  margin: 0 auto;
  width: 100%;
  background-image: url(https://file003.shop-pro.jp/PA01503/783/assets/images/inner/mv_bg.png), url(https://file003.shop-pro.jp/PA01503/783/assets/images/top/mv/bg01.png);
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
  background-position: center bottom, center top;
  padding: 86px 0 56px;
}
@media screen and (max-width: 767px) {
  #inner .mv {
    background-image: url(https://file003.shop-pro.jp/PA01503/783/assets/images/inner/mv_bg.png), url(https://file003.shop-pro.jp/PA01503/783/assets/images/top/mv/bg01.png);
    background-size: contain, cover;
    background-position: left bottom, center top;
  }
}
#inner .mv h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
}
#inner .mv h2 span {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
  font-family: "Quicksand", sans-serif;
  color: #ccf0f4;
}

/*
/*
/* = Sort
/*
/*
/* ------------------------------------------------------------------------------------- */
.sort-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.sort-list li {
  font-size: 14px;
  line-height: 1;
}
.sort-list li:not(:last-child)::after {
  display: inline-block;
  content: "|";
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/*
/*
/* = Paging
/*
/*
/* ------------------------------------------------------------------------------------- */
.paging {
  margin-top: 60px;
}
.paging-pager {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-size: min(1.6rem, 16px);
}
.paging-pager--btn a,
.paging-pager--btn span {
  display: block;
  padding: 1em 2em;
  color: #005e78;
}
@media screen and (max-width: 767px) {
  .paging-pager--btn a,
  .paging-pager--btn span {
    padding: 0.6em 0.8em;
    font-size: 12px;
  }
}
.paging-pager--btn a.btn--prev::before,
.paging-pager--btn span.btn--prev::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  font-size: min(1.2rem, 12px);
}
.paging-pager--btn a.btn--next::after,
.paging-pager--btn span.btn--next::after {
  display: inline-block;
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: min(1.2rem, 12px);
}
.paging-pager--btn a.disabled,
.paging-pager--btn span.disabled {
  cursor: default;
  opacity: 0.5;
}
.paging-pager--num a,
.paging-pager--num span {
  display: block;
  padding: 1em 1.25em;
  color: #005e78;
  border-bottom: solid 1px #005e78;
}
@media screen and (max-width: 767px) {
  .paging-pager--num a,
  .paging-pager--num span {
    padding: 0.6em 0.8em;
    font-size: 12px;
  }
}
.paging-pager--num.current span {
  border-bottom: solid 3px #005e78;
}
.paging-desc {
  text-align: center;
}

/*
/*
/* = Subcategory
/*
/*
/* ------------------------------------------------------------------------------------- */
.subcategory-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 20px 0;
}
.subcategory-list li {
  font-size: 14px;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 10px;
}
.subcategory-list li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(0, 48, 114, 0.1);
}
.subcategory-list li a img {
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  max-width: 60px;
  max-height: 60px;
}
.subcategory-list li a span {
  display: block;
  padding: 1em;
}
.subcategory-list li.notactive {
  opacity: 0.6;
}

/*年齢確認ページ*/

#header_i{
  width: 800px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#main_i{
  width: 800px;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
}
#main_i img[alt="年齢認証"]{
  width: 160px;
  display: block;
  margin: 0 auto;
}

#main_i #validation_txt_i{
  line-height: 1.5;
}



.price_table{
	width: 100%;
	border-collapse: collapse;
	margin-top: 32px;
	border-top: solid 1px #7eaeb5;
	border-left: solid 1px #7eaeb5;
}
.price_table th,
.price_table td{
	text-align: center;
	vertical-align: middle;
	padding: 16px 10px;
	border-bottom: solid 1px #7eaeb5;
	border-right: solid 1px #7eaeb5;
}
.price_table th{
	background-color: #9fe1dd;
}

@media screen and (max-width: 767px) {
	.price_table.sp{
		display: table;
	}
}


.tbl th,
.tbl td{
  line-height: 1.5;
  vertical-align: top;
}

