@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

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%;*/
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  color: #000;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  background: #fff;
  font-size: 1.2em;
}

/* CSS Document */
ul {
  display: block;
  /*list-style-type: disc;*/
  margin-block-end: 0;
  margin-block-start: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
}
a {text-decoration: none;}

h2 {
  padding-bottom: 0;
}

body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.contents_area_ {
  padding-top: 85px;
}
/* =========================
   ローディング中：LP非表示
========================= */
#INB.is-loading {
  opacity: 0;
  visibility: hidden;
}

/* 通常時 */
#INB {
  opacity: 1;
  visibility: visible;
}
/*=============================
#loading
=============================*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1.2s ease-out;
}
.loading-bg {
  position: absolute;
  inset: 0;
  background: url("../image/background.jpg") center / cover no-repeat;
}
.loading-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
:root {
  --loading-logo-size: 14%;
  --loading-circle-size: 32%;
}
.loading-logo {
  position: absolute;
  width: var(--loading-logo-size);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}
.loading-logo.is-show {
  opacity: 1;
  transform: scale(1);
}
.loading-logo.is-hide {
  opacity: 0;
  transform: scale(0.88);
}
.loading-circle {
  position: absolute;
  width: var(--loading-circle-size);
  opacity: 0;
  transform-origin: center;
}
.loading-circle.is-rotate {
  opacity: 1;
  animation: circleRotate 10s linear infinite;
}
.loading-circle.is-hide {
  opacity: 0;
  transform: scale(1.25);
  transition:
    opacity 1.6s ease-out,
    transform 1.6s ease-out;
}
#loading.is-hide {
  opacity: 0;
  transition: opacity 1.6s ease-out;
}

@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*=============================
INB
=============================*/
#INB {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  color: #000;
  background: url("../image/background.jpg") repeat-y center top;
  letter-spacing: -0.1rem;
  line-height: 1.3;
  margin-top: 90px;
}
#INB p {
  text-align: justify;
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1.6;
}
#INB img {
  max-width: 100%;
  max-height: 100%;
}
#INB .inner {
  max-width: 66%;
}
/*=============================
mainvisual
=============================*/
#mainvisual {
  position: relative;
  width: 100%;
  height: auto;
}
#mainvisual .head-copy {
  width: 66%;
  margin: 0 auto;
  padding: 24px 0;
}

#mainvisual .key {
  position: relative;
  width: 100%;
  border-top: solid 7px #ffc6c6;
}
#mainvisual .key .pc {
  width: 100%;
  display: block;
}
#mainvisual .key .switch {
  position: relative;
  width: 100%;
}
#mainvisual .key .switch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}
/* ★ 初期状態：必ず1枚目を表示 */
#mainvisual .key .switch img:first-child {
  opacity: 1;
}

/* ★ ローディング後に付くクラスでアニメ開始 */
#mainvisual .key .switch.is-start img:nth-child(1) {
  animation: fadeA 8s infinite linear;
}

#mainvisual .key .switch.is-start img:nth-child(2) {
  animation: fadeB 8s infinite linear;
}
@keyframes fadeA {
  0% {
    opacity: 1;
  } /* A 表示開始 */
  37.5% {
    opacity: 1;
  } /* 3秒 */
  50% {
    opacity: 0;
  } /* 1秒でフェード */
  87.5% {
    opacity: 0;
  } /* B 表示中 */
  100% {
    opacity: 1;
  } /* 1秒でフェード */
}
@keyframes fadeB {
  0% {
    opacity: 0;
  }
  37.5% {
    opacity: 0;
  } /* A 表示中 */
  50% {
    opacity: 1;
  } /* 1秒でフェード */
  87.5% {
    opacity: 1;
  } /* 3秒 */
  100% {
    opacity: 0;
  } /* 1秒でフェード */
}

