@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/* ブレイクポイントの定義 */
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/* --------------------------------------------
 color
-------------------------------------------- */
/* 固定色 */
/* テキスト */
/* メインカラー */
/* 背景 */
/* 境界線 */
/* その他 */
/* --------------------------------------------
 font
-------------------------------------------- */
/* --------------------------------------------
 layout
-------------------------------------------- */
/* --------------------------------------------
 spacing
-------------------------------------------- */
/* --------------------------------------------
 z-index
-------------------------------------------- */
/* variable */
i {
  margin: auto 20px;
}

a,
a:hover,
a:visited {
  color: #222;
  text-decoration: none;
}

h1,
h2 {
  line-height: 1;
}

.marquee_list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0;
  width: fit-content;
  /* animationはJSで制御 */
}
.marquee_list li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee_list li img {
  width: auto;
}

.slick-dots li:only-child {
  display: none;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ハンバーガーメニュー (SP) */
.gnavi_btn {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0.8rem;
  right: 1.6rem;
  width: 5.6rem;
  height: 5.6rem;
  background: none;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  mix-blend-mode: difference;
}
.gnavi_btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 3.2rem;
  height: 2px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
}
.gnavi_btn span:nth-child(1) {
  top: 1.9rem;
}
.gnavi_btn span:nth-child(2) {
  top: 2.7rem;
}
.gnavi_btn span:nth-child(3) {
  top: 3.5rem;
}
.gnavi_btn.is-open span:nth-child(1) {
  top: 2.7rem;
  transform: translateX(-50%) rotate(45deg);
}
.gnavi_btn.is-open span:nth-child(2) {
  opacity: 0;
}
.gnavi_btn.is-open span:nth-child(3) {
  top: 2.7rem;
  transform: translateX(-50%) rotate(-45deg);
}
.gnavi_btn {
  /* 初期状態は非表示 */
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.credit {
  line-height: 1.5;
}
.credit .name {
  font-size: 1.2rem;
  white-space: pre-wrap;
}
.credit .name span {
  font-size: 1.2rem;
}
.credit .price {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.credit .price span {
  font-size: 1.1rem;
}
.credit .text {
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
}

.btn {
  max-width: 19.4rem;
  margin: 0 auto;
  padding: 0.8rem;
  font-size: 1.4rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  color: #fff;
  border-radius: 100vh;
  border: dotted 1px #e6e6e6;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #76A4B3;
}
.btn::before {
  content: "zoom_in";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 200;
  font-size: 2.2rem;
  margin-right: 0.4rem;
  line-height: 1;
}
.btn:hover, .btn:visited {
  color: #fff;
}

/* --------------------------------------------
 footer
-------------------------------------------- */
footer {
  width: 100%;
  padding: 9.6rem 1.6rem;
  position: relative;
  z-index: 1;
  background: #F5F5F5;
  text-align: center;
  color: #222;
  font-weight: 400;
}
footer .f_logo {
  width: 12rem;
  margin: 0 auto;
}
footer .f_logo a {
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer .f_logo a svg path {
  fill: #222;
}
footer .f_icon {
  margin: 3.2rem auto 1.6rem;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .f_icon li {
  margin: 0 1.2rem;
  padding: 0;
}
footer .f_icon li i {
  margin: 0;
  font-size: 2rem;
  color: #222;
}
footer small {
  text-align: center;
  font-size: 1rem;
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}

html {
  font-size: 2.7vw;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  html {
    font-size: clamp(10px, 1.1vw, 14px);
  }
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #222;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-justify: inter-ideograph;
  position: relative;
  background: #F5F5F5;
}

#wrapper {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  /* 初期状態を非表示にする */
}
#wrapper::before {
  content: "";
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: solid 5px;
  z-index: -1;
  overflow: hidden;
}

.contents_area {
  /* --------------------------------------------
  center
  -------------------------------------------- */
}
.contents_area .centerBox {
  /* ---------- hero ---------- */
}
.contents_area .centerBox .hero {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 0;
  color: #222;
}
.contents_area .centerBox .hero .hero__mv {
  position: relative;
  height: 100vh;
}
.contents_area .centerBox .hero .hero__logo {
  width: 12rem;
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  z-index: 2;
}
.contents_area .centerBox .hero .hero__logo .st0 {
  fill: #fff;
}
.contents_area .centerBox .hero .hero__mv-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  width: max-content;
  height: 100%;
  --hero-mv-shift: -50%;
  will-change: transform;
  animation: hero-mv-marquee 24s linear infinite;
}
.contents_area .centerBox .hero .hero__mv-slide {
  height: 100%;
  flex-shrink: 0;
}
.contents_area .centerBox .hero .hero__mv-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.contents_area .centerBox .hero .hero__mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}
.contents_area .centerBox .hero .hero__mv-text {
  position: absolute;
  z-index: 2;
  left: 2.4rem;
  bottom: 13.6rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .hero .hero__mv-text {
    left: 6.4rem;
    bottom: 6.4rem;
  }
}
.contents_area .centerBox .hero .hero__mv-text .hero__title {
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-family: tot-shizukamin-stdn, sans-serif;
  line-height: 1.4;
  font-weight: normal;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .hero .hero__mv-text .hero__title {
    font-size: 4rem;
  }
}
.contents_area .centerBox .hero .hero__mv-text .hero__title .ten {
  margin-right: -0.4em;
}
.contents_area .centerBox .hero .hero__mv-text .hero__copy {
  margin-bottom: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.contents_area .centerBox .hero .hero__mv-text .hero__date {
  font-size: 2.6rem;
  font-family: tot-shizukamin-stdn, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-weight: normal;
}
.contents_area .centerBox .hero .hero__mv-text .hero__date span {
  margin-left: 0.8rem;
  font-size: 2.4rem;
}
.contents_area .centerBox {
  /* ---------- look ---------- */
}
.contents_area .centerBox .look {
  padding: 0 0 9.6rem 0;
  position: relative;
  z-index: 1;
  background: #F5F5F5;
}
.contents_area .centerBox .look .look__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.contents_area .centerBox .look .look__main {
  margin-bottom: 8.4rem;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contents_area .centerBox .look .look__main figure {
  position: relative;
}
.contents_area .centerBox .look .look__main figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(87.2vw, 48rem);
  max-height: 80vh;
}
.contents_area .centerBox .look .look__main figure .copy {
  position: absolute;
  top: -2.4rem;
  right: -1.6rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: tot-shizukamin-stdn, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.contents_area .centerBox .look .look__main figure .copy .copy_line {
  position: relative;
  padding: 0.8rem 0.8rem 0;
  display: inline-block;
  background: #fff;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
}
.contents_area .centerBox .look .look__main figure .copy .copy_line:nth-of-type(2) {
  top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .look .look__other {
    width: 64rem;
    margin: auto;
  }
}
.contents_area .centerBox .look .look__other > li {
  margin-bottom: 12.8%;
}
.contents_area .centerBox .look .look__other > li .credit {
  margin-top: 0.8rem;
  font-size: 1rem;
}
.contents_area .centerBox .look .look__other > li .credit > li {
  margin-bottom: 0;
}
.contents_area .centerBox .look .look__other > li .credit > li span {
  color: #fff;
  margin-right: 0.8rem;
}
.contents_area .centerBox .look .look__other > li .credit a.btn_buy {
  margin-top: 0.8rem;
  padding: 0 1.6rem;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
}
.contents_area .centerBox .look .look__other > li .credit a.btn_buy:hover {
  color: #fff;
  background: #76A4B3;
}
.contents_area .centerBox .look .look__thanks {
  padding: 0 2.4rem;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.contents_area .centerBox .look--01 .look__bg {
  background-image: url("../images/img_01_bg.webp");
  background-size: cover;
  background-position: center center;
}
.contents_area .centerBox .look--01 .look__other .list_01 {
  width: 50.1333333333%;
  margin-left: 43.4666666667%;
  margin-bottom: -2.4rem;
  position: relative;
  z-index: 1;
}
.contents_area .centerBox .look--01 .look__other .list_02 {
  width: 72.2666666667%;
  margin-left: 0;
}
.contents_area .centerBox .look--01 .look__other .list_03 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6.4%;
}
.contents_area .centerBox .look--01 .look__other .list_03 figure {
  width: 55.2%;
}
.contents_area .centerBox .look--01 .look__other .list_03 .credit {
  margin-left: 6.4%;
}
.contents_area .centerBox .look--01 .look__other .list_03 .credit span {
  mix-blend-mode: difference;
}
.contents_area .centerBox .look--01 .look__other .list_04 {
  width: 68%;
  margin-left: 6.4%;
}
.contents_area .centerBox .look--01 .look__thanks {
  mix-blend-mode: difference;
}
.contents_area .centerBox .look--02 .look__bg {
  background: #76A4B3;
}
.contents_area .centerBox .look--02 .look__other .list_01 {
  width: 65.8666666667%;
  margin-left: 0;
  margin-bottom: -2.4rem;
}
.contents_area .centerBox .look--02 .look__other .list_02 {
  width: 58.9333333333%;
  margin-left: 34.9333333333%;
  position: relative;
  z-index: 1;
}
.contents_area .centerBox .look--02 .look__other .list_03 {
  overflow: hidden;
}
.contents_area .centerBox .look--02 .look__other .list_03 .box {
  display: flex;
  width: max-content;
  animation: look02-marquee 12s linear infinite;
}
.contents_area .centerBox .look--02 .look__other .list_03 .box figure {
  flex-shrink: 0;
  width: min(55.2vw, 27.6rem);
}
.contents_area .centerBox .look--02 .look__other .list_03 .credit {
  text-align: center;
}
.contents_area .centerBox .look--03 .look__bg {
  background-image: url("../images/img_03_bg.webp");
  background-size: cover;
  background-position: center center;
}
.contents_area .centerBox .look--03 .look__other .list_01 {
  width: 87.2%;
  margin-left: 6.4%;
  position: relative;
  z-index: 1;
}
.contents_area .centerBox .look--03 .look__other .list_01 .credit li span {
  color: #222;
}
.contents_area .centerBox .look--03 .look__other .list_02 {
  width: 65.8666666667%;
  margin-left: 34.1333333333%;
  margin-right: 0;
}
.contents_area .centerBox .look--03 .look__other .list_03 {
  width: 58.9333333333%;
  margin-left: 6.4%;
}
.contents_area .centerBox .look--03 .look__thanks {
  color: #222;
}
.contents_area .centerBox .look--04 .look__bg {
  background: #685044;
}
.contents_area .centerBox .look--04 .look__other .list_01 {
  width: 53.0666666667%;
  margin-left: 46.9333333333%;
}
.contents_area .centerBox .look--04 .look__other .list_02 .look_slider {
  width: 76.5333333333%;
  margin-left: 0;
}
.contents_area .centerBox .look--04 .look__other .list_02 .credit {
  margin-left: 6.4%;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .look--04 .look__other .list_02 .credit {
    margin-left: 0;
  }
}
.contents_area .centerBox .look--04 .look__other .list_03 {
  width: 70.4%;
  margin-left: 14.9333333333%;
}
.contents_area .centerBox {
  /* ---------- lineup ---------- */
}
.contents_area .centerBox .lineup {
  width: 100%;
  padding: 6.4rem 2.4rem;
  position: relative;
  z-index: 1;
  background: #FBFBFB;
  text-align: center;
}
.contents_area .centerBox .lineup h2 {
  margin-bottom: 2.4rem;
  font-size: 8rem;
  color: #222;
  font-family: absolute-beauty, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.contents_area .centerBox .lineup .lineup__list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.contents_area .centerBox .lineup .lineup__list > li {
  padding: 0;
  margin: 0;
  width: calc((100% - 2.4rem) / 2);
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .lineup .lineup__list > li {
    width: calc((100% - 4.8rem) / 3);
  }
}
.contents_area .centerBox .lineup .lineup__list > li .img {
  margin-bottom: 0.8rem;
  background: #F5F5F5;
}
.contents_area .centerBox .lineup .lineup__list > li .img .slick-dots {
  position: absolute;
  bottom: 0;
}
.contents_area .centerBox .lineup .lineup__list > li .img .slick-dots > li {
  margin: 0;
}
.contents_area .centerBox .lineup .lineup__list > li .size {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
}
.contents_area .centerBox .lineup .lineup__list > li .size > li {
  width: calc((100% - 0.4rem) / 2);
}
.contents_area .centerBox .lineup .lineup__list > li .size > li a,
.contents_area .centerBox .lineup .lineup__list > li .size > li a:visited {
  padding: 0.4rem;
  font-size: 1.3rem;
  display: block;
  border: solid 1px #e6e6e6;
  background: #fff;
  border-radius: 0.8rem;
}
.contents_area .centerBox .lineup .lineup__list > li .size > li a:hover,
.contents_area .centerBox .lineup .lineup__list > li .size > li a:visited:hover {
  color: #fff;
  background: #76A4B3;
}
.contents_area .centerBox .lineup .lineup__list > li .text {
  margin-top: 0.8rem;
  font-size: 1rem;
}
.contents_area .centerBox .lineup article .item_list_area {
  width: 100%;
}
.contents_area .centerBox .lineup .lineup__topics {
  max-width: 64rem;
  margin: 6.4rem auto 0;
  padding: 3.2rem;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .lineup .lineup__topics {
    padding: 6.4rem;
  }
}
.contents_area .centerBox .lineup .lineup__topics figure {
  margin-bottom: 2.4rem;
}
.contents_area .centerBox .lineup .lineup__topics h3 {
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-family: tot-shizukamin-stdn, sans-serif;
  line-height: 120%;
}
.contents_area .centerBox .lineup .lineup__topics h3 .title__fukidashi {
  font-size: 1.4rem;
  display: inline-block;
}
.contents_area .centerBox .lineup .lineup__topics h3 .title__fukidashi::before {
  content: "＼";
}
.contents_area .centerBox .lineup .lineup__topics h3 .title__fukidashi::after {
  content: "／";
}
.contents_area .centerBox .lineup .lineup__topics h3 .title__sub {
  font-size: 1.8rem;
  display: inline-block;
}
.contents_area .centerBox .lineup .lineup__topics h3 .title__sub-small {
  margin: auto -0.4rem;
  font-size: 1.4rem;
  display: inline-block;
}
.contents_area .centerBox .lineup .lineup__topics p {
  text-align: left;
}
.contents_area .centerBox .lineup .lineup__topics p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .lineup .lineup__topics p {
    text-align: center;
  }
  .contents_area .centerBox .lineup .lineup__topics p br {
    display: inherit;
  }
}
.contents_area .centerBox {
  /* ---------- concept ---------- */
}
.contents_area .centerBox .concept {
  width: 100%;
  padding: 6.4rem 0;
  position: relative;
  z-index: 1;
  background: #F5F5F5;
  text-align: center;
}
.contents_area .centerBox .concept h2 {
  margin-bottom: 2.4rem;
  font-size: 8rem;
  color: #222;
  font-family: absolute-beauty, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.contents_area .centerBox .concept figure {
  margin-bottom: 3.2rem;
  background: url("../images/concept.webp");
  background-size: cover;
  aspect-ratio: 5/3;
}
@media screen and (min-width: 768px) {
  .contents_area .centerBox .concept figure {
    width: 100%;
    max-height: 40rem;
    background: url("../images/concept.webp") fixed;
    background-size: cover;
    background-position: center;
  }
}
.contents_area .centerBox .concept h3 {
  margin-bottom: 2.4rem;
  font-size: 2rem;
  font-family: tot-shizukamin-stdn, sans-serif;
}
.contents_area .centerBox .concept p {
  font-size: 1.4rem;
}

/* --------------------------------------------
 left
-------------------------------------------- */
.leftBox {
  display: none;
}

.gnavi {
  display: none;
}
.gnavi.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  background: #76A4B3;
  z-index: 9998;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}
.gnavi .gnavi__inner ul.main {
  margin: 2.4rem;
  padding: 6.4rem 4rem 2.4rem;
  color: #fff;
}
.gnavi .gnavi__inner ul.main > li {
  margin-bottom: 6.4rem;
}
.gnavi .gnavi__inner ul.main > li a {
  padding: 0;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-family: tot-shizukamin-stdn, sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
}
.gnavi .gnavi__inner ul.main > li a span {
  margin-top: 0.8rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 0.9rem;
  display: block;
  letter-spacing: 0.1em;
}
.gnavi .gnavi__inner ul.main > li ul.sub {
  margin-top: 2.4rem;
}
.gnavi .gnavi__inner ul.main > li ul.sub > li {
  margin-top: 1.6rem;
}
.gnavi .gnavi__inner ul.main > li ul.sub > li a {
  font-size: 1.4rem;
}

/* --------------------------------------------
 right
-------------------------------------------- */
.rightBox {
  display: none;
}

/* --------------------------------------------
 animation
-------------------------------------------- */
@keyframes rotate {
  0% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
@keyframes hero-mv-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--hero-mv-shift));
  }
}
@keyframes look02-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}