@charset "UTF-8";
/* Scss Document */
@keyframes swing {
  40% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes bounceInUp {
  from, 65%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(1);
  }
  80% {
    opacity: 1;
    transform: translate3d(0, 7px, 0) scaleY(1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 1110px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .sp {
    display: block;
  }
}

a:link {
  color: inherit;
}

a.link {
  transition: 0.2s;
  text-decoration: underline;
  position: relative;
  color: inherit;
}
a.link:hover {
  text-decoration: none;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-size: 1.6em;
  font-family: "YakuHanJPs", "M PLUS 1p", "Noto Sans JP", "Noto Sans SC", "メイリオ", "Meiryo", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
  word-wrap: break-word;
  color: #362967;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fbf2c9;
  transition: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
  z-index: 1000;
}
.loading::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  aspect-ratio: 3/4;
  background: url("../images/202408_fumo_shop/logo_shop.png") no-repeat center center/contain;
  z-index: -1;
  animation: swing 0.45s both;
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .loading::before {
    width: 30%;
  }
}
.loaded .loading {
  opacity: 0;
}

.wrap {
  overflow: hidden;
  position: relative;
}
.wrap::before, .wrap::after {
  display: block;
  content: "";
  left: 0;
  width: 100%;
}
.wrap::before {
  position: fixed;
  top: 0;
  height: 100vh;
  background: url("../images/202408_fumo_shop/bg.jpg") repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap::before {
    background-size: 160% auto;
  }
}
.wrap::after {
  position: absolute;
  top: 70px;
  height: 80px;
  background: url("../images/202408_fumo_shop/deco_top.png") repeat-x center top;
}
@media screen and (max-width: 1110px) {
  .wrap::after {
    height: 7vw;
    background-size: auto 7vw;
  }
}
@media screen and (max-width: 767px) {
  .wrap::after {
    top: 60px;
    height: 8vw;
    background-size: auto 8vw;
  }
}
.scrolled-header .wrap::after {
  position: fixed;
  top: 0;
}

.fade {
  opacity: 0;
  transition: opacity 0.25s 0.5s, transform 0.25s 0.5s;
  transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .fade {
    transform: translateY(20px);
  }
}
.fade.scroll {
  opacity: 1;
  transform: translateY(0);
}

.header-gift {
  position: relative;
  height: 70px;
  padding: 15px 20px;
  background-color: #ebebee;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header-gift {
    height: 60px;
    padding: 17px 4vw;
  }
}
.header-gift .header-gift-logo {
  display: block;
  width: 84px;
  height: 40px;
  background: url("../images/202408_fumo_shop/logo_gift.png") no-repeat center center/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header-gift .header-gift-logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header-gift .header-gift-logo:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header-gift .header-gift-logo {
    width: 54px;
    height: 26px;
  }
}
.header-gift .sns-nav {
  position: absolute;
  right: 20px;
  top: 15px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header-gift .sns-nav {
    right: 2vw;
  }
}
.header-gift .sns-nav__list {
  display: flex;
}
.header-gift .sns-nav__item {
  position: relative;
  margin: 0 0 0 10px;
}
.header-gift .sns-nav__item:first-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header-gift .sns-nav__item {
    margin: 0 0 0 8px;
  }
}
.header-gift .sns-nav__item a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header-gift .sns-nav__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header-gift .sns-nav__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header-gift .sns-nav__item a {
    width: 30px;
    height: 30px;
  }
}
.header-gift .sns-nav__item a.twitter {
  background-image: url("../images/202408_fumo_shop/icon_twitter.png");
}
.header-gift .sns-nav__item a.line {
  background-image: url("../images/202408_fumo_shop/icon_line.png");
}