/*=============================
mv-bottom
=============================*/
#mv-bottom {
  position: relative;
  width: 66%;
  height: auto;
  margin: -16% auto;
  padding-bottom: 16%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#mv-bottom .doc-box {
  width: 55%;
}
#mv-bottom img.jeans {
  width: 45%;
}
#mv-bottom .doc-box .th45 {
  width: 100%;
}
#mv-bottom .doc-box h2 {
  width: 90%;
  margin: 24px 0 1rem;
}
#mv-bottom .doc-box h2 img {
  width: 100%;
}
#mv-bottom .doc-box p {
  width: 90%;
  text-align: justify;
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: -0.05rem;
  line-height: 1.6;
}
#mv-bottom .doc-box a.btn_inb {
  display: block;
  margin: 24px 5% 24px auto;
  width: 40%;
  transition: 0.6s;
}
#mv-bottom .doc-box a.btn_inb:hover {
  opacity: 0.4;
  transition: 0.6s;
}
#mv-bottom img.maga {
  position: absolute;
  bottom: 22%;
  left: -26%;
  width: 24%;
}

/*=============================
cd-area
=============================*/
#cd-area {
  position: relative;
  width: 70%;
  height: auto;
  margin: 120px auto 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#cd-area .cd-text {
  width: 45%;
}
#cd-area img.cd-img {
  width: 55%;
}
#cd-area .doc {
  text-align: justify;
  font-size: 1vw;
  letter-spacing: -0.05rem;
  line-height: 1.6;
  font-weight: 700;
  margin-top: 24px;
}
#cd-area .cd-text .mini-box {
  border: solid 1.5px #000;
  margin: 24px 0 auto 0;
  width: 16vw;
  padding: 12px;
}
#cd-area .cd-text .mini-box p {
  font-size: 0.8vw;
  text-align: left;
  letter-spacing: -0.05rem;
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}
#cd-area .cd-text h3 {
  text-align: left;
  font-size: 2vw;
  margin: 40px auto 0 0;
}
#cd-area .cd-text p.write {
  margin-top: 8px;
}
#cd-area .cd-text p.write span {
  text-decoration: underline;
}

#cd-area img.phone {
  position: absolute;
  bottom: -51%;
  right: -26%;
  width: 48%;
}
/* =========================
   LOOK STAGE（absolute）
========================= */
#look-stage {
  position: relative;
  padding-top: 80px;
}
#look-stage .look-stage__inner {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
}
#look-stage .look-stage__content {
  height: auto;
  width: 100%;
  position: relative;
  padding-top: 200px;
}
/* absolute配置 */
#look-stage .look-stage__media {
  position: absolute;
  top: 3.5%;
  /*top: 0;*/
  left: 50%;
  width: auto;
  transform: translateX(-50%) translateY(0);
  will-change: transform;
  z-index: 995;
  text-align: center;
}
#look-stage .look-stage__media img {
  display: block;
  max-width: 45%;
  height: auto;
  margin: 0 auto;
}
/********* look **********/
#look-stage .look {
  position: relative;
  width: 100%;
  margin: 40px auto;
  padding: 5% 0;
}
#look-stage .look .box {
  position: relative;
  margin: 0;
  padding: 0;
}
#look-stage .look .buy {
  z-index: 998;
  transition: 0.6s;
}
#look-stage .look .buy:hover {
  opacity: 0.8 !important;
  transition: 0.6s;
}
#look-stage .look .item-detail {
  width: 88%;
  margin: 24px auto 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#look-stage .look .item-detail img.item-name {
  width: 40%;
}
#look-stage .look .item-detail p.txt {
  width: 55%;
  font-size: 1vw;
  text-align: justify;
  letter-spacing: -0.05rem;
  line-height: 1.6;
  font-weight: 600;
}
#look-stage .box .buy {
  position: absolute;
  bottom: -6%;
  right: -4%;
  width: 16%;
}
/**slide**/
#look-stage .box .arrow-prev {
  width: 3%;
  display: none;
}
#look-stage .box .arrow-next {
  width: 3%;
  display: none;
}
#look-stage .box .slider-dots {
  position: absolute;
}
/********* rina **********/
#look-stage .box.rina {
  position: relative;
}
/**item**/
#look-stage .box.rina .dia {
  position: absolute;
  top: -8%;
  left: -3%;
  width: 58%;
  z-index: 2;
}
#look-stage .box.rina .copy {
  position: absolute;
  bottom: 4%;
  right: 8%;
  width: 38%;
  z-index: 2;
}
/**bg**/
#look-stage .box.rina .maga {
  position: absolute;
  top: -42%;
  left: -22%;
  width: 46%;
  z-index: 5;
}
/**slide**/
#look-stage .box.rina .arrow-prev {
  left: 3.5%;
}
#look-stage .box.rina .arrow-next {
  left: 45%;
}
#look-stage .box.rina .slider-dots {
  bottom: 6%;
  left: 44%;
}

