@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: "Antro Vectra Bolder";
  src: url("../../../assets/fonts/Antro_Vectra_Bolder.otf");
}
@font-face {
  font-family: "Antro Vectra";
  src: url("../../../assets/fonts/Antro_Vectra.otf");
}
@font-face {
  font-family: "Butler Bold";
  src: url("../../../assets/fonts/Butler_Bold.ttf");
}
@font-face {
  font-family: "Butler";
  src: url("../../../assets/fonts/Butler_Medium.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;
}

@media (max-width: 768px) {
  .newans {
    padding: 0;
  }
}

/*====================================================================
*    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 #222;
}
@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 #222;
}
@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 {
  animation-delay: 0.6s;
  background-color: #e9dfd5;
  padding-top: 8px;
}
@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%;
    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: 15px;
    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: 17px;
    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: 18px;
    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;
  }
}

#vol03_10LP {
  position: relative;
  width: 100%;
  margin: -100px auto 0;
  font-family: Avenir, YakuHanJP_Noto, "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;
  /*====================================================================
  *    popupArea
  /*==================================================================*/
}
@media (max-width: 768px) {
  #vol03_10LP {
    margin: 0 auto;
  }
}
#vol03_10LP p,
#vol03_10LP span,
#vol03_10LP li,
#vol03_10LP dd,
#vol03_10LP a {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
}
#vol03_10LP a {
  display: block;
  text-decoration: none;
  transition: 0.3s all;
}
#vol03_10LP a:hover {
  opacity: 0.8;
}
#vol03_10LP img,
#vol03_10LP svg {
  width: 100%;
  height: auto;
  display: block;
}
#vol03_10LP .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#vol03_10LP .slick-list:focus {
  outline: none;
}
#vol03_10LP .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin: 0;
}
#vol03_10LP .slick-slide {
  outline: none;
}
#vol03_10LP .slick-initialized .slick-slide {
  display: block;
}
#vol03_10LP .slick-vertical .slick-slide {
  display: block;
  height: auto;
}
#vol03_10LP .slick-slide > .slick-slider-img {
  position: relative;
  display: block;
  width: 100%;
}
#vol03_10LP .slick-slide .image {
  width: 100%;
  margin: 0 auto;
}
#vol03_10LP .slick-slide img.slick-loading {
  display: none;
}
#vol03_10LP button.slick-prev,
#vol03_10LP button.slick-next {
  width: 28px;
  height: 28px;
  border: 1px solid #222;
  right: unset;
  top: unset;
  left: 0;
  bottom: -48px;
}
@media (max-width: 768px) {
  #vol03_10LP button.slick-prev,
  #vol03_10LP button.slick-next {
    width: 20px;
    height: 20px;
    bottom: -37px;
    display: none !important;
  }
}
#vol03_10LP button.slick-prev::before,
#vol03_10LP button.slick-next::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 11px;
  background: url("../images/icn_04.svg") center/100% 100% no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #vol03_10LP button.slick-prev::before,
  #vol03_10LP button.slick-next::before {
    width: 6px;
    height: 9px;
  }
}
#vol03_10LP button.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
#vol03_10LP button.slick-next {
  left: 38px;
}
@media (max-width: 768px) {
  #vol03_10LP button.slick-next {
    left: 28px;
  }
}
#vol03_10LP .mainArea {
  width: 100%;
  position: relative;
}
#vol03_10LP .mainArea .white {
  background-color: #fff;
  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_10LP .mainArea_sub {
  position: absolute;
  top: 37%;
  left: 30px;
  opacity: 0;
  transition: transform 1s ease 1s, opacity 1s linear 1s;
  transform: translate3d(0, 20px, 0);
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_sub {
    top: 43%;
    left: 5px;
    z-index: 3;
  }
}
#vol03_10LP .mainArea_sub p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 12px;
  font-weight: 500;
  font-family: "Avenir Heavy", "Avenir", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_sub p {
    font-size: 8px;
    color: #fff;
  }
}
#vol03_10LP .mainArea_sub.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#vol03_10LP .mainArea_txt {
  opacity: 0;
  transition: transform 1s ease 1s, opacity 1s linear 1s;
  transform: translate3d(0, 20px, 0);
  width: 430px;
  position: absolute;
  top: 15vw;
  right: 20%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_txt {
    width: 72.226%;
    max-width: 271px;
    min-width: inherit;
    top: 61.2vw;
    left: 0;
    right: 0;
    margin: auto;
    text-align: left;
  }
}
#vol03_10LP .mainArea_txt.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#vol03_10LP .mainArea_txt img {
  width: 100%;
  margin: 0 auto 15px;
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_txt img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
#vol03_10LP .mainArea_txt p {
  font-family: YakuHanMP_Noto, "Noto Serif JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.667;
  letter-spacing: 0.06em;
  color: #fff;
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_txt p {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea_lead {
    background-color: #d4bcad;
    padding: 20px 10.667%;
  }
}
#vol03_10LP .mainArea_lead p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #fff;
}
#vol03_10LP .mainArea.on .white {
  height: 0;
}
@media (max-width: 768px) {
  #vol03_10LP .mainArea.on::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
#vol03_10LP .leadArea {
  width: 100%;
  max-width: 725px;
  margin: 0 auto 140px;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea {
    width: 85.333%;
    margin: 0 auto 60px;
  }
}
#vol03_10LP .leadArea_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top {
    display: block;
  }
}
#vol03_10LP .leadArea_top--pic {
  width: 40.822%;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top--pic {
    width: 46.875%;
    margin: 0 auto 15px;
  }
}
#vol03_10LP .leadArea_top--txt {
  width: 54.483%;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top--txt {
    width: 100%;
  }
}
#vol03_10LP .leadArea_top--txt .leadTtl img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#vol03_10LP .leadArea_top--txt ul {
  column-count: 2;
  column-gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top--txt ul {
    margin-top: 10px;
  }
}
#vol03_10LP .leadArea_top--txt ul li {
  display: inline-block;
}
#vol03_10LP .leadArea_top--txt ul li p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.333;
  letter-spacing: 0.02em;
  color: #222;
  padding-left: 22px;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top--txt ul li p {
    font-size: 14px;
    padding-left: 16px;
  }
}
#vol03_10LP .leadArea_top--txt ul li p::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 17.008px;
  background-image: url(../images/icn_hash.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_top--txt ul li p::before {
    top: 9px;
    width: 8.64px;
    height: 12.18px;
  }
}
#vol03_10LP .leadArea_bottom {
  width: 100%;
  max-width: 680px;
  margin: 45px auto 0;
  position: relative;
  background-color: #d4bcad;
  padding: 40px 95px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_bottom {
    padding: 30px 20px;
  }
}
#vol03_10LP .leadArea_bottom::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50px;
  width: 35px;
  height: 29.485px;
  background-image: url(../images/icn_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_bottom::before {
    top: -20px;
    left: 30px;
    width: 25px;
    height: 20px;
  }
}
#vol03_10LP .leadArea_bottom--ttl {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.429;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_bottom--ttl {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
#vol03_10LP .leadArea_bottom--txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 768px) {
  #vol03_10LP .leadArea_bottom--txt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.667;
    letter-spacing: 0.02em;
  }
}
#vol03_10LP .anchorArea {
  display: flex;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  #vol03_10LP .anchorArea {
    margin-bottom: 60px;
  }
}
#vol03_10LP .anchorArea_list {
  width: 25%;
  position: relative;
}
#vol03_10LP .anchorArea_list::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 10px;
  background-image: url(../images/icn_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  animation: icnAnim 3s cubic-bezier(0.41, 0.01, 0, 1) 0s infinite;
}
@media (max-width: 768px) {
  #vol03_10LP .anchorArea_list::after {
    bottom: -13px;
    width: 10px;
    height: 7px;
  }
}
@keyframes icnAnim {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(5px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#vol03_10LP .anchorArea.anchorBottom {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #vol03_10LP .anchorArea.anchorBottom {
    margin-bottom: 40px;
  }
}
#vol03_10LP .anchorArea.anchorBottom .anchorArea_list::after {
  top: -25px;
  bottom: inherit;
}
@media (max-width: 768px) {
  #vol03_10LP .anchorArea.anchorBottom .anchorArea_list::after {
    top: -12px;
  }
}
#vol03_10LP .introArea {
  background: #D2B9B6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea {
    flex-direction: column;
    gap: 100px;
    padding: 30px 0 40px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .introArea__text {
    text-align: center;
  }
}
#vol03_10LP .introArea__text p {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #B28080;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea__text p {
    font-size: 16px;
  }
}
#vol03_10LP .introArea__text .insta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea__text .insta {
    margin-top: 20px;
    justify-content: center;
  }
}
#vol03_10LP .introArea__text .insta .insta__icon {
  width: 20px;
}
#vol03_10LP .introArea__text .insta p {
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0;
  line-height: 1.35;
  border-bottom: 1px solid #B28080;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea__text .insta p {
    font-size: 13px;
  }
}
#vol03_10LP .introArea__img {
  width: 33.4%;
  box-shadow: 2px 3px 4.85px 0.15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  #vol03_10LP .introArea__img {
    width: 90.66%;
  }
}
#vol03_10LP .introArea .projectArea {
  max-width: 780px;
  flex: 1;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea .projectArea {
    width: 90.66%;
  }
}
#vol03_10LP .introArea .projectArea .project {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 17px;
}
#vol03_10LP .introArea .projectArea .project__img {
  width: clamp(60px, 7.1614583333vw, 110px);
}
#vol03_10LP .introArea .projectArea .project__name {
  font-size: clamp(12px, 0.9114583333vw, 14px);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
