@charset "UTF-8";
/* Scss Document */
@keyframes rotation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
ul, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

li, dt, dd {
  margin: 0;
  padding: 0;
}

.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .sp {
    display: block;
  }
}

a {
  color: #C48621;
}

a:hover {
  color: #C48621;
  text-decoration: none;
}

a.link {
  transition: 0.2s;
  text-decoration: underline;
  position: relative;
}
a.link:hover {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  a.link:hover {
    text-decoration: underline;
  }
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-weight: 400;
  font-size: 1.6em;
  font-family: "Noto Sans JP", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
  word-wrap: break-word;
  color: #331200;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body::before {
  display: block;
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/bg.jpg") center top;
  background-size: 126px auto;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body::before {
    background-size: 72px auto;
  }
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1000;
  opacity: 1;
  transition-delay: 0.4s;
  transition: 1.3s;
}
.loading::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #AA0000;
}
.loading__item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: clamp(120px, 12vw, 240px);
  background: url("../img/deco_butterfly.svg") no-repeat center center/contain;
  animation: rotation 1.7s;
  will-change: transform;
}
.loaded .loading {
  opacity: 0;
}

.loading-sub {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #AA0000;
  transition: 0.3s;
  opacity: 1;
  z-index: 1000;
}
.loaded .loading-sub {
  opacity: 0;
}

.wrap {
  position: relative;
}

