@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 10px;
  transition: all 1.6s ease 0s, background-color 0.5s ease;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
  color: #F8F8F8;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 12px;
    background-image: url("../images/noise.png");
  }
}
@media screen and (min-width: 1025px) {
  body.bg-sec01 {
    background-color: #759DB1;
  }
  body.bg-sec02 {
    background-color: #87725A;
  }
  body.bg-sec03 {
    background-color: #7B4747;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media print {
  img {
    display: none;
  }
}
a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@media screen and (min-width: 1025px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}

/* 初期位置 */
.fade-up {
  transform: translateY(20px);
}

.fade-left {
  transform: translateX(-20px);
}

.fade-right {
  transform: translateX(20px);
}

/* ズームインしながらフェード（外枠のサイズは変えず、中の画像だけズームしてクロップする） */
.fade-zoom {
  overflow: hidden;
}
.fade-zoom img {
  transform: scale(1.15);
  transition: transform 1.5s ease;
}

/* その場フェードはtransformなしでもOK */
.fade-in {
  transform: none;
}

/* 表示状態 */
.fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.fade.is-show.fade-zoom img {
  transform: scale(1);
}

/* ワイプ系（スクロールで発火） */
.wipe {
  transition: clip-path 1.5s ease;
}

/* 初期状態：上から出現 */
.wipe-top {
  clip-path: inset(0 0 100% 0);
}

/* 初期状態：左から出現 */
.wipe-left {
  clip-path: inset(0 100% 0 0);
}

/* 初期状態：中心から円形に出現 */
.wipe-center {
  clip-path: circle(0% at 50% 50%);
}

/* 表示状態 */
.wipe.is-show {
  clip-path: inset(0 0 0 0);
}

/* wipe-centerは形状（circle）を揃えないと滑らかにアニメーションしないため専用の表示状態を用意 */
.wipe-center.is-show {
  clip-path: circle(100% at 50% 50%);
}

#page-top {
  position: fixed;
  bottom: 1%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  #page-top {
    right: 3%;
  }
}
@media screen and (max-width: 1024px) {
  #page-top img {
    width: 14vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  header {
    position: relative !important;
  }
}

@keyframes fvCenterWipe {
  from {
    clip-path: circle(0% at 50% 50%);
  }
  to {
    clip-path: circle(100% at 50% 50%);
  }
}
.fv {
  position: relative;
  height: 186vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .fv {
    height: 52vw;
  }
}
.fv h1 {
  position: absolute;
  top: 4vw;
  left: 2vw;
  width: 95%;
  height: 100%;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease;
  will-change: clip-path;
}
.fv h1.on {
  clip-path: inset(0 0 0 0);
}
.fv picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}
@media screen and (min-width: 1025px) {
  .fv picture {
    width: 37.5vw;
    height: 55.5555555556vw;
  }
}
.fv picture.is-active {
  opacity: 1;
  z-index: 2;
}
.fv picture.fv-center-wipe {
  animation: fvCenterWipe 1.6s ease forwards;
  will-change: clip-path;
}
.fv picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lead {
  font-size: 13px;
  text-align: center;
  line-height: 2;
  margin: 15% auto;
}
@media screen and (min-width: 1025px) {
  .lead {
    font-size: 15px;
  }
}

.menu {
  font-size: 13px;
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #CEEBEB;
  text-align: center;
  margin-bottom: 25%;
}
@media screen and (min-width: 1025px) {
  .menu {
    padding: 0 5%;
  }
}
.menu .m_b_h2 {
  width: 70%;
  margin: 0 auto -4vw;
}
@media screen and (min-width: 1025px) {
  .menu .m_b_h2 {
    margin: 0 auto;
    width: 65%;
  }
}
.menu .m_before {
  height: 124vw;
  position: relative;
  background-color: #785c4e;
  background-image: url("../images/noise.png"), radial-gradient(circle, rgba(141, 169, 177, 0.7921568627) 0%, #785c4e 50%, #785c4e 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
}
@media screen and (min-width: 1025px) {
  .menu .m_before {
    height: 41vw;
  }
}
.menu .m_before div {
  position: absolute;
}
.menu .m_before div:nth-child(1) {
  width: 87%;
  left: 5%;
}
.menu .m_before div:nth-child(2) {
  width: 20%;
  left: 9%;
  top: 7%;
}
.menu .m_before div:nth-child(3) {
  width: 9%;
  left: 80%;
  top: 16%;
}
.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 85%;
  margin: 7% auto;
}
.menu ul li:nth-child(1) {
  transition-delay: 0s;
}
.menu ul li:nth-child(2) {
  transition-delay: 0.3s;
}
.menu ul li:nth-child(3) {
  transition-delay: 0.6s;
}
.menu ul li:hover {
  transform: translateY(-8%);
}
.menu ul li a:hover {
  opacity: 1;
  transition: 0.3s;
}

.yazhirushi {
  width: 18%;
  margin: 0 auto -9% 8%;
}

.m_hukidashi {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .m_hukidashi {
    font-size: 17px;
  }
}

.after_title {
  width: 52% !important;
}

