@charset "UTF-8";
/* Scss Document */
a {
  color: inherit;
  text-decoration: none;
}

a.link {
  transition: 0.1s;
  color: #b30772;
  text-decoration: underline;
  position: relative;
}
a.link:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  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;
  }
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

.mt-0 {
  margin-top: 0 !important;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-style: normal;
  font-size: 1.5em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  letter-spacing: 0.02em;
  line-height: 1.7;
  word-wrap: break-word;
  background-color: #ffffff;
  color: #212529;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body::before {
  display: block;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg_02.webp");
  background-size: 600px auto;
}
@media screen and (max-width: 767px) {
  body::before {
    background-size: 80% auto;
  }
}

.loading {
  overflow: hidden;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  transition: 0.8s;
}
.loaded .loading {
  opacity: 0;
}

.wrapper {
  overflow: hidden;
  position: relative;
}
.wrapper::after {
  display: block;
  content: "";
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.gnavi-visible .wrapper::after {
  opacity: 0.45;
  right: 0;
  visibility: visible;
}

.pageHeader {
  position: relative;
  background-color: #fff;
}
.pageHeader__logo {
  margin: 0;
}
.pageHeader__logo a {
  display: block;
  height: 100px;
  aspect-ratio: 344/240;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  transition: opacity 0.3s;
  opacity: 1;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.pageHeader__logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .pageHeader__logo a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .pageHeader__logo a {
    height: clamp(50px, 13vw, 120px);
  }
}

.content__section {
  width: 100%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 991px) {
  .content__section {
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .content__section {
    margin-bottom: 16vw;
  }
}
.content__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 80px;
  background-image: url("../img/bg_01.webp");
  background-size: 600px auto;
  text-align: center;
  font-size: 4.8rem;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .content__title {
    height: 22vw;
    margin-bottom: 10vw;
    background-size: 80% auto;
    font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  }
}
.content__title span {
  line-height: 1.25;
  padding: 0 0.15em;
  background: linear-gradient(transparent 54%, #f7ad03 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.content__inner {
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .content__inner {
    margin: 0 5vw;
  }
}
.content__thumbList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto 140px;
}
@media screen and (max-width: 767px) {
  .content__thumbList {
    justify-content: flex-start;
    margin-bottom: 18vw;
  }
}
.content__thumbItem {
  width: 18%;
}
@media screen and (max-width: 767px) {
  .content__thumbItem {
    width: 30.6666666667%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .content__thumbItem:nth-child(3n) {
    margin-right: 0;
  }
}
.content__thumbItem a {
  display: block;
  position: relative;
  border: 1px solid #212529;
  transition: opacity 0.3s;
  opacity: 1;
}
.content__thumbItem a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .content__thumbItem a:hover {
    opacity: 1;
  }
}
.content__thumbItem a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14%;
  aspect-ratio: 1/1;
  background: url("../img/arrow_down.svg") no-repeat right bottom/contain;
}
@media screen and (max-width: 767px) {
  .content__thumbItem a::after {
    width: 16%;
  }
}
.content__thumbItemLimited {
  display: block;
  content: "";
  position: absolute;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../img/icon_limited.png") no-repeat left top/contain;
  aspect-ratio: 1/1;
  width: 26%;
  top: -1px;
  left: -1px;
}
@media screen and (max-width: 767px) {
  .content__thumbItemLimited {
    width: 30%;
  }
}
.content__thumbItem a img {
  width: 100%;
}
.content__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .content__list {
    margin-bottom: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .content__list {
    margin-bottom: 10vw;
  }
}
.content__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 200px;
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .content__item {
    margin: 0 0 5vw;
    padding: 3vw 0 14vw;
    border-bottom: 1px solid #212529;
  }
}
@media screen and (max-width: 767px) {
  .content__item {
    padding: 5vw 0 20vw;
  }
}
.content__item img {
  width: 100%;
  border: 1px solid #212529;
}
.content__itemImageWrap {
  width: 44%;
}
@media screen and (max-width: 991px) {
  .content__itemImageWrap {
    width: 100%;
  }
}
.content__itemImageMain {
  position: relative;
  margin-bottom: 5%;
}
.content__itemMainLimited {
  display: block;
  content: "";
  position: absolute;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../img/icon_limited.png") no-repeat left top/contain;
  aspect-ratio: 1/1;
  width: 21%;
  top: 0;
  left: 0;
}
.content__itemImageList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .content__itemImageList {
    margin-bottom: 0.5em;
  }
}
.content__itemImageItem {
  width: 47.5%;
  margin-bottom: 5%;
}
.content__itemTextWrap {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .content__itemTextWrap {
    width: 100%;
  }
}
.content__itemNameWrap {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
}
.content__itemCompany {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 991px) {
  .content__itemCompany {
    font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  }
}
.content__itemName {
  margin-bottom: 0.4em;
  font-size: 2.9rem;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .content__itemName {
    font-size: clamp(2rem, 5.3vw, 2.9rem);
  }
}
.content__itemName span {
  padding-right: 1em;
}
.content__itemPrice {
  margin-bottom: 2em;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: right;
  color: #f37200;
}
@media screen and (max-width: 991px) {
  .content__itemPrice {
    margin-bottom: 1em;
    font-size: clamp(1.9rem, 5vw, 2.4rem);
  }
}
.content__itemPrice span {
  display: inline-block;
}
.content__itemPriceYen {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
  .content__itemPriceYen {
    font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  }
}
.content__itemPriceYen:first-of-type {
  padding-right: 0.5em;
}
.content__itemDesc {
  font-size: 1.4rem;
}
.content__itemDescClass {
  margin-bottom: 0.3em;
  font-size: 1.5rem;
  font-weight: bold;
}
.content__itemDescText {
  margin-bottom: 0.25em;
}
.content__itemDescText span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.content__itemDescText.red {
  color: #e50000;
}
.content__itemDescList {
  margin-bottom: 1.5em;
  padding: 0 0 0 1em;
}
.content__itemDescItem {
  text-indent: -1em;
}
.content__itemNoteList {
  margin-top: 2.2em;
  padding: 0 0 0 1em;
}
.content__itemNoteItem {
  text-indent: -1em;
}
.content__itemNoteItem.red {
  color: #e50000;
}
.content__itemDescComment {
  margin: 1.8em 0;
}
.content__innerImage {
  width: 100%;
}
.content__itemBox {
  margin-top: 2em;
  padding: 1.5em 2em 1em;
  background-color: rgba(255, 227, 26, 0.25);
}
@media screen and (max-width: 991px) {
  .content__itemBox {
    padding: 1.5em 5vw 1em;
  }
}
.content__itemBoxTitle {
  line-height: 1.35;
  margin-bottom: 0.6em;
  font-size: 2.6rem;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  color: #f37200;
}
@media screen and (max-width: 991px) {
  .content__itemBoxTitle {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.6rem);
  }
}
.content__itemBoxTitle span {
  display: block;
  font-size: 2.2rem;
}
@media screen and (max-width: 991px) {
  .content__itemBoxTitle span {
    font-size: clamp(1.6rem, 4.3vw, 2.2rem);
  }
}
.content__itemBoxList {
  padding: 0 0 0 1em;
  font-size: 1.4rem;
}
.content__itemBoxItem {
  line-height: 1.4;
  text-indent: -1em;
  margin-bottom: 0.2em;
}
.content__itemBoxItem.red {
  color: #e50000;
}
.content__itemBtnWrap {
  margin: 1.5em 0;
}
.content__itemBtn {
  display: block;
  position: relative;
  line-height: 1.25;
  width: 320px;
  padding: 11px 30px 12px 16px;
  background-color: #f37200;
  color: #fff !important;
  font-size: 2rem;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
}
@media screen and (max-width: 991px) {
  .content__itemBtn {
    margin: 0 auto;
    font-size: clamp(1.7rem, 4.5vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  .content__itemBtn {
    width: clamp(160px, 100%, 320px);
  }
}
.content__itemBtn span {
  position: relative;
}
.content__itemBtn::before, .content__itemBtn::after {
  display: block;
  position: absolute;
  content: "";
}
.content__itemBtn::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7ad03;
  opacity: 0;
  transition: 0.3s;
}
.content__itemBtn::after {
  width: 12px;
  aspect-ratio: 1/1;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .content__itemBtn::after {
    width: 11px;
  }
}
.content__itemBtn:hover {
  text-decoration: none;
}
.content__itemBtn:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .content__itemBtn:hover::before {
    opacity: 0;
  }
}
.content__btnWrap {
  margin: 0;
}
.content__btn {
  display: block;
  position: relative;
  width: 40%;
  line-height: 1.2;
  margin: 0 auto;
  padding: 5px 0 10px;
  background-color: #f7ad03;
  color: #fff !important;
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .content__btn {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .content__btn {
    width: clamp(160px, 100%, 320px);
    padding: 3px 0 8px;
  }
}
.content__btn::before, .content__btn::after {
  display: block;
  position: absolute;
  content: "";
}
.content__btn::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f37200;
  opacity: 0;
  transition: 0.3s;
}
.content__btn::after {
  width: 17px;
  aspect-ratio: 1/1;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  border: solid #fff;
  border-width: 3px 3px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .content__btn::after {
    width: 15px;
    right: 14px;
  }
}
@media screen and (max-width: 767px) {
  .content__btn::after {
    width: 12px;
    right: 2.5vw;
    border-width: 2px 2px 0 0;
  }
}
.content__btn:hover {
  text-decoration: none;
}
.content__btn:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .content__btn:hover::before {
    opacity: 0;
  }
}
.content__btnLogo {
  position: relative;
  display: block;
  background: url("../img/logo.png") no-repeat center center/contain;
  width: 32%;
  aspect-ratio: 344/240;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content__btnLogo {
    width: 36%;
  }
}
.content__btn span {
  position: relative;
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .content__btn span {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}
.content__btn span:last-child {
  font-size: 2.9rem;
}
@media screen and (max-width: 767px) {
  .content__btn span:last-child {
    font-size: clamp(2rem, 5.3vw, 2.9rem);
  }
}

.pageFooter {
  padding: 74px 5vw 30px;
  text-align: center;
  background-image: url("../img/bg_01.webp");
  background-size: 600px auto;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .pageFooter {
    padding: 7vw 7vw 2vw;
  }
}
@media screen and (max-width: 767px) {
  .pageFooter {
    background-size: 80% auto;
    padding: 10vw 3vw 2.5vw;
  }
}
.pageFooter__snsList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 50px;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .pageFooter__snsList {
    padding: 0;
    margin: 0 0 6vw;
  }
}
@media screen and (max-width: 767px) {
  .pageFooter__snsList {
    margin-bottom: 9vw;
  }
}
.pageFooter__snsItem {
  display: flex;
  align-items: center;
  margin: 0 22px 0 0;
}
.pageFooter__snsItem:first-child, .pageFooter__snsItem:last-child {
  margin-right: 0;
}
.pageFooter__snsItem:first-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .pageFooter__snsItem {
    margin-right: 18px;
  }
  .pageFooter__snsItem:first-child {
    margin-bottom: clamp(15px, 5.5vw, 30px);
  }
}
.pageFooter__snsItemBr {
  display: block;
  width: 100%;
}
.pageFooter__snsLink {
  display: block;
  overflow: hidden;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  aspect-ratio: 1/1;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s;
  opacity: 1;
}
.pageFooter__snsLink:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .pageFooter__snsLink:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .pageFooter__snsLink {
    height: clamp(25px, 6.7vw, 32px);
  }
}
.pageFooter__snsLink.amiami {
  aspect-ratio: 292/62;
  height: 42px;
  background-image: url("../img/logo_amiami.png");
}
@media screen and (max-width: 991px) {
  .pageFooter__snsLink.amiami {
    height: clamp(32px, 8.5vw, 42px);
  }
}
.pageFooter__snsLink.twitter {
  background-image: url("../img/icon_twitter.png");
}
.pageFooter__snsLink.facebook {
  background-image: url("../img/icon_facebook.png");
}
.pageFooter__snsLink.line {
  background-image: url("../img/icon_line.png");
}
.pageFooter__snsTitle {
  font-size: 1.2rem;
}
.pageFooter__copy {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.pageFooter__copy span {
  display: inline-block;
}
.pageFooter__copy span + span {
  margin-left: 1em;
}
@media screen and (max-width: 991px) {
  .pageFooter__copy {
    text-align: center;
    font-size: clamp(1rem, 2.7vw, 1.2rem);
  }
}

/* pagetop */
.pagetop {
  display: flex;
  position: fixed;
  width: 80px;
  right: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  background-color: #f37200;
  cursor: pointer;
  z-index: 200;
}
.pagetop::before, .pagetop::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagetop::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7ad03;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.pagetop::after {
  background: url("../img/btn_pagetop.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: clamp(45px, 12vw, 80px);
  }
}
.pagetop:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .pagetop:hover::before {
    opacity: 0;
  }
}

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