.header {
  position: relative;
  z-index: 999;
}
.header .drawer {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  position: fixed;
  width: min(32vw, 500px);
  height: 100%;
  top: 0;
  right: -33vw;
  transition: 0.4s;
  padding: 18vh 3.5% 6vh 5.5%;
  background-color: #FCF6E8;
  background-image: url("../img/deco_corner_1.svg"), url("../img/deco_corner_3.svg");
  background-position: left top, left bottom;
  background-repeat: no-repeat;
  background-size: 40px auto;
  opacity: 0;
  box-shadow: 5px 0 24px #4b0000;
  pointer-events: none;
  overflow-y: auto;
  z-index: 999;
  color: #C48621;
}
@media screen and (max-width: 991px) {
  .header .drawer {
    width: 45vw;
    right: -46vw;
    padding: 18vh 6% 6vh 7.5%;
  }
}
@media screen and (max-width: 767px) {
  .header .drawer {
    width: 80vw;
    right: -81vw;
    padding: 18vh 9% 5vh 11%;
    background-size: 7% auto;
  }
}
.drawer-visible .header .drawer {
  opacity: 1;
  pointer-events: auto;
  right: 0;
  z-index: 9999;
}
.header .header-logo-sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 101;
}
.header .header-logo-sub a {
  display: block;
  width: 540px;
  aspect-ratio: 1080/210;
  margin: 35px auto 0;
  background: url("../img/header_sub_logo.png") no-repeat center top/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
}
.header .header-logo-sub a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .header .header-logo-sub a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1110px) {
  .header .header-logo-sub a {
    margin-top: 3%;
    width: 54%;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo-sub a {
    margin-top: 3.2%;
    width: 60%;
  }
}
.header .g-nav {
  position: relative;
  width: 100%;
  padding: 0;
  z-index: 99;
}
.header .g-nav__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.header .g-nav__item {
  margin-bottom: 2.2em;
}
.header .g-nav__item > a {
  display: block;
  position: relative;
  line-height: 1.25;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-size: clamp(2.3rem, 2vw, 3rem);
  color: #C48621;
  transition: 0.2s;
  opacity: 1;
}
.header .g-nav__item > a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .header .g-nav__item > a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .header .g-nav__item > a {
    font-size: 2.9vw;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item > a {
    font-size: clamp(2.1rem, 5vw, 5rem);
  }
}
.header .g-nav__item > a::before {
  display: block;
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  top: 0;
  bottom: 0;
  left: -1em;
  margin: auto;
  background-image: url("../img/deco_diamond_1.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header .g-nav__item > a::before {
    width: 18px;
  }
}
@media screen and (max-width: 991px) {
  .header .g-nav__item > a::before {
    width: 6.5%;
  }
}
@media screen and (max-width: 767px) {
  .header .g-nav__item > a::before {
    width: clamp(10px, 6.5%, 24px);
  }
}
.header .g-nav__item > a:hover::after {
  right: -10px;
}
@media screen and (max-width: 991px) {
  .header .g-nav__item > a:hover::after {
    right: 0;
  }
}
.header .g-nav__item > a span {
  letter-spacing: -0.03em;
}
.header .g-nav__item > a.comingsoon {
  opacity: 0.5 !important;
}
.header .g-nav__item > a.comingsoon::after {
  right: 0;
}
.header .sns-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header .sns-nav__item {
  position: relative;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .header .sns-nav__item {
    margin-right: 3.5vw;
  }
}
.header .sns-nav__item a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: clamp(30px, 2.2vw, 38px);
  aspect-ratio: 1/1;
  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: 991px) {
  .header .sns-nav__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header .sns-nav__item a {
    width: clamp(27px, 2vw, 34px);
  }
}
.header .sns-nav__item a.ico-x {
  background-image: url("../img/ico_x.png");
}
.header .sns-nav__item a.ico-fb {
  background-image: url("../img/ico_fb.png");
}
.header .sns-nav__item a.ico-line {
  background-image: url("../img/ico_line.png");
}
.header .drawer-btn {
  position: fixed;
  width: clamp(70px, 7.5vw, 88px);
  aspect-ratio: 1/1;
  right: 1.2%;
  left: inherit;
  top: 15px;
  background: url("../img/btn_menu_1.png") no-repeat center top/contain;
  z-index: 999;
  transition: 0.4s;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(61, 0, 10, 0.6));
}
@media screen and (max-width: 991px) {
  .header .drawer-btn {
    width: clamp(60px, 7vw, 70px);
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-btn {
    top: 1.5vw;
    right: 1.5%;
    width: clamp(50px, 13vw, 60px);
    filter: drop-shadow(0 0 3px rgba(61, 0, 10, 0.5));
  }
}
.header .drawer-btn:hover {
  filter: drop-shadow(0 0 6px rgba(255, 0, 10, 0)) brightness(1.12);
}
@media screen and (max-width: 991px) {
  .header .drawer-btn:hover {
    filter: drop-shadow(0 0 3px rgba(61, 0, 10, 0.5)) brightness(1);
  }
}
.header .drawer-close {
  position: fixed;
  width: clamp(70px, 7.5vw, 88px);
  aspect-ratio: 1/1;
  right: 1.2%;
  top: -90px;
  background: url("../img/btn_menu_2.png") no-repeat center top/contain;
  z-index: 9999;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .header .drawer-close {
    top: -70px;
    width: clamp(60px, 7vw, 70px);
  }
}
@media screen and (max-width: 767px) {
  .header .drawer-close {
    top: -80px;
    right: 1.5%;
    width: clamp(50px, 13vw, 60px);
  }
}
.drawer-visible .header .drawer-close {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .drawer-visible .header .drawer-close {
    top: 1vw;
  }
}
.header .drawer-close:hover {
  filter: brightness(1.12);
}
@media screen and (max-width: 991px) {
  .header .drawer-close:hover {
    filter: brightness(1);
  }
}

.main-visual {
  position: relative;
  margin: 0 auto 90px;
  width: 100%;
  background: url("../img/mainvisual_pc.jpg") no-repeat center center;
  background-color: #690000;
  box-shadow: 0 0 24px #270000;
  height: 624px;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  background-size: contain;
  z-index: -1;
}
.main-visual-wrap {
  position: relative;
}
.main-visual-wrap::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  background: url("../img/dot_horizontal.svg") repeat-x center bottom;
  background-size: 17px auto;
  bottom: -17px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .main-visual-wrap::before {
    background-size: 11px auto;
    bottom: -11px;
  }
}
@media screen and (max-width: 1366px) {
  .main-visual {
    height: auto;
    aspect-ratio: 1366/624;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin: 0 auto 12vw;
    background-image: url("../img/mainvisual_sp.jpg");
    aspect-ratio: 750/638;
  }
}
.main-visual__logo-20th {
  position: absolute;
  width: 118px;
  aspect-ratio: 230/128;
  background: url("../img/logo_20th.png") no-repeat center center/contain;
  z-index: 1;
  left: 1.2%;
  top: 18px;
}
@media screen and (max-width: 1110px) {
  .main-visual__logo-20th {
    width: 118px;
  }
}
@media screen and (max-width: 991px) {
  .main-visual__logo-20th {
    width: clamp(100px, 10vw, 118px);
  }
}
@media screen and (max-width: 767px) {
  .main-visual__logo-20th {
    top: 1.8vw;
    right: 1.5%;
    width: clamp(58px, 15.5vw, 100px);
  }
}