.section_container {
  position: relative;
  z-index: 0;
  border-radius: 50% 50% 0 0/80px 80px 0 0;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
}
.section_container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.section_container .sec_title .sec_num {
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 4vw;
  padding: 16% 0 7%;
  color: #FFE3E3;
}
@media screen and (min-width: 1025px) {
  .section_container .sec_title .sec_num {
    font-size: 1.4583333333vw;
  }
}
.section_container .sec_title .sec_num p:nth-child(1) {
  border-bottom: 1px solid;
  font-size: 4.8vw;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1025px) {
  .section_container .sec_title .sec_num p:nth-child(1) {
    font-size: 1.7vw;
  }
}
.section_container .sec_title .sec_num p:nth-child(2) {
  margin-top: 1%;
}
.section_container h2 {
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .section_container h2 {
    width: 65%;
  }
}

.sec2_5 {
  position: relative;
  height: 143vw;
  overflow: hidden;
  padding-top: 25%;
}
@media screen and (min-width: 1025px) {
  .sec2_5 {
    height: 52vw;
  }
}
.sec2_5 div {
  width: 60%;
  margin: 0% auto 0 17%;
  padding-bottom: 25%;
  padding-top: 20%;
}
@media screen and (min-width: 1025px) {
  .sec2_5 div {
    padding-top: 9%;
  }
}
@media screen and (max-width: 1024px) {
  .sec2_5 div {
    width: 64%;
    margin: 0% auto 0 16%;
    padding-bottom: 25%;
    padding-top: 5%;
  }
}
.sec2_5 .sec2_5_svg {
  position: absolute;
  top: 10%;
  letter-spacing: 2px;
  width: 111.2vw;
  height: 93.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .sec2_5 .sec2_5_svg {
    width: 41vw;
    height: 37vw;
  }
}
.sec2_5 .sec2_5_text {
  font-family: "ogg", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 6.1333333333vw;
  fill: currentColor;
  color: #F6EFCA;
}
@media screen and (min-width: 1025px) {
  .sec2_5 .sec2_5_text {
    font-size: 1.7361111111vw;
  }
}

.hukidashi {
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  width: 30%;
  font-size: 3.7333333333vw;
  position: relative;
  margin: -19% auto -3% 7%;
}
@media screen and (min-width: 1025px) {
  .hukidashi {
    font-size: 1.3194444444vw;
  }
}
.hukidashi .marquee {
  position: absolute;
  top: 37%;
  left: 9%;
  width: 80%;
  overflow: hidden;
  transform: translateY(-50%) rotate(-6.19deg);
}
.hukidashi .marquee p {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: hukidashiMarquee 8s linear infinite;
}
.hukidashi .marquee span {
  display: inline-block;
  padding-right: 10px;
}

@keyframes hukidashiMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.main_img_area {
  position: relative;
  height: 178vw;
  background-color: #759db1;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
}
@media screen and (min-width: 1025px) {
  .main_img_area {
    height: 63vw;
  }
}
.main_img_area .sec_before {
  width: 38%;
  margin-left: 2%;
  z-index: 10;
  position: absolute;
  top: -2%;
}
.main_img_area .yazhirushi_shiro,
.main_img_area .main_img,
.main_img_area .goro1,
.main_img_area .goro2 {
  position: absolute;
}
.main_img_area .goro_wrap {
  overflow: hidden;
}
.main_img_area .yazhirushi_shiro {
  z-index: 10;
  width: 18%;
  top: 19%;
  left: 16%;
}
.main_img_area .main_img {
  top: 7%;
  transition-delay: 0.3s;
  width: 100%;
}
.main_img_area .goro1 {
  z-index: 10;
  top: 23%;
  width: 16%;
  left: 76%;
}
.main_img_area .goro2 {
  z-index: 10;
  top: 35%;
  width: 23%;
  left: 5%;
}

.sec1_arakawa {
  position: relative;
  z-index: 10;
  margin-left: -4%;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .sec1_arakawa {
    margin-left: 0;
    margin: 0 auto;
  }
}
.sec1_arakawa img {
  width: 110%;
}
@media screen and (min-width: 1025px) {
  .sec1_arakawa img {
    width: 100%;
  }
}

.sec_solo {
  padding: 30% 0 0;
}

.sec1_2 {
  width: 80%;
  margin: -7% auto 0;
}
@media screen and (min-width: 1025px) {
  .sec1_2 {
    width: 70%;
  }
}

