@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@media screen and (max-width: 820px) {
  .pc-only {
    display: none !important;
  }
}

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

:root {
  --c-txt: #333;
  --c-bg: #fff;
  --c-accent: #68482b;
}

/* --------------------
	contents
-------------------- */
html {
  font-size: 10px;
}

body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  background: var(--c-bg);
  color: var(--c-txt);
  font-family: adobe-caslon-pro, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: normal;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

p, li, dt, dd, th, td {
  font-size: 1.4rem;
  letter-spacing: 0.075em;
}

small {
  font-size: 0.75em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  cursor: pointer !important;
  color: var(--c-txt);
  outline: none;
  text-decoration: none;
  text-underline-offset: 0.25em;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.6;
  /*text-decoration:underline;*/
}

a:focus, *:focus {
  cursor: pointer;
  outline: none;
}

a img {
  transition: all 0.8s ease-out;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

a img:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.mainImg {
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.mainImg h1 {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 60%;
}

.mainImg h1 img {
  transform: translateX(-50%);
}

.label-logo {
  position: absolute;
  right: 4%;
  bottom: 3%;
  width: 10%;
}

.intro {
  width: 75%;
  margin: 20% auto 0;
}
.intro p {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "BIZ UDPMincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 13px;
  line-height: 2.3;
  letter-spacing: 0.05em;
}

main {
  padding: 40% 0 0;
}

main > section {
  padding: 0;
}

img.lazyload {
  opacity: 0;
  visibility: hidden;
}

img.lazyloaded {
  opacity: 0;
  visibility: visible;
  -webkit-animation: fadein 1s forwards 0.8s;
          animation: fadein 1s forwards 0.8s;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main > section {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: 1.5s ease-in 0.5s;
}

main > section.fadeIn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.visual {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 0;
  margin: 0 auto 30%;
  width: 100%;
  position: relative;
}

.col1,
.col1s {
  flex-direction: column;
}

.visual figure {
  width: 50%;
  margin: 0 auto;
}

.col1 figure {
  width: 75%;
  margin: 0 auto;
}

.col1s figure {
  width: 60%;
  margin: 0 auto;
}

.full figure {
  width: 100%;
}

.visual img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 820px) {
  .col1_sp {
    flex-direction: column;
  }
  .col1_sp figure {
    width: 75%;
    margin: 0 auto;
  }
}

.caption {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 7.5% 0 0;
}

.caption p + p {
  margin-top: 1.5rem;
}

.caption p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 0;
}

.caption p span {
  display: inline-block;
}

.caption span:first-of-type {
  content: ": ";
  margin-right: 0.75em;
}

.caption a span:first-of-type {
  text-decoration: underline;
  text-transform: capitalize;
}

.caption span.itemPrice {
  letter-spacing: 0.025em;
}

.caption span.itemNo {
  display: none;
}

.caption span small {
  display: inline-block;
  font-size: 0.75em;
  margin: 0 0 2px 0.25em;
  vertical-align: bottom;
}

.caption span.instore,
.caption span.inshop {
  font-size: 1.1rem;
  display: block;
  margin-top: 3px;
}

.caption span.instore::before {
  margin-left: 0;
  content: "発売予定：";
}

.caption span.inshop::before {
  content: "取扱店舗：";
}

.caption span:last-child {
  margin-right: 0;
}

section#label-top {
  margin: 30% 0 20%;
  padding: 0;
}

#label-top p {
  font-size: 1.3rem;
  line-height: 2;
  margin: 15% 10% 0;
}

#label-top p.link {
  display: block;
  font-size: 1.4rem;
}

.link a {
  border: #666 solid 1px;
  display: block;
  line-height: 40px;
  padding-top: 6px;
  text-align: center;
  text-decoration: none;
}

.link a:hover {
  opacity: 0.6;
}

.pcBr {
  display: inline-block;
}

.spBr {
  display: block;
}

@media (min-width: 821px) {
  html {
    font-size: 11px;
  }
  .mainImg {
    width: 60%;
  }
  .intro {
    margin: 150px auto 0;
    text-align: center;
  }
  .intro p {
    font-size: 14px;
  }
  main {
    padding: 20% 0 0;
  }
  .visual {
    margin: 0 auto 20%;
  }
  .col1 figure {
    width: 60%;
    margin: 0 auto;
  }
  .col1s figure {
    width: 50%;
    margin: 0 auto;
  }
  .full figure {
    width: 100%;
  }
  .caption {
    padding-top: 5%;
  }
  .caption p + p {
    margin-top: 1.5rem;
  }
  .caption span.instore,
.caption span.inshop {
    display: inline-block;
  }
  .caption span.instore::before {
    margin-left: 0.75rem;
  }
  section#label-top {
    margin: 15% 0 15%;
  }
  section#label-top .inner {
    width: 500px;
    margin: 0 auto;
  }
  #label-top p {
    margin: 50px 10% 0px;
  }
  .link a {
    line-height: 60px;
  }
  footer {
    padding: 15% 0 5%;
  }
  footer nav li {
    font-size: 1.375rem;
  }
  .pcBr {
    display: block;
  }
  .spBr {
    display: inline;
  }
}
@media (min-width: 1000px) {
  .wrapper {
    width: 80%;
  }
}
/* --------------------
	aside
-------------------- */
aside {
  margin-bottom: 150px;
}
aside > div:not(:last-of-type) {
  margin-bottom: 80px;
}
aside a {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  aside a {
    width: 400px;
  }
}

.aside__btn {
  display: block;
  padding: 21px 0 16px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.5s;
}
@media screen and (min-width: 821px) {
  .aside__btn {
    padding: 22px 0 16px;
    font-size: 15px;
  }
}

.other-item .aside__btn {
  background: var(--c-txt);
  border: 1px solid var(--c-txt);
  color: #fff;
}

.label-top .aside__btn {
  border: 1px solid var(--c-txt);
}
.label-top .aside__btn:hover {
  background: var(--c-txt);
  color: #fff;
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: black;
}
@media screen and (min-width: 821px) {
  .footer {
    padding: 6.0901339829vw 0;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 29.3333333333vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 821px) {
  .footer__logo {
    width: min(130px, 15.8343483557vw);
    margin: 0 auto 1.9488428745vw;
  }
}
.footer__logo a {
  display: block;
}
@media screen and (min-width: 821px) {
  .footer__logo a {
    transition: all 0.5s ease;
  }
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 821px) {
  .footer__copyright {
    font-size: min(13px, 1.5834348356vw);
  }
}
/*# sourceMappingURL=260828_ur-w_pre_style.css.map */