*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role="list"],ol[role="list"]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

@font-face{
  font-family: 'hannari';
  src: url('../font/HannariMincho-Regular.otf');
}

body,a,p{
  color: #000;
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.8;
}
body{
  position: relative;
  -webkit-overflow-scrolling: touch;
}
ul{
  padding: 0;
  margin: 0 auto;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
img{
  width: 100%;
  height: auto;
}

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.slide-box{
  overflow: hidden;
}

/* アニメーション */
.header-clippath{
  animation: header-clippath;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
  transform-origin: left;
}
@keyframes header-clippath{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0) ;
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.fadezoom{
  animation: fadezoom 3s cubic-bezier(0.22, 1, 0.36, 1) 1s 1 forwards;
  opacity: 0;
  filter: blur(10px);
}
@keyframes fadezoom{
  0% {
    opacity: 0;
  }
  100% {
    filter: blur(0);
  }
  80%, 100% {
    opacity: 1;
  }
}
.fade-out{
  opacity: 1;
}
.fade-out.active,
.fadeout{
  will-change: transform;
  animation: fadeout;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
@keyframes fadeout{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.clippath{
  animation: clippath;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath{
  0%{
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  }
  100%{
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.slide-up{
  opacity: 0;
}
.slide-up.active{
  will-change: transform;
  animation: slideup;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fade{
  opacity: 0;
}
.header-fade,
.fade.active{
  animation: fade;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.fadeUp{
  opacity: 0;
}
.fadeUp.active{
  will-change: transform;
  animation: fadeinUp;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp{
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeDown{
  opacity: 0;
}
.fadeDown.active{
  will-change: transform;
  animation: fadeDown;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeDown{
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeLeft{
  opacity: 0;
}
.fadeLeft.active{
  will-change: transform;
  animation: fadeinLeft;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeinLeft{
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeRight{
  will-change: transform;
  opacity: 0;
}
.fadeRight.active{
  animation: fadeinRight;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}

@keyframes fadeinRight{
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideLeft{
  opacity: 0;
}
.slideLeft.active{
  animation: slideLeft;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideLeft{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideLeft02{
  opacity: 0;
}
.slideLeft02.active{
  animation: slideLeft02;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideLeft02{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideRight{
  opacity: 0;
}
.slideRight.active{
  animation: slideRight;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideRight{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideRight02{
  opacity: 0;
}
.slideRight02.active{
  animation: slideRight02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideRight02{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideUp{
  opacity: 0;
}
.slideUp.active{
  animation: slideUp;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideUp{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
  }
}
.slideDown{
  opacity: 0;
}
.slideDown.active{
  animation: slideDown;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideDown{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.slideDown02{
  opacity: 0;
}
.slideDown02.active{
  animation: slideDown02;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideDown02{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.header-pearl-animation,
.pearl-animation{
  opacity: 0;
}
.pearl-animation.active{
  animation: pearl-animation;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
.pearl-animation.active{
  animation-delay: 1s;
}
@keyframes pearl-animation{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, -100%, 0);
    transform: translate3d(-30%, -100%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);

  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.header-pearl-animation{
  animation: header-pearl-animation;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 1;
}
@keyframes header-pearl-animation{
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, -200%, 0);
    transform: translate3d(-30%, -200%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);

  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.text-slide{
  display: flex;
  padding: 0 0.2em;
  overflow: hidden;
}
.text-slide span{
  display: block;
  margin-right: -0.2em;
  padding-right: 0.2em;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
}
.text-slide.active span{
  transform: translate(0, 0);
  transition-delay: 0.35s;
}
.text-slide.active span {
  transform: translate(0, 0);
  transition-delay: 0.35s;
}
.text-slide span:nth-child(1) {
  transition-delay: 0.35s;
}

.text-slide span:nth-child(2) {
  transition-delay: 0.4s;
}
.text-slide span:nth-child(3) {
  transition-delay: 0.45s;
}
.text-slide span:nth-child(4) {
  transition-delay: 0.5s;
}
.text-slide span:nth-child(5) {
  transition-delay: 0.55s;
}
.text-slide span:nth-child(6) {
  transition-delay: 0.6s;
}
.text-slide span:nth-child(7) {
  transition-delay: 0.65s;
}
.text-slide span:nth-child(8) {
  transition-delay: 0.7s;
}
.text-slide span:nth-child(9) {
  transition-delay: 0.75s;
}
.text-slide span:nth-child(10) {
  transition-delay: 0.8s;
}
.text-slide span:nth-child(11) {
  transition-delay: 0.85s;
}
.text-slide span:nth-child(12) {
  transition-delay: 0.9s;
}
.text-slide span:nth-child(13) {
  transition-delay: 0.95s;
}
.text-slide span:nth-child(14) {
  transition-delay: 1s;
}
.text-slide span:nth-child(15) {
  transition-delay: 1.05s;
}
.text-slide span:nth-child(16) {
  transition-delay: 1.1s;
}
.text-slide span:nth-child(17) {
  transition-delay: 1.1s;
}
.text-slide span:nth-child(18) {
  transition-delay: 1.1s;
}
.text-slide span:nth-child(19) {
  transition-delay: 1.15s;
}
.text-slide span:nth-child(20) {
  transition-delay: 1.2s;
}
.text-slide span:nth-child(21) {
  transition-delay: 1.25s;
}
/* header */
.header{
  align-items: center;
  position: relative;
  margin-bottom: 6%;
}
.header .pearl{
  position: absolute;
  top: 7.5%;
  left: 24%;
  width: 5.8%;
}
.header .textarea{
  width: calc(840 / 2560 * 100%);
  margin: 0 auto;
}
.header .textbox{
  margin-top: 35%;
}
.header .title01{
  width: calc(568.5331 / 840 * 100%);
  margin: 0 auto;
  max-width: none;
  animation-delay: 1s;
}
.header .title02{
  width: calc(575.2211 / 840 * 100%);
  margin: 9% auto 0 15%;
  max-width: none;
  animation-delay: 1.6s;
}
.header .title03{
  width: calc(588.48 / 840 * 100%);
  margin: 8% auto 0 14%;
  animation-delay: 2.2s;
}
.header .title04{
  width: 100%;
  max-width: none;
  animation-duration: 0.5s;
  animation-delay: 3s;
}
.header .slide-box{
  width: calc(588.6499 / 840 * 100%);
  margin: 8% auto 0 14.5%;
}
.header .logo{
  width: calc(130 / 840 * 100%);
  margin: 15.8% auto 0 45%;
}
.header .logo .header-fade{
  animation-delay: 3.1s;
}
.header .photoarea{
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  width: calc(1720 / 2560 * 100%);
}
.header .photobox{
  position: relative;
  margin: -0.5px auto 0 -0.5px;
}
.header .photobox:nth-child(1),
.header .photobox:nth-child(3),
.header .photobox:nth-child(5){
  animation-duration: 4s;
  animation-delay: 3.4s;
}
.header .photobox:nth-child(2),
.header .photobox:nth-child(4),
.header .photobox:nth-child(6){
  animation-duration: 4s;
  animation-delay: 4s;
}
.header .mono{
  position: absolute;
  top: 0;
  left: 0;
}
.header .photobox:nth-child(1) .fadeout,
.header .photobox:nth-child(3) .fadeout,
.header .photobox:nth-child(5) .fadeout{
  animation-delay: 5s;
}
.header .photobox:nth-child(2) .fadeout,
.header .photobox:nth-child(4) .fadeout,
.header .photobox:nth-child(6) .fadeout{
  animation-delay: 6s;
}

/* lead */
.lead{
  position: relative;
  margin: 0 auto 8%;
  text-align: center;
}
.lead .pearl{
  width: 40px;
  margin: 0 auto 10px;
}
.lead p{
  text-align: center;
  font-size: clamp(14px, 1.1vw, 21px);
  letter-spacing: 0.1rem;
  line-height: 2;
}
.lead .main-text{
  font-size: clamp(20px,1.6vw,28px);
  letter-spacing: 0.2rem;
  line-height: 2.6;
}
/* item_box共通 */
.item-box{
  position: relative;
  margin: 0 auto 10rem;
}
.item-box .number-box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.item-box .icon-box{
  position: relative;
  width: calc(45.1069 / 2560 * 100vw);
  overflow: hidden;
}
.item-box .icon-box::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 7%;
  left: 0;
  transition: all .6s;
  transition-delay: 1s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.item-box .icon-box.active::after{
  transform: scale(1, 1);
}
.item-box .icon{
  margin-bottom: 2%;
  padding-bottom: 17%;
}
.item-box .number{
  width: calc(75 / 2560 * 100vw);
}
.item-box .title-area{
  justify-content: center;
}
.item-box .title{
  width: fit-content;
  margin: 1% auto;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(46px, 4vw, 67px);
  letter-spacing: 0;
  line-height: 1;
}
.item-box .text{
  margin-top: 3%;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 21px);
  letter-spacing: 0;
  line-height: 1.8;
}
.item-box .mono-area{
  position: relative;
}
.item-box .mono{
  position: absolute;
  top: 0;
  z-index: 2;
}
.item-box .mono.active{
  animation-duration: 1s;
  animation-delay: 2s;
}
/* no01 */
.no01 .title span:nth-child(-n+5){
  color: #7a0000;
}
.no01 .pearl{
  width: calc(80 / 2560 * 100%);
  margin: 0 auto;
}
.no01 .text{
  position: relative;
  margin-top: -1em;
  z-index: 2;
}
.no01 .photo01{
  width: calc(940 / 2560 * 100%);
  margin: 2% auto 0;
}
.no01 .photo02{
  width: calc(1424 / 2560 * 100%);
  margin-top: 3%;
}
.no01 .photo03{
  width: calc(1064 / 2560 * 100%);
  margin-top: 22%;
  animation-delay: 1s;
}
.no01 .box01{
  justify-content: center;
  align-items: flex-end;
}
.no01 .photo04{
  width: calc(754  / 2560 * 100%);
  margin: -12% 2% 0 0;
  background: #000000;
}
.no01 .photo04 img{
  animation-delay: 1s;
}
.no01 .link-box{
  margin-left: 0;
  margin-right: -17%;
}
.no01 .link-box .main .btn{
  background: #7a0000;
  border: 1px solid #7a0000;
}
/* no02 */
.no02 .pearl-box01{
  position: absolute;
  top: -25%;
  right: 24%;
  width: calc(76 / 970 * 100%);
}
.no02 .content-box{
  justify-content: flex-end;
}
.no02 .textarea{
  position: relative;
  width: fit-content;
  margin: 0 -8% 0 auto;
  z-index: 3;
}
.no02 .title{
  margin-top: 3%;
  line-height: 1.1;
}
.no02 .title span:nth-child(n+5){
  color: #7a0000;
}
.no02 .title span:nth-child(n+11){
  color: #000000;
}
.no02 .box01{
  width: calc(1264 / 2560 * 100%);
  margin-top: 16%;
}
.no02 .photo01{
  width: calc(796 / 1264 * 100%);
  margin: 12% 12% 0 auto;
  background: #000000;
}
.no02 .photo01 img{
  animation-delay: 1s;
}
.no02 .photo02{
  width: calc(1296 / 2560 * 100%);
}
.no02 .box02{
  position: relative;
  width: calc(1432 / 2560 * 100%);
  margin: 7% auto 0;
}
.no02 .photo03 img{
  border: 0.75rem solid #000000;
}
.img-wrap {
  overflow: hidden;
  position: relative;
}
.img-wrap:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.img-wrap.active:before {
  animation: img-wrap 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
  background: #000000;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
.img-wrap.active:after {
  animation: img-wrap2 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1s;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-wrap2 {
  100% {
    transform: translateX(100%);
  }
}
.no02 .pearl-box02{
  position: absolute;
  top: -12%;
  right: 1rem;
  width: calc(46.271 / 1432 * 100%);
}
.no02 .link-box{
  margin: 2% auto 0 2%;
}
.no02 .link-box .main .btn{
  background: #745326;
  border: 1px solid #745326;
}
/* no03 */
.no03 .textarea{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.no03 .pearl-box{
  position: absolute;
  top: 9%;
  left: -4.5%;
  width: calc(98.1155 / 963.3433 * 100%);
  margin: 0 auto;
}
.no03 .title{
  margin-top: 3%;
}
.no03 .title span:nth-child(-n+5){
  color: #7a0000;
}
.no03 .text{
  position: relative;
  margin-top:3%;
  z-index: 2;
}
.no03 .box01{
  gap: 0 0.25%;
  margin-top: 1.5%;
}
.no03 .photo02{
  background: #000000;
  animation-delay: 0.2s;
}
.no03 .photo02 img{
  animation-delay: 0.6s;
}
.no03 .link-box{
  margin: 1.25% auto 0;
}
.no03 .link-box .main .btn{
  background: #c5ab82;
  border: 1px solid #c5ab82;
}
/* no04 */
.no04 .pearl-box01{
  position: absolute;
  top: -10%;
  right: 38%;
  width: calc(47.8859 / 1069 * 100%);
}
.no04 .content-box{
  flex-direction: row-reverse;
  justify-content: center;
  margin: 0 auto;
  gap: 4%;
}
.no04 .textarea{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(1069 / 2560 * 100%);
  margin-top: 12%;
}
.no04 .text-slide{
  padding-left: 0;
}
.no04 .title{
  margin: 3% auto 0 0;
  line-height: 1.1;
}
.no04 .title01 span:nth-child(-n+5){
  color: #7a0000;
}
.no04 .title02{
  margin: 0 auto 0 0.9em;
}
.no04 .text{
  text-align: left;
  margin-top: 3%;
}
.no04 .text span{
  margin-left: 1.4em;
}
.no04 .photo01{
  width: calc(1068 / 2560 * 100%);
}
.no04 .photo02{
  position: relative;
  width: calc(820 / 1069 * 100%);
  margin: 20% 0 0 10%;
  z-index: 10;
}
.no04 .box02{
  position: relative;
  width: calc(1480 / 2560 * 100%);
  margin: -9% auto 0 13%;
}
.no04 .pearl-box02{
  position: absolute;
  top: -14%;
  left: 34%;
  width: calc(100 / 1480 * 100%);
}
.no04 .photo03{
  background: #000000;
}
.no04 .photo03 img{
  animation-delay: 1s;
}
.no04 .link-box{
  margin: 2% 0 0 auto;
}
.no04 .link-box .main .btn{
  background: #000000;
  border: 1px solid #000000;
}
/* no05 */
.no05 .textarea{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.no05 .pearl-box01{
  position: absolute;
  bottom: 16%;
  right: -4.5%;
  width: calc(170 / 1180.6738 * 100%);
  margin: 0 auto;
}
.no05 .title{
  margin-top: 3%;
}
.no05 .title span:nth-child(n+5){
  color: #7a0000;
}
.no05 .title span:nth-child(n+11){
  color: #000000;
}
.no05 .text{
  position: relative;
  margin-top: 3%;
  z-index: 2;
}
.no05 .flex-box01{
  justify-content: flex-end;
  gap: 3%;
  margin-top: 3%;
}
.no05 .box01{
  width: calc(1040 / 2560 * 100%);
}
.no05 .photo02{
  width: calc(758 / 1040 * 100%);
  margin: 14% 3% 0 auto;
  border: 0.75rem solid #000000;
  background: #000000;
}
.no05 .photo02 img{
  animation-delay: 1s;
}
.no05 .photo03{
  position: relative;
  width: calc(1220 / 2560 * 100%);
  margin-top: 19%;
}
.no05 .pearl-box02{
  position: absolute;
  top: -8%;
  right: 25%;
  width: calc(50.0032 / 1220 * 100%);
  margin: 0 auto;
}
.no05 .pearl-box02 .pearl-animation.active{
  animation-delay: 2.6s;
}
.no05 .box02{
  position: relative;
  width: calc(1286 / 2560 * 100%);
  margin: 4% auto 0;
}
.no05 .pearl-box03{
  position: absolute;
  top: 46%;
  left: -24.5%;
  width: calc(76 / 1286 * 100%);
  margin: 0 auto;
}
.no05 .link-box{
  margin: 3% 0 0 auto;
}
.no05 .link-box .main .btn{
  background: #9d80a2;
  border: 1px solid #9d80a2;
}

/* カート */
.link-box{
  width: 23rem;
  min-width: 360px;
}
.link-box .main{
  padding-bottom: 3%;
  border-bottom: 1px solid #6e6e6e;
}
.link-box .mix{
  padding-top: calc(3% +  0.25em);
}
.link-box p{
  text-align: left;
  line-height: 1.8;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.25em;
}
.cart-title{
  position: relative;
  width: 60%;
  font-size: clamp(14px, 0.95vw, 16px);
  text-transform: uppercase;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: clamp(13.5px, 1vw, 21px);
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 0.9vw, 21px);
  margin: 0 0.5rem 1px 0;
}
.cart-yen.price-space img{
  margin-right: 1rem;
}
.cart-yen span{
  margin: 0 0 -4px 5px;
  font-size: clamp(10px, 0.6vw, 12px);
}
.cart-btm .btn{
  padding: 0.4% 4% 0.8%;
  margin: 0 0 0 10px;
  color: #fff;
  font-size: clamp(9px, 0.6vw, 12px);
  font-family: 'hannari';
}
.main .cart-btm .btn{
  box-sizing: border-box;
  border: 1px solid #000000;
  background: #000000;
  color: #fff;
}
.mix .cart-btm .btn{
  box-sizing: border-box;
  border: 1px solid #808080;
  background: #fff;
  color: #808080;
}
.btn-arrow{
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  font-family: 'hannari';
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.cart-btm:hover .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.btn-arrow img *{
  stroke-width: 5;
  stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -1rem;
}

/*banner-block*/
.banner-block{
  width: 100%;
  max-width: 960px;
  margin: 0 auto 3%;
  position: relative;
  z-index: 1;
}
.all-btn{
  margin-bottom: 3%;
}
.c-btn01{
  width: 70%;
  margin: 0 auto 2% auto;
  border: 1px solid #ccc;
  display: block;
  transition: 0.6s ease-in-out;
}
.c-btn01:hover{
  transition: 0.6s ease-in-out;
  border: 1px solid #000;
}
.all-btn .c-btn01{
  border: 1px solid transparent;
}
.all-btn .c-btn01:hover{
  border: 1px solid transparent;
  opacity: 0.8;
}

.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4% auto;
}
.end-box .txt{
  font-size: 13px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
}
.pickup{
  width: calc(750 / 2560 * 100%);
  min-width: 480px;
  text-align: center;
  margin: 0 auto;
}
.pickup p{
  font-size: clamp(26px, 2.4vw, 40px);
  font-family: meno-banner, serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.pickup img{
  display: inline-block;
  margin: 0 auto 20%;
  transition: 0.6s ease-in-out;
}
.pickup img:hover{
  opacity: 0.8;
}

.footer{
  color: #000;
  letter-spacing: 0.3em;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer a{
  transition: 0.3s ease-in-out;
}
.footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  min-width: 36px;
  margin: auto;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
#pagetop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}

@media screen and (min-width:1040px) and (max-width:1400px){
  .item_box{
    width: 92%;
  }
}
@media screen and (min-width:768px) and (max-width:1039px){
  .item_box{
    width: 90%;
  }
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }
  /* アニメーション */
  .fade.active{
    animation-delay: 0s;
  }
  .header-pearl-animation{
    animation-duration: 2s;
    animation-delay: 0.2s;
  }
  .pearl-animation.active{
    animation-delay: 1s;
  }
  @keyframes pearl-animation{
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-30%, -200%, 0);
      transform: translate3d(-30%, -200%, 0);
    }
    60% {
      -webkit-transform: translate3d(0, 10%, 0);
      transform: translate3d(0, 10%, 0);

    }
    100%{
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .item-box .mono.active{
    animation-delay: 1s;
  }
  .slideRight.active,
  .slideLeft.active{
    animation-duration: 1s;
  }
  /* header */
  .header{
    flex-direction: column-reverse;
    margin-bottom: 12%;
  }
  .header .pearl{
    top: auto;
    bottom: 12%;
    left: auto;
    right: 9%;
    width: calc(186.5936 / 1280 * 100%);
  }
  .header .photoarea,
  .header .textarea{
    width: 100%;
  }
  .header .textbox{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-top: 6%;
  }
  .header .title-box{
    width: calc(758 / 1280 * 100%);
  }
  .header .title01{
    width: calc(568.3392 / 758 * 100%);
  }
  .header .title02{
    width: calc(580.298 / 758 * 100%);
    margin-left: 11%;
  }
  .header .title03{
    width: calc(588.2795 / 758 * 100%);
    margin-left: 10%;
  }
  .header .textbox .slide-box{
    width: calc(522 / 1280 * 100%);
    margin: 0;
  }
  .header .title04{
    width: calc(428.1577 / 522 * 100%);
  }
  /* lead */
  .lead{
    margin: 22% auto;
  }
  .lead .pearl{
    width: calc(60 / 1280 * 100%);
  }
  .lead .header_logo{
    width: 18%;
    margin: 16% auto 8%;
  }
  .lead .main-text{
    line-height: 1.6;
  }
  .lead .lead-text{
    width: 98%;
    margin: 6% auto;
    text-align: center;
    font-size: 0.85rem;
    line-height: 2.2;
  }
  /* itemエリア   */
  .item-box{
    width: 100%;
    margin-bottom: 30%;
    overflow: hidden;
  }
  .item-box .number-box{
    align-items: center;
  }
  .item-box .icon-box{
    width: calc(65.4951 / 1280 * 100%);
    margin-top: 0.3em;
  }
  .item-box .number{
    width: calc(120 / 1280 * 100vw);
  }
  .item-box .title{
    margin: 3% auto 2%;
  }
  .item-box .title-area p{
    line-height: 2;
  }
  .item-box .text{
    margin-top: 0;
  }
  /* no01 */
  .no01 .pearl{
    width: calc(96 / 1280 * 100%);
  }
  .no01 .text{
    margin-top: -1.1em;
  }
  .no01 .photo01{
    width: calc(1080 / 1280 * 100%);
    margin-top: 6%;
  }
  .no01 .photo02{
    width: 100%;
    margin-top: 10%;
  }
  .no01 .photo03{
    width: calc(1000 / 1280 * 100%);
    margin: 7% 0 0 auto;
  }
  .no01 .photo04{
    width: calc(754 / 1280 * 100%);
    margin: 10% auto 0 0;
  }
  /* no02 */
  .no02 .box01,
  .no02 .box02{
    width: 100%;
  }
  .no02 .box01{
    margin-top: 0;
  }
  .no02 .textarea{
    width: 100%;
    margin: 0 auto;
  }
  .no02 .box03{
    position: relative;
  }
  .no02 .pearl-box01{
    top: 7%;
    right: 27%;
    width: calc(90 / 1280 * 100%);
  }
  .no02 .pearl-box02{
    top: 22%;
    right: 15%;
    width: calc(46.271 / 1280 * 100%);
  }
  .no02 .pearl-box02 img{
    animation-delay: 1.6s;
  }
  .no02 .title02{
    margin-top: -2%;
  }
  .no02 .title02 span:nth-child(n+5){
    color: #000;
  }
  .no02 .photo01{
    width: calc(830 / 1280 * 100%);
    margin: 22% auto 0 8%;
  }
  .no02 .photo02{
    width: 100%;
    margin-top: 6%;
  }
  .no02 .photo03{
    margin-top: 12%;
  }
  .no02 .photo03 img{
    border:solid #000;
    border-width: 0.65rem 0;
  }
  .no02 .photo03 .mono.active{
    animation-delay: 2s;
  }
  /* no03 */
  .no03 .pearl-box{
    top: 2%;
    left: 11.5%;
    width: calc(117.7386 / 1280 * 100%);
  }
  .no03 .textarea{
    width: 100%;
  }
  .no03 .title02 span:nth-child(-n+5){
    color: #000;
  }
  .no03 .box01{
    margin-top: 6%;
  }
  .no03 .photo02{
    width: calc(900 / 1280 * 100%);
    background: #fff;
    margin: 12% auto 0;
  }
  /* no04 */
  .no04{
    margin-top: -10%;
  }
  .no04 .content-box{
    flex-direction: column;
  }
  .no04 .textarea{
    width: 100%;
  }
  .no04 .pearl-box01{
    top: -7%;
    right: 14%;
    width: calc(80 / 1280 * 100%);
  }
  .no04 .number-box {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 10%;
  }
  .no04 .title{
    margin-left: 10%;
  }
  .no04 .title02 {
    margin-top: -2%;
    margin-left: calc(10% + 0.8em);
  }
  .no04 .text{
    margin-left: 10%;
  }
  .no04 .photo01{
    width: calc(1180 / 1280 * 100%);
    margin: 6% auto 0;
  }
  .no04 .photo02{
    width: calc(1000 / 1280 * 100%);
    margin: 10% 0 0 auto;
  }
  .no04 .box02{
    width: 100%;
    margin: 24% auto 0;
  }
  .no04 .pearl-box02{
    top: -13%;
    left: 16%;
    width: calc(110 / 1280 * 100%);
  }
  /* no05 */
  .no05{
    margin-top: -10%;
    padding-top: 10%;
  }
  .no05 .pearl-box01{
    bottom: 50%;
    right: 3.5%;
    width: calc(190 / 1280 * 100%);
  }
  .no05 .pearl-box04{
    position: absolute;
    top: -13%;
    left: 16%;
    width: calc(69.999 / 1280 * 100%);
  }
  .no05 .textarea{
    width: 100%;
  }
  .no05 .title02 span:nth-child(n+5){
    color: #000;
  }
  .no05 .box01,
  .no05 .box02{
    width: 100%;
  }
  .no05 .photo02{
    width: calc(885.884 / 1280 * 100%);
    margin: 12% auto 0 6%;
    border-width: 0.65rem;
  }
  .no05 .photo03{
    width: calc(1080 /1280 * 100%);
    margin: 8% 0 0 auto;
  }
  .no05 .pearl-box03{
    top: -62%;
    left: 82.5%;
    width: calc(76 / 1286 * 100%);
  }
  .no05 .photo04{
    margin-top: 12%;
  }
  /* リンクエリア */
  div[class*="no0"] .link-box{
    width: 86%;
    min-width: auto;
    margin: 8% auto 0;
  }
  .link-box .cart-btm{
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .link-box .cart-title{
    width: 30%;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .link-box .cart-yen{
    width: 46%;
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .link-box .cart-yen span{
    margin-left: 0.3em;
    margin-bottom: 0;
    font-size: 9px;
  }
  .link-box .cart-yen img{
    width: 0.95rem;
    margin: 0 0.5rem 0.15em;
  }
  .link-box .cart-yen.price-space img{
    margin-right: 1.07rem;
  }
  .link-box .cart-btm .btn{
    margin-left: 0.3em;
    font-size: 11px;
    line-height: 1em;
    padding: 1.2% 4% 1.3%;
    margin: 0 0 0 10px;
    font-family: "Arial", "メイリオ", Arial, sans-serif;
  }
  .link-box .link-line{
    margin: 4% 0;
  }

  .banner-block{
    margin: 0 auto 8%;
  }
  .all_btn a{
    width: 100%;
    padding: 2em 0;
    letter-spacing: 0.1rem;
  }
  .all_btn a::before{
    top: auto;
    bottom: 0.3em;
    right: 0.75em;
    width: 2em;
  }

  .end-box{
    margin-bottom: 14%;
  }
  .pickup{
    width: calc(1170 / 1280 * 100%);
    min-width: auto;
  }
  .c-btn01{
    width: 79%;
  }

  .footer{
    margin-bottom: 3%;
  }

  #pagetop{
    bottom: 0;
    right: 0;
    width: 40px;
  }

}