#vol03_10LP .introArea .projectArea__text {
  font-size: clamp(15px, 1.0416666667vw, 16px);
  letter-spacing: 0.08em;
  line-height: 2.5;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea .projectArea__text {
    line-height: 2.3;
  }
}
#vol03_10LP .introArea .projectArea__text::before {
  content: "";
  position: absolute;
  width: clamp(192px, 13.2161458333vw, 203px);
  height: clamp(85px, 6.5104166667vw, 100px);
  background: url("../images/profile_sign.webp");
  background-size: contain;
  right: 3%;
  bottom: -76px;
}
#vol03_10LP .introArea .about {
  width: clamp(355px, 29.6875vw, 456px);
  background: #fff;
  padding: clamp(20px, 1.953125vw, 30px) clamp(20px, 2.6041666667vw, 40px);
  margin-top: 100px;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea .about {
    margin-top: 0;
    width: 90.66%;
  }
}
#vol03_10LP .introArea .about__title {
  display: flex;
  justify-content: space-between;
  padding-bottom: clamp(11.5px, 0.7486979167vw, 11.5px);
  margin-bottom: clamp(11.5px, 0.7486979167vw, 11.5px);
  border-bottom: 2px solid #B28080;
}
#vol03_10LP .introArea .about__title--name {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8463541667vw, 13px);
  font-size: 18px;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea .about__title--name {
    flex-direction: column;
    align-items: flex-start;
  }
}
#vol03_10LP .introArea .about__title--name p {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 1.6927083333vw, 26px);
  font-weight: 600;
}
#vol03_10LP .introArea .about__title--name p span {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.0416666667vw, 16px);
}
#vol03_10LP .introArea .about__title--insta {
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, 0.4557291667vw, 7px);
}
#vol03_10LP .introArea .about__title--insta img {
  width: clamp(17.5px, 1.1393229167vw, 17.5px);
}
#vol03_10LP .introArea .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_10LP .introArea .about__title--insta p {
    border-bottom: 1px dotted #000;
    padding-bottom: 2px;
  }
}
#vol03_10LP .introArea .about__text {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: clamp(13px, 0.9114583333vw, 14px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  text-align: justify;
}
@media (max-width: 768px) {
  #vol03_10LP .introArea .about__text {
    letter-spacing: 0.02em;
    line-height: 1.7692307692;
  }
}
#vol03_10LP .introArea .about__text .job {
  font-family: YakuHanJP_Noto, "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;
  margin-bottom: 7px;
}
#vol03_10LP .anchors {
  max-width: 1270px;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 768px) {
  #vol03_10LP .anchors {
    padding: 30px 0 50px;
  }
}
#vol03_10LP .anchors__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3.937%;
}
@media (max-width: 768px) {
  #vol03_10LP .anchors__inner {
    gap: 20px 40px;
    flex-wrap: wrap;
  }
}
#vol03_10LP .anchors__inner--single {
  width: 170px;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .anchors__inner--single {
    width: 130px;
  }
}
#vol03_10LP .anchors__inner--single .anchors__nr {
  position: absolute;
  font-size: 30px;
  font-family: "Butler Bold", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  top: 12%;
  left: 0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #vol03_10LP .anchors__inner--single .anchors__nr {
    font-size: 25px;
  }
}
#vol03_10LP .anchors__inner--single .anchors__nr::before {
  content: "items";
  font-family: "Antro Vectra", sans-serif;
  font-size: 32px;
  font-weight: normal;
  color: #B28080;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 41%;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  #vol03_10LP .anchors__inner--single .anchors__nr::before {
    font-size: 25px;
  }
}
#vol03_10LP .ctsArea {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto 250px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea {
    width: 90.6%;
    margin: 0 auto 60px;
  }
}
#vol03_10LP .ctsArea_list {
  position: relative;
}
#vol03_10LP .ctsArea_list::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
#vol03_10LP .ctsArea_list--ttl {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    gap: 30px;
  }
}
#vol03_10LP .ctsArea_list--ttl::before, #vol03_10LP .ctsArea_list--ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #020202;
  left: 0;
  top: -12px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl::before, #vol03_10LP .ctsArea_list--ttl::after {
    height: 2px;
    top: -7px;
  }
}
#vol03_10LP .ctsArea_list--ttl::after {
  top: unset;
  bottom: -12px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl::after {
    bottom: -7px;
  }
}
#vol03_10LP .ctsArea_list--ttl .num {
  display: flex;
  align-items: center;
  padding: 50px 0 25px 150px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num {
    padding: 0;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_item {
  background-color: #222;
  padding: 3px 8px 1px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_item {
    padding: 3px 6px 1px;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_item p {
    font-size: 14px;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_num {
  margin-left: 10px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_num {
    margin-left: 25px;
    margin-bottom: -11px;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_num p {
  font-size: 70px;
  font-family: "Butler Bold", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_num p {
    font-size: 35px;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_num p::before {
  content: "PHOTOGENIC STYLE";
  font-family: "Avenir Black", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.125;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -19%;
  text-align: center;
  width: max-content;
  white-space: pre;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_num p::before {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}
#vol03_10LP .ctsArea_list--ttl .num_num p::after {
  content: "items";
  font-family: "Antro Vectra", sans-serif;
  font-size: 60px;
  font-weight: normal;
  color: #B28080;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 41%;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .num_num p::after {
    font-size: 35px;
    top: 33%;
  }
}
#vol03_10LP .ctsArea_list--ttl .ttl {
  margin-left: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .ttl {
    margin: 0;
    padding: 30px 0;
  }
}
#vol03_10LP .ctsArea_list--ttl .ttl p {
  font-size: 32px;
  font-family: YakuHanMP_Noto, "Noto Serif JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.875;
  color: #222;
  width: fit-content;
  margin: auto;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--ttl .ttl p {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.44;
  }
}
#vol03_10LP .ctsArea_list--ttl .ttl--wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
#vol03_10LP .ctsArea_list--ttl .ttl--wrap .ttl--bkg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #D2B9B6;
  z-index: 0;
  left: 0;
}
#vol03_10LP .ctsArea_list--main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1040px;
  margin: auto;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main {
    display: block;
  }
}
#vol03_10LP .ctsArea_list--main .mainPic {
  width: 50%;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainPic {
    width: 100%;
  }
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots {
  bottom: -16px;
  left: 0;
  right: unset;
  top: unset;
  margin: 0;
  overflow: hidden;
  display: flex !important;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainPic .slick-dots {
    left: unset;
    right: 0;
    justify-content: flex-end;
  }
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots li {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #b1b1b1;
  margin: 0;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainPic .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots li.slick-active {
  background-color: #222;
  border: 1px solid #222;
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots li button::before {
  content: none;
}
#vol03_10LP .ctsArea_list--main .mainPic .slick-dots li:nth-child(n+2) {
  margin-left: 12px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainPic .slick-dots li:nth-child(n+2) {
    margin-left: 8px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt {
  width: 44.23%;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt {
    margin: 43px 0 0;
    width: 100%;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl,
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #222;
  position: relative;
  font-family: "Butler", sans-serif;
  justify-content: center;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt .txtTtl,
  #vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl::before,
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 61px;
  height: 11px;
  background: #deeef4;
  z-index: -1;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt .txtTtl::before,
  #vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p::before {
    top: 9px;
    left: 0;
    width: 51px;
    height: 8px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl.point,
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p.point {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl.point span,
#vol03_10LP .ctsArea_list--main .mainTxt .txtTtl p.point span {
  display: inline-block;
  font-family: "Antro Vectra", sans-serif;
  font-size: 40px;
  color: #B28080;
  transform: rotate(-12deg);
  -webkit-font-smoothing: antialiased;
  margin: 0 -15px 11px 0;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList {
  position: relative;
  padding: 35px 20px;
  box-sizing: border-box;
  display: table;
  opacity: 0;
  transition: transform 1s ease 0.4s, opacity 1s linear 0.4s;
  transform: translate3d(0, 20px, 0);
  background: #d9d7cd;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList {
    padding: 35px 35px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList::before {
  content: "";
  position: absolute;
  bottom: -17px;
  width: 20px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.533;
  color: #222;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(1) {
    margin: 0;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(1)::before {
  background-image: url(../images/icn_03_01.svg);
  left: 30px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 32px;
  width: 16px;
  height: 3px;
  background-color: #fff;
  z-index: 2;
  display: none;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(2) {
  background-color: #D2B9B6;
  margin: -12px 0 0 auto;
  z-index: 2;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(2) {
    margin: -18px 0 0 auto;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(2)::before {
  -webkit-mask-image: url(../images/icn_03_02.svg);
  right: 20px;
  background-color: #D2B9B6;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 22px;
  width: 16px;
  height: 3px;
  background-color: #fff;
  z-index: 2;
  display: none;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3) {
  margin: -12px 0 0 90px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3) {
    margin: -12px 0 0 26px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3)::before {
  background-image: url(../images/icn_03_01.svg);
  left: 30px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3)::before {
    top: -18px;
    transform: rotate(180deg);
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 32px;
  width: 16px;
  height: 3px;
  background-color: #fff;
  z-index: 2;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList:nth-child(3)::after {
    top: -2px;
    bottom: unset;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList_2 {
  padding: 20px 30px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList_2 {
    padding: 25px 15px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList_3 {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_voice--cts .voiceList_4 {
    padding: 15px 40px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts.on .voiceList {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts.on .voiceList:nth-child(2) {
  transition-delay: 0.6s;
}
#vol03_10LP .ctsArea_list--main .mainTxt_voice--cts.on .voiceList:nth-child(3) {
  transition-delay: 0.8s;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point {
  margin-top: 60px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point {
    margin-top: 45px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointTxt {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #222;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointTxt {
    line-height: 1.667;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointNote {
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.667;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointNote {
    font-size: 12px;
    margin-top: -10px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointCredit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 15px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointCredit {
    margin: 20px 0 10px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointCredit_txt {
  font-size: 12px;
  line-height: 1.667;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
  letter-spacing: 0.02em;
  font-weight: 700;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointCredit_btn {
  width: 60px;
  height: 30px;
  background-color: #222;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares__single {
  width: 20px;
  height: 20px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_khaki {
  background: #c5c5a6;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_blue {
  background: #bbc4e3;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_ecru {
  background: #828b85;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_saxsecondary {
  background: #9fc6f5;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_lightyellow {
  background: #e9d4a8;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_black {
  background: #222;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_white {
  background: #fff;
  border: 1px solid #020202;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_beige {
  background: #e0d4b2;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_secondary {
  background: #465175;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_navy {
  background: #384369;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_purple {
  background: #deeef4;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_gray {
  background: #5e5a4e;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_lightgray {
  background: #bbbbad;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_lightestgray {
  background: #d8d9d3;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_brown {
  background: #9f8864;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_pink {
  background: #e6c9d0;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_half1 {
  background: linear-gradient(90deg, #222 0%, #222 50%, #fff 50%, #fff 100%);
  border: 1px solid #deeef4;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_half2 {
  background: linear-gradient(90deg, #384369 0%, #384369 50%, #fff 50%, #fff 100%);
  border: 1px solid #deeef4;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_half3 {
  background: linear-gradient(90deg, #e0d4b2 0%, #e0d4b2 50%, #fff 50%, #fff 100%);
  border: 1px solid #deeef4;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointSquares_half4 {
  background: linear-gradient(90deg, #5e5a4e 0%, #5e5a4e 50%, #384369 50%, #384369 100%);
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide__wrap {
  background: #fff;
  border: 1px solid #222;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide {
  width: 100%;
  height: 50px;
  background-color: #d9d7cd;
  border: 3px solid #fff;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide {
    justify-content: center;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide:hover {
  background: #fff;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide p {
  font-size: 14px;
  line-height: 1;
  color: #222;
  letter-spacing: 0.08em;
  font-weight: 700;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .pointGuide div {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 7px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .point__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list--main .mainTxt_point--cts .point__wrap {
    margin-bottom: 20px;
  }
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .point__wrap .point__single {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #020202;
  padding-bottom: 10px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .point__wrap .point__single .pointNr {
  display: block;
  font-family: "Butler Bold", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-top: 6px;
}
#vol03_10LP .ctsArea_list--main .mainTxt_point--cts .point__wrap .point__single .pointTxt {
  flex: 1;
}
#vol03_10LP .ctsArea_list:nth-child(n+2) {
  margin-top: 230px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(n+2) {
    margin-top: 100px;
  }
}
#vol03_10LP .ctsArea_list:nth-child(even) .ctsArea_list--ttl {
  justify-content: flex-start;
}
#vol03_10LP .ctsArea_list:nth-child(even) .ctsArea_list--main {
  flex-direction: row-reverse;
}
#vol03_10LP .ctsArea_list:nth-child(even) .ctsArea_list--main .mainPic .slick-dots {
  justify-content: flex-end;
}
#vol03_10LP .ctsArea_list:nth-child(even) .ctsArea_list--main .mainTxt {
  margin: 0 0 0 30px;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(even) .ctsArea_list--main .mainTxt {
    margin: 43px 0 0;
  }
}
#vol03_10LP .ctsArea_list:nth-child(1)::after {
  width: 566.95px;
  height: 566.95px;
  bottom: -72.7px;
  left: -137px;
  background-image: url(../images/icn_05_pc.svg);
  z-index: -1;
  transform: rotate(0deg);
  animation: triAnim01 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(1)::after {
    background-image: url(../images/icn_05_sp.svg);
    width: 331.1px;
    height: 331.1px;
    bottom: inherit;
    top: 52.8vw;
    left: -18.55px;
    animation: triAnim01-sp 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
  }
}
@keyframes triAnim01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes triAnim01-sp {
  0% {
    transform: rotate(77deg);
  }
  50% {
    transform: rotate(72deg);
  }
  100% {
    transform: rotate(77deg);
  }
}
#vol03_10LP .ctsArea_list:nth-child(2)::after {
  width: 387px;
  height: 387px;
  bottom: -111px;
  right: -155px;
  background-image: url(../images/icn_06.svg);
  z-index: -1;
  transform: rotate(7deg);
  animation: triAnim02 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(2)::after {
    width: 160px;
    height: 160px;
    top: 98.5px;
    left: 76.418vw;
    background-image: url(../images/icn_06.svg);
    z-index: -1;
    transform: rotate(285deg);
    animation: triAnim02 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
  }
}
@keyframes triAnim02 {
  0% {
    transform: rotate(7deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(7deg);
  }
}
#vol03_10LP .ctsArea_list:nth-child(3)::after {
  width: 280px;
  height: 280px;
  top: 160px;
  left: -120px;
  background-image: url(../images/icn_05_pc.svg);
  z-index: -1;
  transform: rotate(100deg);
  animation: triAnim03 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(3)::after {
    background-image: url(../images/icn_05_sp.svg);
    width: 331.1px;
    height: 331.1px;
    left: -175.44px;
    top: 64px;
    transform: rotate(-143deg);
    animation: triAnim03-sp 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
  }
}
@keyframes triAnim03 {
  0% {
    transform: rotate(100deg);
  }
  50% {
    transform: rotate(95deg);
  }
  100% {
    transform: rotate(100deg);
  }
}
@keyframes triAnim03-sp {
  0% {
    transform: rotate(-143deg);
  }
  50% {
    transform: rotate(-139deg);
  }
  100% {
    transform: rotate(-145deg);
  }
}
#vol03_10LP .ctsArea_list:nth-child(4) .ctsArea_list--ttl {
  position: relative;
  z-index: 1;
}
#vol03_10LP .ctsArea_list:nth-child(4)::after {
  width: 389px;
  height: 389px;
  top: 179px;
  right: -159px;
  background-image: url(../images/icn_06.svg);
  transform: rotate(15deg);
  animation: triAnim04 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
  z-index: -1;
  display: none;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(4)::after {
    width: 160px;
    height: 160px;
    top: 98px;
    left: 75.213vw;
    transform: rotate(-18deg);
    animation: triAnim04-sp 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
    z-index: 0;
  }
}
@keyframes triAnim04 {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
@keyframes triAnim04-sp {
  0% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(-18deg);
  }
}
#vol03_10LP .ctsArea_list:nth-child(5)::after {
  width: 566.95px;
  height: 566.95px;
  bottom: -155.7px;
  left: -237px;
  background-image: url(../images/icn_05_pc.svg);
  z-index: -1;
  transform: rotate(-200deg);
  animation: triAnim05 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
}
@media (max-width: 768px) {
  #vol03_10LP .ctsArea_list:nth-child(5)::after {
    background-image: url(../images/icn_05_sp.svg);
    width: 331.1px;
    height: 331.1px;
    bottom: inherit;
    top: 52.8vw;
    left: -18.55px;
    animation: triAnim05-sp 2s cubic-bezier(0.41, 0.01, 0, 1) infinite;
  }
}
@keyframes triAnim05 {
  0% {
    transform: rotate(-200deg);
  }
  50% {
    transform: rotate(-205deg);
  }
  100% {
    transform: rotate(-200deg);
  }
}
@keyframes triAnim05-sp {
  0% {
    transform: rotate(77deg);
  }
  50% {
    transform: rotate(72deg);
  }
  100% {
    transform: rotate(77deg);
  }
}
#vol03_10LP .allBtnArea {
  width: 718px;
  height: 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_10LP .allBtnArea {
    width: 85.333%;
  }
}
#vol03_10LP .allBtnArea a {
  width: 100%;
  height: 100%;
  background-color: #222;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
#vol03_10LP .allBtnArea a .arrow {
  position: relative;
}
#vol03_10LP .allBtnArea a .arrow::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
}
#vol03_10LP .profileArea {
  width: 673px;
  margin: 100px auto 176px;
  display: flex;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea {
    width: 100%;
    margin: 80px auto 127px;
    display: block;
  }
}
#vol03_10LP .profileArea_pic {
  width: 27.192%;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea_pic {
    width: 48.8%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
}
#vol03_10LP .profileArea_txt {
  width: 72.808%;
  background-color: #d4bcad;
  padding: 25px 40px;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea_txt {
    width: 100%;
    padding: 30px 27px;
    margin-top: -10px;
  }
}
#vol03_10LP .profileArea_txt .name {
  font-size: 22px;
  line-height: 1.2;
  color: #222;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea_txt .name {
    font-size: 16px;
  }
}
#vol03_10LP .profileArea_txt .name span {
  font-size: 14px;
  line-height: 1.2;
  color: #222;
  letter-spacing: 0;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea_txt .name span {
    margin-bottom: 5px;
  }
}
#vol03_10LP .profileArea_txt .txt {
  font-size: 16px;
  line-height: 1.625;
  color: #222;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #vol03_10LP .profileArea_txt .txt {
    font-size: 14px;
    line-height: 1.714;
  }
}
#vol03_10LP .pastItems {
  width: 718px;
  margin: 50px auto 150px;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
@media (max-width: 768px) {
  #vol03_10LP .pastItems {
    font-size: 16px;
    width: 85.333%;
    margin: 50px auto 80px;
  }
}
#vol03_10LP .pastItems_text {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #vol03_10LP .pastItems_text {
    margin-bottom: 20px;
  }
}
#vol03_10LP .pastItems_link {
  position: relative;
  width: 202px;
  margin: 0 auto;
  border-bottom: 1px solid black;
  font-size: 14px;
}
#vol03_10LP .pastItems_link .arrow {
  position: relative;
}
#vol03_10LP .pastItems_link .arrow::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid black;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
}
#vol03_10LP .popupArea {
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.7s cubic-bezier(0.24, 0.06, 0.45, 0.95), opacity 0.7s cubic-bezier(0.24, 0.06, 0.45, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(34, 34, 34, 0.5);
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea {
    height: 100vh;
    /* 変数をサポートしていないブラウザのフォールバック */
    height: calc(var(--vh, 1vh) * 100);
  }
}
#vol03_10LP .popupArea.on {
  opacity: 1;
  visibility: visible;
}
#vol03_10LP .popupArea_inner {
  width: 100%;
  max-width: 1080px;
  height: 87.5%;
  max-height: 680px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_inner {
    height: 100%;
    top: 10px;
    bottom: 10px;
    left: 0;
    transform: translate(0, 0);
    max-height: calc(100% - 10px);
  }
}
#vol03_10LP .popupArea_inner .close {
  padding: 0;
  background: none;
  margin: 0;
  border: none;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 24px;
  left: 20px;
  width: 20px;
  z-index: 3;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_inner .close {
    top: 15px;
    left: 15px;
  }
}
#vol03_10LP .popupArea_inner .close.closeRight {
  top: unset;
  left: unset;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_inner .close.closeRight {
    right: 15px;
    bottom: 25px;
  }
}
#vol03_10LP .popupArea_list {
  height: 87.5vh;
  max-height: 680px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 62px 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: none;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list {
    padding: 60px 43px 80px;
    overflow-x: hidden;
    height: 100vh;
    max-height: calc(100% - 10px);
  }
}
#vol03_10LP .popupArea_list.on {
  display: block;
}
#vol03_10LP .popupArea_list .popSize {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
}
#vol03_10LP .popupArea_list .popSize_ttl {
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_ttl {
    width: 94.933vw;
    margin: 0 0 25px -33px;
  }
}
#vol03_10LP .popupArea_list .popSize_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #707070;
}
#vol03_10LP .popupArea_list .popSize_ttl p {
  position: relative;
  z-index: 2;
  width: 187px;
  background-color: #f0f0f0;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 700;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_ttl p {
    width: 136px;
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}
#vol03_10LP .popupArea_list .popSize_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box {
    display: block;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list {
  width: 31.974%;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list {
    width: 100%;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl {
    margin-bottom: 20px;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height {
  display: flex;
  align-items: center;
  margin-right: 3px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height {
    align-items: flex-end;
    padding: 0 10px 10px;
    position: relative;
    margin-right: 20px;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height::after {
  content: none;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #222;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--1 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #222;
  margin-right: 3px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--1 {
    line-height: 1.4;
    letter-spacing: 0.18em;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--2 {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #222;
  margin-right: 3px;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--2 {
    font-size: 22px;
    margin-right: 0;
    line-height: 0.7;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--3 {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_height--3 {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 0.7;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_slash {
  width: 18px;
  margin-right: 3px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_slash {
    display: none;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size {
    align-items: flex-end;
    padding: 0 10px 10px;
    position: relative;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size::after {
  content: none;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #222;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size--1 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #222;
  margin-right: 3px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size--1 {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    margin-right: 8px;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size--2 {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Avenir Heavy", "Avenir", "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #222;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeTtl_size--2 {
    font-size: 22px;
    line-height: 0.7;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail {
  margin-top: 15px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10px auto 0;
    width: 98%;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl {
    width: 50%;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dt {
  width: 90px;
  margin-right: 10px;
  background-color: #222;
  height: 25px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dt {
    width: 70px;
    margin-right: 5px;
    height: 20px;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dt p {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dt p {
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dt p.small {
    font-size: 9px;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dd {
  width: calc(100% - 100px);
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dd {
    width: calc(100% - 75px);
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dd p {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #222;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl dd p {
    font-size: 14px;
    white-space: nowrap;
  }
}
#vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl:nth-child(n+2) {
  margin-top: 5px;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl:nth-child(n+2) {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list .sizeDetail dl:nth-child(n+3) {
    margin-top: 6px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box--list:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box #a05 .slick-slide,
  #vol03_10LP .popupArea_list .popSize_box #a06 .slick-slide {
    width: 340px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box .slide-arrow {
    position: absolute;
    top: 40%;
    cursor: pointer;
    z-index: 2;
    width: 21px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box .slide-arrow.prev-arrow {
    left: -33px;
  }
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize_box .slide-arrow.next-arrow {
    right: -33px;
  }
}
#vol03_10LP .popupArea_list .popSize.wide {
  max-width: 992px;
}
#vol03_10LP .popupArea_list .popSize.wide .popSize_box--list {
  width: 23.488%;
}
@media (max-width: 768px) {
  #vol03_10LP .popupArea_list .popSize.wide .popSize_box--list {
    width: 100%;
  }
}
#vol03_10LP .scheduleArea {
  background-color: #f4f3ee;
  padding: 80px 0 130px;
  position: relative;
  margin-bottom: 97px;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea {
    padding: 60px 0 55px;
  }
}
#vol03_10LP .scheduleArea_inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_inner {
    width: 92.533%;
  }
}
#vol03_10LP .scheduleArea_ttl {
  position: relative;
  margin: -111px auto 50px;
  z-index: 2;
  width: 100%;
  font-family: "Butler Bold", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  text-align: center;
  font-size: 80px;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_ttl {
    top: 34px;
    font-size: 45px;
    margin: -111px auto 70px;
  }
}
#vol03_10LP .scheduleArea_ttl::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 53%;
  background: #000;
  left: -40%;
  top: 40%;
  transform: translateY(-50%);
}
#vol03_10LP .scheduleArea_ttl::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 53%;
  background: #000;
  right: -40%;
  top: 40%;
  transform: translateY(-50%);
}
#vol03_10LP .scheduleArea_lead {
  padding-bottom: 35px;
  position: relative;
  font-size: 19px;
  font-weight: 500;
  font-family: "Avenir Heavy", "Avenir", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #222;
  text-align: center;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_lead {
    font-size: 16px;
    line-height: 1.875;
  }
}
#vol03_10LP .scheduleArea .bnrArea {
  padding: 30px 8.286% 30px;
  margin: 25px auto;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea .bnrArea {
    padding: 20px 4.0345%;
    margin: 0 auto 20px;
  }
}
#vol03_10LP .scheduleArea .bnrArea::after {
  content: none;
}
#vol03_10LP .scheduleArea .bnrArea_ttl {
  font-size: 26px;
  font-weight: 500;
  font-family: "Avenir", YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea .bnrArea_ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#vol03_10LP .scheduleArea .bnrArea .bnrEnd {
  top: 0;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea .bnrArea .bnrEnd {
    bottom: 0;
    width: 100%;
  }
}
#vol03_10LP .scheduleArea .bnrArea .bnrEnd p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fc77b7;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_cts {
    width: 100%;
    margin: 0 auto;
  }
}
#vol03_10LP .scheduleArea_cts--list {
  padding: 15px 25px;
  display: flex;
  position: relative;
  border-top: 1px solid #707070;
  position: relative;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_cts--list {
    padding: 10px 18px;
    display: block;
  }
}
#vol03_10LP .scheduleArea_cts--list::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid black;
  top: 2px;
  transform: translateY(-50%) rotate(225deg);
  left: -1px;
}
#vol03_10LP .scheduleArea_cts--list:last-child {
  border-bottom: 1px solid #707070;
}
#vol03_10LP .scheduleArea_cts--list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
#vol03_10LP .scheduleArea_cts--list p {
  font-size: 20px;
  font-weight: 500;
  font-family: YakuHanJP_Noto, "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_10LP .scheduleArea_cts--list p {
    font-size: 16px;
    line-height: 1.75;
  }
}
#vol03_10LP .scheduleArea_cts--list .date {
  width: 25.674%;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_cts--list .date {
    width: 100%;
    margin-bottom: 5px;
  }
}
#vol03_10LP .scheduleArea_cts--list .ttl {
  width: 45.93%;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_cts--list .ttl {
    width: 100%;
  }
}
#vol03_10LP .scheduleArea_cts--list .with {
  width: 30.396%;
}
@media (max-width: 768px) {
  #vol03_10LP .scheduleArea_cts--list .with {
    width: 100%;
  }
}
#vol03_10LP .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_10LP .archiveArea {
    /* margin: 0 auto 110px; */
    padding-bottom: 110px;
  }
}
#vol03_10LP .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_10LP .archiveArea .line span:nth-child(1) {
  top: 330px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea .line span:nth-child(1) {
    top: -35px;
  }
}
#vol03_10LP .archiveArea .line span:nth-child(2) {
  top: 850px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea .line span:nth-child(2) {
    top: 350px;
  }
}
#vol03_10LP .archiveArea .line span:nth-child(3) {
  top: 1350px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea .line span:nth-child(3) {
    top: 770px;
  }
}
#vol03_10LP .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_10LP .archiveArea_list {
    width: 49.6%;
  }
}
#vol03_10LP .archiveArea_list.on {
  animation: archiveAnim 1s cubic-bezier(0.41, 0.01, 0, 1) 0.2s forwards;
}
@media (max-width: 768px) {
  #vol03_10LP .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_10LP .archiveArea_list.mrg84 {
  margin-top: 84px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list.mrg84 {
    margin-top: 95px;
  }
}
#vol03_10LP .archiveArea_list.mrg180 {
  margin-top: 180px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list.mrg180 {
    margin-top: 150px;
  }
}
#vol03_10LP .archiveArea_list:nth-last-child(-n+2) {
  margin-bottom: 0;
}
#vol03_10LP .archiveArea_list--ttl {
  display: flex;
  align-items: center;
}
#vol03_10LP .archiveArea_list--ttl .archivePic {
  width: 83px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl .archivePic {
    width: 59px;
    margin: 0 6px 0 10px;
  }
}
#vol03_10LP .archiveArea_list--ttl .archiveTxt {
  width: calc(100% - 95px);
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl .archiveTxt {
    width: calc(100% - 65px);
  }
}
#vol03_10LP .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_10LP .archiveArea_list--ttl .archiveTxt p {
    font-size: 14px;
    line-height: 1.21;
  }
}
#vol03_10LP .archiveArea_list--ttl.ttl01 .archivePic {
  width: 77.5px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl.ttl01 .archivePic {
    width: 50px;
  }
}
#vol03_10LP .archiveArea_list--ttl.ttl01 .archiveTxt {
  width: calc(100% - 89.5px);
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl.ttl01 .archiveTxt {
    width: calc(100% - 56px);
  }
}
#vol03_10LP .archiveArea_list--ttl.ttl03 .archivePic {
  width: 63.5px;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl.ttl03 .archivePic {
    width: 44px;
    margin: 0 2.6px 0 10px;
  }
}
#vol03_10LP .archiveArea_list--ttl.ttl03 .archiveTxt {
  width: calc(100% - 75.5px);
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list--ttl.ttl03 .archiveTxt {
    width: calc(100% - 46.6px);
  }
}
#vol03_10LP .archiveArea_list--pic {
  position: relative;
}
#vol03_10LP .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_10LP .archiveArea_list--pic .icnArrow {
    width: 21px;
    height: 21px;
    bottom: 6%;
    right: 12%;
  }
}
#vol03_10LP .archiveArea_list--pic .icnArrow.border {
  border: 1px solid #222;
}
#vol03_10LP .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_10LP .archiveArea_list--pic .icnArrow img {
    width: 11px;
  }
}
#vol03_10LP .archiveArea_list--pic .icnArrow2.icnArrow {
  mix-blend-mode: difference;
}
#vol03_10LP .archiveArea_list--pic:hover {
  opacity: 1;
}
#vol03_10LP .archiveArea_list--pic:hover .icnArrow img {
  transform: translate(-20%, -50%);
}
#vol03_10LP .archiveArea_list--pic .csMask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
}
#vol03_10LP .archiveArea_list.block {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#vol03_10LP .archiveArea_list.block .blockInner {
  width: 290px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vol03_10LP .archiveArea_list.block .blockInner {
    width: 49.6%;
  }
}
#vol03_10LP .fade {
  opacity: 0;
  transition: transform 1s ease 0.2s, opacity 1s linear 0.2s;
  transform: translate3d(0, 20px, 0);
}
@media (max-width: 768px) {
  #vol03_10LP .fade {
    transition: transform 1s ease 0.4s, opacity 1s linear 0.4s;
  }
}
#vol03_10LP .fade.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.header ul li.on::after {
  background: #fff;
}
.header ul li a {
  color: #fff;
}