.content {
  max-width: 1100px;
  margin: 0 auto;
}
.page-sub .content {
  padding-top: 220px;
}
@media screen and (max-width: 991px) {
  .page-sub .content {
    padding-top: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .page-sub .content {
    padding-top: 23vw;
  }
}

.top-nav {
  margin: 0 auto 100px;
  opacity: 0;
  transition: opacity 0.6s, transform 0.4s;
}
@media screen and (max-width: 1110px) {
  .top-nav {
    margin: 0 3vw 10vw;
  }
}
@media screen and (max-width: 767px) {
  .top-nav {
    margin: 0 9vw 14vw;
  }
}
.top-nav__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-nav__list {
    flex-wrap: wrap;
  }
}
.top-nav__item {
  position: relative;
  width: 23.5%;
  margin: 1% 1%;
}
@media screen and (max-width: 767px) {
  .top-nav__item {
    width: 46%;
    margin: 2% 2% !important;
  }
}
.top-nav__item::before, .top-nav__item::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  width: 8%;
  aspect-ratio: 1/1;
  background: url("../img/deco_diamond_1.svg") no-repeat center center/contain;
  transform: translateX(101%);
}
@media screen and (max-width: 767px) {
  .top-nav__item::before, .top-nav__item::after {
    width: 10%;
    right: inherit;
  }
}
.top-nav__item::before {
  top: -12%;
}
@media screen and (max-width: 767px) {
  .top-nav__item::before {
    top: inherit;
  }
}
.top-nav__item::after {
  bottom: -12%;
}
@media screen and (max-width: 767px) {
  .top-nav__item::after {
    bottom: inherit;
  }
}
.top-nav__item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .top-nav__item:first-child::before {
    right: 0;
    top: -19%;
    transform: translateX(96%);
  }
  .top-nav__item:first-child::after {
    left: 0;
    bottom: -17.5%;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .top-nav__item:nth-child(2)::before {
    right: 0;
    bottom: -17.5%;
    transform: translateX(100%);
  }
  .top-nav__item:nth-child(2)::after {
    left: 0;
    bottom: -17.5%;
    transform: translateX(-96%);
  }
}
@media screen and (max-width: 767px) {
  .top-nav__item:nth-child(3)::before {
    display: none;
  }
  .top-nav__item:nth-child(3)::after {
    right: 0;
    bottom: -19%;
    transform: translateX(96%);
  }
}
.top-nav__item:last-child {
  margin-right: 0;
}
.top-nav__item:last-child::before, .top-nav__item:last-child::after {
  display: none;
}
.top-nav__item a {
  display: block;
  position: relative;
  aspect-ratio: 512/268;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.top-nav__item a:hover {
  opacity: 0.9;
}
@media screen and (max-width: 991px) {
  .top-nav__item a:hover {
    opacity: 1;
  }
}
.top-nav__item a.comingsoon:hover {
  opacity: 1;
}
.top-nav__item a::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-nav__item a.link-summary::before {
  background-image: url("../img/btn_summary.png");
}
.top-nav__item a.link-admission::before {
  background-image: url("../img/btn_admission.png");
}
.top-nav__item a.link-goods::before {
  background-image: url("../img/btn_goods.png");
}
.top-nav__item a.link-kuji::before {
  background-image: url("../img/btn_kuji.png");
}
.top-nav__item .note {
  display: block;
  position: absolute;
  width: 100%;
  padding-top: 0.15em;
  text-align: center;
  color: #ffefc9;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .top-nav__item .note {
    font-size: clamp(1rem, 2.6vw, 1.4rem);
  }
}