.sec1_2_wrap {
  position: relative;
  background-color: #759db1;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}

.ball {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(600deg, #d9d9d9, #ffe3e3);
  box-shadow: inset 5px -2px 7px rgba(0, 0, 0, 0.2);
  z-index: 5;
  animation-name: floatBall;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media screen and (min-width: 1025px) {
  .ball {
    animation-name: floatBall2;
  }
}

@keyframes floatBall {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5.3333333333vw);
  }
}
@keyframes floatBall2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.7361111111vw);
  }
}
.ball1 {
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  top: 13%;
  left: 22%;
  animation-duration: 6s;
  animation-delay: 0s;
}
@media screen and (min-width: 1025px) {
  .ball1 {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}

.ball2 {
  width: 6.9333333333vw;
  height: 6.9333333333vw;
  top: 18%;
  left: 6%;
  animation-duration: 6s;
  animation-delay: 0.5s;
}
@media screen and (min-width: 1025px) {
  .ball2 {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    left: 10%;
  }
}

.ball3 {
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  top: 28%;
  left: 12%;
  animation-duration: 6s;
  animation-delay: 1s;
}
@media screen and (min-width: 1025px) {
  .ball3 {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
    left: 18%;
  }
}

.ball4 {
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  top: 42%;
  right: 16%;
  animation-duration: 6s;
  animation-delay: 0.3s;
}
@media screen and (min-width: 1025px) {
  .ball4 {
    width: 1.5277777778vw;
    height: 1.5277777778vw;
  }
}

.ball5 {
  width: 8vw;
  height: 8vw;
  top: 52%;
  right: 7%;
  animation-duration: 6s;
  animation-delay: 0.8s;
}
@media screen and (min-width: 1025px) {
  .ball5 {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
  }
}

.ball6 {
  width: 4.5333333333vw;
  height: 4.5333333333vw;
  top: 65%;
  right: 14%;
  animation-duration: 6s;
  animation-delay: 1.3s;
}
@media screen and (min-width: 1025px) {
  .ball6 {
    width: 1.7361111111vw;
    height: 1.7361111111vw;
  }
}

.ball7 {
  width: 3.7333333333vw;
  height: 3.7333333333vw;
  bottom: 4%;
  left: 7%;
  animation-duration: 6s;
  animation-delay: 0.6s;
}
@media screen and (min-width: 1025px) {
  .ball7 {
    width: 1.5277777778vw;
    height: 1.5277777778vw;
  }
}

.ball8 {
  width: 8vw;
  height: 8vw;
  bottom: -5%;
  left: 15%;
  animation-duration: 6s;
  animation-delay: 1.1s;
}
@media screen and (min-width: 1025px) {
  .ball8 {
    width: 2.5694444444vw;
    height: 2.5694444444vw;
  }
}

.ball9 {
  width: 5.6vw;
  height: 5.6vw;
  bottom: 4%;
  left: 30%;
  animation-duration: 6s;
  animation-delay: 0.2s;
}
@media screen and (min-width: 1025px) {
  .ball9 {
    width: 1.7361111111vw;
    height: 1.7361111111vw;
  }
}

.sec1_3_area {
  position: relative;
}
.sec1_3_area .marquee {
  font-family: "ogg", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 8.8vw;
  color: #FFE3E3;
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .sec1_3_area .marquee {
    font-size: 3.125vw;
  }
}
.sec1_3_area .marquee p {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: hukidashiMarquee 8s linear infinite;
}
.sec1_3_area .marquee span {
  display: inline-block;
  padding-right: 1em;
}
.sec1_3_area .btm_marquee {
  top: 91%;
  transform: rotate(180deg);
}
.sec1_3_area .sec1_3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.sec1_4 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  background-color: #759DB1;
  background-image: url("../images/noise.png"), radial-gradient(circle at 70% 30%, rgba(232, 218, 177, 0.5607843137) 0%, #759DB1 30%, #759DB1 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
  margin-bottom: 10%;
  margin-top: 15%;
}
@media screen and (min-width: 1025px) {
  .sec1_4 {
    background-image: url("../images/noise.png"), radial-gradient(circle at 70% 30%, rgba(232, 218, 177, 0.5607843137) 0%, #759DB1 25%, #759DB1 100%);
    background-size: 50px 50px, 100% 100%;
  }
}
.sec1_4 div:nth-child(1) {
  width: 66%;
  margin-left: 9%;
}
.sec1_4 div:nth-child(2) {
  width: 27%;
}

.credit_area {
  text-align: left;
  margin: 0 auto;
}
.credit_area .cre_title {
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  width: 31%;
  font-size: 3.4666666667vw;
  margin: 12% auto 0 4%;
  padding-bottom: 6%;
}
@media screen and (min-width: 1025px) {
  .credit_area .cre_title {
    font-size: 1.1vw;
    width: 26%;
    margin: 10% auto 0 10%;
    padding-bottom: 6%;
  }
}
.credit_area .cre_title p {
  text-align: center;
  margin: -40% auto 0;
  letter-spacing: 0.7px;
}
.credit_area .credit_note {
  font-size: 9px;
}
@media screen and (min-width: 1025px) {
  .credit_area .credit_note {
    font-size: 9px;
  }
}
.credit_area .credit {
  width: 75%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .credit_area .credit {
    width: 65%;
  }
}

.credit_area .creditAjax_link, .credit_area .coming {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.coming .cre_img {
  width: 20%;
}
@media screen and (min-width: 1025px) {
  .coming .cre_img {
    width: 17%;
  }
}
.coming .credit_text {
  width: 75%;
}

.credit_text {
  font-size: 10px;
  width: 80%;
  letter-spacing: 0.4px;
}

.cre_img {
  width: 35px;
}
@media screen and (min-width: 1025px) {
  .cre_img {
    width: 14%;
  }
}

.buy {
  font-size: 10px;
  width: fit-content;
  padding: 0 3vw;
  background: linear-gradient(115deg, #DEB9B9, #8495A3);
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  padding: 0% 4% 0.5%;
  border-radius: 3px;
}
@media screen and (min-width: 1025px) {
  .buy {
    font-size: 12px;
    padding: 0px 1vw 0.2vw;
  }
}
.buy.non-buy {
  background-color: #c7c7c7;
  color: #fff;
  padding: 0 6px;
  white-space: nowrap;
}

.credit_box {
  margin-bottom: 2%;
  display: flex;
  justify-content: flex-start;
  gap: 3%;
  width: 82%;
}
@media screen and (min-width: 1025px) {
  .credit_box {
    width: 100%;
  }
}

/* 価格
===================================================== */
.creditAjax_price__proper::before,
.creditAjax_price__sale::before {
  content: "¥";
}

.creditAjax_price__sale {
  color: #fff;
  margin-left: 5px;
}

.creditAjax_price__off {
  color: #fff;
}
.creditAjax_price__off::before {
  content: "(";
}
.creditAjax_price__off::after {
  content: ")";
}

.creditAjax__saleOn .creditAjax_price__proper {
  text-decoration: line-through;
}

.creditAjax_price__sale, .creditAjax_price__off {
  text-decoration: none !important;
  display: inline-block;
}

/* アイテム名
===================================================== */
.creditAjax_item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.other_item_wrapper {
  position: relative;
  z-index: 0;
  line-height: 1.5;
  padding: 19% 0 11% 0;
  overflow: hidden;
  font-size: 9px;
  width: 100%;
  margin: 0 auto;
  color: #759DB1;
}
.other_item_wrapper::before {
  content: "";
  position: absolute;
  inset: 8%;
  background-color: #F4F0F0;
  filter: blur(3px);
  z-index: -1;
  border-radius: 13px;
}
@media screen and (max-width: 1024px) {
  .other_item_wrapper::before {
    inset: 6%;
  }
}
.other_item_wrapper h3 {
  text-align: center;
  margin: 0 auto;
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  font-size: 25px;
}
@media screen and (min-width: 1025px) {
  .other_item_wrapper h3 {
    font-size: 31px;
  }
}
.other_item_wrapper .otheritems_title_ja {
  text-align: center;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  margin-top: 1.5%;
}
@media screen and (min-width: 1025px) {
  .other_item_wrapper .otheritems_title_ja {
    font-size: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .other_item_wrapper .swiper-wrapper {
    font-size: 11px;
  }
}
@media screen and (min-width: 1025px) {
  .other_item_wrapper .swiper-wrapper a img {
    margin-bottom: 6%;
  }
}
@media screen and (min-width: 1025px) {
  .other_item_wrapper .label {
    margin: 4% auto;
  }
}

.other_item_slider {
  padding-right: 1px;
  line-height: 1.2;
  position: relative;
  padding-right: 10%;
  padding-left: 10%;
  width: 83%;
  margin: 7% auto;
  overflow: hidden;
  padding-bottom: 10%;
}
@media screen and (min-width: 1025px) {
  .other_item_slider {
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .other_item_slider {
    width: 87%;
  }
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 80% !important;
  left: 11% !important;
  background-color: #fff;
}

.swiper-scrollbar-drag {
  background-color: #8b8b8b;
}

.zetaAjax_name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zetaAjax_img__360 {
  margin-bottom: 6%;
}

.zetaAjax_name, .textOverflow {
  margin: 3px auto;
  font-size: 8px;
}
@media screen and (min-width: 1025px) {
  .zetaAjax_name, .textOverflow {
    font-size: 11px;
  }
}

.zetaAjax_couponArea {
  position: relative;
}
.zetaAjax_couponArea .zetaAjax_coupon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background: #6497b1;
  color: #fff;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 3px 4%;
  font-size: 0.6vw;
}
@media screen and (max-width: 1024px) {
  .zetaAjax_couponArea .zetaAjax_coupon {
    padding: 3px 4%;
    font-size: 2vw;
  }
}

.zetaAjax_proper::before {
  content: "¥";
}

.zetaAjax_proper__onSale .zetaAjax_proper {
  text-decoration: line-through;
}

.zetaAjax_sale {
  color: #9e2323;
}
.zetaAjax_sale::before {
  content: "¥";
}

.zetaAjax_off {
  color: #9e2323;
}
.zetaAjax_off::before {
  content: "(";
}
.zetaAjax_off::after {
  content: ")";
}

.more_btn {
  background-color: #759DB1;
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  color: #F4F0F0;
  text-align: center;
  width: 42%;
  padding: 2%;
  font-size: 14px;
  display: block;
  margin: 0 auto 12%;
  padding: 1% 0 2%;
}
@media screen and (min-width: 1025px) {
  .more_btn {
    font-size: 1.0416666667vw;
  }
}

.kirinuki_area {
  overflow: hidden;
  width: 100%;
  padding-top: 15%;
  padding-bottom: 20%;
}

.kirinuki_track {
  display: flex;
  width: max-content;
  animation: kirinukiScroll 14s linear infinite;
}

.kirinuki_group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10.6666666667vw;
  margin-right: 10.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .kirinuki_group {
    gap: 3.4722222222vw;
    margin-right: 3.4722222222vw;
  }
}

.kirinuki_haru {
  position: relative;
  flex-shrink: 0;
  width: 21.3333333333vw;
  aspect-ratio: 233/291;
}
@media screen and (min-width: 1025px) {
  .kirinuki_haru {
    width: 6vw;
  }
}
.kirinuki_haru img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.kirinuki_arakawa {
  position: relative;
  flex-shrink: 0;
  width: 21.3333333333vw;
  aspect-ratio: 82/97;
}
@media screen and (min-width: 1025px) {
  .kirinuki_arakawa {
    width: 7vw;
  }
}
.kirinuki_arakawa img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.kirinuki_haru img {
  animation: kirinukiFlip3 3s linear infinite;
}

.kirinuki_haru img:nth-child(1) {
  animation-delay: 0s;
}

.kirinuki_haru img:nth-child(2) {
  animation-delay: -1s;
}

.kirinuki_haru img:nth-child(3) {
  animation-delay: -2s;
}

.kirinuki_arakawa img {
  animation: kirinukiFlip3 3s linear infinite;
}

.kirinuki_arakawa img:nth-child(1) {
  animation-delay: 0s;
}

.kirinuki_arakawa img:nth-child(2) {
  animation-delay: -1s;
}

.kirinuki_arakawa img:nth-child(3) {
  animation-delay: -2s;
}

@keyframes kirinukiFlip4 {
  0%, 24.9% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}
@keyframes kirinukiFlip3 {
  0%, 33.2% {
    opacity: 1;
  }
  33.3%, 100% {
    opacity: 0;
  }
}
@keyframes kirinukiScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#sec01 {
  background-color: #759DB1;
  box-shadow: 1px -1px 20px rgba(0, 0, 0, 0.1490196078);
}
#sec01 .goro1, #sec01 .goro2 {
  transition-delay: 0.5s;
}

#sec02 {
  background-color: #87725A;
}
#sec02 .sec_title {
  box-shadow: 1px -1px 20px rgba(0, 0, 0, 0.1490196078);
  background-color: #87725A;
  position: relative;
  z-index: 0;
  border-radius: 50% 50% 0 0/80px 80px 0 0;
  padding-bottom: 0;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
}
#sec02 .sec_num {
  color: #F6EFCA;
}
#sec02::before {
  background-color: #759DB1;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec02 .hukidashi .marquee {
  transform: translateY(-50%) rotate(-10deg);
}
#sec02 .main_img2 {
  top: 7%;
}
#sec02 .main_img_area {
  background-color: #87725A;
}
#sec02 .main_img_area .goro1 {
  top: 77%;
  width: 70%;
  left: 1%;
}
#sec02 .main_img_area .goro2 {
  top: 86%;
  width: 86%;
  left: 13%;
}
#sec02 .sec_before1 {
  width: 31%;
  top: -3%;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec_before1 {
    width: 26%;
    top: -1%;
  }
}
#sec02 .sec_before2 {
  width: 33%;
  margin-left: 2%;
  top: 0%;
  left: 59%;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec_before2 {
    left: 64%;
    width: 30%;
    top: 1%;
  }
}
#sec02 .sec2_3_wrap {
  position: relative;
  background-color: #87725A;
  background-image: url("../images/noise.png"), radial-gradient(circle at 16% 56%, #B1A2AD 0%, #87725A 30%, #87725A 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
}
#sec02 .sec_solo, #sec02 .sec2_5, #sec02 .other_item_wrapper, #sec02 .kirinuki_area {
  background-color: #87725A;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec02 .sec2_3_title {
  width: 60%;
  margin: 0 auto 0 6%;
  position: relative;
  z-index: 1;
}
#sec02 .sec2_3 {
  width: 80%;
  margin: -14% 0 0 auto;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_3 {
    width: 73%;
  }
}
#sec02 .sec2_3_back {
  width: 37%;
  margin-left: auto;
}
#sec02 .sec2_3_2 {
  width: 58%;
  margin: -83% auto 0 0;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_3_2 {
    width: 54%;
  }
}
#sec02 .cre_title p {
  color: #87725A;
}
#sec02 .buy {
  background: linear-gradient(115deg, #F6EFCA, #B1A2AD);
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  color: #87725A;
}
#sec02 .sec2_4_toptext {
  display: flex;
  justify-content: space-between;
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #F6EFCA;
  font-size: 9px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_4_toptext {
    font-size: 12px;
  }
}
#sec02 .sec2_4_toptext span:nth-child(2) {
  text-align: right;
}
#sec02 .sec2_4_text1 {
  width: 55%;
  margin: 0 auto -11%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_4_text1 {
    width: 50%;
  }
}
#sec02 .sec2_4_text2 {
  width: 60%;
  margin: -13% auto 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_4_text2 {
    width: 55%;
  }
}
#sec02 .sec2_4_wrap {
  position: relative;
  background-color: #87725A;
  background-image: url("../images/noise.png"), linear-gradient(#87725A 0%, #87725A 30%, rgba(177, 162, 173, 0.5019607843) 50%, #87725A 70%, #87725A 100%);
  background-size: 50px 50px, 100% 100%;
}
#sec02 .sec2_4_wrap .sec2_4_img_wrap {
  position: relative;
  width: 74%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  #sec02 .sec2_4_wrap .sec2_4_img_wrap {
    width: 67%;
  }
}
#sec02 .sec2_4_wrap .swiper {
  width: 100%;
}
#sec02 .sec2_4_wrap .sec2_4_line {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 120%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
#sec02 .other_item_wrapper {
  color: #87725A;
}
#sec02 .other_item_wrapper::before {
  background-color: #E7DDD2;
}
#sec02 .other_item_wrapper .more_btn {
  background-color: #87725A;
}

