/*media*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  font-size: 10px;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 0.62vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
}

body {
  font-weight: 400;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.2rem;
  background-color: #000;
}

a {
  color: #000;
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

p {
  font-size: 2rem;
  line-height: 1.8em;
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 20;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
header .header__logoArea {
  padding: 2rem 0 0 3rem;
}
header .header__menu {
  padding: 3rem 5rem 0 0;
}
header .header__menu a {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  header .header__menu {
    padding-right: 2rem;
  }
  header .header__menu a {
    margin: 1.3rem 1rem 0 0;
    display: inline-block;
  }
}

.in__box {
  max-width: 1245px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.flex__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mv__Area {
  height: 86vh;
  position: relative;
  background: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/mv-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1000px) {
  .mv__Area {
    height: 114rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__Area {
    height: 100vh;
  }
}

.scroll-down {
  position: absolute;
  bottom: 10rem;
  right: 4rem;
  writing-mode: vertical-rl;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Outfit", sans-serif;
}
.scroll-down::after {
  content: "";
  width: 1px;
  height: 3rem;
  border-left: 1px solid #fff;
  display: block;
  position: absolute;
  bottom: -4rem;
  right: 1.8rem;
}

.mv__title_box {
  padding-top: 46rem;
  color: #fff;
}
.mv__title_box p {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: bold;
  padding-top: 4rem;
}

.mv__title {
  font-size: 6.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 4.5rem;
  }
}

.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer {
  padding: 8rem 0;
  text-align: center;
}
footer .text__box p {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 3.5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  footer .text__box img {
    width: 80%;
  }
  footer .text__box p {
    font-size: 2.5rem;
  }
}
footer .sns {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
footer .sns span {
  margin-right: 2rem;
}
footer .sns img {
  width: auto;
}
footer .link__box {
  justify-content: center;
  padding: 9rem 0 5rem;
}
footer .link__box a {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  footer .link__box a {
    margin-bottom: 2rem;
  }
}
footer .footer__text {
  text-align: center;
  font-size: 1.9rem;
  color: #979797;
  padding: 0 0 2rem;
  font-size: 1.6rem;
}
footer .footer__text a {
  color: #979797;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}
footer .footer__text a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #979797;
}
footer .copy {
  text-align: center;
  font-size: 1.9rem;
  color: #979797;
  padding: 0 0 3rem;
  font-size: 1.8rem;
}

.Area__title {
  text-align: center;
  font-size: 3.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}

.link_button {
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
  color: #baa983;
}

.Pickup__Area {
  padding: 9rem 0;
  background: #fff;
}
.Pickup__Area .Area__title {
  padding-bottom: 6.5rem;
}
.Pickup__Area .text__box {
  width: 50%;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .Pickup__Area .text__box img {
    height: 48.5rem;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box {
    width: 100%;
    padding: 0;
  }
  .Pickup__Area .text__box:first-child {
    padding-bottom: 4rem;
  }
  .Pickup__Area .text__box img {
    height: 40rem;
  }
}
.Pickup__Area .text__box p {
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box p {
    max-width: 62%;
    padding-right: 7%;
  }
}
.Pickup__Area .text__box span {
  display: block;
  font-weight: 600;
}
.Pickup__Area .text__box .title {
  font-size: 2.5rem;
  padding: 3rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box .title {
    padding-top: 0;
    font-size: 3rem;
  }
}
.Pickup__Area .text__box .text_1 {
  letter-spacing: 0.1em;
  padding-bottom: 4rem;
}
.Pickup__Area .text__box .text_2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box .text_2 {
    font-size: 2rem;
  }
}
.Pickup__Area .text__box .text_3 {
  font-weight: 500;
  padding: 3.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box .text_3 {
    padding: 2rem 0 1rem;
  }
}
.Pickup__Area .text__box .text_3 b {
  font-weight: 500;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .Pickup__Area .text__box .text_3 b {
    font-size: 3rem;
  }
}
.Pickup__Area .text__box .text_3 span {
  display: inline;
  font-size: 1.5rem;
}

.Area__title_1 {
  font-size: 5.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .Area__title_1 {
    font-size: 3.5rem;
  }
}

.text__Area {
  padding: 25rem 0;
  color: #fff;
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-01.webp), url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-02.webp), url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-03.webp);
  background-position: top 20rem left 10rem, top 17rem right 9rem, bottom 9rem right 25rem;
  background-size: auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1600px) {
  .text__Area {
    background-size: 45rem auto, 50rem auto, 35rem auto;
  }
}
@media screen and (max-width: 767px) {
  .text__Area {
    background-size: 25rem auto, 22rem auto, 23rem auto;
    background-position: top 13rem left 0, top 8rem right 0, bottom 9rem right 0;
  }
}
.text__Area .in__box {
  max-width: 880px;
}
@media screen and (max-width: 1000px) {
  .text__Area .in__box {
    max-width: 480px;
  }
}
.text__Area .text__box {
  max-width: 560px;
  margin: 4.5rem 0 0 auto;
}
@media screen and (max-width: 1000px) {
  .text__Area .text__box {
    max-width: 330px;
  }
}
.text__Area .text__box p {
  line-height: 2.45em;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .text__Area .text__box p {
    font-size: 2rem;
  }
  .text__Area .text__box p br {
    display: none;
  }
}
.text__Area .link_button {
  position: relative;
  margin-top: 11.5rem;
  display: inline-block;
}
.text__Area .link_button::after {
  content: "";
  width: 16.5rem;
  height: 3px;
  display: block;
  background: #baa983;
  left: 0;
  bottom: -2rem;
  position: absolute;
  background: #baa983;
}

.Lineup__Area {
  color: #fff;
  padding: 10.5rem 0 0;
}
.Lineup__Area .flex__box {
  padding: 4rem 20px 0;
}
.Lineup__Area .text__box {
  width: 48%;
  padding: 6rem 0 0 6rem;
  height: 51rem;
  position: relative;
  background: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-04.webp) no-repeat center/cover;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1600px) {
  .Lineup__Area .text__box {
    height: 42rem;
  }
}
@media screen and (max-width: 767px) {
  .Lineup__Area .text__box {
    padding-left: 1rem;
    width: 100%;
  }
  .Lineup__Area .text__box .text_3 {
    left: 1rem;
  }
}
.Lineup__Area .text__box:nth-child(3), .Lineup__Area .text__box:nth-child(4), .Lineup__Area .text__box:nth-child(5) {
  width: 31%;
}
@media screen and (max-width: 1600px) {
  .Lineup__Area .text__box:nth-child(3), .Lineup__Area .text__box:nth-child(4), .Lineup__Area .text__box:nth-child(5) {
    padding-left: 1rem;
  }
  .Lineup__Area .text__box:nth-child(3) .text_3, .Lineup__Area .text__box:nth-child(4) .text_3, .Lineup__Area .text__box:nth-child(5) .text_3 {
    left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .Lineup__Area .text__box:nth-child(3), .Lineup__Area .text__box:nth-child(4), .Lineup__Area .text__box:nth-child(5) {
    width: 100%;
  }
}
.Lineup__Area .text__box:nth-child(2) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-05.webp);
}
.Lineup__Area .text__box:nth-child(3) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-06.webp);
}
.Lineup__Area .text__box:nth-child(4) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-07.webp);
}
.Lineup__Area .text__box:nth-child(5) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-08.webp);
}
.Lineup__Area .text__box:nth-child(6) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-09.webp);
}
.Lineup__Area .text__box:nth-child(7) {
  background-image: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-10.webp);
}
.Lineup__Area span {
  display: block;
}
.Lineup__Area .text_1 {
  font-size: 3rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.Lineup__Area .title {
  font-size: 5.5rem;
  padding: 3rem 0 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .Lineup__Area .title {
    font-size: 4.5rem;
  }
}
.Lineup__Area .text_3 {
  font-size: 1.8rem;
  position: absolute;
  bottom: 1.4rem;
  left: 6rem;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
}
.Lineup__Area .link_button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.5rem 7rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  .Lineup__Area .link_button {
    padding: 1.5rem 4rem;
  }
}

.Bunner__Area {
  padding: 6.5rem 0;
}
.Bunner__Area .text__box {
  padding: 7.5rem 6.5rem;
  background: url(https://gigaplus.makeshop.jp/barlemonhart/images/artaste/story/bg-11.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .Bunner__Area .text__box {
    padding: 3rem;
  }
}
.Bunner__Area .title {
  font-size: 3.5rem;
  padding: 0 0 2.7rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.05em;
}
.Bunner__Area .link_button {
  color: #000;
}/*# sourceMappingURL=style.css.map */

