@charset "UTF-8";
/*====================================================================
*    common all
/*==================================================================*/
@font-face {
  font-family: "Avenir";
  src: url("../../../assets/fonts/Avenir.eot");
  src: url("../../../assets/fonts/Avenir.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Avenir.woff") format("woff"), url("../../../assets/fonts/Avenir.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Butler";
  src: url("../../../assets/fonts/Butler_Medium.woff") format("woff"), url("../../../assets/fonts/Butler_Medium.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Antro Vectra Bolder";
  src: url("../../../assets/fonts/Antro_Vectra_Bolder.otf");
}
@font-face {
  font-family: "Antro Vectra";
  src: url("../../../assets/fonts/Antro_Vectra.otf");
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

blockquote,
q {
  quotes: none;
}

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

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #bfbfbf;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; /* form clear */
  -webkit-appearance: none !important;
  min-height: 0;
  min-width: 0;
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    mixin
/*==================================================================*/
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
/*====================================================================
*    Responsive
/*==================================================================*/
.pc_contents {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_contents {
    display: none !important;
  }
}

.sp_contents {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_contents {
    display: block !important;
  }
}

.pc_ib {
  display: inline-block !important;
}
@media (max-width: 768px) {
  .pc_ib {
    display: none !important;
  }
}

.sp_ib {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_ib {
    display: inline-block !important;
  }
}

.pc_inline {
  display: inline !important;
}
@media (max-width: 768px) {
  .pc_inline {
    display: none !important;
  }
}

.sp_inline {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_inline {
    display: inline !important;
  }
}

.pc_flex {
  display: flex !important;
}
@media (max-width: 768px) {
  .pc_flex {
    display: none !important;
  }
}

.sp_flex {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_flex {
    display: flex !important;
  }
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*====================================================================
*    All
/*==================================================================*/
/*::selection {
    background: #e2d7c5;
}

//Firefox
::-moz-selection {
    background: #e2d7c5;
}*/
body {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
body a {
  display: block;
}
body img,
body svg {
  width: 100%;
  height: auto;
  display: block;
}

/*====================================================================
*    kyousou
/*==================================================================*/
.sideArea {
  position: relative;
  display: none;
  z-index: 5;
}
.sideArea ul {
  position: fixed;
  top: 40%;
  right: 0;
  transform: translate(0, -50%);
  width: 60px;
  z-index: 11;
}
@media (max-width: 768px) {
  .sideArea ul {
    top: inherit;
    bottom: 0;
    transform: translate(0, 0);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
  }
}
.sideArea ul li {
  position: relative;
  height: 170px;
  animation: sideAnim 6s cubic-bezier(0.41, 0.01, 0, 1) 0.3s infinite;
}
@media (max-width: 768px) {
  .sideArea ul li {
    height: auto;
    animation: none;
  }
}
@keyframes sideAnim {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-12px);
  }
  15% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.sideArea ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 12px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .sideArea ul li::after {
    content: none;
  }
}
.sideArea ul li p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 13px;
  font-weight: 500;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.5;
  padding-left: 13px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .sideArea ul li p {
    display: none;
  }
}
.sideArea ul li .sidePic {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .sideArea ul li .sidePic {
    position: inherit;
    bottom: inherit;
    left: inherit;
  }
}
.sideArea ul li.pink {
  background-color: #fff;
  border: 1px solid #dbdede;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .sideArea ul li.pink {
    padding-top: 0;
    width: 49.6%;
  }
}
.sideArea ul li.pink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #fff;
  z-index: 3;
}
@media (max-width: 768px) {
  .sideArea ul li.pink::before {
    content: none;
  }
}
.sideArea ul li.pink::after {
  background-image: url(../../../assets/images/fukidashi_04.png);
}
.sideArea ul li.pink .sidePic {
  position: inherit;
  bottom: inherit;
  left: inherit;
  width: 51.81px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sideArea ul li.pink .sidePic {
    width: 100%;
  }
}
.sideArea ul li.pink .icnArrow {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: auto;
  border: 0.5px solid #222222;
}
@media (max-width: 768px) {
  .sideArea ul li.pink .icnArrow {
    display: none;
  }
}
.sideArea ul li.pink .icnArrow img {
  width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .sideArea ul li.pink .icnArrow img {
    width: 11px;
  }
}
.sideArea ul li.pink:hover {
  opacity: 1;
}
.sideArea ul li.pink:hover .icnArrow img {
  transform: translate(-20%, -50%);
}
.sideArea ul li.yellow {
  animation-delay: 0.6s;
  position: relative;
}
@media (max-width: 768px) {
  .sideArea ul li.yellow {
    padding-top: 0;
    width: 49.6%;
  }
}
.sideArea ul li.yellow::after {
  background-image: url(../../../assets/images/fukidashi_02.png);
}
.sideArea ul li.yellow .sidePic {
  position: inherit;
  bottom: inherit;
  left: inherit;
  width: 100%;
  margin: 0 auto;
}
.sideArea ul li.yellow .icnArrow {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: auto;
  border: 0.5px solid #222222;
}
@media (max-width: 768px) {
  .sideArea ul li.yellow .icnArrow {
    display: none;
  }
}
.sideArea ul li.yellow .icnArrow img {
  width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .sideArea ul li.yellow .icnArrow img {
    width: 11px;
  }
}
.sideArea ul li.yellow:hover {
  opacity: 1;
}
.sideArea ul li.yellow:hover .icnArrow img {
  transform: translate(-20%, -50%);
}
.sideArea ul li.baige {
  background-color: #e9dfd5;
  padding-top: 8px;
  animation-delay: 0.6s;
}
@media (max-width: 768px) {
  .sideArea ul li.baige {
    background-color: transparent;
    padding-top: 0;
    width: 49.6%;
  }
}
.sideArea ul li.baige::after {
  background-image: url(../../../assets/images/fukidashi_08.png);
}
.sideArea ul li.baige .icnArrow {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  top: 80px;
  left: 15px;
}
@media (max-width: 768px) {
  .sideArea ul li.baige .icnArrow {
    display: none;
  }
}
.sideArea ul li.baige .icnArrow img {
  width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .sideArea ul li.baige .icnArrow img {
    width: 11px;
  }
}
.sideArea ul li.baige:hover {
  opacity: 1;
}
.sideArea ul li.baige:hover .icnArrow img {
  transform: translate(-20%, -50%);
}
.sideArea ul li.baige.noAbs {
  padding: 0;
  height: auto;
}
.sideArea ul li.baige.noAbs .sidePic {
  position: inherit;
  bottom: inherit;
  left: inherit;
  width: 100%;
  margin: 0 auto;
}
.sideArea ul li.baige.link02::after {
  background-image: url(../../../assets/images/fukidashi_09.png);
}
.sideArea ul li.baige.link03 {
  width: 72px;
  background-color: transparent;
}
.sideArea ul li.baige.link03::after {
  content: none;
}
.sideArea ul li.black {
  background-color: #222;
  padding-top: 8px;
  animation-delay: 0.9s;
}
@media (max-width: 768px) {
  .sideArea ul li.black {
    padding-top: 0;
    height: 60px;
    width: 81.33%;
    margin-top: 2px !important;
    background-color: rgba(34, 34, 34, 0.95);
  }
}
.sideArea ul li.black::after {
  background-image: url(../../../assets/images/fukidashi_03.png);
}
.sideArea ul li.black p {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "Roboto", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.06em;
  font-weight: 500;
  -webkit-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
  padding-left: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .sideArea ul li.black p {
    display: block;
    top: 9px;
    left: 17.05%;
    right: inherit;
    margin: 0;
    font-size: 12px;
    text-align: left;
  }
}
.sideArea ul li.black .sideLogo {
  position: absolute;
  width: 44.95%;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sideArea ul li.black .sideLogo {
    width: 31.22%;
    top: 15px;
    left: 38.03%;
    bottom: inherit;
    transform: translateX(0);
  }
}
.sideArea ul li.black .icnArrow {
  display: none;
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  top: 66px;
  left: 17px;
}
@media (max-width: 768px) {
  .sideArea ul li.black .icnArrow {
    display: block;
    width: 21px;
    height: 21px;
    top: 14px;
    left: inherit;
    right: 17.38%;
  }
}
.sideArea ul li.black .icnArrow img {
  width: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .sideArea ul li.black .icnArrow img {
    width: 11px;
  }
}
.sideArea ul li.black .icnCart {
  position: absolute;
  width: 35px;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .sideArea ul li.black .icnCart {
    bottom: inherit;
    left: inherit;
    right: 9.58%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
}
.sideArea ul li:nth-child(n+2) {
  margin-top: 3px;
}
@media (max-width: 768px) {
  .sideArea ul li:nth-child(n+2) {
    margin-top: 0;
  }
}
.sideArea ul li.scrollHeight {
  height: auto;
  animation: none;
  margin: 70px 0 0 26px;
}
@media (max-width: 768px) {
  .sideArea ul li.scrollHeight {
    margin: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
  }
}
.sideArea ul li.scrollHeight div {
  width: 6px;
}
.sideArea ul li.scrollHeight div span {
  display: block;
  height: 6px;
  background-color: #dbdede;
  animation: none;
  margin-bottom: 12px;
  transition: background-color 0.5s ease;
}
.sideArea ul li.scrollHeight div span:last-child {
  margin-bottom: 0;
}
.sideArea ul li.scrollHeight div span.change {
  background-color: #2c89d8;
}
@media (max-width: 768px) {
  .sideArea ul li:nth-child(-n+2) {
    display: none;
  }
}
.sideArea_totop {
  position: fixed;
  width: 50px;
  bottom: 40px;
  right: 5px;
  z-index: 11;
}
@media (max-width: 768px) {
  .sideArea_totop {
    width: 45px;
    bottom: 9px;
    right: 17px;
  }
}
.sideArea.side02 ul {
  top: 46.5%;
}
@media (max-width: 768px) {
  .sideArea.side02 ul {
    top: inherit;
  }
}
.sideArea.side02 ul li:nth-child(n+2) {
  margin-top: 1px;
}
@media (max-width: 768px) {
  .sideArea.side02 ul li:nth-child(n+2) {
    margin-top: 0;
  }
}
.sideArea.side02 .sideArea_totop {
  bottom: 5px;
}
@media (max-width: 768px) {
  .sideArea.side02 .sideArea_totop {
    bottom: 9px;
  }
}

body {
  background: #f4f3ee;
}

#vol03_01LP {
  position: relative;
  width: 100%;
  margin: -100px auto 0;
  font-family: Avenir, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
  box-sizing: border-box;
  overflow-x: hidden;
  background: #f4f3ee;
}
@media (max-width: 768px) {
  #vol03_01LP {
    margin: 0 auto;
  }
}
#vol03_01LP p,
#vol03_01LP span,
#vol03_01LP li,
#vol03_01LP dd,
#vol03_01LP a {
  font-family: Avenir, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
}
#vol03_01LP a {
  display: block;
  text-decoration: none;
  transition: 0.3s all;
}
#vol03_01LP a:hover {
  opacity: 0.8;
}
#vol03_01LP img,
#vol03_01LP svg {
  width: 100%;
  height: auto;
  display: block;
}
#vol03_01LP .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#vol03_01LP .slick-list:focus {
  outline: none;
}
#vol03_01LP .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin: 0;
}
#vol03_01LP .slick-slide {
  outline: none;
}
#vol03_01LP .slick-initialized .slick-slide {
  display: block;
}
#vol03_01LP .slick-vertical .slick-slide {
  display: block;
  height: auto;
}
#vol03_01LP .slick-slide > .slick-slider-img {
  position: relative;
  display: block;
  width: 100%;
}
#vol03_01LP .slick-slide .image {
  width: 100%;
  margin: 0 auto;
}
#vol03_01LP .slick-slide img.slick-loading {
  display: none;
}
#vol03_01LP .bnrEnd {
  position: absolute;
  top: clamp(15px, 3.6458333333vw, 56px);
  left: 0;
  right: 0;
  bottom: clamp(15px, 2.9296875vw, 45px);
  width: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 3;
}
@media (max-width: 768px) {
  #vol03_01LP .bnrEnd {
    width: 92.219%;
  }
}
#vol03_01LP .bnrEnd p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: clamp(20px, 3.6458333333vw, 56px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
}
#vol03_01LP .mainArea {
  width: 100%;
  /* max-width: 1280px; */
  position: relative;
}
#vol03_01LP .mainArea .white {
  background-color: #f4f3ee;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: height 1.6s cubic-bezier(0.41, 0.01, 0, 1);
}
#vol03_01LP .mainArea_ttl {
  opacity: 0;
  transition: transform 1s ease 1s, opacity 1s linear 1s;
  transform: translate3d(0, 20px, 0);
  width: 31.2%;
  max-width: clamp(479.23px, 31.1998697917vw, 479.23px);
  position: absolute;
  z-index: 4;
  top: 11vw;
  left: 6.51%;
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_ttl {
    width: 66.64%;
    max-width: 249.9px;
    top: 5.867vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
#vol03_01LP .mainArea_ttl--01 {
  font-size: clamp(12px, 0.9114583333vw, 14px);
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin: 0 auto clamp(20px, 2.2786458333vw, 35px);
  color: #000;
  text-transform: uppercase;
  position: relative;
  display: table;
  padding: 0 clamp(5px, 0.3255208333vw, 5px) clamp(5px, 0.3255208333vw, 5px);
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_ttl--01 {
    padding: 0 0 3px;
  }
}
#vol03_01LP .mainArea_ttl--01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  height: 2px;
}
#vol03_01LP .mainArea_ttl--02 {
  font-size: clamp(14px, 1.6276041667vw, 25px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: clamp(15px, 2.2786458333vw, 35px);
  text-align: center;
}
#vol03_01LP .mainArea_ttl.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#vol03_01LP .mainArea_txt {
  opacity: 0;
  transition: transform 1s ease 1s, opacity 1s linear 1s;
  transform: translate3d(0, 20px, 0);
  width: 32.773%;
  max-width: clamp(503.39px, 32.7727864583vw, 503.39px);
  position: absolute;
  z-index: 4;
  bottom: 9vw;
  left: 6.51%;
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_txt {
    width: 80.848%;
    max-width: 303.18px;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
  }
}
#vol03_01LP .mainArea_txt.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_txt.on {
    transform: translateX(-50%);
  }
}
#vol03_01LP .mainArea_pic .kv {
  width: 100%;
  height: 55.6vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 9.11vw;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_pic .kv {
    height: auto;
    padding: 156px 0 240px;
  }
}
#vol03_01LP .mainArea_pic .kv__inner {
  display: flex;
  gap: 0.52vw;
  margin: 0 7% 0 0;
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_pic .kv__inner {
    margin: 0px auto;
  }
}
#vol03_01LP .mainArea_pic .kv__inner--single {
  height: 41.9vw;
  width: 12vw;
  transform: skew(-8deg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_pic .kv__inner--single {
    height: 300px;
    width: 85px;
  }
}
#vol03_01LP .mainArea_pic .kv__inner--single .foreground {
  position: absolute;
  height: 101%;
  width: 101%;
  top: 0;
  left: 100%;
  z-index: 2;
}
#vol03_01LP .mainArea_pic .kv__inner--single:nth-child(1) .foreground {
  background: #cbc3d4;
}
#vol03_01LP .mainArea_pic .kv__inner--single:nth-child(2) .foreground {
  background: #d2b9b6;
}
#vol03_01LP .mainArea_pic .kv__inner--single:nth-child(3) .foreground {
  background: #9ba0ad;
}
#vol03_01LP .mainArea_pic .kv__inner--single:nth-child(4) .foreground {
  background: #cad6d6;
}
#vol03_01LP .mainArea_pic .kv__inner--single img {
  width: 151%;
  height: 100%;
  transform: skewX(8.2deg);
  transform-origin: bottom;
}
#vol03_01LP .mainArea_pic .kv__arrow {
  position: absolute;
  width: 6.51vw;
  left: 50%;
  bottom: 1.3vw;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #vol03_01LP .mainArea_pic .kv__arrow {
    display: none;
  }
}
#vol03_01LP .mainArea.on .white {
  height: 0;
}
#vol03_01LP .leadArea {
  margin-bottom: clamp(1px, 3.2552083333vw, 50px);
  background: #d9d7cd;
}
@media (max-width: 768px) {
  #vol03_01LP .leadArea {
    margin-bottom: 90px;
  }
}
#vol03_01LP .leadArea p {
  font-size: clamp(16px, 1.3020833333vw, 20px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  #vol03_01LP .leadArea p {
    line-height: 2.188;
    letter-spacing: 0.08em;
  }
}
#vol03_01LP .anchorArea {
  width: clamp(790px, 51.4322916667vw, 790px);
  max-width: clamp(1060px, 69.0104166667vw, 1060px);
  margin: 0 auto;
}
#vol03_01LP .anchorArea__wrap {
  background: #d9d7cd;
  padding: clamp(90px, 9.765625vw, 150px) 0 clamp(90px, 9.765625vw, 150px);
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea {
    width: 92.533%;
  }
}
#vol03_01LP .anchorArea ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(7px, 1.3020833333vw, 20px) 0;
}
#vol03_01LP .anchorArea ul li {
  width: 31.64%;
  background: #f4f3ee;
  border: 1px solid #000000;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea ul li {
    width: 48.991%;
  }
}
#vol03_01LP .anchorArea ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 clamp(10px, 0.9765625vw, 15px) clamp(10px, 0.9765625vw, 15px);
  border-color: transparent transparent #000000 transparent;
}
#vol03_01LP .anchorArea ul li a {
  box-sizing: border-box;
  padding: clamp(22px, 1.953125vw, 30px) clamp(15px, 1.3020833333vw, 20px);
}
#vol03_01LP .anchorArea ul li a .ttl {
  position: relative;
  padding-bottom: clamp(15px, 0.9765625vw, 15px);
  margin-bottom: clamp(10px, 0.9765625vw, 15px);
}
#vol03_01LP .anchorArea ul li a .ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: clamp(3px, 0.1953125vw, 3px);
  background-color: #000000;
  z-index: 2;
  transition: width 0.5s ease 0s;
}
#vol03_01LP .anchorArea ul li a .ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(3px, 0.1953125vw, 3px);
}
#vol03_01LP .anchorArea ul li a .ttl_pic {
  width: clamp(65px, 6.8359375vw, 105px);
  margin: 0 auto clamp(5px, 0.6510416667vw, 10px);
}
#vol03_01LP .anchorArea ul li a .ttl_txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
#vol03_01LP .anchorArea ul li a .ttl_txt img {
  width: clamp(11.86px, 1.103515625vw, 16.95px);
}
#vol03_01LP .anchorArea ul li a .ttl_txt span {
  font-size: clamp(13px, 1.171875vw, 18px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  margin-left: clamp(5px, 0.3255208333vw, 5px);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea ul li a .ttl_txt span {
    letter-spacing: 0.05em;
  }
}
#vol03_01LP .anchorArea ul li a .txt_job {
  font-size: clamp(10px, 0.78125vw, 12px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: clamp(8px, 0.9765625vw, 15px);
  white-space: nowrap;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea ul li a .txt_job {
    line-height: 1.5;
  }
}
#vol03_01LP .anchorArea ul li a .txt_name {
  font-family: "Butler";
  font-size: clamp(18px, 1.6276041667vw, 25px);
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea ul li a .txt_name {
    line-height: 1.222;
  }
}
#vol03_01LP .anchorArea ul li a:hover {
  opacity: 1;
}
#vol03_01LP .anchorArea ul li a:hover .ttl::before {
  width: 100%;
}
#vol03_01LP .anchorArea ul li:nth-child(1) a .ttl::after {
  background-color: #e8dff0;
}
#vol03_01LP .anchorArea ul li:nth-child(2) a .ttl::after {
  background-color: #b28080;
}
@media (max-width: 768px) {
  #vol03_01LP .anchorArea ul li:nth-child(2) a .ttl_txt {
    margin-left: -6px;
  }
}
#vol03_01LP .anchorArea ul li:nth-child(3) a .ttl::after {
  background-color: #66848e;
}
#vol03_01LP .anchorArea ul li:nth-child(4) a .ttl::after {
  background-color: #465175;
}
#vol03_01LP .anchorArea ul li:nth-child(5) a .ttl::after {
  background-color: #d6b694;
}
#vol03_01LP .anchorArea ul li:nth-child(6) a .ttl::after {
  background-color: #9dc9b6;
}
#vol03_01LP .anchorArea ul li:nth-child(7) a .ttl::after {
  background-color: #e2f4ec;
}
#vol03_01LP .anchorArea ul li:nth-child(8)::after {
  content: none;
}
#vol03_01LP .infoArea {
  background-color: #f4f3ee;
  margin: 0 auto;
  padding: clamp(80px, 9.1145833333vw, 140px) 0 clamp(50px, 7.1614583333vw, 110px);
}
#vol03_01LP .infoArea_inner {
  width: 100%;
  max-width: clamp(1060px, 69.0104166667vw, 1060px);
  margin: 0 auto;
  border-top: 3px solid #000;
  padding: clamp(65px, 4.2317708333vw, 65px) 6.85% clamp(60px, 3.90625vw, 60px);
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .infoArea_inner {
    width: 92.533%;
    padding: 50px 4.035%;
    border-top: 1px solid #000;
  }
}
#vol03_01LP .infoArea h2 {
  font-family: "Butler";
  font-size: clamp(20px, 2.2135416667vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: -9.6% auto clamp(30px, 3.90625vw, 60px);
  background: #f4f3ee;
  width: fit-content;
  padding: 0 20px;
  display: block;
}
@media (max-width: 768px) {
  #vol03_01LP .infoArea h2 {
    margin: -19% auto clamp(30px, 3.90625vw, 60px);
    padding: 0 10px;
  }
}
#vol03_01LP .infoArea_lead {
  font-size: clamp(16px, 1.8880208333vw, 29px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}