/********* chin **********/
#look-stage .box.chin {
  position: relative;
}
/**item**/
#look-stage .box.chin .dia {
  position: absolute;
  top: 6%;
  left: 3%;
  width: 44%;
  z-index: 2;
}
#look-stage .box.chin .name {
  position: absolute;
  bottom: 7%;
  left: 0%;
  width: 63%;
  z-index: 2;
}
/**bg**/
#look-stage .box.chin .radio {
  position: absolute;
  top: -60%;
  left: -22%;
  width: 30%;
  z-index: 5;
}
#look-stage .box.chin .cube {
  position: absolute;
  top: -10%;
  right: -16%;
  width: 26%;
  z-index: 5;
}
/**slide**/
#look-stage .box.chin .arrow-prev {
  left: auto;
  right: 58%;
}
#look-stage .box.chin .arrow-next {
  left: auto;
  right: 3.5%;
}
#look-stage .box.chin .slider-dots {
  bottom: 6%;
  left: auto;
  right: 24%;
}
/********* zen **********/
#look-stage .box.zen {
  position: relative;
}
/**item**/
#look-stage .box.zen .name {
  position: absolute;
  top: -1%;
  left: 0%;
  width: 100%;
  z-index: 2;
}
#look-stage .box.zen .copy {
  position: absolute;
  top: 35%;
  right: 2%;
  width: 47%;
  z-index: 2;
}
/**bg**/
#look-stage .box.zen .maga {
  position: absolute;
  top: 6%;
  left: -22%;
  width: 34%;
  z-index: 5;
}
#look-stage .box.zen .glass {
  position: absolute;
  bottom: -41%;
  right: -22%;
  width: 42%;
  z-index: 5;
}
/**slide**/
#look-stage .box.zen .arrow-prev {
  left: 58%;
  display: none;
}
#look-stage .box.zen .arrow-next {
  left: 49%;
  top: 62%;
}
#look-stage .box.zen .slider-dots {
  bottom: 4%;
  left: 30%;
}
/*=============================
promotion
=============================*/
#promotion {
  position: relative;
  width: 70%;
  height: auto;
  margin: 120px auto 0px;
  padding-bottom: 120px;
}
#promotion img.head {
  width: 100%;
  display: block;
  margin-bottom: -6px;
}
#promotion .movie {
  border: solid 4px #000;
}
#promotion iframe {
  aspect-ratio: 16/9;
  margin-bottom: -6px;
}
#promotion p.lead {
  font-size: 1vw;
  text-align: center;
  letter-spacing: -0.05rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 24px auto;
}
/*=============================
interview
=============================*/
#interview {
  position: relative;
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 120px;
  aspect-ratio: 1/2;
}
#interview .buy {
  z-index: 999;
  transition: 0.6s;
}
#interview .buy:hover {
  opacity: 0.8 !important;
  transition: 0.6s;
}
#interview .headbg {
  mix-blend-mode: multiply;
  background: #bfe8ff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px 0 24px;
}
#interview .headbg .inner {
  width: 70%;
  margin: 0 auto;
  display: block;
  padding: 0;
}
#interview .headbg img {
  width: 50%;
  display: block;
  margin: 0 auto 0 0;
}
/********* main **********/
#interview .maindoc {
  width: 62%;
  position: relative;
  margin-left: -5%;
}
#interview .maindoc .ttl {
  display: block;
  z-index: 3;
  position: relative;
}
#interview .maindoc p {
  width: 75%;
  font-size: 1vw;
  font-family: noto-sans, sans-serif;
  margin-left: 10%;
  margin-top: -5%;
  z-index: 4;
  position: relative;
}
/********* rina **********/
#interview .intRina {
  width: 50%;
  position: absolute;
  top: 1%;
  right: 0%;
  aspect-ratio: 1/1.4;
}
#interview .intRina .box .photo {
  width: 80%;
  margin: 0 0 auto 10%;
  /*margin: 0 0 auto 0;*/
  z-index: 2;
  position: relative;
}
#interview .intRina .box .comment {
  width: 110%;
  position: relative;
  margin-top: -8%;
  margin-left: -6%;
  z-index: 1;
  mix-blend-mode: multiply;
}
#interview .intRina .box .comment .doc {
  position: absolute;
  top: 5.5%;
  left: 5%;
  width: 90%;
}
#interview .intRina .buy {
  position: absolute;
  top: 35%;
  right: -10%;
  width: 30%;
  z-index: 4;
}
#interview .intRina .point {
  position: absolute;
  bottom: 13%;
  right: -18%;
  width: 26%;
  z-index: 5;
}
/********* zen **********/
#interview .intZen {
  width: 50%;
  position: absolute;
  top: 26%;
  /*top: 24%;*/
  left: 0%;
  aspect-ratio: 1/1.5;
}
#interview .intZen .box .photo {
  width: 90%;
  margin: 0 auto 0 0;
  z-index: 2;
  position: relative;
}
#interview .intZen .box .comment {
  width: 110%;
  position: relative;
  margin-top: -8%;
  margin-left: -6%;
  z-index: 1;
  mix-blend-mode: multiply;
}
#interview .intZen .box .comment .doc {
  position: absolute;
  top: 16%;
  left: 5%;
  width: 90%;
}
#interview .intZen .buy {
  position: absolute;
  bottom: -8%;
  right: 0%;
  width: 30%;
  z-index: 4;
}
#interview .intZen .point {
  position: absolute;
  top: 29%;
  left: -26%;
  width: 45%;
  z-index: 5;
}
#interview .intZen .point2 {
  position: absolute;
  top: -11%;
  right: 24%;
  width: 32%;
  z-index: 5;
}
/********* chin **********/
#interview .intChin {
  width: 50%;
  position: absolute;
  bottom: 18%;
  /*bottom: 22%;*/
  right: -5%;
  aspect-ratio: 1/1.5;
}
#interview .intChin .box .photo {
  width: 85%;
  margin: 0 0 0 auto;
  z-index: 2;
  position: relative;
}
#interview .intChin .box .comment {
  width: 110%;
  position: relative;
  margin-top: -8%;
  margin-left: -6%;
  z-index: 1;
  mix-blend-mode: multiply;
}
#interview .intChin .box .comment .doc {
  position: absolute;
  top: 16%;
  left: 5%;
  width: 90%;
}
#interview .intChin .buy {
  position: absolute;
  bottom: -14%;
  right: -5%;
  width: 30%;
  z-index: 4;
}
#interview .intChin .point {
  position: absolute;
  top: 33%;
  right: -14%;
  width: 56%;
  z-index: 5;
}
#interview .intChin .point2 {
  position: absolute;
  top: -16%;
  left: -15%;
  width: 40%;
  z-index: 5;
}
/********* bottom **********/
#interview .ufo {
  position: absolute;
  bottom: 10%;
  /*bottom: 14%;*/
  left: -10%;
  width: 56%;
  mix-blend-mode: multiply;
}
#interview .blue {
  position: absolute;
  bottom: 0%;
  right: -22%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  mix-blend-mode: multiply;
}
#interview .b-copy {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
/******************
look-slider
*******************/
.dissolve-slider {
  position: relative;
}
/* 高さ確保 */
.slider-size img {
  width: 100%;
  visibility: hidden;
}
/* スライド重ね */
.dissolve-slider__items {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* モデル */
.model {
  width: 100%;
  display: block;
}
/* 左右クリックエリア */
.slider-hit {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  z-index: 5;
}
.slider-hit.prev {
  left: 0;
}
.slider-hit.next {
  right: 0;
}
/* 矢印（自由配置） */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  pointer-events: none;
}
.arrow-prev {
  width: 3%;
  left: 20px;
}
.arrow-next {
  right: 20px;
  width: 3%;
}
/* dots */
.slider-dots {
  display: flex;
  gap: 4px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.slider-dots button {
  width: 4px;
  aspect-ratio: 1/1;
  transform: scale(0.8);
  border-radius: 50px;
  background: #000;
  border: none;
  opacity: 0.8;
}

.slider-dots button.is-active {
  background: #fff;
}

/******************
fade
*******************/
.sa {
  opacity: 0;
  transition: all 2s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
.sa--scaleUp {
  transform: scale(0.5);
}
.sa--scaleDown {
  transform: scale(1.5);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}
.sa--lr {
  transform: translateX(-50px);
  opacity: 0;
}
.sa.show.sa--lr {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.8s ease;
}
.sa--rl {
  transform: translateX(50px);
  opacity: 0;
}
.sa.show.sa--rl {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.8s ease;
}

/* --- ② スライドイン (.reveal) --- */
.reveal {
  position: relative;
  overflow: hidden;
}
/* 左から */
.reveal-left img {
  transform: translateX(-100%);
  transition: transform 1s ease;
}
.reveal-left.is-show img {
  transform: translateX(0);
  width: 100%;
  height: 100%;
}
/* 上から */
.reveal-top img {
  transform: translateY(-100%);
  transition: transform 1s ease;
}
.reveal-top.is-show img {
  transform: translateY(0);
  width: 100%;
  height: 100%;
}

/* --- ④ スティッカー (.sticker) --- */
.sticker {
  opacity: 0;
  transform: translateX(-30px) rotate(-2deg) scale(0.96);
}
.sticker.show {
  animation: stickerIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes stickerIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) rotate(-2deg) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translateX(6px) rotate(0.6deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
  }
}
/* --- ④ 背景アイテム --- */
.bg-item {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(2px) brightness(1.05);
}
.bg-item.show {
  animation: bgFade 1.4s ease-out forwards;
}
@keyframes bgFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(2px) brightness(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}
/******************
fade
*******************/

.pc {
  display: inline-block !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline-block !important;
  }

  .contents_area_ {
    padding-top: 0px;
  }

  /*=============================
#loading
=============================*/
  :root {
    --loading-logo-size: 120px;
    --loading-circle-size: 220px;
  }

  #INB {
    margin-top: 0px;
  }
  /*=============================
mainvisual
=============================*/
  #mainvisual .head-copy {
    width: 90%;
    padding: 16px 0 4px;
  }
  #mainvisual .key .switch {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 7/8.3;
  }
  #mainvisual .key .switch img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: spDissolve 6s infinite;
  }
  /*=============================
  mv-bottom
=============================*/
  #mv-bottom {
    width: 90%;
    margin: -20% auto 40px;
    padding-bottom: 0%;
    display: block;
  }
  #mv-bottom .doc-box {
    width: 100%;
  }
  #mv-bottom img.jeans {
    width: 75%;
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 4;
  }
  #mv-bottom .doc-box .th45 {
    width: 70%;
    margin: 0 auto 0 0;
    display: block;
    position: relative;
    z-index: 5;
  }
  #mv-bottom .doc-box h2 {
    width: 100%;
    margin: 50% 0 1rem;
  }
  #mv-bottom .doc-box p {
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  #mv-bottom .doc-box a.btn_inb {
    margin: 24px 0 24px auto;
    width: 70%;
  }
  #mv-bottom img.maga {
    bottom: auto;
    top: 20%;
    left: -6%;
    width: 24%;
  }

  /*=============================
cd-area
=============================*/
  #cd-area {
    width: 90%;
    margin: 40px auto 40px;
    display: block;
  }
  #cd-area .cd-text {
    width: 100%;
    padding-top: 20%;
  }
  #cd-area img.cd-img {
    width: 90%;
    margin-right: -20%;
    margin-top: -3%;
  }
  #cd-area .doc {
    font-size: 0.9rem;
    margin-top: 8px;
  }
  #cd-area .cd-text .mini-box {
    margin: 24px 0 auto 0;
    width: 13rem;
    padding: 12px;
  }
  #cd-area .cd-text .mini-box p {
    font-size: 0.7rem;
  }
  #cd-area .cd-text h3 {
    font-size: 1.4rem;
    letter-spacing: -0.1rem;
    margin: 0px auto 16px;
    text-align: center;
  }
  #cd-area .cd-text p.write {
    margin-top: 8px;
    font-size: 0.85rem;
  }
  #cd-area img.phone {
    position: absolute;
    bottom: -20%;
    right: -6%;
    width: 55%;
  }

  #cd-area img.maga {
    position: absolute;
    top: -10%;
    left: -6%;
    width: 48%;
  }
  /* =========================
   LOOK STAGE（absolute）
========================= */
  #look-stage {
    padding-top: 80px;
  }
  #look-stage .look-stage__inner {
    max-width: 100%;
    margin: 0 auto;
  }
  #look-stage .look-stage__content {
    width: 100%;
    padding-top: 80px;
  }
  /* absolute配置 */
  #look-stage .look-stage__media img {
    max-width: 70%;
  }
  /********* look **********/
  #look-stage .look {
    width: 100%;
    margin: 40px auto 100px;
    padding: 5% 0;
  }
  #look-stage .look .item-detail {
    width: 90%;
    margin: 24px auto;
    display: block;
  }
  #look-stage .look .item-detail img.item-name {
    width: 80%;
  }
  #look-stage .look .item-detail p.txt {
    font-size: 0.8rem;
    width: 100%;
    margin-top: 16px;
  }
  #look-stage .buy {
    position: absolute;
    bottom: -8%;
    right: -4%;
    width: 30%;
  }
  /**slide**/
  #look-stage .box .arrow-prev {
    display: none;
  }
  #look-stage .box .arrow-next {
    display: none;
  }
  #look-stage .box .slider-dots {
    position: absolute;
  }
  /********* rina **********/
  #look-stage .box.rina {
    position: relative;
  }
  /**item**/
  #look-stage .box.rina .dia {
    top: 30%;
    left: auto;
    right: 0%;
    width: 58%;
  }
  #look-stage .box.rina .copy {
    bottom: auto;
    top: 3%;
    right: auto;
    left: 3%;
    width: 63%;
  }
  /**bg**/
  #look-stage .box.rina .radio {
    position: absolute;
    top: -47%;
    left: -6%;
    width: 34%;
    z-index: 5;
  }
  /**slide**/
  #look-stage .box.rina .slider-dots {
    bottom: 16%;
    left: 16%;
  }

  /********* chin **********/
  #look-stage .box.chin {
    position: relative;
  }
  /**item**/
  #look-stage .box.chin .dia {
    top: 6%;
    left: auto;
    right: 7%;
    width: 16%;
  }
  #look-stage .box.chin .name {
    bottom: 7%;
    left: 0%;
    width: 68%;
  }
  /**bg**/
  #look-stage .box.chin .cube {
    top: -30%;
    right: auto;
    left: -4%;
    width: 40%;
  }
  /**slide**/
  #look-stage .box.chin .arrow-prev {
    left: auto;
    right: 58%;
  }
  #look-stage .box.chin .arrow-next {
    left: auto;
    right: 3.5%;
  }
  #look-stage .box.chin .slider-dots {
    bottom: 37%;
    left: 17%;
    right: auto;
  }
  /********* zen **********/
  #look-stage .box.zen {
    position: relative;
  }
  /**item**/
  #look-stage .box.zen .name {
    position: absolute;
    top: 4%;
    left: 0%;
  }
  #look-stage .box.zen .copy {
    position: absolute;
    top: 43%;
    right: 2%;
    width: 47%;
    z-index: 2;
  }
  /**bg**/
  #look-stage .box.zen .maga {
    top: -34%;
    left: 0%;
    width: 26%;
  }
  #look-stage .glass {
    position: absolute;
    bottom: -11%;
    right: auto;
    left: 0%;
    width: 47%;
  }
  /**slide**/
  #look-stage .box.zen .slider-dots {
    bottom: 4%;
    left: 18%;
  }
  /*=============================
promotion
=============================*/
  #promotion {
    width: 100%;
    margin: 120px auto 80px;
    padding-bottom: 0px;
  }
  #promotion img.head {
    margin-bottom: 0px;
  }
  #promotion p.lead {
    width: 90%;
    font-size: 0.8rem;
    text-align: justify;
    margin: 24px auto 0;
  }
  #promotion img.artist {
    width: 50%;
    display: block !important;
    margin: -1rem 0 0 auto;
  }
  /*=============================
interview
=============================*/
  #interview {
    width: 100%;
    padding-bottom: 120px;
    aspect-ratio: auto;
  }
  #interview .headbg {
    padding: 12px 0 20px;
  }
  #interview .headbg .inner {
    width: 100%;
  }
  #interview .headbg img {
    width: 100%;
  }
  /********* main **********/
  #interview .maindoc {
    width: 100%;
    margin: 16px auto 0;
  }
  #interview .maindoc p {
    display: none;
  }
  /********* rina **********/
  #interview .intRina {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    aspect-ratio: auto;
    margin: 16px auto 80px;
  }
  #interview .intRina .box .photo {
    width: 80%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: block;
  }
  #interview .intRina .box .comment {
    width: 100%;
    position: relative;
    margin-top: -10%;
    margin-left: 0%;
  }
  #interview .intRina .box .comment .doc {
    top: 8%;
    left: 5%;
    width: 90%;
  }
  #interview .intRina .buy {
    position: absolute;
    top: auto;
    bottom: -4%;
    right: 0%;
  }
  #interview .intRina .point {
    bottom: auto;
    top: -8%;
    right: 0%;
    width: 22%;
  }
  /********* zen **********/
  #interview .intZen {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    aspect-ratio: auto;
    margin: 16px auto 80px;
  }
  #interview .intZen .box .photo {
    width: 80%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: block;
  }
  #interview .intZen .box .comment {
    width: 100%;
    position: relative;
    margin-top: -10%;
    margin-left: 0%;
  }
  #interview .intZen .box .comment .doc {
    top: 13%;
    left: 5%;
    width: 90%;
  }
  #interview .intZen .buy {
    position: absolute;
    bottom: -6%;
    right: 0%;
    width: 30%;
    z-index: 4;
  }
  #interview .intZen .point {
    top: 17%;
    left: -15%;
  }
  #interview .intZen .point2 {
    top: -9%;
    right: 1%;
    width: 32%;
  }
  /********* chin **********/
  #interview .intChin {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    aspect-ratio: auto;
    margin: 16px auto 80px;
  }
  #interview .intChin .box .photo {
    width: 80%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: block;
  }
  #interview .intChin .box .comment {
    width: 100%;
    position: relative;
    margin-top: -10%;
    margin-left: 0%;
  }
  #interview .intChin .box .comment .doc {
    top: 12%;
    left: 5%;
    width: 90%;
  }
  #interview .intChin .buy {
    bottom: -9%;
    right: 0%;
    width: 30%;
  }
  #interview .intChin .point {
    top: 22%;
    right: -9%;
    width: 53%;
  }
  #interview .intChin .point2 {
    top: -15%;
    left: 4%;
  }
  /********* bottom **********/
  #interview .ufo {
    position: relative;
    bottom: 0;
    left: -0%;
    width: 81%;
    margin: -20% auto 0 -3%;
    display: block;
  }
  #interview .blue {
    bottom: 0%;
    right: -3%;
  }
  #interview .b-copy {
    width: 80%;
    bottom: 0.5%;
  }
}