.section-summary {
  position: relative;
  margin: 0 auto 200px;
  padding: 85px 70px 160px;
  background-color: #FCF6E8;
}
.section-summary:last-child {
  margin-bottom: 220px;
}
@media screen and (max-width: 1110px) {
  .section-summary {
    margin: 0 5vw 18vw;
  }
  .section-summary:last-child {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 991px) {
  .section-summary {
    padding: 7vw 3.5vw 16.5vw;
  }
  .section-summary:last-child {
    margin-bottom: 18.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-summary {
    padding: 9vw 5vw 20vw;
  }
  .section-summary:last-child {
    margin-bottom: 24vw;
  }
}
.section-summary::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url("../img/deco_corner_1.svg"), url("../img/deco_corner_2.svg"), url("../img/deco_corner_3.svg"), url("../img/deco_corner_4.svg");
  background-position: left top, right top, left bottom, right bottom;
  background-size: 40px auto;
}
@media screen and (max-width: 767px) {
  .section-summary::before {
    background-size: 7% auto;
  }
}
.section-summary::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10%;
  aspect-ratio: 212/204;
  transform: translateY(42%);
  background: url("../img/deco_butterfly.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .section-summary::after {
    width: 19%;
  }
}
.section-summary__heading {
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 50%;
  aspect-ratio: 1000/200;
  margin: 0 auto 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 991px) {
  .section-summary__heading {
    width: 60%;
    margin-bottom: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .section-summary__heading {
    width: 80%;
    margin-bottom: 10vw;
  }
}
.section-summary__heading.heading-summary {
  background-image: url("../img/title_summary.png");
}
.section-summary__heading.heading-admission {
  background-image: url("../img/title_admission.png");
  aspect-ratio: 1000/294;
}
.section-summary__heading.heading-goods {
  background-image: url("../img/title_goods.png");
}
.section-summary__heading.heading-kuji {
  background-image: url("../img/title_kuji.png");
  aspect-ratio: 1000/220;
}
.section-summary__heading--txt {
  line-height: 1.4;
  margin-bottom: 2em;
  font-size: 3.2rem;
  color: #C48621;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .section-summary__heading--txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section-summary__heading--txt {
    font-size: clamp(1.8rem, 4.8vw, 3rem);
  }
}
.section-summary__txt {
  font-weight: 800;
  margin-bottom: 1.5em;
}
.section-summary__txt .txt-red {
  color: #e20000;
}
.section-summary__txt .txt-strong {
  font-weight: 900;
}
.section-summary__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 1em auto;
  border-bottom: none;
  box-sizing: content-box;
  margin-top: 2em;
  margin-bottom: 4em;
}
.section-summary__list dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 7em;
  margin-bottom: 0.6em;
  padding: 8px 15px;
  background-color: #F9EBCD;
  font-weight: 800;
  color: #C48621;
}
@media screen and (max-width: 767px) {
  .section-summary__list dt {
    width: 100%;
    margin-bottom: 0;
    padding: 3px 10px;
    justify-content: flex-start;
  }
}
.section-summary__list dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 7em);
  margin-bottom: 0.7em;
  padding: 8px 20px;
  font-weight: 800;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .section-summary__list dd {
    width: 100%;
    padding: 8px 0;
  }
}
.section-summary__list dd.half {
  width: 40%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-summary__list dd.half {
    width: 50%;
    padding: calc(10px + 0.8vw) 12px;
  }
}
.section-summary__list dd.half + .half {
  border-left: 1px solid #bfb8be;
}
.section-summary__list--note {
  width: 100%;
  margin-top: 0.05em;
  line-height: 1.5;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: normal;
}
.section-summary__list--note li {
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-summary__list--note li:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section-summary__list--note {
    font-size: 1.3rem;
  }
}
.section-summary__list--note .txt-strong {
  font-weight: 900;
}
#online-shop .section-summary__list--note {
  margin-bottom: 2.5em;
}
.section-summary__btn {
  margin: 0 auto 2.5em;
  text-align: center;
}
.section-summary__btn:last-child {
  margin-bottom: 0;
}
.section-summary__btn + .section-summary__btn {
  margin-top: -0.8em;
}
.section-summary__btn a {
  display: block;
  position: relative;
  aspect-ratio: 568/120;
  margin: 0 auto 0.6em;
  width: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0.4));
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: all 0.3s;
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0.4)) brightness(1);
}
.section-summary__btn a:hover {
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0)) brightness(1.1);
}
@media screen and (max-width: 991px) {
  .section-summary__btn a:hover {
    filter: drop-shadow(0 0 4px rgba(61, 9, 0, 0.4)) brightness(1);
  }
}
@media screen and (max-width: 991px) {
  .section-summary__btn a {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .section-summary__btn a {
    width: 96%;
    filter: drop-shadow(0 0 4px rgba(61, 9, 0, 0.4));
  }
}
.section-summary__btn .btn-asobistore {
  background-image: url("../img/btn_asobistore.png");
}
.section-summary__btn .btn-amiami {
  background-image: url("../img/btn_amiamionline.png");
}
.section-summary__btn .btn-cs:hover {
  filter: brightness(1);
}
.section-summary__btn span {
  display: block;
  line-height: 1.3;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .section-summary__btn span {
    line-height: 1.4;
    font-size: 1.2rem;
  }
}

.section-shipping__date {
  display: block;
  margin-bottom: 0.2em;
  color: #C48621;
  font-weight: 800;
}
.section-shipping__txt {
  line-height: 1.6;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .section-shipping__txt {
    font-size: 1.5rem;
  }
}
.section-shipping__list--note {
  width: 100%;
  margin-top: 0.05em;
  line-height: 1.5;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: normal;
}
.section-shipping__list--note li {
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-shipping__list--note li:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section-shipping__list--note {
    font-size: 1.3rem;
  }
}

.section-wrap {
  margin: 0 auto;
}
.section-wrap__heading {
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 50%;
  aspect-ratio: 1000/200;
  margin: 0 auto 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 46%;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .section-wrap__heading {
    width: 60%;
    margin-bottom: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .section-wrap__heading {
    width: 80%;
    margin-bottom: 10vw;
  }
}
.section-wrap__heading.heading-summary {
  background-image: url("../img/title_summary.png");
}
.section-wrap__heading.heading-admission {
  background-image: url("../img/title_admission.png");
  aspect-ratio: 1000/294;
}
.section-wrap__heading.heading-goods {
  background-image: url("../img/title_goods.png");
}
.section-wrap__heading.heading-kuji {
  background-image: url("../img/title_kuji.png");
  aspect-ratio: 1000/220;
}
@media screen and (max-width: 991px) {
  .section-wrap__heading {
    width: 54%;
    margin-bottom: 5.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-wrap__heading {
    width: 66%;
    margin-bottom: 7vw;
  }
}
.section-wrap__img {
  padding: 30px;
  background-color: #F7E2C4;
}
@media screen and (max-width: 1110px) {
  .section-wrap__img {
    margin: 0 5vw;
  }
}
@media screen and (max-width: 991px) {
  .section-wrap__img {
    padding: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .section-wrap__img {
    padding: 3vw;
  }
}
.section-wrap__img img {
  width: 100%;
}

.section-goods {
  position: relative;
  margin: 0 auto 200px;
  padding: 85px 70px 160px;
  background-color: #FCF6E8;
}
.section-goods:last-child {
  margin-bottom: 220px;
}
@media screen and (max-width: 1110px) {
  .section-goods {
    margin: 0 5vw 18vw;
  }
  .section-goods:last-child {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 991px) {
  .section-goods {
    padding: 7vw 3.5vw 16.5vw;
  }
  .section-goods:last-child {
    margin-bottom: 18.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-goods {
    padding: 9vw 5vw 20vw;
  }
  .section-goods:last-child {
    margin-bottom: 24vw;
  }
}
.section-goods::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url("../img/deco_corner_1.svg"), url("../img/deco_corner_2.svg"), url("../img/deco_corner_3.svg"), url("../img/deco_corner_4.svg");
  background-position: left top, right top, left bottom, right bottom;
  background-size: 40px auto;
}
@media screen and (max-width: 767px) {
  .section-goods::before {
    background-size: 7% auto;
  }
}
.section-goods::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10%;
  aspect-ratio: 212/204;
  transform: translateY(42%);
  background: url("../img/deco_butterfly.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .section-goods::after {
    width: 19%;
  }
}
.section-goods__heading--txt {
  line-height: 1.4;
  margin-bottom: 2em;
  font-size: 3.2rem;
  color: #C48621;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .section-goods__heading--txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section-goods__heading--txt {
    font-size: clamp(1.8rem, 4.8vw, 3rem);
  }
}
.section-goods__heading--txt span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .section-goods__heading--txt span {
    font-size: clamp(1.1rem, 2.9vw, 1.8rem);
  }
}
.section-goods__heading--sub {
  line-height: 1.6;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .section-goods__heading--sub {
    font-size: 1.5rem;
  }
}
.section-goods__heading--tokuten {
  line-height: 1.25;
  font-weight: 800;
  font-size: 2rem;
  background-color: #F9EBCD;
  margin-bottom: 1.5em;
  text-align: center;
  padding: 0.6em 0.8em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .section-goods__heading--tokuten {
    font-size: clamp(1.6rem, 4.2vw, 2rem);
    text-align: left;
  }
}
.section-goods__txt {
  margin-bottom: 1.5em;
  font-weight: 800;
}
.section-goods__txt .txt-red {
  color: #e20000;
}
#goods-tokuten .section-goods__txt {
  line-height: 1.6;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #goods-tokuten .section-goods__txt {
    font-size: 1.5rem;
  }
}
.section-goods__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 1em auto;
  border-bottom: none;
  box-sizing: content-box;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.section-goods__list dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 7em;
  margin-bottom: 0.6em;
  padding: 8px 15px;
  background-color: #F9EBCD;
  font-weight: 800;
  color: #C48621;
}
@media screen and (max-width: 767px) {
  .section-goods__list dt {
    width: 100%;
    margin-bottom: 0;
    padding: 3px 10px;
    justify-content: flex-start;
  }
}
.section-goods__list dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 7em);
  margin-bottom: 0.7em;
  padding: 8px 20px;
  font-weight: 800;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .section-goods__list dd {
    width: 100%;
    padding: 8px 0;
  }
}
.section-goods__list dd.half {
  width: 40%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-goods__list dd.half {
    width: 50%;
    padding: calc(10px + 0.8vw) 12px;
  }
}
.section-goods__list dd.half + .half {
  border-left: 1px solid #bfb8be;
}
.section-goods__list dt {
  width: 9.5em;
}
@media screen and (max-width: 767px) {
  .section-goods__list dt {
    width: 100% !important;
  }
}
.section-goods__list dd {
  width: calc(100% - 9.5em);
}
@media screen and (max-width: 767px) {
  .section-goods__list dd {
    width: 100% !important;
  }
}
.section-goods__list.purchase-limit dt {
  width: 17.5em;
  line-height: 1.35;
  padding: 11px 15px;
}
@media screen and (max-width: 767px) {
  .section-goods__list.purchase-limit dt {
    padding: 6px 10px;
  }
}
.section-goods__list.purchase-limit dd {
  width: calc(100% - 17.5em);
}
.section-goods__list--note {
  width: 100%;
  margin-top: 0.05em;
  line-height: 1.5;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: normal;
}
.section-goods__list--note li {
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-goods__list--note li:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section-goods__list--note {
    font-size: 1.3rem;
  }
}
.section-goods__list .txt-red {
  color: #e20000;
}
.section-goods__online-link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .section-goods__online-link {
    justify-content: space-between;
  }
}
.section-goods__online-link a {
  display: block;
  border: 1px solid #c4c3c2;
  background-color: #fff;
  border-radius: 6px;
  width: 280px;
  height: 54px;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: 0.2s;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.section-goods__online-link a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .section-goods__online-link a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .section-goods__online-link a {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .section-goods__online-link a {
    border-radius: 4px;
    height: 9.5vw;
  }
}
.section-goods__online-link a.link-asobistore {
  margin-right: 15px;
  background-image: url("../img/link_asobistore.png");
}
@media screen and (max-width: 991px) {
  .section-goods__online-link a.link-asobistore {
    margin-right: 0;
  }
}
.section-goods__online-link a.link-amiami {
  background-image: url("../img/link_amiami.png");
}
.section-goods__block {
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px solid #dbba83;
}
.section-goods__img {
  margin-bottom: 3.5em;
}
#goods-tokuten .section-goods__img {
  margin: 2.5em auto;
}
@media screen and (max-width: 767px) {
  #goods-tokuten .section-goods__img {
    margin: 2em auto;
  }
}
.section-goods__img img {
  width: 100%;
}
.section-goods__list--lineup {
  margin: 2em auto 3em;
  padding: 0;
}
.section-goods__list--lineup:last-child {
  margin-bottom: 0;
}
.section-goods__item--lineup {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .section-goods__item--lineup {
    margin-bottom: 6vw;
  }
}
.section-goods__item--lineup:last-child {
  margin-bottom: 0;
}
.section-goods__item--lineup img {
  width: 100%;
}
.section-goods__btn {
  margin: 0 auto 2.5em;
  text-align: center;
}
.section-goods__btn:last-child {
  margin-bottom: 0;
}
.section-goods__btn a {
  display: block;
  position: relative;
  aspect-ratio: 568/120;
  margin: 0 auto 0.6em;
  width: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0.4));
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: all 0.3s;
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0.4)) brightness(1);
}
.section-goods__btn a:hover {
  filter: drop-shadow(0 0 5px rgba(61, 9, 0, 0)) brightness(1.1);
}
@media screen and (max-width: 991px) {
  .section-goods__btn a:hover {
    filter: drop-shadow(0 0 4px rgba(61, 9, 0, 0.4)) brightness(1);
  }
}
@media screen and (max-width: 991px) {
  .section-goods__btn a {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .section-goods__btn a {
    width: 96%;
    filter: drop-shadow(0 0 4px rgba(61, 9, 0, 0.4));
  }
}
.section-goods__btn .btn-more {
  background-image: url("../img/btn_more.png");
}
.section-goods__btn .btn-cs:hover {
  filter: brightness(1);
}
.section-goods__notice {
  margin: 6em auto 1em;
  color: #C48621;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .section-goods__notice {
    margin: 8vw auto 2vw;
  }
}
.section-goods__notice strong {
  font-weight: 800;
  font-size: 2.8rem;
}
@media screen and (max-width: 991px) {
  .section-goods__notice strong {
    font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  }
}