.header {
  z-index: 999;
}
.header .drawer {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  position: fixed;
  width: min(40vw, 540px);
  height: 100%;
  top: 0;
  right: -41vw;
  transition: 0.4s;
  padding: 14vh 5% 6vh;
  background-color: #f7ea74;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  z-index: 999;
  color: #362967;
}
@media screen and (max-width: 1110px) {
  .header .drawer {
    width: 45vw;
    right: -46vw;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer {
    width: 100%;
    right: -101vw;
    padding: 12vh 15% 5vh;
  }
}
.drawer-visible .header .drawer {
  opacity: 1;
  pointer-events: auto;
  right: 0;
  z-index: 9999;
}
.header .g-nav {
  position: relative;
  width: 100%;
  margin-bottom: 4vh;
  padding: 0;
  z-index: 99;
}
.header .g-nav__list {
  display: flex;
  flex-direction: column;
}
.header .g-nav__item {
  margin-bottom: clamp(30px, 4vw, 50px);
}
@media screen and (max-width: 767px) {
  .header .g-nav__item {
    margin-bottom: 8vw;
    text-align: center;
  }
}
.header .g-nav__item a {
  transform: rotate(0.03deg);
  display: inline-block;
  position: relative;
  line-height: 1.3;
  font-weight: bold;
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  color: #11abb1;
}
.header .g-nav__item a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 34px;
  height: 6px;
  background-color: #fcf7e3;
  border-radius: 9999px;
  transition: width 0.3s;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item a::after {
    width: 30px;
    height: 5px;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item a::after {
    right: 0;
    margin: auto;
    bottom: -10px;
    width: 24px;
    height: 4px;
  }
}
.header .g-nav__item a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item a:hover::after {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item a:hover::after {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header .sns-nav {
    margin: 0 auto;
  }
}
.header .sns-nav__list {
  display: flex;
}
.header .sns-nav__item {
  position: relative;
  margin: 0 0 0 15px;
}
.header .sns-nav__item:first-child {
  margin: 0;
}
.header .sns-nav__item a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header .sns-nav__item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1110px) {
  .header .sns-nav__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header .sns-nav__item a {
    width: 42px;
    height: 42px;
  }
}
.header .sns-nav__item a.twitter {
  background-image: url("../images/202408_fumo_shop/icon_twitter.png");
}
.header .sns-nav__item a.line {
  background-image: url("../images/202408_fumo_shop/icon_line.png");
}
.header .drawer-btn-wrap {
  position: fixed;
  right: -126px;
  top: 80px;
  width: 116px;
  height: 80px;
  border-radius: 9999px 0 0 9999px;
  background-color: #34cbce;
  filter: drop-shadow(1px 1px 2px #2b989e);
  opacity: 0;
  transition: right 0.3s, opacity 0.3s;
  z-index: 999;
}
@media screen and (max-width: 1110px) {
  .header .drawer-btn-wrap {
    top: 7.5vw;
    right: -114px;
    width: 104px;
    height: 74px;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-btn-wrap {
    position: absolute;
    top: calc(8vw + 60px);
    right: 0;
    width: 72px;
    height: 50px;
    opacity: 1;
  }
}
.scrolled .header .drawer-btn-wrap {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .scrolled-header .header .drawer-btn-wrap {
    position: fixed;
    top: 8.5vw;
  }
}
.header .drawer-btn {
  position: absolute;
  width: 62px;
  height: 62px;
  top: 11px;
  left: 30px;
  background: url("../images/202408_fumo_shop/btn_menu.svg") no-repeat center center/contain;
  cursor: pointer;
}
@media screen and (max-width: 1110px) {
  .header .drawer-btn {
    top: 10px;
    left: 26px;
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-btn {
    top: 6px;
    width: 40px;
    height: 40px;
    left: 18px;
  }
}
.header .drawer-btn::before {
  display: block;
  position: absolute;
  content: "";
  z-index: -1;
  opacity: 1;
}
.header .drawer-btn span {
  display: block;
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  width: 56px;
  height: 5px;
  margin: auto;
  border-radius: 9999px;
  background-color: #f7ea74;
}
.header .drawer-btn span:nth-child(2) {
  top: 45px;
}
@media screen and (max-width: 1110px) {
  .header .drawer-btn span {
    top: 30px;
    width: 50px;
  }
  .header .drawer-btn span:nth-child(2) {
    top: 41px;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-btn span {
    top: 21px;
    width: 36px;
    height: 3px;
  }
  .header .drawer-btn span:nth-child(2) {
    top: 29px;
  }
}
.header .drawer-btn:hover::after {
  transform: scale(1.05);
}
@media screen and (max-width: 1110px) {
  .header .drawer-btn:hover::after {
    transform: scale(1);
  }
}
.header .drawer-close {
  position: fixed;
  width: 60px;
  height: 60px;
  right: -100px;
  top: 40px;
  border-radius: 50%;
  z-index: 9999;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header .drawer-close {
    width: 40px;
    height: 40px;
    top: 20px;
  }
}
.header .drawer-close span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 44px;
  height: 5px;
  margin: auto;
  transition: 0.4s;
  border-radius: 9999px;
  background-color: #11abb1;
}
@media screen and (max-width: 767px) {
  .header .drawer-close span {
    width: 32px;
    height: 3px;
  }
}
.header .drawer-close span:first-child {
  transform: rotate(45deg);
  top: 28px;
}
@media screen and (max-width: 767px) {
  .header .drawer-close span:first-child {
    top: 19px;
  }
}
.header .drawer-close span:nth-child(2) {
  transform: rotate(-45deg);
  top: 28px;
}
@media screen and (max-width: 767px) {
  .header .drawer-close span:nth-child(2) {
    top: 19px;
  }
}
.drawer-visible .header .drawer-close {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .drawer-visible .header .drawer-close {
    right: 15px;
  }
}

.block-top {
  position: relative;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1110px) {
  .block-top {
    margin-bottom: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .block-top {
    margin-bottom: 2vw;
  }
}
.block-top::before, .block-top::after {
  display: block;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  z-index: -1;
}
.block-top::before {
  width: clamp(220px, 34%, 460px);
  left: -7%;
  bottom: 1%;
  aspect-ratio: 460/300;
  background-image: url("../images/202408_fumo_shop/bg_cloud_l_pc.svg");
}
@media screen and (min-width: 1366px) {
  .block-top::before {
    left: -100px;
  }
}
@media screen and (max-width: 767px) {
  .block-top::before {
    width: 47%;
    left: -15%;
    bottom: inherit;
    top: 7%;
    aspect-ratio: 352/214;
    background-image: url("../images/202408_fumo_shop/bg_cloud_l_sp.svg");
  }
}
.block-top::after {
  width: clamp(200px, 32%, 436px);
  right: -12%;
  top: 11.5%;
  aspect-ratio: 436/268;
  background-image: url("../images/202408_fumo_shop/bg_cloud_r_pc.svg");
}
@media screen and (min-width: 1366px) {
  .block-top::after {
    right: -116px;
  }
}
@media screen and (max-width: 767px) {
  .block-top::after {
    width: 54%;
    right: -23%;
    top: inherit;
    bottom: 1%;
    aspect-ratio: 398/220;
    background-image: url("../images/202408_fumo_shop/bg_cloud_r_sp.svg");
  }
}
.block-top .main-visual {
  position: relative;
  margin: 0 auto;
  max-width: 1366px;
  aspect-ratio: 1366/817;
  opacity: 1;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .block-top .main-visual {
    aspect-ratio: 75/94;
  }
}
.block-top .main-visual::before, .block-top .main-visual::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-size: contain;
  background-size: 100% auto;
  opacity: 0;
}
.block-top .main-visual::before {
  background-image: url("../images/202408_fumo_shop/mainvisual_pc_01.png");
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .block-top .main-visual::before {
    background-image: url("../images/202408_fumo_shop/mainvisual_sp_01.png");
  }
}
.block-top .main-visual::after {
  background-image: url("../images/202408_fumo_shop/mainvisual_pc_02.png");
}
@media screen and (max-width: 767px) {
  .block-top .main-visual::after {
    background-image: url("../images/202408_fumo_shop/mainvisual_sp_02.png");
  }
}
.loaded .block-top .main-visual::before {
  opacity: 1;
  animation: slideInDown 0.23s;
  animation-delay: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
.loaded .block-top .main-visual::after {
  opacity: 1;
  animation: bounceInUp 0.6s;
  animation-delay: 1.3s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

.top-nav {
  max-width: 1160px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1110px) {
  .top-nav {
    margin-bottom: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .top-nav {
    display: none;
  }
}
.top-nav__list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.top-nav__item {
  position: relative;
  margin: 0 3%;
}
@media screen and (max-width: 1110px) {
  .top-nav__item {
    margin: 0 2.5%;
  }
}
.top-nav__item a {
  transform: rotate(0.03deg);
  display: flex;
  align-items: center;
  position: relative;
  height: 70px;
  line-height: 1.12;
  text-align: center;
  color: #fff;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .top-nav__item a {
    height: 7vw;
  }
}
.top-nav__item a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 6px;
  background-color: #f7ea74;
  border-radius: 9999px;
  transition: width 0.3s;
}
@media screen and (max-width: 1110px) {
  .top-nav__item a::after {
    width: 32px;
    height: 5px;
  }
}
.top-nav__item a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .top-nav__item a:hover::after {
    width: 32px;
  }
}
.top-nav__item:nth-child(2) a, .top-nav__item:nth-child(3) a {
  padding-bottom: 12px;
}
@media screen and (max-width: 1110px) {
  .top-nav__item:nth-child(2) a, .top-nav__item:nth-child(3) a {
    padding-bottom: 0.5vw;
  }
}

.section-summary {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 100px 105px 110px;
  background-color: #fff;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg");
  background-repeat: repeat-y;
  background-size: 40px auto;
  background-position: left top, right top;
  border-radius: 24px;
}
@media screen and (max-width: 1110px) {
  .section-summary {
    margin: 0 5vw 12vw;
    padding: 8vw 8vw 10vw;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-summary {
    margin: 0 4vw 14vw;
    padding: 10vw 5vw 12vw;
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg");
    background-repeat: repeat-x;
    background-size: auto 18px;
    background-position: left top, left bottom;
    border-radius: 12px;
  }
}
.section-summary__heading {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 80px;
  font-size: 3.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-summary__heading {
    margin: 0 auto 7vw;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  }
}
.section-summary__heading div {
  display: inline-block;
  padding: 1.1vw 3.6vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: clamp(46px, 6vw, 84px) auto;
  background-image: url("../images/202408_fumo_shop/deco_yinyang.svg");
}
@media screen and (max-width: 1110px) {
  .section-summary__heading div {
    padding: 2.5vw clamp(25px, 4.5vw, 60px);
    background-size: clamp(42px, 7vw, 100px) auto;
  }
}
.section-summary__list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
}
.section-summary__list dt, .section-summary__list dd {
  transform: rotate(0.03deg);
}
.section-summary__list dt {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 140px;
  line-height: 1.3;
  height: 1.6em;
  padding: 0.1em 0 0.2em;
  border-radius: 9999px;
  background-color: #34cbce;
  color: #fff;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-summary__list dt {
    width: auto;
    min-width: 100px;
    margin: 0 0 0.35em;
  }
}
.section-summary__list dd {
  width: calc(100% - 140px);
  margin: 0 0 50px;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 1110px) {
  .section-summary__list dd {
    margin: 0 0 4.5vw;
    padding: 0 0 0 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-summary__list dd {
    width: 100%;
    padding: 0;
  }
}
.section-summary__list dd:last-child {
  margin-bottom: 0;
}
.section-summary__list dt {
  margin-top: 0.15em;
}
@media screen and (max-width: 767px) {
  .section-summary__list dt {
    margin-top: 0;
  }
}
.section-summary__list dd {
  font-size: 2.1rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-summary__list dd {
    font-size: 1.5rem;
  }
}

.section-admission {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 100px 105px 110px;
  background-color: #fff;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg");
  background-repeat: repeat-y;
  background-size: 40px auto;
  background-position: left top, right top;
  border-radius: 24px;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_b_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_b_pc.svg");
}
@media screen and (max-width: 1110px) {
  .section-admission {
    margin: 0 5vw 12vw;
    padding: 8vw 8vw 10vw;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-admission {
    margin: 0 4vw 14vw;
    padding: 10vw 5vw 12vw;
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg");
    background-repeat: repeat-x;
    background-size: auto 18px;
    background-position: left top, left bottom;
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .section-admission {
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_b_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_b_sp.svg");
  }
}
.section-admission__heading {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 80px;
  font-size: 3.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-admission__heading {
    margin: 0 auto 7vw;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  }
}
.section-admission__heading div {
  display: inline-block;
  padding: 1.1vw 3.6vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: clamp(46px, 6vw, 84px) auto;
  background-image: url("../images/202408_fumo_shop/deco_yinyang.svg");
}
@media screen and (max-width: 1110px) {
  .section-admission__heading div {
    padding: 2.5vw clamp(25px, 4.5vw, 60px);
    background-size: clamp(42px, 7vw, 100px) auto;
  }
}
.section-admission__list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  margin: 3em auto;
}
.section-admission__list dt, .section-admission__list dd {
  transform: rotate(0.03deg);
}
.section-admission__list dt {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 140px;
  line-height: 1.3;
  height: 1.6em;
  padding: 0.1em 0 0.2em;
  border-radius: 9999px;
  background-color: #34cbce;
  color: #fff;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-admission__list dt {
    width: auto;
    min-width: 100px;
    margin: 0 0 0.35em;
  }
}
.section-admission__list dd {
  width: calc(100% - 140px);
  margin: 0 0 50px;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 1110px) {
  .section-admission__list dd {
    margin: 0 0 4.5vw;
    padding: 0 0 0 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-admission__list dd {
    width: 100%;
    padding: 0;
  }
}
.section-admission__list dd:last-child {
  margin-bottom: 0;
}
.section-admission__list dt {
  margin-top: 0.12em;
}
@media screen and (max-width: 767px) {
  .section-admission__list dt {
    margin-top: 0;
  }
}
.section-admission__list dd {
  font-size: 1.9rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-admission__list dd {
    font-size: 1.5rem;
  }
}
.section-admission__list--sub {
  line-height: 1.5;
  padding: 0 0 0 1em;
}
.section-admission__list--sub li {
  transform: rotate(0.03deg);
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-admission__list--sub li:last-child {
  margin: 0;
}
.section-admission__item--sub.txt-red {
  color: #e21039;
}
.section-admission__txt {
  transform: rotate(0.03deg);
  margin-bottom: 1.5em;
}
.section-admission__txt--notice {
  transform: rotate(0.03deg);
  font-weight: 800;
  margin-bottom: 1.5em;
}

.section-goods {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 100px 105px 110px;
  background-color: #fff;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg");
  background-repeat: repeat-y;
  background-size: 40px auto;
  background-position: left top, right top;
  border-radius: 24px;
}
@media screen and (max-width: 1110px) {
  .section-goods {
    margin: 0 5vw 12vw;
    padding: 8vw 8vw 10vw;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-goods {
    margin: 0 4vw 14vw;
    padding: 10vw 5vw 12vw;
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg");
    background-repeat: repeat-x;
    background-size: auto 18px;
    background-position: left top, left bottom;
    border-radius: 12px;
  }
}
.section-goods__heading {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 80px;
  font-size: 3.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-goods__heading {
    margin: 0 auto 7vw;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  }
}
.section-goods__heading div {
  display: inline-block;
  padding: 1.1vw 3.6vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: clamp(46px, 6vw, 84px) auto;
  background-image: url("../images/202408_fumo_shop/deco_yinyang.svg");
}
@media screen and (max-width: 1110px) {
  .section-goods__heading div {
    padding: 2.5vw clamp(25px, 4.5vw, 60px);
    background-size: clamp(42px, 7vw, 100px) auto;
  }
}
.section-goods__heading--sub {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 0.5em;
  text-align: center;
}
.section-goods__heading--sub div {
  display: inline-block;
  padding: 0.1em 1.5em 0.2em;
  background-color: #34cbce;
  border-radius: 9999px;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
}
@media screen and (max-width: 1110px) {
  .section-goods__heading--sub div {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .section-goods__heading--sub div {
    font-size: 1.6rem;
  }
}
.section-goods__txt {
  transform: rotate(0.03deg);
  font-size: 1.8rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-goods__txt {
    font-size: 1.4rem;
  }
}
.section-goods__txt .txt-small {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section-goods__txt .txt-small {
    font-size: 1.3rem;
  }
}
.section-goods__txt--caption {
  transform: rotate(0.03deg);
  color: #34cbce;
  text-align: center;
  margin-bottom: 2.5em;
}
.section-goods__txt--note {
  transform: rotate(0.03deg);
  color: #e21039;
  margin-top: -15px;
}
@media screen and (max-width: 767px) {
  .section-goods__txt--note {
    margin-top: -0.8vw;
  }
}
.section-goods__image figure {
  margin: 0 auto 30px;
}
@media screen and (max-width: 1110px) {
  .section-goods__image figure {
    margin-bottom: 3vw;
  }
}
.section-goods__image--tokuten figure {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section-goods__image--tokuten figure {
    width: 85%;
  }
}
.section-goods__box {
  margin-bottom: 120px;
}
@media screen and (max-width: 1110px) {
  .section-goods__box {
    margin-bottom: 12vw;
  }
}
.section-goods__txt--notice {
  transform: rotate(0.03deg);
  margin: 1em auto;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 800;
}
@media screen and (max-width: 1110px) {
  .section-goods__txt--notice {
    width: 100%;
    font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  }
}

.section-online {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 100px 105px 110px;
  background-color: #fff;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg");
  background-repeat: repeat-y;
  background-size: 40px auto;
  background-position: left top, right top;
  border-radius: 24px;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_b_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_b_pc.svg");
}
@media screen and (max-width: 1110px) {
  .section-online {
    margin: 0 5vw 12vw;
    padding: 8vw 8vw 10vw;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-online {
    margin: 0 4vw 14vw;
    padding: 10vw 5vw 12vw;
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg");
    background-repeat: repeat-x;
    background-size: auto 18px;
    background-position: left top, left bottom;
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .section-online {
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_b_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_b_sp.svg");
  }
}
.section-online__heading {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 20px;
  font-size: 3.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-online__heading {
    margin: 0 auto 2vw;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  }
}
.section-online__heading div {
  display: inline-block;
  padding: 1.1vw 3.6vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: clamp(46px, 6vw, 84px) auto;
  background-image: url("../images/202408_fumo_shop/deco_yinyang.svg");
}
@media screen and (max-width: 1110px) {
  .section-online__heading div {
    padding: 2.5vw clamp(25px, 4.5vw, 60px);
    background-size: clamp(42px, 7vw, 100px) auto;
  }
}
.section-online__image figure {
  margin: 0 auto 30px;
}
@media screen and (max-width: 1110px) {
  .section-online__image figure {
    margin-bottom: 3vw;
  }
}
.section-online__list + .section-online__list {
  margin-top: 3em;
  padding-top: 3em;
  border-top: 1px solid #564e84;
}
.section-online__item {
  transform: rotate(0.03deg);
  margin-bottom: 2em;
}
.section-online__item:last-child {
  margin-bottom: 0;
}
.section-online__item .txt-large {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .section-online__item .txt-large {
    font-size: 1.5rem;
  }
}
.section-online__list--sub {
  line-height: 1.5;
  padding: 0 0 0 1em;
  margin-top: 0.5em;
}
.section-online__list--sub li {
  transform: rotate(0.03deg);
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-online__list--sub li:last-child {
  margin: 0;
}
.section-online__item--sub {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .section-online__item--sub {
    font-size: 1.3rem;
  }
}

.section-notice {
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 100px 105px 110px;
  background-color: #fff;
  background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_pc.svg");
  background-repeat: repeat-y;
  background-size: 40px auto;
  background-position: left top, right top;
  border-radius: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1110px) {
  .section-notice {
    margin: 0 5vw 12vw;
    padding: 8vw 8vw 10vw;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-notice {
    margin: 0 4vw 14vw;
    padding: 10vw 5vw 12vw;
    background-image: url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg"), url("../images/202408_fumo_shop/parts/bg_lattice_y_sp.svg");
    background-repeat: repeat-x;
    background-size: auto 18px;
    background-position: left top, left bottom;
    border-radius: 12px;
  }
}
@media screen and (max-width: 1110px) {
  .section-notice {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-notice {
    margin-bottom: 5.5vw;
  }
}
.section-notice__heading {
  transform: rotate(0.03deg);
  position: relative;
  line-height: 1.4;
  margin: 0 auto 80px;
  font-size: 3.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .section-notice__heading {
    margin: 0 auto 7vw;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  }
}
.section-notice__heading div {
  display: inline-block;
  padding: 1.1vw 3.6vw;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: clamp(46px, 6vw, 84px) auto;
  background-image: url("../images/202408_fumo_shop/deco_yinyang.svg");
}
@media screen and (max-width: 1110px) {
  .section-notice__heading div {
    padding: 2.5vw clamp(25px, 4.5vw, 60px);
    background-size: clamp(42px, 7vw, 100px) auto;
  }
}
.section-notice__list {
  line-height: 1.5;
  padding: 0 0 0 1em;
}
.section-notice__list li {
  transform: rotate(0.03deg);
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-notice__list li:last-child {
  margin: 0;
}

.line-delimit {
  margin: 2em auto 1em;
  border-top: 2px solid #362967;
}

.pagetop {
  display: block;
  position: relative;
  margin: 0 auto 110px;
  z-index: 2;
  aspect-ratio: 1/1;
  width: 88px;
  cursor: pointer;
  background: url("../images/202408_fumo_shop/btn_pagetop.svg") no-repeat center center/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 1110px) {
  .pagetop {
    width: 74px;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 54px;
    margin-bottom: 11vw;
  }
}
.pagetop::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/202408_fumo_shop/btn_pagetop_arrow.svg") no-repeat center center/contain;
  transition: 0.25s;
}
.pagetop:hover::before {
  top: -8px;
}
@media screen and (max-width: 1110px) {
  .pagetop:hover::before {
    top: 0;
  }
}

.footer {
  position: relative;
  padding: 0 0 2.5vw;
  background: url("../images/202408_fumo_shop/bg_footer_pc.png") no-repeat center top;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0 0 4vw;
    background-image: url("../images/202408_fumo_shop/bg_footer_sp.png");
  }
}
.footer::before, .footer::after {
  display: block;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  z-index: -1;
}
.footer::before {
  width: clamp(220px, 34%, 460px);
  left: -8%;
  bottom: 9vw;
  aspect-ratio: 460/300;
  background-image: url("../images/202408_fumo_shop/bg_cloud_l_pc_02.svg");
}
@media screen and (min-width: 1366px) {
  .footer::before {
    left: -100px;
    bottom: 72px;
  }
}
@media screen and (max-width: 1110px) {
  .footer::before {
    bottom: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .footer::before {
    width: 47%;
    left: -14%;
    bottom: min(114px, 30vw);
    aspect-ratio: 352/214;
    background-image: url("../images/202408_fumo_shop/bg_cloud_l_sp_02.svg");
  }
}
.footer::after {
  width: clamp(200px, 32%, 436px);
  right: -5.5%;
  bottom: 14.5vw;
  aspect-ratio: 436/268;
  background-image: url("../images/202408_fumo_shop/bg_cloud_r_pc_02.svg");
}
@media screen and (min-width: 1366px) {
  .footer::after {
    right: -76px;
    bottom: 174px;
  }
}
@media screen and (max-width: 1110px) {
  .footer::after {
    bottom: 16vw;
  }
}
@media screen and (max-width: 767px) {
  .footer::after {
    width: 54%;
    right: -20%;
    bottom: min(80px, 20vw);
    aspect-ratio: 398/220;
    background-image: url("../images/202408_fumo_shop/bg_cloud_r_sp_02.svg");
  }
}

.copyright {
  transform: rotate(0.03deg);
  margin: 0 5vw;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=202308_fumo_15th_shop.css.map */