#sec03 {
  background-color: #7B4747;
}
#sec03 h2 {
  width: 78%;
}
@media screen and (min-width: 1025px) {
  #sec03 h2 {
    width: 72%;
  }
}
#sec03 .sec_title {
  box-shadow: 1px -1px 20px rgba(0, 0, 0, 0.1490196078);
  background-color: #7B4747;
  position: relative;
  z-index: 0;
  border-radius: 50% 50% 0 0/80px 80px 0 0;
  padding-bottom: 0;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
}
#sec03 .sec_num {
  color: #FFE3E3;
}
#sec03::before {
  background-color: #87725A;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec03 .hukidashi {
  margin: -19% auto -5% 62%;
}
#sec03 .hukidashi .marquee {
  transform: translateY(-50%) rotate(7deg);
}
#sec03 .yazhirushi_shiro {
  width: 11%;
  top: 12%;
  left: 28%;
}
#sec03 .main_img {
  top: 5%;
}
#sec03 .main_img_area {
  background-color: #7B4747;
  height: 154vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #sec03 .main_img_area {
    height: 58vw;
  }
}
#sec03 .main_img_area .goro1 {
  top: 73%;
  width: 95%;
  left: 2%;
}
#sec03 .main_img_area .goro2 {
  top: 85%;
  width: 89%;
  left: 9%;
}
#sec03 .sec_before {
  width: 28%;
  margin-left: 4%;
  z-index: 10;
  position: absolute;
}
#sec03 .sec3_2_wrap {
  position: relative;
  background-color: #7B4747;
  background-image: url("../images/noise.png"), radial-gradient(circle at 16% 56%, rgba(177, 162, 173, 0.5843137255) 0%, #7B4747 30%, #7B4747 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
  height: 160vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  #sec03 .sec3_2_wrap {
    height: 59vw;
  }
}
#sec03 .sec3_2_wrap .sec3_2 {
  width: 70%;
  margin-left: auto;
}
#sec03 .sec3_2_wrap .sec3_2_text {
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 21px;
  fill: currentColor;
  letter-spacing: 1.6px;
}
#sec03 .sec3_2_svg {
  position: absolute;
  top: 17%;
  color: #FFE3E3;
  width: 119.7333333333vw;
  height: 106.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec03 .sec3_2_svg {
    width: 41.111111vw;
    height: 37.416667vw;
  }
}
#sec03 .sec3_3 {
  width: 53%;
  position: absolute;
  top: 23%;
  left: 0;
}
#sec03 .sec3_3_2 {
  width: 30%;
  margin: 30% 0 0 auto;
}
#sec03 .sec_solo, #sec03 .sec2_5, #sec03 .other_item_wrapper, #sec03 .kirinuki_area {
  background-color: #7B4747;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec03 .cre_title {
  margin: 6% auto 0 4%;
}
@media screen and (min-width: 1025px) {
  #sec03 .cre_title {
    margin: 6% auto 0 9%;
  }
}
#sec03 .cre_title p {
  color: #7B4747;
}
#sec03 .buy {
  background: linear-gradient(115deg, #B6B6A3, #FFE3E3);
  font-family: "norman-variable", sans-serif;
  font-variation-settings: "wght" 520;
  color: #7B4747;
}
#sec03 .sec3_4_wrap {
  position: relative;
  background-color: #7B4747;
  background-image: url("../images/noise.png"), radial-gradient(circle at 90% 18%, rgba(182, 182, 163, 0.6549019608) 0%, #7B4747 20%, #7B4747 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
}
@media screen and (min-width: 1025px) {
  #sec03 .sec3_4_wrap {
    background-image: url("../images/noise.png"), radial-gradient(circle at 80% 18%, rgba(182, 182, 163, 0.6549019608) 0%, #7B4747 15%, #7B4747 100%);
    background-size: 50px 50px, 100% 100%;
  }
}
#sec03 .sec3_4_wrap .swiper {
  width: 80%;
  margin-left: 0;
}
#sec03 .sec3_4_wrap .brownbyharu {
  width: 55%;
  margin: -17% 5% 0 auto;
  position: relative;
  z-index: 10;
}
#sec03 .sec3_4_wrap .sec3_5 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 4% auto 0;
}
#sec03 .sec3_4_wrap .sec3_5 div:nth-child(1) {
  margin-right: -10%;
}
#sec03 .sec3_4_wrap .sec3_5 div:nth-child(2) {
  transition-delay: 0.3s;
}
#sec03 .sec3_7 {
  position: relative;
  height: 160vw;
  padding-top: 25%;
  background-color: #7B4747;
  background-image: url("../images/noise.png"), radial-gradient(circle at 10% 20%, rgba(182, 182, 163, 0.6549019608) 0%, #7B4747 20%, #7B4747 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
}
@media screen and (min-width: 1025px) {
  #sec03 .sec3_7 {
    height: 58vw;
    background-image: url("../images/noise.png"), radial-gradient(circle at 20% 25%, rgba(182, 182, 163, 0.6549019608) 0%, #7B4747 20%, #7B4747 100%);
    background-size: 50px 50px, 100% 100%;
  }
}
#sec03 .sec3_7 div:nth-child(1) {
  width: 80%;
  margin: 0 auto;
}
#sec03 .sec3_7 div:nth-child(2) {
  position: absolute;
  top: 63%;
  width: 47%;
  left: 48%;
}
#sec03 .other_item_wrapper {
  color: #7B4747;
}
#sec03 .other_item_wrapper::before {
  background-color: #E7DDD2;
}
#sec03 .other_item_wrapper .more_btn {
  background-color: #7B4747;
}

