@font-face {
  font-family: "CenturyGothic";
  src: url("../font/CenturyGothic.ttc") format("truetype");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 821px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media screen and (min-width: 821px) {
  .pc {
    display: block !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}
.header__logo {
  width: 117px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
}
@media screen and (min-width: 821px) {
  .header__logo {
    width: 147px;
    top: 30px;
  }
}
.header__hamburger {
  z-index: 50;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 821px) {
  .header__hamburger {
    padding: 24px;
  }
}
.header__hamburger:focus {
  outline: none;
}
.header__hamburger--open .header__hamburger-icon span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}
.header__hamburger--open .header__hamburger-icon span:nth-child(2) {
  top: 14px;
  transform: rotate(-45deg);
  left: 0;
}
.header__hamburger-icon {
  position: relative;
  width: 40px;
  height: 20px;
  display: block;
}
.header__hamburger-icon span {
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
}
.header__hamburger-icon span:nth-child(1) {
  top: 8px;
}
.header__hamburger-icon span:nth-child(2) {
  top: 16px;
  left: -10px;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
}
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  overflow: scroll;
  width: 295px;
  background-color: white;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.2s;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 821px) {
  .header__menu {
    width: 600px;
  }
}
.header__menu--open {
  transform: translateX(0);
}
.header__menu-content {
  padding: 0 0 16px;
}
.header__menu-logo {
  margin: 0 auto 30px;
  width: 135px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (min-width: 821px) {
  .header__menu-logo {
    width: 197px;
    margin: 0 auto 50px;
  }
}
.header__menu-logo.is-show {
  transform: translateY(0);
  opacity: 1;
}
.header__menu-list {
  margin-bottom: 20px;
}
@media screen and (min-width: 821px) {
  .header__menu-list {
    margin-bottom: 0px;
  }
}
.header__menu-item {
  padding: 0 0 36px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s;
}
.header__menu-item.is-show {
  transform: translateY(0);
  opacity: 1;
}
.header__menu-item:last-of-type a::before {
  display: none;
}
.header__menu-item a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 821px) {
  .header__menu-item a {
    font-size: 24px;
  }
}
.header__menu-item a:hover {
  opacity: 0.6;
}
.header__menu-item a::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.header__menu-sns {
  display: block;
  width: 24px;
  margin: 0 auto 50px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (min-width: 821px) {
  .header__menu-sns {
    width: 30px;
  }
}
.header__menu-sns.is-show {
  transform: translateY(0);
  opacity: 1;
}
.header__menu-copy {
  font-size: 12px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s;
  text-align: center;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
}
.header__menu-copy.is-show {
  transform: translateY(0);
  opacity: 1;
}

.footer {
  padding-bottom: 30px;
  margin-bottom: 60px;
}
@media screen and (min-width: 821px) {
  .footer {
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}
.footer__menu-content {
  padding: 0 0 16px;
}
.footer__menu-logo {
  margin: 0 auto 50px;
  width: 212px;
  transition: all 0.3s;
}
@media screen and (min-width: 821px) {
  .footer__menu-logo {
    width: 234px;
    margin: 0 auto 70px;
  }
}
.footer__menu-list {
  margin-bottom: 20px;
}
@media screen and (min-width: 821px) {
  .footer__menu-list {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.footer__menu-item {
  padding: 0 0 36px;
  transition: all 0.3s;
}
.footer__menu-item a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.3s;
}
.footer__menu-item a:hover {
  opacity: 0.6;
}
.footer__menu-item a::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 821px) {
  .footer__menu-item a::before {
    display: none;
  }
}
.footer__menu-sns {
  display: block;
  width: 24px;
  margin: 0 auto 50px;
}
.footer__menu-copy {
  font-size: 12px;
  transition: all 0.3s;
  text-align: center;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
}

.section__title {
  position: relative;
  font-size: 26px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .section__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
.section__title .char {
  display: inline-block;
  opacity: 0;
  filter: blur(15px);
  transform: translateX(-20px);
  transition: all 0.6s ease;
}
.section__title.is-active .char {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.js-fadeIn {
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.8s ease;
}
.js-fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}

.feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
@media screen and (min-width: 821px) {
  .feature__list {
    gap: 24px;
    margin-bottom: 40px;
  }
}

.feature__item {
  width: 165px;
}
@media screen and (min-width: 821px) {
  .feature__item {
    width: 223px;
  }
}
.feature__item:nth-child(n+3) {
  margin-top: 20px;
}
@media screen and (min-width: 821px) {
  .feature__item:nth-child(n+3) {
    margin-top: 0;
  }
}
.feature__item:nth-child(2) .feature__item-inner::before {
  transform: rotate(90deg);
  top: inherit;
  bottom: -1px;
}
.feature__item:nth-child(3) .feature__item-inner::before {
  transform: rotate(180deg);
  top: inherit;
  right: inherit;
  bottom: -1px;
  left: -1px;
}
.feature__item:nth-child(4) .feature__item-inner::before {
  transform: rotate(270deg);
  right: inherit;
  left: -1px;
}
.feature__item .feature__item-num {
  text-align: center;
  margin-bottom: 0.5em;
}
.feature__item .feature__item-num span {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-family: "Jost", sans-serif;
}
.feature__item .feature__item-inner {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #000;
  position: relative;
}
@media screen and (min-width: 821px) {
  .feature__item .feature__item-inner {
    width: 223px;
    height: 223px;
  }
}
.feature__item .feature__item-inner::before {
  content: "";
  display: block;
  width: 83px;
  height: 83px;
  position: absolute;
  top: -1px;
  right: -1px;
  background: url("../img/deco-circle.png") no-repeat center top/cover;
}
@media screen and (min-width: 821px) {
  .feature__item .feature__item-inner::before {
    width: 112px;
    height: 112px;
  }
}
.feature__item .feature__item-inner .feature__item-en {
  font-size: 12px;
  font-family: "CenturyGothic";
  color: #b4b4b5;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}
@media screen and (min-width: 821px) {
  .feature__item .feature__item-inner .feature__item-en {
    font-size: 16px;
  }
}
.feature__item .feature__item-inner h3 {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 821px) {
  .feature__item .feature__item-inner h3 {
    font-size: 20px;
    margin-bottom: 1em;
  }
}
.feature__item .feature__item-inner p {
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 821px) {
  .feature__item .feature__item-inner p {
    font-size: 13px;
    line-height: 1.6153846154;
  }
}

.p-store {
  padding: 0 16px;
  margin-top: 90px;
  position: relative;
}
@media screen and (min-width: 821px) {
  .p-store {
    margin: 110px 0 60px;
  }
}
.p-store::before {
  content: "";
  position: absolute;
  top: 90px;
  height: 460px;
  left: 0;
  width: 100%;
  background: #f8f8fa;
  background: linear-gradient(180deg, rgb(248, 248, 250) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .p-store::before {
    height: 350px;
    top: 136px;
  }
}
@media screen and (min-width: 821px) {
  .p-store .store__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.p-store .section__title {
  text-align: center;
}
.p-store .store__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 821px) {
  .p-store .store__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.p-store .store__list a {
  display: block;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}
.p-store .store__list a:hover {
  opacity: 0.6;
}

.stoker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 821px) {
  .stoker {
    left: inherit;
    right: 0;
    width: 65px;
    height: 300px;
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px 0 0 10px;
  }
}
.stoker a {
  text-align: center;
  background: #231815;
  color: #fff;
  padding: 15px 0 28px;
  transition: all 0.3s ease;
  border: 1px solid #231815;
  font-size: 19px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 821px) {
  .stoker a {
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    padding: 0 12px;
    width: 100%;
    height: 100%;
    font-size: 18px;
  }
}
.stoker a:active {
  color: #231815;
  background: #fff;
}
.stoker a:active::before {
  background: url("../img/common/icon-cart-black.svg") no-repeat center top/cover;
}
.stoker a:hover {
  background: #fff;
  color: #000000;
}
.stoker a:hover::before {
  background: url("../img/common/icon-cart-black.svg") no-repeat center top/cover;
}
.stoker a::before {
  content: "";
  display: block;
  width: 35px;
  height: 31px;
  background: url("../img/common/icon-cart.svg") no-repeat center top/cover;
  margin-right: 10px;
}
@media screen and (min-width: 821px) {
  .stoker a::before {
    margin: 0 5px 10px 0;
  }
}

.mv-kaso {
  margin-top: 60px;
  background: url("../img/common/bg-kasoumv-sp.webp") no-repeat center top/cover;
  position: relative;
  height: 43vw;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .mv-kaso {
    margin-top: 90px;
    background: url("../img/common/bg-kasoumv.webp") no-repeat center top/cover;
    height: 26vw;
  }
}
.mv-kaso .mv__title {
  padding: 30px 0 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 821px) {
  .mv-kaso .mv__title {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8vw 0 0;
  }
}
.mv-kaso .mv__title .en {
  overflow: hidden;
}
.mv-kaso .mv__title h2 {
  font-size: 40px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s ease;
}
@media screen and (min-width: 821px) {
  .mv-kaso .mv__title h2 {
    font-size: 55px;
  }
}
.mv-kaso .mv__title h2.is-show {
  transform: translateY(0);
}
.mv-kaso .mv__title .ja {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
@media screen and (min-width: 821px) {
  .mv-kaso .mv__title .ja {
    font-size: 14px;
    margin-top: 14px;
  }
}
.mv-kaso .breadcrumb {
  position: absolute;
  bottom: 9%;
  left: 6%;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 821px) {
  .mv-kaso .breadcrumb {
    left: 50%;
    transform: translateX(-50%);
    width: 65.1041666667%;
    bottom: 30%;
  }
}
@media screen and (min-width: 821px) {
  .mv-kaso .breadcrumb .breadcrumb__inner {
    text-align: right;
    width: 100%;
  }
}
.mv-kaso .breadcrumb a {
  font-size: 12px;
  color: #000;
  margin-right: 20px;
  position: relative;
  font-family: "Jost", sans-serif;
}
@media screen and (min-width: 821px) {
  .mv-kaso .breadcrumb a {
    font-size: 14px;
    margin-right: 40px;
  }
}
.mv-kaso .breadcrumb a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (min-width: 821px) {
  .mv-kaso .breadcrumb a::before {
    right: -20px;
  }
}
.mv-kaso .breadcrumb span {
  color: #b3b3b3;
  font-family: "Jost", sans-serif;
  font-size: 12px;
}
@media screen and (min-width: 821px) {
  .mv-kaso .breadcrumb span {
    font-size: 14px;
  }
}
/*# sourceMappingURL=common.css.map */