.section-kuji {
  position: relative;
  margin: 0 auto 200px;
  padding: 85px 70px 160px;
  background-color: #FCF6E8;
}
.section-kuji:last-child {
  margin-bottom: 220px;
}
@media screen and (max-width: 1110px) {
  .section-kuji {
    margin: 0 5vw 18vw;
  }
  .section-kuji:last-child {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 991px) {
  .section-kuji {
    padding: 7vw 3.5vw 16.5vw;
  }
  .section-kuji:last-child {
    margin-bottom: 18.5vw;
  }
}
@media screen and (max-width: 767px) {
  .section-kuji {
    padding: 9vw 5vw 20vw;
  }
  .section-kuji:last-child {
    margin-bottom: 24vw;
  }
}
.section-kuji::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url("../img/deco_corner_1.svg"), url("../img/deco_corner_2.svg"), url("../img/deco_corner_3.svg"), url("../img/deco_corner_4.svg");
  background-position: left top, right top, left bottom, right bottom;
  background-size: 40px auto;
}
@media screen and (max-width: 767px) {
  .section-kuji::before {
    background-size: 7% auto;
  }
}
.section-kuji::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10%;
  aspect-ratio: 212/204;
  transform: translateY(42%);
  background: url("../img/deco_butterfly.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .section-kuji::after {
    width: 19%;
  }
}
.section-kuji__heading--txt {
  line-height: 1.4;
  margin-bottom: 2em;
  font-size: 3.2rem;
  color: #C48621;
  text-align: center;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 991px) {
  .section-kuji__heading--txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section-kuji__heading--txt {
    font-size: clamp(1.8rem, 4.8vw, 3rem);
  }
}
.section-kuji__block {
  margin-bottom: 6.5em;
}
@media screen and (max-width: 767px) {
  .section-kuji__block {
    margin-bottom: 5em;
  }
}
.section-kuji__txt {
  margin-bottom: 0.2em;
  font-weight: 800;
}
.section-kuji__txt .txt-gold {
  color: #C48621;
}
.section-kuji__txt .txt-red {
  display: block;
  line-height: 1.5;
  color: #e20000;
  font-weight: normal;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__txt .txt-red {
    font-size: 1.3rem;
  }
}
.section-kuji__txt--right {
  text-align: right;
  color: #C48621;
  font-weight: 800;
}
.section-kuji__txt--notice {
  line-height: 1.5;
  margin: 2em auto 8em;
  padding: 1.1em 2em;
  border: 3px solid #e20000;
  background-color: #fff;
  font-size: 1.7rem;
  color: #e20000;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-kuji__txt--notice {
    margin-bottom: 6em;
    padding: 0.9em 1em;
    border-width: 2px;
    font-size: 1.4rem;
  }
}
.section-kuji__txt--notice a {
  color: #e20000;
  text-decoration: underline;
}
.section-kuji__txt--notice a:hover {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .section-kuji__txt--notice a:hover {
    text-decoration: underline;
  }
}
.section-kuji__heading--lineup {
  display: flex;
  align-items: center;
  background-color: #C48621;
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 767px) {
  .section-kuji__heading--lineup {
    font-size: 1.5rem;
  }
}
.section-kuji__prize {
  line-height: 1.3;
  width: 3em;
  margin: 8px;
  padding: 0 0 0.1em;
  border: 2px solid #f7f1e2;
  font-size: 2.9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-kuji__prize {
    width: 2.6em;
    border-width: 1px;
    margin: 5px;
    padding: 0.1em 0 0.2em;
    font-size: clamp(1.4rem, 3.7vw, 2.8rem);
  }
}
.section-kuji__ttl {
  line-height: 1.2;
  margin: 0;
  padding: 0.15em 0.3em 0.25em 0.3em;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__ttl {
    padding: 0.35em 0.4em 0.45em 0.3em;
    font-size: clamp(1.4rem, 3.85vw, 2.9rem);
  }
}
.section-kuji__ttl span {
  margin-left: -0.3em;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__ttl span {
    font-size: clamp(1.2rem, 3.2vw, 2rem);
  }
}
.section-kuji__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2em auto 0.5em;
}
.section-kuji__item {
  width: 31.4%;
  margin-right: 2.9%;
  margin-bottom: 2.5em;
}
.section-kuji__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .section-kuji__item {
    width: 47%;
    margin-right: 0;
    margin-bottom: 1.6em;
  }
  .section-kuji__item:nth-child(odd) {
    margin-right: 6%;
  }
  .section-kuji__item:nth-child(even) {
    margin-right: 0;
  }
}
.section-kuji__img {
  margin-bottom: 0.8em;
  border: 1px solid #F2DAAD;
}
@media screen and (max-width: 991px) {
  .section-kuji__img {
    margin-bottom: 0.7em;
  }
}
.section-kuji__img img {
  width: 100%;
}
.section-kuji__name {
  line-height: 1.4;
  font-weight: 800;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .section-kuji__name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-kuji__name {
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  }
}
.section-kuji__list--note {
  width: 100%;
  line-height: 1.5;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: normal;
}
.section-kuji__list--note li {
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-kuji__list--note li:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--note {
    font-size: 1.3rem;
  }
}
.section-kuji__list--size {
  margin-bottom: 1em;
  padding: 1em 1.5em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--size {
    padding: 0.8em 1em;
  }
}
.section-kuji__box .section-kuji__list--size {
  background-color: #F4F4F4;
}
.section-kuji__item--size {
  line-height: 1.4;
  margin-bottom: 0.2em;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__item--size {
    font-size: 1.2rem;
  }
}
.section-kuji__item--size:last-child {
  margin-bottom: 0;
}
.section-kuji__box {
  margin-bottom: 10em;
  padding: 2.5em;
  border: 2px solid #C48621;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .section-kuji__box {
    margin-bottom: 6em;
    padding: 1.5em 1.2em;
  }
}
.section-kuji__heading--box {
  margin-bottom: 1.5em;
  padding: 0.1em 0.5em 0.2em;
  background-color: #C48621;
  color: #fff;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__heading--box {
    font-size: clamp(1.4rem, 3.85vw, 2.9rem);
  }
}
.section-kuji__list--box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-kuji__list--box dt {
  width: 45%;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--box dt {
    width: 100%;
  }
}
.section-kuji__list--box dt img {
  width: 100%;
  border: 1px solid #F2DAAD;
}
.section-kuji__list--box dd {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--box dd {
    width: 100%;
  }
}
.section-kuji__box .section-kuji__txt {
  margin-bottom: 1.5em;
  font-size: 2.1rem;
}
@media screen and (max-width: 991px) {
  .section-kuji__box .section-kuji__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .section-kuji__box .section-kuji__txt {
    font-size: 1.6rem;
  }
}
.section-kuji__heading--notice {
  line-height: 1.3;
  margin-bottom: 1.5em;
  background-color: #e20000;
  color: #fff;
  padding: 0.3em 0.5em 0.4em;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__heading--notice {
    font-size: clamp(1.3rem, 3.5vw, 2.7rem);
  }
}
.section-kuji__inner-block--notice {
  margin-bottom: 3em;
  padding-bottom: 1em;
  border-bottom: 1px solid #b3b3b3;
}
.section-kuji__inner-block--notice:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .section-kuji__inner-block--notice {
    margin-bottom: 2em;
  }
}
.section-kuji__ttl--notice {
  margin-bottom: 1em;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__ttl--notice {
    font-size: clamp(1.4rem, 3.85vw, 2.7rem);
  }
}
.section-kuji__ttl--notice span {
  display: block;
  line-height: 1.4;
  color: #e20000;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .section-kuji__ttl--notice span {
    font-size: clamp(1rem, 2.8vw, 1.7rem);
  }
}
.section-kuji__list--notice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-kuji__list--notice .txt-red {
  color: #e20000;
}
.section-kuji__list--notice dt {
  width: 45%;
  margin-bottom: 3em;
  font-size: 2.2rem;
}
.section-kuji__list--notice dt.w100 {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--notice dt {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 1em;
  }
}
.section-kuji__list--notice dt p {
  margin-bottom: 0.5em;
}
.section-kuji__list--notice dt img {
  display: block;
  width: 80%;
  margin-left: 5%;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--notice dt img {
    width: 70%;
    margin: 0 auto;
  }
}
.section-kuji__list--notice dd {
  width: 49%;
  margin-bottom: 3em;
  padding-top: 3em;
}
.section-kuji__list--notice dd.w100 {
  width: 100%;
  margin-bottom: 2em;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .section-kuji__list--notice dd {
    width: 100%;
    margin-bottom: 1.5em;
    padding-top: 0;
  }
  .section-kuji__list--notice dd:last-child {
    margin-bottom: 1.5em;
  }
}