#sec04 {
  background-color: #785C4E;
}
#sec04 h4 {
  background-color: #785C4E;
  position: relative;
  z-index: 0;
  border-radius: 50% 50% 0 0/80px 80px 0 0;
  padding: 24% 22% 3%;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  background-repeat: repeat;
}
#sec04 .sec_num {
  color: #FFE3E3;
}
#sec04::before {
  background-color: #7B4747;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec04 .sec04_sub_ja {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  text-align: center;
  letter-spacing: 7px;
  font-weight: 600;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec04 .m_before {
  position: relative;
  background-color: #785c4e;
  background-image: url("../images/noise.png"), radial-gradient(circle, rgba(141, 169, 177, 0.7921568627) 0%, #785c4e 50%, #785c4e 100%);
  background-size: 50px 50px, 100% 100%;
  background-repeat: repeat, no-repeat;
  padding: 0 6% 4%;
}
#sec04 .yazhirushi {
  width: 20%;
  margin: -17% auto -7% 15%;
  position: relative;
  z-index: 11;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
#sec04 .pro_name {
  font-size: 30px;
  text-align: center;
  line-height: 0.6;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  position: relative;
  z-index: 10;
  padding-bottom: 1%;
}
#sec04 .pro_name span {
  font-size: 11px;
}
#sec04 .profile_text {
  position: relative;
  padding: 0 16px;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  font-size: 11px;
  padding: 6% 15%;
  text-align: left;
  z-index: 20;
  letter-spacing: -0.1px;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  #sec04 .profile_text {
    font-size: 14px;
  }
}
#sec04 .profile_text::before, #sec04 .profile_text::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 4px;
  width: 40px;
  border: 2px solid #BDD8D8;
  border-radius: 50%;
}
#sec04 .profile_text::before {
  left: 7%;
  clip-path: inset(0 50% 0 0);
}
#sec04 .profile_text::after {
  right: 7%;
  clip-path: inset(0 0 0 50%);
}
#sec04 .credit_area {
  position: relative;
  z-index: 0;
  line-height: 1.5;
  padding: 40px 0 80px 0;
  overflow: hidden;
  font-size: 9px;
  width: 100%;
  margin: 0 auto;
  color: #785c4e;
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
}
@media screen and (min-width: 1025px) {
  #sec04 .credit_area {
    font-size: 12px;
    padding: 100px 0 120px 0;
  }
}
#sec04 .credit_area::before {
  content: "";
  position: absolute;
  inset: 8%;
  background-color: rgba(244, 240, 240, 0.9);
  filter: blur(6px);
  z-index: -1;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  #sec04 .credit_area::before {
    inset: 6%;
    margin-top: 30px;
  }
}
#sec04 .credit_area .pro_credit_img {
  width: 17%;
  position: absolute;
  top: 70px;
  left: 14%;
}
@media screen and (max-width: 1024px) {
  #sec04 .credit_area .pro_credit_img {
    top: 60px;
  }
}
#sec04 .credit_area .cre_name {
  width: 65%;
  margin: 0 auto 2%;
  padding-top: 4vw;
}
@media screen and (max-width: 1024px) {
  #sec04 .credit_area .cre_name {
    width: 70%;
    margin: 0 auto 2%;
    padding-top: 20vw;
  }
}
#sec04 .credit_area .cre_name2 {
  padding-top: 3vw;
}
@media screen and (max-width: 1024px) {
  #sec04 .credit_area .cre_name2 {
    padding-top: 8vw;
  }
}
#sec04 .credit_area .buy {
  color: rgba(244, 240, 240, 0.9);
}
@media screen and (max-width: 1024px) {
  #sec04 .credit_area .credit {
    width: 70%;
  }
}
#sec04 .creditAjax_price__sale, #sec04 .creditAjax_price__off {
  color: inherit;
}
#sec04 .event_area {
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  padding: 20% 0 0;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#sec04 .event_area .specialevent_title {
  padding: 0 10% 2% 5%;
}
#sec04 .event_area .shita {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 6% 0;
}
#sec04 .event_area .shita svg {
  padding-bottom: 1%;
  width: 15px;
  height: 14px;
}
#sec04 .event_area .event_text {
  position: relative;
  color: #f8f8f8;
  text-align: center;
  font-size: 16px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 600;
  margin: 0 auto;
}
#sec04 .event_area .b {
  line-height: 29px;
}
#sec04 .event_area .event_text2 {
  line-height: 22px;
  font-weight: 500;
  font-size: 13px;
}
#sec04 .event_area .blank-line {
  font-size: 12px;
}
#sec04 .event_area .rectangle-parent {
  border-radius: 200px;
  background: linear-gradient(179.09deg, #ceebeb, #ffd2bc), linear-gradient(#d9d9d9, #d9d9d9);
  color: #785c4e;
  font-weight: 500;
  padding: 3% 0%;
  width: 62%;
  margin: 0 auto 5%;
}
#sec04 .nami {
  width: 80%;
  padding: 30% 0;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  #sec04 .nami {
    padding: 23% 0;
  }
}
#sec04 .footer {
  background-color: #785c4e;
  background-image: url("../images/noise.png");
  background-size: 50px 50px;
  text-align: center;
  font-family: "ogg", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#sec04 .footer .sta_cre {
  font-size: 12px;
  line-height: 2;
}
#sec04 .footer .footer_img {
  width: 40%;
  margin: 0% auto 10%;
  padding-top: 30%;
}
@media screen and (min-width: 1025px) {
  #sec04 .footer .footer_img {
    width: 35%;
  }
}
#sec04 .footer .copyright {
  font-size: 9px;
  margin: 5% auto 20%;
}
@media screen and (min-width: 1025px) {
  #sec04 .footer .copyright {
    margin: 5% auto 10vw;
  }
}