#vol03_01LP .infoArea_lead span {
  font-size: clamp(16px, 1.8880208333vw, 29px);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}
#vol03_01LP .infoArea_lead-small {
  font-size: clamp(10px, 1.0416666667vw, 16px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: clamp(45px, 2.9296875vw, 45px);
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
}
#vol03_01LP .ctsArea {
  width: 100%;
  margin: 0 auto clamp(334px, 21.7447916667vw, 334px);
  position: relative;
  z-index: 2;
}
#vol03_01LP .ctsArea_list {
  position: relative;
}
#vol03_01LP .ctsArea_list::after {
  content: "";
  position: absolute;
  top: clamp(142px, 9.2447916667vw, 142px);
  width: 0;
  height: 2px;
  transition: width 1s ease 0.2s;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list::after {
    top: 50px;
  }
}
#vol03_01LP .ctsArea_list--top {
  opacity: 0;
  transition: transform 1s ease 1.5s, opacity 1s linear 1.5s;
  width: 100%;
  max-width: clamp(1060px, 69.0104166667vw, 1060px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top {
    width: 94.667%;
    display: block;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea {
  width: 44.34%;
  margin: clamp(63px, 4.1015625vw, 63px) 0 0;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea {
    width: 100%;
    margin-top: 0;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_ttl {
  width: clamp(243.97px, 15.8834635417vw, 243.97px);
  margin-bottom: clamp(60px, 3.90625vw, 60px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_ttl {
    width: 170.11px;
    margin: 0 auto 40px;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_name {
  margin-bottom: clamp(35px, 3.90625vw, 60px);
}
#vol03_01LP .ctsArea_list--top .txtArea_name .hash {
  display: flex;
  align-items: center;
  margin-bottom: clamp(15px, 0.9765625vw, 15px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_name .hash {
    justify-content: center;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_name .hash img {
  width: clamp(18.43px, 1.6451822917vw, 25.27px);
}
#vol03_01LP .ctsArea_list--top .txtArea_name .hash span {
  font-size: clamp(22px, 1.6927083333vw, 26px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  margin-left: clamp(5px, 0.6510416667vw, 10px);
  text-transform: uppercase;
}
#vol03_01LP .ctsArea_list--top .txtArea_name .name {
  font-family: "Butler";
  font-size: clamp(30px, 2.4088541667vw, 37px);
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_name .name {
    text-align: center;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_txt {
  margin-bottom: clamp(55px, 3.90625vw, 60px);
  font-size: clamp(18px, 1.171875vw, 18px);
  font-weight: 500;
  line-height: 2.222;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_txt {
    width: 90.423%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    line-height: 1.778;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_btn {
  width: 75.957%;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_btn {
    width: 90.141%;
    margin: 35px auto 0;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnLead {
  font-size: clamp(16px, 1.0416666667vw, 16px);
  font-weight: 500;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
  display: table;
  margin: 0 auto clamp(10px, 0.6510416667vw, 10px);
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnLead::before, #vol03_01LP .ctsArea_list--top .txtArea_btn .btnLead::after {
  content: "";
  position: absolute;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.979px;
  height: 19.206px;
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnLead::before {
  left: -14px;
  background-image: url(../images/path_l.svg);
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnLead::after {
  right: -14px;
  background-image: url(../images/path_r.svg);
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnCts {
  background-color: #020202;
  position: relative;
  padding: 15px 0;
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnCts p {
  font-size: 19px;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .txtArea_btn .btnCts p {
    font-size: 16px;
  }
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnCts span {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 50%;
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnCts span img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnNote {
  display: table;
  margin: 20px auto 0;
  background-color: #f4f3ee;
  padding: 5px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000;
}
#vol03_01LP .ctsArea_list--top .txtArea_btn .btnNoteLink {
  width: 232px;
  margin: 20px auto 0;
  background-color: #f4f3ee;
  padding: 7px 0 5px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000;
  text-align: center;
}
#vol03_01LP .ctsArea_list--top .picArea {
  width: 44.34%;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--top .picArea {
    width: 100%;
  }
}
#vol03_01LP .ctsArea_list--top .picArea::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  animation: triAnim 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
}
@keyframes triAnim {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
#vol03_01LP .ctsArea_list--top .picArea_deco {
  position: absolute;
  z-index: 2;
}
#vol03_01LP .ctsArea_list--bottom {
  position: relative;
  margin-top: clamp(80px, 6.5104166667vw, 100px);
}
#vol03_01LP .ctsArea_list--bottom::after {
  content: "";
  position: absolute;
  transition: width 1s ease 0.2s;
  width: 0;
  top: clamp(-137px, -8.9192708333vw, -137px);
  bottom: clamp(-113px, -7.3567708333vw, -113px);
  z-index: -1;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom::after {
    top: -142.133vw;
    bottom: -50px;
  }
}
#vol03_01LP .ctsArea_list--bottom .bottomInner {
  opacity: 0;
  transition: transform 1s ease 1.5s, opacity 1s linear 1.5s;
  width: clamp(760px, 49.4791666667vw, 760px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom .bottomInner {
    width: 88%;
    display: block;
  }
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_pic {
  width: 30.263%;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom .bottomInner_pic {
    width: 54.545%;
    margin: 0 auto 50px;
  }
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_pic .picMain {
  position: relative;
  z-index: 2;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_pic::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url(../images/icn_tri.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(195.014px, 16.123046875vw, 247.65px);
  height: clamp(195.014px, 16.123046875vw, 247.65px);
  top: clamp(3px, 0.1953125vw, 3px);
  right: clamp(-6px, -0.390625vw, -6px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom .bottomInner_pic::after {
    top: -8px;
    right: -7px;
  }
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_pic--name {
  position: absolute;
  z-index: 3;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt {
  width: 51.316%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom .bottomInner_txt {
    width: 100%;
  }
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ttl {
  margin-bottom: clamp(20px, 1.953125vw, 30px);
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ttl .job {
  font-size: clamp(13px, 0.8463541667vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: clamp(10px, 0.78125vw, 12px);
  color: #000;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ttl .name {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: clamp(22px, 1.6927083333vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ttl .name span {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: clamp(16px, 1.0416666667vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  margin-left: clamp(5px, 0.3255208333vw, 5px);
  color: #000;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ig {
  margin-bottom: clamp(20px, 1.953125vw, 30px);
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ig a {
  display: flex;
  align-items: center;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ig a img {
  width: clamp(17.68px, 1.1510416667vw, 17.68px);
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ig a p {
  font-size: clamp(13px, 0.8463541667vw, 13px);
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  margin-left: clamp(7.3px, 0.4752604167vw, 7.3px);
  color: #000;
  border-bottom: 1px dotted #000;
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--ig a + a {
  margin-top: clamp(8px, 0.6510416667vw, 10px);
}
#vol03_01LP .ctsArea_list--bottom .bottomInner_txt--cts {
  width: 100%;
  font-size: clamp(13px, 0.9765625vw, 15px);
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #000;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom .bottomInner_txt--cts {
    line-height: 1.769;
  }
}
#vol03_01LP .ctsArea_list--bottom.on::after {
  width: 93.49%;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list--bottom.on::after {
    width: 95.2%;
  }
}
#vol03_01LP .ctsArea_list--bottom.on .bottomInner {
  opacity: 1;
}
#vol03_01LP .ctsArea_list:nth-child(1)::after {
  background-color: #e8dff0;
}
#vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--top .picArea::after {
  width: clamp(433.262px, 50.5561848958vw, 776.543px);
  height: clamp(433.262px, 44.5629557292vw, 684.487px);
  top: clamp(35px, 4.2317708333vw, 65px);
  right: clamp(-75px, -4.8828125vw, -75px);
  background-image: url(../images/path_01.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--top .picArea::after {
    top: -35px;
    right: -7px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--top .picArea_deco {
  width: clamp(113.999px, 13.0793619792vw, 200.899px);
  top: clamp(-60px, -3.90625vw, -60px);
  right: clamp(-138px, -8.984375vw, -138px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--top .picArea_deco {
    top: -40px;
    right: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--bottom::after {
  background-color: #e8dff0;
}
#vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(-198deg);
}
#vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(125.384px, 11.2182291667vw, 172.312px);
  bottom: clamp(-53.7px, -3.49609375vw, -53.7px);
  right: clamp(-123.3px, -8.02734375vw, -123.3px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(1) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -47px;
    right: -56px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(2)::after {
  background-color: #c0c6e2;
}
#vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--top .picArea::after {
  width: clamp(453.892px, 47.6866536458vw, 732.467px);
  height: clamp(453.892px, 47.6866536458vw, 732.467px);
  top: clamp(-81px, -5.2734375vw, -81px);
  left: clamp(-124px, -8.0729166667vw, -124px);
  background-image: url(../images/path_02.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--top .picArea::after {
    top: -50px;
    left: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--top .picArea_deco {
  width: clamp(97.1px, 10.64453125vw, 163.5px);
  top: clamp(-30px, -1.953125vw, -30px);
  left: clamp(-95px, -6.1848958333vw, -95px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--top .picArea_deco {
    top: -32px;
    left: -4px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--bottom::after {
  background-color: #c0c6e2;
}
#vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(61deg);
}
#vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(89.878px, 8.034765625vw, 123.414px);
  bottom: clamp(-50px, -3.2552083333vw, -50px);
  left: clamp(-95px, -6.1848958333vw, -95px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(2) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -34px;
    left: -60px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(3)::after {
  background-color: #fcefef;
}
#vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--top .picArea::after {
  width: clamp(445.523px, 41.0832682292vw, 631.039px);
  height: clamp(445.523px, 41.0832682292vw, 631.039px);
  top: clamp(-87px, -5.6640625vw, -87px);
  right: clamp(-82px, -5.3385416667vw, -82px);
  background-image: url(../images/path_03.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--top .picArea::after {
    top: -50px;
    right: -7px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--top .picArea_deco {
  width: clamp(108.128px, 13.2819010417vw, 204.01px);
  top: clamp(-87px, -5.6640625vw, -87px);
  right: clamp(-138px, -8.984375vw, -138px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--top .picArea_deco {
    top: -62px;
    right: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--bottom::after {
  background-color: #fcefef;
}
#vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(197deg);
}
#vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(91.696px, 8.1983072917vw, 125.926px);
  bottom: clamp(-53px, -3.4505208333vw, -53px);
  left: clamp(-55px, -3.5807291667vw, -55px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(3) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -28px;
    left: -41px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(4)::after {
  background-color: #deeef4;
}
#vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--top .picArea::after {
  width: clamp(437.867px, 47.6866536458vw, 732.467px);
  height: clamp(437.867px, 47.6866536458vw, 732.467px);
  top: clamp(-81px, -5.2734375vw, -81px);
  left: clamp(-124px, -8.0729166667vw, -124px);
  background-image: url(../images/path_04.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--top .picArea::after {
    top: -50px;
    left: 79px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--top .picArea_deco {
  width: clamp(136.853px, 13.6690755208vw, 209.957px);
  top: clamp(-90px, -5.859375vw, -90px);
  left: clamp(-118px, -7.6822916667vw, -118px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--top .picArea_deco {
    top: -34px;
    left: -5px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--bottom::after {
  background-color: #deeef4;
}
#vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(109deg);
}
#vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(110.383px, 9.8703125vw, 151.608px);
  bottom: clamp(-62px, -4.0364583333vw, -62px);
  right: clamp(-99px, -6.4453125vw, -99px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(4) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -44px;
    right: -49px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(5)::after {
  background-color: #e8e8e8;
}
#vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--top .picArea::after {
  width: clamp(459.485px, 43.4873046875vw, 667.965px);
  height: clamp(459.484px, 43.4873697917vw, 667.966px);
  top: clamp(-75px, -4.8828125vw, -75px);
  right: clamp(-100px, -6.5104166667vw, -100px);
  background-image: url(../images/path_05.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--top .picArea::after {
    top: -36px;
    right: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--top .picArea_deco {
  width: clamp(111.396px, 13.6690755208vw, 209.957px);
  top: clamp(-67px, -4.3619791667vw, -67px);
  right: clamp(-138px, -8.984375vw, -138px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--top .picArea_deco {
    top: -50px;
    right: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--bottom::after {
  background-color: #e8e8e8;
}
#vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(-107deg);
}
#vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(111.812px, 9.38125vw, 144.096px);
  bottom: clamp(-39px, -2.5390625vw, -39px);
  right: clamp(-82px, -5.3385416667vw, -82px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(5) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -47px;
    right: -65px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(6)::after {
  background-color: #fdebd8;
}
#vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--top .picArea::after {
  width: clamp(370.704px, 46.0895182292vw, 707.935px);
  height: clamp(370.704px, 46.0895182292vw, 707.935px);
  top: clamp(-69px, -4.4921875vw, -69px);
  left: clamp(-112px, -7.2916666667vw, -112px);
  background-image: url(../images/path_06.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--top .picArea::after {
    top: -40px;
    left: -8px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--top .picArea_deco {
  width: clamp(87.703px, 9.0806640625vw, 139.479px);
  top: clamp(-70px, -4.5572916667vw, -70px);
  left: clamp(-58px, -3.7760416667vw, -58px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--top .picArea_deco {
    top: -34px;
    left: -5px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--bottom::after {
  background-color: #fdebd8;
}
#vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--bottom .bottomInner_pic::after {
  transform: rotate(108deg);
}
#vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--bottom .bottomInner_pic--name {
  width: clamp(135.362px, 12.6259765625vw, 193.935px);
  bottom: clamp(-75px, -4.8828125vw, -75px);
  left: clamp(-110px, -7.1614583333vw, -110px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--bottom .bottomInner_pic--name {
    bottom: -47px;
    left: -63px;
  }
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(6) .ctsArea_list--bottom .bottomInner_txt--ig {
    margin-left: -20px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7)::after {
  background-color: #e2f4ec;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--top .picArea::after {
  width: clamp(445.523px, 40.449609375vw, 621.306px);
  height: clamp(445.523px, 40.4496744792vw, 621.307px);
  top: clamp(190px, 12.3697916667vw, 190px);
  right: clamp(-100px, -6.5104166667vw, -100px);
  background-image: url(../images/path_07.svg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--top .picArea::after {
    top: -35px;
    right: -7px;
    background-image: url(../images/path_07_sp.svg);
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--top .picArea_deco {
  width: clamp(104.936px, 14.9901041667vw, 230.248px);
  top: clamp(-42px, -2.734375vw, -42px);
  right: clamp(-138px, -8.984375vw, -138px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--top .picArea_deco {
    top: -62px;
    right: -7px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom {
  margin-top: clamp(80px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom {
    margin-top: 150px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom::after {
  background-color: #e2f4ec;
  top: clamp(-117px, -7.6171875vw, -117px);
  bottom: clamp(-132px, -8.59375vw, -132px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom::after {
    top: -126.133vw;
    bottom: -121px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast {
  opacity: 0;
  transition: transform 1s ease 1.5s, opacity 1s linear 1.5s;
  width: 100%;
  max-width: clamp(1060px, 69.0104166667vw, 1060px);
  margin: 0 auto;
  position: relative;
  padding-left: clamp(78px, 5.078125vw, 78px);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast {
    display: table;
    padding-left: 0;
    width: auto;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast::after {
  content: "";
  position: absolute;
  z-index: 1;
  background-image: url(../images/icn_tri.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(247.65px, 16.123046875vw, 247.65px);
  height: clamp(247.65px, 16.123046875vw, 247.65px);
  top: clamp(-117px, -7.6171875vw, -117px);
  left: clamp(33px, 2.1484375vw, 33px);
  transform: rotate(196deg);
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast::after {
    top: -85px;
    left: -10px;
  }
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_logo {
  width: clamp(205.799px, 13.3983723958vw, 205.799px);
  margin-bottom: clamp(20px, 1.3020833333vw, 20px);
  position: relative;
  z-index: 2;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_cts {
  font-size: clamp(15px, 0.9765625vw, 15px);
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #000;
  position: relative;
  z-index: 2;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_ig {
  margin-top: clamp(15px, 0.9765625vw, 15px);
  position: relative;
  z-index: 2;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_ig a {
  display: flex;
  align-items: center;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_ig a img {
  width: clamp(17.68px, 1.1510416667vw, 17.68px);
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom .bottomInnerLast_ig a p {
  font-size: clamp(13px, 0.8463541667vw, 13px);
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  margin-left: clamp(7.3px, 0.4752604167vw, 7.3px);
  color: #000;
  border-bottom: 1px dotted #000;
}
#vol03_01LP .ctsArea_list:nth-child(7) .ctsArea_list--bottom.on .bottomInnerLast {
  opacity: 1;
}
#vol03_01LP .ctsArea_list:nth-child(odd)::after {
  left: 0;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(odd)::after {
    left: 4.8%;
  }
}
#vol03_01LP .ctsArea_list:nth-child(odd) .ctsArea_list--bottom::after {
  right: 0;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(odd) .ctsArea_list--bottom .bottomInner {
    transform: translateX(6px);
  }
}
#vol03_01LP .ctsArea_list:nth-child(even)::after {
  right: 0;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(even)::after {
    right: 4.8%;
  }
}
#vol03_01LP .ctsArea_list:nth-child(even) .ctsArea_list--top {
  flex-direction: row-reverse;
}
#vol03_01LP .ctsArea_list:nth-child(even) .ctsArea_list--bottom::after {
  left: 0;
}
#vol03_01LP .ctsArea_list:nth-child(even) .ctsArea_list--bottom .bottomInner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list:nth-child(even) .ctsArea_list--bottom .bottomInner {
    transform: translateX(-6px);
  }
}
#vol03_01LP .ctsArea_list:nth-child(n+2) {
  margin-top: clamp(150px, 20.3776041667vw, 313px);
}
#vol03_01LP .ctsArea_list.on::after {
  width: 48.698%;
}
@media (max-width: 768px) {
  #vol03_01LP .ctsArea_list.on::after {
    width: 90.667%;
  }
}
#vol03_01LP .ctsArea_list.on .ctsArea_list--top {
  opacity: 1;
}
#vol03_01LP .scheduleArea {
  background-color: #f4f3ee;
  border-bottom: 1px solid #000000;
  padding: clamp(75px, 6.1848958333vw, 95px) 0 clamp(80px, 6.5104166667vw, 100px);
  position: relative;
  margin-bottom: 97px;
}
#vol03_01LP .scheduleArea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33.854%;
  height: 1px;
  background-color: #000;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea::before {
    width: 16%;
  }
}
#vol03_01LP .scheduleArea::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 33.854%;
  height: 1px;
  background-color: #000;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea::after {
    width: 16%;
  }
}
#vol03_01LP .scheduleArea_inner {
  width: 100%;
  max-width: clamp(1060px, 69.0104166667vw, 1060px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_inner {
    width: 92.533%;
  }
}
#vol03_01LP .scheduleArea_ttl {
  position: absolute;
  top: clamp(-34px, -2.2135416667vw, -34px);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_ttl {
    top: -17px;
  }
}
#vol03_01LP .scheduleArea_ttl h2 {
  font-family: "Butler";
  font-size: clamp(45px, 5.2083333333vw, 80px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
#vol03_01LP .scheduleArea_lead {
  padding-bottom: clamp(30px, 3.2552083333vw, 50px);
  position: relative;
  font-size: clamp(16px, 1.171875vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #222;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_lead {
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
#vol03_01LP .scheduleArea_pic {
  background-color: #fff;
  border: 1px solid #000;
  padding: clamp(41px, 4.2317708333vw, 65px) 14.151% clamp(30px, 3.90625vw, 60px);
  box-sizing: border-box;
  margin-bottom: clamp(50px, 5.2083333333vw, 80px);
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_pic {
    padding-left: 4.035%;
    padding-right: 4.035%;
  }
}
#vol03_01LP .scheduleArea_pic h3 {
  font-family: "Butler";
  font-size: clamp(35px, 3.90625vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(10px, 1.3020833333vw, 20px);
}
#vol03_01LP .scheduleArea_pic--txt {
  font-size: clamp(18px, 1.171875vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: clamp(30px, 3.5807291667vw, 55px);
}
#vol03_01LP .scheduleArea_pic .btnCts {
  width: clamp(357px, 23.2421875vw, 357px);
  background-color: #020202;
  position: relative;
  padding: 15px 0;
  margin: clamp(30px, 2.6041666667vw, 40px) auto 0;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_pic .btnCts {
    width: 100%;
  }
}
#vol03_01LP .scheduleArea_pic .btnCts p {
  font-size: 19px;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_pic .btnCts p {
    font-size: 16px;
  }
}
#vol03_01LP .scheduleArea_pic .btnCts span {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 50%;
}
#vol03_01LP .scheduleArea_pic .btnCts span img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
}
#vol03_01LP .scheduleArea_txt {
  font-size: clamp(16px, 1.171875vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: clamp(35px, 3.2552083333vw, 50px);
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_txt {
    letter-spacing: 0.02em;
  }
}
#vol03_01LP .scheduleArea_cts--list {
  padding: clamp(10px, 0.9765625vw, 15px) 0 clamp(10px, 0.9765625vw, 15px) clamp(19px, 3.125vw, 48px);
  display: flex;
  position: relative;
  border-top: 1px solid #000000;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_cts--list {
    display: block;
  }
}
#vol03_01LP .scheduleArea_cts--list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(10px, 0.9765625vw, 15px) clamp(10px, 0.9765625vw, 15px) 0 0;
  border-color: #000000 transparent transparent transparent;
}
#vol03_01LP .scheduleArea_cts--list:last-child {
  border-bottom: 1px solid #000;
}
#vol03_01LP .scheduleArea_cts--list p {
  font-size: clamp(16px, 1.3020833333vw, 20px);
  font-weight: 500;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_cts--list p {
    line-height: 1.75;
  }
}
#vol03_01LP .scheduleArea_cts--list .date {
  width: 22.332%;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_cts--list .date {
    width: 100%;
    margin-bottom: 5px;
  }
}
#vol03_01LP .scheduleArea_cts--list .ttl {
  width: 47.53%;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_cts--list .ttl {
    width: 100%;
  }
}
#vol03_01LP .scheduleArea_cts--list .with {
  width: 30.138%;
}
@media (max-width: 768px) {
  #vol03_01LP .scheduleArea_cts--list .with {
    width: 100%;
  }
}
#vol03_01LP .archiveArea {
  width: 100%;
  max-width: 630px;
  position: relative;
  /* margin: 0 auto 200px; */
  margin: 0 auto;
  padding-bottom: 200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea {
    /* margin: 0 auto 110px; */
    padding-bottom: 110px;
  }
}
#vol03_01LP .archiveArea .line span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) skewY(7deg);
  background-size: 12px 1.5px;
  background-image: linear-gradient(to right, #ff77b6, #ff77b6 4px, transparent 4px, transparent 12px);
  background-repeat: repeat-x;
  width: 100vw;
  height: 1.5px;
}
#vol03_01LP .archiveArea .line span:nth-child(1) {
  top: 330px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea .line span:nth-child(1) {
    top: -35px;
  }
}
#vol03_01LP .archiveArea .line span:nth-child(2) {
  top: 850px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea .line span:nth-child(2) {
    top: 350px;
  }
}
#vol03_01LP .archiveArea .line span:nth-child(3) {
  top: 1350px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea .line span:nth-child(3) {
    top: 770px;
  }
}
#vol03_01LP .archiveArea_list {
  width: 290px;
  position: relative;
  z-index: 2;
  margin-bottom: 62px;
  opacity: 0;
  transform: translateX(50px) rotate(-10deg);
  /* &:nth-child(even){
    margin-top: 84px;

    @include bp768 {
      margin-top: 95px;
    }
  } */
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list {
    width: 49.6%;
  }
}
#vol03_01LP .archiveArea_list.on {
  animation: archiveAnim 1s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list.on {
    animation: archiveAnim 1s cubic-bezier(0.41, 0.01, 0, 1) 0.6s forwards;
  }
}
@keyframes archiveAnim {
  0% {
    opacity: 0;
    transform: translateX(50px) rotate(-10deg);
  }
  30% {
    opacity: 1;
    transform: translateX(-10px) rotate(2deg);
  }
  60% {
    opacity: 1;
    transform: translateX(5px) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
#vol03_01LP .archiveArea_list.mrg84 {
  margin-top: 84px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list.mrg84 {
    margin-top: 95px;
  }
}
#vol03_01LP .archiveArea_list.mrg180 {
  margin-top: 180px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list.mrg180 {
    margin-top: 150px;
  }
}
#vol03_01LP .archiveArea_list:nth-last-child(-n+2) {
  margin-bottom: 0;
}
#vol03_01LP .archiveArea_list--ttl {
  display: flex;
  align-items: center;
}
#vol03_01LP .archiveArea_list--ttl .archivePic {
  width: 83px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl .archivePic {
    width: 59px;
    margin: 0 6px 0 10px;
  }
}
#vol03_01LP .archiveArea_list--ttl .archiveTxt {
  width: calc(100% - 95px);
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl .archiveTxt {
    width: calc(100% - 65px);
  }
}
#vol03_01LP .archiveArea_list--ttl .archiveTxt p {
  font-size: 22px;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.36;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl .archiveTxt p {
    font-size: 14px;
    line-height: 1.21;
  }
}
#vol03_01LP .archiveArea_list--ttl.ttl01 .archivePic {
  width: 77.5px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl.ttl01 .archivePic {
    width: 50px;
  }
}
#vol03_01LP .archiveArea_list--ttl.ttl01 .archiveTxt {
  width: calc(100% - 89.5px);
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl.ttl01 .archiveTxt {
    width: calc(100% - 56px);
  }
}
#vol03_01LP .archiveArea_list--ttl.ttl03 .archivePic {
  width: 63.5px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl.ttl03 .archivePic {
    width: 44px;
    margin: 0 2.6px 0 10px;
  }
}
#vol03_01LP .archiveArea_list--ttl.ttl03 .archiveTxt {
  width: calc(100% - 75.5px);
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--ttl.ttl03 .archiveTxt {
    width: calc(100% - 46.6px);
  }
}
#vol03_01LP .archiveArea_list--pic {
  position: relative;
}
#vol03_01LP .archiveArea_list--pic .icnArrow {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  bottom: 20px;
  right: 28px;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--pic .icnArrow {
    width: 21px;
    height: 21px;
    bottom: 6%;
    right: 12%;
  }
}
#vol03_01LP .archiveArea_list--pic .icnArrow.border {
  border: 1px solid #222222;
}
#vol03_01LP .archiveArea_list--pic .icnArrow img {
  width: 15.19px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list--pic .icnArrow img {
    width: 11px;
  }
}
#vol03_01LP .archiveArea_list--pic:hover {
  opacity: 1;
}
#vol03_01LP .archiveArea_list--pic:hover .icnArrow img {
  transform: translate(-20%, -50%);
}
#vol03_01LP .archiveArea_list--pic .csMask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
}
#vol03_01LP .archiveArea_list.block {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#vol03_01LP .archiveArea_list.block .blockInner {
  width: 290px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_01LP .archiveArea_list.block .blockInner {
    width: 49.6%;
  }
}
#vol03_01LP .fade {
  opacity: 0;
  transition: transform 1s ease 0.2s, opacity 1s linear 0.2s;
  transform: translate3d(0, 20px, 0);
}
@media (max-width: 768px) {
  #vol03_01LP .fade {
    transition: transform 1s ease 0.4s, opacity 1s linear 0.4s;
  }
}
#vol03_01LP .fade.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#vol03_01LP .answer {
  width: clamp(347px, 85.9375vw, 1320px);
  margin: 0 auto clamp(150px, 9.765625vw, 150px);
  position: relative;
  z-index: 2;
}
#vol03_01LP .answer__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(5px, 1.953125vw, 30px);
  padding: clamp(27px, 1.7578125vw, 27px) clamp(22px, 1.4322916667vw, 22px);
  border-top: 1px solid #020202;
  border-bottom: 1px solid #020202;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__title {
    flex-direction: column;
  }
}
#vol03_01LP .answer__title--wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
#vol03_01LP .answer__title--wrap .answer__title--bkg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(163, 148, 188, 0.4784313725);
  z-index: -1;
  left: 0;
}
#vol03_01LP .answer__title::before, #vol03_01LP .answer__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #020202;
  top: -10px;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__title::before, #vol03_01LP .answer__title::after {
    top: -6px;
  }
}
#vol03_01LP .answer__title::after {
  top: unset;
  bottom: -10px;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__title::after {
    bottom: -6px;
  }
}
#vol03_01LP .answer__title--img {
  width: clamp(170px, 19.2708333333vw, 296px);
}
#vol03_01LP .answer__title--name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#vol03_01LP .answer__title--name .hash {
  display: flex;
  align-items: center;
  margin-bottom: clamp(10px, 0.6510416667vw, 10px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__title--name .hash {
    justify-content: center;
  }
}
#vol03_01LP .answer__title--name .hash img {
  width: clamp(18.43px, 1.6451822917vw, 25.27px);
}
#vol03_01LP .answer__title--name .hash span {
  font-size: clamp(22px, 2.0182291667vw, 31px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  margin-left: clamp(5px, 0.6510416667vw, 10px);
  text-transform: uppercase;
}
#vol03_01LP .answer__title--name .name {
  font-family: "Butler";
  font-size: clamp(30px, 3.2552083333vw, 50px);
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__title--name .name {
    text-align: center;
  }
}
#vol03_01LP .answer__text {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-size: clamp(18px, 1.8229166667vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
  margin: clamp(30px, 2.6041666667vw, 40px) 0;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__text {
    text-align: left;
  }
}
#vol03_01LP .answer__inner {
  display: flex;
  gap: clamp(1px, 3.2552083333vw, 50px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner {
    flex-direction: column;
    gap: 40px;
  }
}
#vol03_01LP .answer__inner--img {
  width: clamp(1px, 45.3776041667vw, 697px);
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--img {
    width: 100%;
  }
}
#vol03_01LP .answer__inner--img::before {
  content: "City Life";
  position: absolute;
  font-family: "Antro Vectra", sans-serif;
  font-size: clamp(60px, 7.8125vw, 120px);
  color: #a394bc;
  top: 54%;
  left: -8%;
  transform: rotate(-6deg);
}
#vol03_01LP .answer__inner--desc {
  width: clamp(561px, 36.5234375vw, 561px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 2.6041666667vw, 40px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc {
    width: 100%;
  }
}
#vol03_01LP .answer__inner--desc .items {
  display: flex;
  gap: clamp(10px, 0.6510416667vw, 10px);
}
#vol03_01LP .answer__inner--desc .items__left, #vol03_01LP .answer__inner--desc .items__right {
  position: relative;
  width: clamp(275px, 17.9036458333vw, 275px);
  height: clamp(330px, 21.484375vw, 330px);
}
#vol03_01LP .answer__inner--desc .items__left--01, #vol03_01LP .answer__inner--desc .items__left--02, #vol03_01LP .answer__inner--desc .items__left--03, #vol03_01LP .answer__inner--desc .items__left--04, #vol03_01LP .answer__inner--desc .items__right--01, #vol03_01LP .answer__inner--desc .items__right--02, #vol03_01LP .answer__inner--desc .items__right--03, #vol03_01LP .answer__inner--desc .items__right--04 {
  position: absolute;
  width: 100%;
  height: 100%;
}
#vol03_01LP .answer__inner--desc .items__left--01, #vol03_01LP .answer__inner--desc .items__left--03, #vol03_01LP .answer__inner--desc .items__right--01, #vol03_01LP .answer__inner--desc .items__right--03 {
  z-index: 2;
  animation: kirikawaru 6s linear infinite;
}
@keyframes kirikawaru {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .itemSlider {
    display: none;
  }
}
#vol03_01LP .answer__inner--desc .itemSlider__single {
  display: flex !important;
  gap: clamp(10px, 0.6510416667vw, 10px);
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dotted.slick-slider {
  margin-bottom: clamp(15px, 0.9765625vw, 15px);
}
#vol03_01LP .answer__inner--desc .itemSlider .slider-pagination {
  width: 100%;
  position: relative;
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dots {
  display: flex !important;
  width: 100%;
  justify-content: center;
  bottom: unset;
  margin-top: clamp(1px, 0.9765625vw, 15px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .itemSlider .slick-dots {
    width: 100%;
  }
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dots li {
  width: clamp(1px, 0.6510416667vw, 10px);
  height: clamp(1px, 0.6510416667vw, 10px);
  background: #fff;
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dots li button {
  color: transparent;
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dots li button::before {
  color: transparent;
}
#vol03_01LP .answer__inner--desc .itemSlider .slick-dots li.slick-active {
  width: clamp(1px, 0.6510416667vw, 10px);
  height: clamp(1px, 0.6510416667vw, 10px);
  background: #cbc3d4;
}
#vol03_01LP .answer__inner--desc .itemsMobile {
  display: none;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .itemsMobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
#vol03_01LP .answer__inner--desc .itemsMobile__row {
  display: flex;
  gap: 8px;
}
#vol03_01LP .answer__inner--desc .itemsMobile__row img {
  width: 174px;
}
#vol03_01LP .answer__inner--desc .about {
  background: #fff;
  padding: clamp(20px, 2.4088541667vw, 37px);
}
#vol03_01LP .answer__inner--desc .about__title {
  display: flex;
  justify-content: space-between;
  padding-bottom: clamp(17.5px, 1.1393229167vw, 17.5px);
  margin-bottom: clamp(14px, 0.9114583333vw, 14px);
  border-bottom: 2px solid rgba(163, 148, 188, 0.4784313725);
}
#vol03_01LP .answer__inner--desc .about__title--name {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8463541667vw, 13px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .about__title--name {
    flex-direction: column;
    align-items: flex-start;
  }
}
#vol03_01LP .answer__inner--desc .about__title--name p {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 1.6927083333vw, 26px);
  font-weight: 600;
}
#vol03_01LP .answer__inner--desc .about__title--name p span {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.0416666667vw, 16px);
}
#vol03_01LP .answer__inner--desc .about__title--name .job {
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 0.8463541667vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#vol03_01LP .answer__inner--desc .about__title--insta {
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, 0.4557291667vw, 7px);
}
#vol03_01LP .answer__inner--desc .about__title--insta img {
  width: clamp(17.5px, 1.1393229167vw, 17.5px);
}
#vol03_01LP .answer__inner--desc .about__title--insta p {
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 0.8463541667vw, 13px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .about__title--insta p {
    border-bottom: 1px dotted #000;
    padding-bottom: 2px;
  }
}
#vol03_01LP .answer__inner--desc .about__text {
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 1.0416666667vw, 16px);
  font-weight: 400;
  line-height: 1.9375;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .about__text {
    letter-spacing: 0.02em;
    line-height: 1.7692307692;
  }
}
#vol03_01LP .answer__inner--desc .desc__btn {
  width: 100%;
  padding: clamp(15px, 1.171875vw, 18px) 0 clamp(14px, 1.3020833333vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222222;
  color: #fff;
  margin: 0 auto clamp(15px, 0.9765625vw, 15px);
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(16px, 1.2369791667vw, 19px);
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  line-height: 2.3684210526;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .desc__btn {
    width: 90.14%;
    justify-content: flex-start;
    padding-left: 25px;
  }
}
#vol03_01LP .answer__inner--desc .desc__btn--active {
  pointer-events: initial;
  position: relative;
  transition: all ease-in-out 0.1s;
  border: 1px solid #000;
}
#vol03_01LP .answer__inner--desc .desc__btn--active::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../images/arrow.png);
  background-size: contain;
  top: 50%;
  right: 1.953vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .desc__btn--active::before {
    right: 22px;
  }
}
#vol03_01LP .answer__inner--desc .desc__btn--active:hover {
  background: #fff !important;
  color: #000 !important;
}
#vol03_01LP .answer__inner--desc .saleStart {
  width: 100%;
  margin: 0 auto;
  padding: clamp(1px, 0.5208333333vw, 8px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(163, 148, 188, 0.4784313725);
  color: #222;
  font-size: clamp(16px, 1.0416666667vw, 16px);
  letter-spacing: 0.02em;
  line-height: 2.1875;
  font-weight: 500;
}
@media (max-width: 768px) {
  #vol03_01LP .answer__inner--desc .saleStart {
    width: 90.14%;
  }
}
#vol03_01LP .answer_02 .answer__title--wrap .answer__title--bkg {
  background: rgba(178, 128, 128, 0.4784313725);
}
#vol03_01LP .answer_02 .answer__inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_02 .answer__inner {
    flex-direction: column;
  }
}
#vol03_01LP .answer_02 .answer__inner--img::before {
  content: "Photogenic Style";
  text-align: right;
  color: #b28080;
}
#vol03_01LP .answer_02 .itemSlider .slick-dots li.slick-active {
  background: rgba(178, 128, 128, 0.4784313725);
}
#vol03_01LP .answer_02 .answer__inner--desc .about__title {
  border-bottom: 2px solid rgba(178, 128, 128, 0.4784313725);
}
#vol03_01LP .answer_02 .answer__inner--desc .saleStart {
  background: rgba(178, 128, 128, 0.4784313725);
}
#vol03_01LP .answer_03 .answer__title--wrap .answer__title--bkg {
  background: #cad6d6;
}
#vol03_01LP .answer_03 .answer__inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_03 .answer__inner {
    flex-direction: column;
  }
}
#vol03_01LP .answer_03 .answer__inner--img::before {
  content: "Fashion icon";
  text-align: right;
  color: #66848e;
  left: -45%;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_03 .answer__inner--img::before {
    left: -8%;
    top: 46%;
  }
}
#vol03_01LP .answer_03 .answer__inner--desc .about__title {
  border-bottom: 2px solid #cad6d6;
}
#vol03_01LP .answer_03 .answer__inner--desc .saleStart {
  background: #cad6d6;
}
#vol03_01LP .answer_04 .answer__title--wrap .answer__title--bkg {
  background: #9ba0ad;
}
#vol03_01LP .answer_04 .answer__inner--img::before {
  content: "Navy mom";
  text-align: right;
  color: #465175;
  left: unset;
  top: 62%;
  right: -40%;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_04 .answer__inner--img::before {
    top: 55%;
    right: 4%;
    color: #fff;
  }
}
#vol03_01LP .answer_04 .answer__inner--desc .about__title {
  border-bottom: 2px solid #9ba0ad;
}
#vol03_01LP .answer_04 .answer__inner--desc .saleStart {
  background: #9ba0ad;
}
#vol03_01LP .answer_05 {
  margin: 0 auto clamp(145px, 10.6119791667vw, 163px);
}
#vol03_01LP .answer_05 .answer__title {
  padding: clamp(25px, 3.2552083333vw, 50px) 0;
}
#vol03_01LP .answer_05 .answer__title--name .hash {
  margin: 0;
}
#vol03_01LP .answer_05 .answer__title--wrap .answer__title--bkg {
  background: #e0cfbb;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__text {
    width: 92.75%;
    margin: 15px auto 35px;
  }
}
#vol03_01LP .answer_05 .answer__text--title {
  font-family: "Butler";
  font-size: clamp(30px, 3.2552083333vw, 50px);
  line-height: 1;
  text-align: center;
  margin-top: clamp(35px, 4.5572916667vw, 70px);
}
#vol03_01LP .answer_05 .answer__inner {
  flex-direction: column;
}
#vol03_01LP .answer_05 .answer__inner--img {
  width: 90.5%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner--img {
    display: none;
  }
}
#vol03_01LP .answer_05 .answer__inner--img::before {
  content: "Knit-creation";
  text-align: right;
  color: #465175;
  left: unset;
  top: 62%;
  right: -40%;
  font-weight: 400;
  display: none;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner--img::before {
    top: 55%;
    right: 4%;
    color: #fff;
  }
}
#vol03_01LP .answer_05 .answer__inner--desc {
  width: 100%;
  flex-direction: row;
}
#vol03_01LP .answer_05 .answer__inner--desc .about {
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 3.125vw, 48px);
  width: clamp(1px, 53.3854166667vw, 820px);
  padding: clamp(50px, 4.5572916667vw, 70px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner--desc .about {
    display: none;
  }
}
#vol03_01LP .answer_05 .answer__inner--desc .about__row {
  display: flex;
  justify-content: flex-start;
}
#vol03_01LP .answer_05 .answer__inner--desc .about__title {
  flex-direction: column;
  width: fit-content;
  gap: clamp(1px, 1.3020833333vw, 20px);
  border: none;
  margin: 0;
  padding: 0;
}
#vol03_01LP .answer_05 .answer__inner--desc .about__title-01 {
  width: clamp(1px, 18.6197916667vw, 286px);
}
#vol03_01LP .answer_05 .answer__inner--desc .about__title-02 {
  flex: 1;
}
#vol03_01LP .answer_05 .answer__inner--desc .about__title--name {
  flex-direction: column;
  align-items: flex-start;
}
#vol03_01LP .answer_05 .answer__inner--desc .desc__btn--wrap {
  flex: 1;
}
#vol03_01LP .answer_05 .answer__inner--desc .desc__btn--wrap .saleStart {
  background: #e0cfbb;
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap {
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitSlider__wrap {
    display: block;
  }
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap::before, #vol03_01LP .answer_05 .answer__inner .knitSlider__wrap::after {
  content: "Knit-";
  position: absolute;
  font-family: "Antro Vectra", sans-serif;
  font-size: clamp(60px, 7.8125vw, 120px);
  font-weight: 400;
  color: #d6b694;
  top: 40%;
  left: -1%;
  transform: rotate(-6deg);
  z-index: 2;
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap::after {
  content: "creation";
  top: 44%;
  left: 22%;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dotted.slick-slider {
    margin-bottom: 15px;
  }
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots {
  display: flex !important;
  width: clamp(1px, 36.5234375vw, 561px);
  justify-content: center;
  bottom: unset;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots {
    width: 100%;
  }
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots li {
  width: 6px;
  height: 6px;
  background: #fff;
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
  color: transparent;
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots li button::before {
  color: transparent;
}
#vol03_01LP .answer_05 .answer__inner .knitSlider__wrap .slick-dots li.slick-active {
  width: 6px;
  height: 6px;
  background: #d6b694;
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__wrap {
  display: none;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitAboutSlider__wrap {
    display: block;
  }
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about {
  background: #fff;
  padding: clamp(20px, 2.4088541667vw, 37px);
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title {
  display: flex;
  justify-content: space-between;
  padding-bottom: clamp(17.5px, 1.1393229167vw, 17.5px);
  margin-bottom: clamp(14px, 0.9114583333vw, 14px);
  border-bottom: 2px solid #d6b694;
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--name {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8463541667vw, 13px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--name {
    flex-direction: column;
    align-items: flex-start;
  }
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--name p {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 1.6927083333vw, 26px);
  font-weight: 600;
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--name p span {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.0416666667vw, 16px);
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--name .job {
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 0.8463541667vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--insta {
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, 0.4557291667vw, 7px);
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--insta img {
  width: clamp(17.5px, 1.1393229167vw, 17.5px);
}
#vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--insta p {
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 0.8463541667vw, 13px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .answer__inner .knitAboutSlider__single .about__title--insta p {
    border-bottom: 1px dotted #000;
    padding-bottom: 2px;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .answer__text {
  margin: clamp(1px, 1.3020833333vw, 20px) auto clamp(1px, 3.7109375vw, 57px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .answer__text {
    margin-bottom: 142.5px;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .answer__text--title {
  margin-top: clamp(70px, 8.7239583333vw, 134px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .answer__text--title {
    margin-bottom: 15px;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn {
  width: clamp(1px, 29.4921875vw, 453px);
  padding: clamp(15px, 1.171875vw, 18px) 0 clamp(14px, 1.3020833333vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222222;
  color: #fff;
  margin: 0 auto clamp(15px, 0.9765625vw, 15px);
  font-family: YakuHanJP, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(16px, 1.2369791667vw, 19px);
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  position: relative;
  line-height: 2.3684210526;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .desc__btn {
    width: 90.14%;
    justify-content: flex-start;
    padding-left: 25px;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--active {
  pointer-events: initial;
  position: relative;
  transition: all ease-in-out 0.1s;
  border: 1px solid #000;
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--active::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../images/arrow.png);
  background-size: contain;
  top: 50%;
  right: 1.953vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .desc__btn--active::before {
    right: 22px;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--active:hover {
  background: #fff !important;
  color: #000 !important;
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap {
    width: 100%;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::before, #vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::after {
  content: "Knit-";
  position: absolute;
  font-family: "Antro Vectra", sans-serif;
  font-size: clamp(60px, 5.2083333333vw, 80px);
  color: #b1b1b1;
  top: 18%;
  left: -83%;
  transform: rotate(-13deg);
  z-index: 2;
  font-weight: 400;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::before, #vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::after {
    transform: rotate(-7deg);
    z-index: 2;
    top: -240%;
    left: 11%;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::after {
  content: "creation";
  top: 45%;
  left: -58%;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .desc__btn--wrap::after {
    top: -210%;
    left: 35%;
  }
}
#vol03_01LP .answer_05 .instagramFollowers .saleStart {
  width: clamp(1px, 29.4921875vw, 453px);
  margin: 0 auto;
  padding: clamp(1px, 0.5208333333vw, 8px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b1b1b1;
  color: #222;
  font-size: clamp(16px, 1.0416666667vw, 16px);
  letter-spacing: 0.02em;
  line-height: 2.1875;
  font-weight: 500;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_05 .instagramFollowers .saleStart {
    width: 90.14%;
  }
}
#vol03_01LP .answer_06 .answer__title--wrap .answer__title--bkg {
  background: #c5d9cb;
}
#vol03_01LP .answer_06 .answer__inner {
  flex-direction: column;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner {
    gap: 70px;
  }
}
#vol03_01LP .answer_06 .answer__inner--img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner--img {
    gap: 8px;
    justify-content: unset;
  }
}
#vol03_01LP .answer_06 .answer__inner--img img {
  width: clamp(174px, 21.0286458333vw, 323px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner--img img {
    width: 48.8%;
  }
}
#vol03_01LP .answer_06 .answer__inner--img::before,
#vol03_01LP .answer_06 .answer__inner--img::after {
  position: absolute;
  content: "Co-";
  font-family: "Antro Vectra", sans-serif;
  font-size: clamp(80px, 5.2083333333vw, 80px);
  text-align: right;
  color: #c5d9cb;
  left: unset;
  top: -15%;
  right: unset;
  left: 0%;
  transform: rotate(-6deg);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner--img::before,
#vol03_01LP .answer_06 .answer__inner--img::after {
    top: unset;
    bottom: -10%;
    left: 9%;
  }
}
#vol03_01LP .answer_06 .answer__inner--img::after {
  content: "creation";
  top: -9%;
  right: unset;
  left: 8%;
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner--img::after {
    top: unset;
    bottom: -15%;
    left: 38%;
  }
}
#vol03_01LP .answer_06 .answer__inner--desc {
  margin: auto;
  width: clamp(1px, 29.4921875vw, 453px);
}
@media (max-width: 768px) {
  #vol03_01LP .answer_06 .answer__inner--desc {
    width: 100%;
  }
}
#vol03_01LP .answer_06 .answer__inner--desc .about__title {
  border-bottom: 2px solid #c5d9cb;
}
#vol03_01LP .answer_06 .answer__inner--desc .saleStart {
  background: #c5d9cb;
}