.footer {
  position: relative;
  z-index: 1;
  background-color: rgba(211, 159, 66, 0.9);
  box-shadow: 0 0 24px #740000;
  padding: 70px 0 45px;
  color: #fff;
}
@media screen and (max-width: 1110px) {
  .footer {
    padding: 7vw 3vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 11.5vw 4.9vw 6vw;
  }
}
.footer::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 18px;
  background: url("../img/dot_horizontal.svg") repeat-x center top;
  background-size: 17px auto;
  top: -17px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .footer::before {
    background-size: 11px auto;
    top: -11px;
  }
}

.section-caution {
  max-width: 960px;
  margin: 0 auto;
}
.section-caution__heading {
  margin-bottom: 1.5em;
  text-align: center;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-caution__heading {
    margin-bottom: 1em;
  }
}
.section-caution__list {
  border-bottom: 1px solid #edcf9a;
  line-height: 1.5;
  padding: 0 0 0 1em;
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  font-size: 1.4rem;
}
.section-caution__list li {
  margin: 0 0 0.3em;
  text-indent: -1em;
}
.section-caution__list li:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section-caution__list {
    margin-bottom: 2.2em;
    padding-bottom: 2.2em;
    font-size: 1.3rem;
  }
}
.section-caution__list--company {
  line-height: 1.4;
  margin-bottom: 100px;
  font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
  .section-caution__list--company {
    margin-bottom: 9vw;
  }
}
@media screen and (max-width: 767px) {
  .section-caution__list--company {
    margin-bottom: 15vw;
    font-size: 1.3rem;
  }
}
.section-caution__item--company {
  margin-bottom: 0.1em;
}

.copyright {
  line-height: 1.3;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.2rem;
  color: #fcebcd;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin: 0 auto 6vw;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
}
.copyright p {
  margin-bottom: 0.4em;
}
@media screen and (max-width: 767px) {
  .copyright .note {
    margin: 0 auto 6vw;
    font-size: clamp(0.8rem, 2.25vw, 1.2rem);
  }
}

.pagetop {
  position: fixed;
  bottom: 14px;
  right: 1.2%;
  z-index: 200;
  width: 70px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: url("../img/btn_pagetop.png") no-repeat center center/contain;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: filter 0.3s;
  filter: brightness(1);
}
@media screen and (max-width: 991px) {
  .pagetop {
    width: clamp(56px, 7.3vw, 70px);
    right: 1.2%;
    bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: clamp(40px, 10.2vw, 56px);
    right: 1.5%;
    bottom: 8px;
  }
}
.pagetop:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 991px) {
  .pagetop:hover {
    filter: brightness(1);
  }
}

.fade {
  opacity: 0;
  transition: opacity 0.5s, transform 0.4s;
  transition-delay: 0.2s;
  transform: translateY(30px);
}
.fade.scroll {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=common.css.map */