/* ─── STORY ページ：優先会員ボタングループ ─── */
.story__btn_group {
  margin: 15rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* ← 中央寄せに変更 */
  gap: 2rem;
}

/* 共通ボタンスタイル */
.btn-priority {
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 2px solid #fff;           /* ← 白い枠線を追加 */
  border-radius: 0.6rem;
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  color: #fff;
  text-decoration: none;
  transition: background-color .3s;
}

/* 店舗用 */
.btn-store {
  background-color: #203041;
}

/* 個人用 */
.btn-individual {
  background-color: #372619;
}

/* ホバー */
.btn-priority:hover {
  background-color: rgba(255,255,255,0.15);
}

/* SPではボタン縦並び */
@media screen and (max-width: 767px) {
  .story__btn_group {
    flex-direction: column;
    gap: 2rem;
  }
  .btn-priority {
    width: 100%;
    text-align: center;
  }
}

/* ─── STORY ページ：ラインナップへのテキストリンク ─── */
.story__link_lineup {
  margin-top: 5rem;
  text-align: left;
  font-size: 2rem;
}
.story__link_lineup a {
  color: #fff;
  text-decoration: underline;
}
.story__link_lineup a:hover {
  opacity: 0.8;
}

/* SPではボタン縦並び */
@media screen and (max-width: 767px) {
  .story__btn_group {
    flex-direction: column;
    gap: 2rem;
  }
  .btn-priority {
    width: 100%;
    text-align: center;
  }
}