@media screen and (min-width: 1025px) {
  .pc_flex {
    display: flex;
  }
  .pc_flex .pc_left, .pc_flex .pc_right {
    width: 31.25vw;
    height: 100vh;
    position: sticky;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 1s ease;
  }
  .pc_flex .pc_left.is-show, .pc_flex .pc_right.is-show {
    opacity: 1;
  }
  .pc_flex .pc_center {
    width: 37.5vw;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 8vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .pc_flex .pc_left {
    top: 72%;
  }
  .pc_flex .pc_left h1 {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s ease;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .pc_flex .pc_left h1 {
    width: 22.9166666667vw;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    position: relative;
  }
}
@media screen and (min-width: 1025px) {
  .pc_flex .pc_left h1.on {
    clip-path: inset(0 0 0 0);
  }
  .pc_flex .pc_left .kirinuki_area {
    padding-top: 10%;
  }
  .pc_flex .pc_left .kirinuki_group {
    gap: 4.1666666667vw;
    margin-right: 4.1666666667vw;
  }
  .pc_flex .pc_left .kirinuki_haru {
    width: 6.9444444444vw;
    aspect-ratio: 233/291;
  }
  .pc_flex .pc_left .kirinuki_arakawa {
    width: 7.6388888889vw;
    aspect-ratio: 82/97;
  }
  .pc_flex .pc_right {
    top: 50%;
    height: 100vh;
  }
  .pc_flex .pc_right .pc_right_content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
  }
  .pc_flex .pc_right .hukidashi {
    margin: 0 16% 0 auto;
    font-size: 1.25vw;
    transform: translateY(-50%) rotate(19deg);
    width: 11vw;
  }
  .pc_flex .pc_right .hukidashi img {
    transform: scaleX(-1) rotate(14.19deg);
  }
  .pc_flex .pc_right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    width: 78%;
    margin: -15% auto -21%;
    flex-wrap: wrap;
  }
  .pc_flex .pc_right ul li {
    width: 40%;
  }
  .pc_flex .pc_right ul li:nth-child(1) {
    transition-delay: 0s;
    margin: -22% 6% 0% auto;
  }
  .pc_flex .pc_right ul li:nth-child(2) {
    transition-delay: 0.2s;
    margin: 17% auto 0 0;
  }
  .pc_flex .pc_right ul li:nth-child(3) {
    transition-delay: 0.4s;
    margin: -12% auto 0 22%;
  }
  .pc_flex .pc_right ul li:hover {
    transform: translateY(-8%);
  }
  .pc_flex .pc_right ul li a:hover {
    opacity: 1;
    transition: 0.6s;
  }
  .pc_flex .pc_right .scroll_area {
    position: absolute;
    left: 6%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5555555556vw;
  }
  .pc_flex .pc_right .scroll {
    font-family: "norman-variable", sans-serif;
    font-variation-settings: "wght" 520;
    color: #CEEBEB;
    font-size: 0.9027777778vw;
    writing-mode: vertical-rl;
    letter-spacing: 0.15em;
  }
  .pc_flex .pc_right .scroll_line {
    display: block;
    width: 1px;
    height: 3.4722222222vw;
    background-color: #CEEBEB;
    transform: scaleY(0);
    transform-origin: top;
    animation: scrollLine 2s ease-in-out infinite;
    margin-right: 3px;
  }
  @keyframes scrollLine {
    0% {
      transform: scaleY(0);
      transform-origin: top;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    50% {
      transform: scaleY(1);
      transform-origin: top;
    }
    50.001% {
      transform-origin: bottom;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom;
      opacity: 0;
    }
  }
}/*# sourceMappingURL=style.css.map */