@font-face {
  font-family: "Audrey-Normal";
  src: url("../font/Audrey-Normal.otf") format("opentype");
}
@font-face {
  font-family: "Cardo";
  src: url("../font/Cardo.otf") format("opentype");
}
:root{
  --color01-1: #5D92C0;
  --color01-2: #343254;
  --color02: #8E7A9A;
  --color03: #5B5B5B;
  --color04: #A68175;
  --font-shippori: "Shippori Mincho B1", serif;
  --font-ZenKakuGothicNew: "Zen Kaku Gothic New", sans-serif;
  --font-NotoSansJP: "Noto Sans JP", sans-serif;
  --font-Cardo: "Cardo", serif;
  --font-Audrey-Normal: "Audrey-Normal", serif;
}

*,*::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%;height: auto;vertical-align: top;}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

*:focus {
  outline: none;
}

body,a,p{
  color: #000000;
  font-family: var(--font-shippori);
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  line-height: 2.2;
  letter-spacing: 0.08rem;
  -webkit-font-smoothing: antialiased;
}
body{
  position: relative;
  background: #F1EBE2;
}
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
.slide-box{
  max-width: 100%;
  overflow: hidden;
}
.flex-box{
  display: flex;
  justify-content: center;
}
.flex-reverse{
  flex-direction: row-reverse;
}

/* アニメーション */
.fade{
  opacity: 0;
}
.fade.active{
  animation-name: fade;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.clippath-left{
  opacity: 0;
}
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: clippath;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
@keyframes clippath-left{
  0% {
    opacity: 1;
    filter: blur(6px);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-bottom{
  opacity: 0;
}
.clippath-bottom.active{
  animation-name: clippath-bottom;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-bottom{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-top{
  opacity: 0;
}
.clippath-top.active{
  animation-name: clippath-top;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes clippath-top{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.slideup{
  opacity: 0;
}
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 60%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slidedown{
  opacity: 0;
}
.slidedown.active{
  animation: slidedown;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slidedown{
  0% {
    opacity: 0;
    transform: translate(0, -30%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideleft{
  opacity: 0;
}
.slideleft.active{
  animation: slideleft;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 2.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes slideleft{
  0% {
    opacity: 0;
    transform: translate(-60%, 0) scale(0.4);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.slideright{
  opacity: 0;
}
.slideright.active{
  animation: slideright;
  animation-duration: 2.4s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes slideright{
  0% {
    opacity: 0;
    transform: translate(30%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.zoomin{
  opacity: 0;
}
.zoomin.active{
  animation: zoomin;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes zoomin{
  0%{
    opacity: 1;
    transform: scale(1.2);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
.slidemask{
  opacity: 1;
}
.slidemask.active{
  animation: slidemask;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes slidemask{
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
/* header------------------- */
.header{
  position: relative;
  aspect-ratio: 1280 / 720;
  background: var(--color01-1);
  overflow: hidden;
}
.header .image{
  width: 100%;
}
.header .photo-box{
  justify-content: space-between;
  width: calc(1222 / 1280 * 100%);
  margin: 2% auto 0;
}
.header .photo{
  width: calc(390 / 1222 * 100%);
  overflow: hidden;
}
.header .title01{
  position: absolute;
  top: 61%;
  left: 25%;
  width: calc(628.3663 / 1280 * 100%);
}
.header .title01 .image{
  animation-duration: 1s;
  animation-delay: 1.8s;
}
.header .title02{
  position: absolute;
  top: 79%;
  left: 30.25%;
  width: calc(501.1462 / 1280 * 100%);
  animation-duration: 0.6s;
  animation-delay: 2.2s;
}
.header .title03{
  position: absolute;
  top: 92%;
  left: 50%;
  translate: -50% 0;
  width: calc(220.2412 / 1280 * 100%);
}
.header .title03 .image{
  animation-duration: 0.4s;
  animation-delay: 2.2s;
}
.header .icon{
  position: absolute;
  top: 75%;
  right: 8%;
  width: calc(149 / 1280 * 100%);
}
.header .logo{
  position: absolute;
  top: 3%;
  right: 2%;
  width: calc(59.5731 / 1280 * 100%);
}
/* lead */
.lead{
  position: relative;
  padding: 3% 0 2%;
  text-align: center;
}
.lead::after{
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background: var(--color01-1);
  position: absolute;
  left: 50%;
  bottom: -100px;
  opacity: 0.5;
}
.lead .title-box{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.lead .text{
  margin-top: 1%;
  font-family: var(--font-ZenKakuGothicNew);
  font-size: calc(15 / 1280 * 100vw);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
}
.lead .title{
  margin-top: 0.5em;
  color: var(--color01-1);
  font-size: calc(23 / 1280 * 100vw);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.lead .title span{
  font-family: var(--font-ZenKakuGothicNew);
}
.lead .title-box .line{
  position: absolute;
  bottom: 0;
  left: 44%;
  width: calc(101.5721 / 1280 * 100vw);
}
/* メインアイテム--------------------------- */
.mainitem{
  display: flex;
  flex-direction: column;
  margin-top: 8%;
}
.mainitem .image{
  width: 100%;
}
.mainitem .title01{
  position: relative;
  width: calc(342.0167 / 1280 * 100%);
  margin-inline: auto;
  z-index: 2;
}
.mainitem .title02{
  position: relative;
  width: calc(282.3843 / 1280 * 100%);
  margin: 0.5% auto 0;
  z-index: 2;
}
.mainitem .photo-box{
  position: relative;
  width: calc(632.6203 / 1280 * 100%);
  margin: -5.25% auto 0;
}
.mainitem .photo-box .icon .image{
  animation-delay: 0.4s;
}
.mainitem .photo-box .icon01{
  position: absolute;
  top: 26%;
  left: -23.5%;
  width: calc(243.469 / 632.6203 * 100%);
  z-index: 2;
}
.mainitem .photo-box .icon02{
  position: absolute;
  top: 19%;
  right: -10.5%;
  width: calc(288.2061 / 632.6203 * 100%);
  z-index: 2;
}
.mainitem .photo-box .icon03{
  position: absolute;
  top: 69%;
  left: -8.5%;
  width: calc(235.0732 / 632.6203 * 100%);
  z-index: 2;
}
.mainitem .photo-box .icon04{
  position: absolute;
  top: 49%;
  right: -16%;
  width: calc(203.0603 / 632.6203 * 100%);
  z-index: 2;
}
.mainitem .link-box{
  position: relative;
  width: calc(281.0576 / 1280 * 100%);
  margin: -10.5% 22% 0 auto;
  z-index: 2;
}
.mainitem .link-box .main{
  border: none;
}
.mainitem .cart-btm .btn{
  background: var(--color01-1);
  border: 1px solid var(--color01-1);
}
/* リンクボックス */
.link-box{
  width: calc(315.4244 / 470 * 100%);
  margin: 4% auto 0;
}
.link-box .main{
  padding-bottom: 1em;
  border-bottom: 1px solid #8e8e8f;
}
.link-box .other{
  padding-top: 4%;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.3em;
  color: #fff;
}
.cart-title{
  position: relative;
  font-size: calc(14 / 1280 * 100vw);
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-title span{
  margin-left: 0.5em;
  font-size: calc(12 / 1280 * 100vw);
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  line-height: 1.4;
  font-size: calc(14 / 1280 * 100vw);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: 1em;
  margin: 0 0.5em 0 0;
}
.cart-yen .size-space{
  margin-right: 1.06em;
}
.cart-yen span{
  margin: 0 0 -2px 2%;
  font-size: calc(9 / 1280 * 100vw);
}
.cart-btm .btn{
  margin: 0 0 0 0.5%;
  padding: 0.4em 0.8em;
  border: 1px solid #8E8E8E;
  color: #8E8E8E;
  font-family: var(--font-Cardo);
  font-size: calc(10 / 1280 * 100vw);
  line-height: 1em;
}
.main .cart-btm .btn{
  color: #fff;
}
.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;
  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(-0.5em, 0, 0);
  transform: translate3d(-0.5em, 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;
  -webkit-text-stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -1em;
}
/* style-wrapper -------------------------*/
.style-wrapper{
  position: relative;
}
.style-wrapper .image{
  width: 100%;
}
.style-wrapper .photo-box,
.style-wrapper .photo{
  position: relative;
}
.style-wrapper .title-box{
  display: flex;
  flex-direction: column;align-items: center;
}
.style-wrapper .title-number{
  width: calc(139.3738 / 1280 * 100vw);
}
.style-wrapper .name-en{
  margin-top: 9%;
  text-align: center;
  font-family: var(--font-Audrey-Normal);
  font-size: calc(45.5389 / 1280 * 100vw);
  line-height: 1.2;
}
.style-wrapper .name-ja{
  position: relative;
  margin-top: -1%;
  font-family: var(--font-ZenKakuGothicNew);
  font-size: calc(14.6871 / 1280 * 100vw);
  font-weight: bold;
  letter-spacing: -0.1em;
  line-height: 1.2;
  white-space: nowrap;
}
.style-wrapper .name-ja span{
  letter-spacing: 0.1em;
}
.style-wrapper .name-ja::after{
  content: "";
  display: block;
  width: 5.25em;
  height: 1px;
  margin-top: 16%;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.item01-1 .name-ja::after{
  background: var(--color01-1);
}
.item01-2 .name-ja::after{
  background: var(--color01-2);
}
.item02 .name-ja::after{
  background: var(--color02);
}
.item03 .name-ja::after{
  background: var(--color03);
}
.item04 .name-ja::after{
  background: var(--color04);
}
.item01-1 .name-en,
.item01-1 .name-ja{
  color: var(--color01-1);
}
.item01-2 .name-en,
.item01-2 .name-ja{
  color: var(--color01-2);
}
.item02 .name-en,
.item02 .name-ja{
  color: var(--color02);
}  
.item03 .name-en,
.item03 .name-ja{
  color: var(--color03);
}  
.item04 .name-en,
.item04 .name-ja{
  color: var(--color04);
}
.style-wrapper .titletext-box{
  margin-top: 13%;
}
.style-wrapper .titletext01{
  text-align: center;
  font-family: var(--font-NotoSansJP);
  font-size: calc(20 / 1280 * 100vw);
  font-weight: 500;
  line-height: 1.7;
}
.style-wrapper .titletext02{
  width: fit-content;
  margin: 4% auto 0;
  padding: 0.2em 0.25em 0.3em;
  background: #fff;
  font-size: calc(30.1451 / 1280 * 100vw);
  font-weight: 500;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.style-wrapper .titletext03{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 1;
}
.style-wrapper .titletext03 .titletext02{
  margin-top: 2%;
  margin-right: 0.3em;
}
.style-wrapper .title-box .line .image{
  animation-duration: 0.8s;
  animation-delay: 0s;
}
.style-wrapper .item-box{
  justify-content: space-between;
  width: calc(970 / 1280 * 100%);
  margin-inline: auto;
}
.style-wrapper .item-box .inner{
  width: calc(470 / 970 * 100%);
}
.style-wrapper .item-box .inner .photo{
  position: relative;
}
.style-wrapper .item-box .inner .photo-link .slideleft{
  animation-duration: 1.8s;
}
.style-wrapper .item-box .inner .photo-link .slideright{
  animation-delay: 0.2s;
}
.style-wrapper .item-box .inner .photo-link .slidedown{
  animation-duration: 1.8s;
  animation-delay: 0.2s;
}
.style-wrapper .photo .mask{
  display: block;
  width: 100%;
  height: 100%;
  background: #F1EBE2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.style-wrapper .item-box .inner02{
  width: calc(390 / 970 * 100%);
  margin-left: calc((470 - 390) / 970 * 100%);
}
.style-wrapper .item-box .inner02 .photo{
  width: calc(370 / 390 * 100%);
  margin: 20% 0 0 auto;
}
.style-wrapper .item-box .inner02 .photo .image{
  border-radius: 20px;
}
.style-wrapper .item-box .inner .icon{
  position: absolute;
  width: calc(117.3205 / 1280 * 100vw);
}
.style-wrapper .item-box .inner02 .icon{
  top: -7%;
  left: -11%;
}
.style-wrapper .item-box .inner03 .icon{
  top: -5%;
  left: -7%;
}
.style-wrapper .item-box .inner .icon.slideleft{
  animation-duration: 1s;
  animation-delay: 0s;
}
.style-wrapper .item-box .inner03 .text{
  width: calc(390 / 470 * 100%);
  margin: 6% auto 0 8%;
}
.style-wrapper .item-box .inner02 .link-box{
  width: calc(313.8697 / 390 * 100%);
}  
.style-wrapper .item-box .inner03 .link-box{
  width: calc(315.4245 / 470 * 100%);
  margin-top: 8%;
  margin-left: 8%;
}
.style-wrapper .item-box .link-box .main02{
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.style-wrapper .item-box .text{
  font-size: calc(16 / 1280 * 100vw);
  letter-spacing: 0;
  line-height: 2;
}
.item01-1 .link-box .main .btn{
  background: var(--color01-1);
  border: var(--color01-1);
}
.item01-2 .link-box .main .btn{
  background: var(--color01-2);
  border: var(--color01-2);
}
.item02 .link-box .main .btn{
  background: var(--color02);
  border: var(--color02);
}
.item03 .link-box .main .btn{
  background: var(--color03);
  border: var(--color03);
}
.item04 .link-box .main .btn{
  background: var(--color04);
  border: var(--color04);
}
/* item01--------------------------------- */
.item01{
  margin-top: 10%;
}
/* item01-1------------------------------- */
.item01-1 .item-box{
  margin-top: 4%;
}
.item01-1 .title-box{
  position: absolute;
  top: 9.5%;
  right: 19.5%;
  z-index: 1;
}
.item01-1 .title-box .line{
  width: calc(252.3656 / 1280 * 100vw);
  margin: -3% auto 0 3%;
}
.item01-1 .inner02{
  margin-top: 3%;
}
/* item01-2------------------------------- */
.item01-2{
  margin-top: 6%;
}
.item01-2 .item-box{
  padding-top: 6%;
}
.item01-2 .title-box{
  align-items: self-start;
  margin-top: 15%;
}
.item01-2 .titletext-box{
  position: relative;
  left: 2%;
  width: fit-content;
  margin: 0 auto;
}
.item01-2 .title-box .titletext01{
  text-align: left;
}
.item01-2 .title-box .titletext02{
  margin-left: 0;
}
.item01-2 .title-box .line{
  width: calc(228.1228 / 1280 * 100vw);
  margin: -4% auto 0 1%;
}
.item01-2 .photo02{
  position: relative;
  margin-top: 12%;
}
.item01-2 .text-img{
  position: absolute;
  top: 8.5%;
  left: 13%;
  width: calc(56.6461 / 1280 * 100vw);
}
/* item02--------------------------------- */
.item02{
  margin-top: 10%;
}
.item02 .title-box .name-en{
  margin-top: 8%;
}
.item02 .title-box .titletext-box{
  margin-top: 8%;
}
.item02 .title-box .line{
  width: calc(350.8783 / 1280 * 100vw);
  margin: -2% auto 0 1%;
}
.item02 .photo02{
  position: relative;
  margin-top: 10%;
}
.item02 .text-img{
  position: absolute;
  top: 8.5%;
  left: 11%;
  width: calc(56.6461 / 1280 * 100vw);
}
.item02 .inner03{
  margin-top: 3%;
}
/* item03--------------------------------- */
.item03{
  margin-top: 12%;
}
.item03 .title-box .name-en{
  margin-top: 6%;
}
.item03 .title-box .titletext-box{
  margin-top: 8%;
}
.item03 .title-box .line{
  width: calc(200.5529 / 1280 * 100vw);
  margin: -3% auto 0;
}
.item03 .photo02{
  position: relative;
  margin-top: 10%;
}
.item03 .text-img{
  position: absolute;
  top: 8.5%;
  left: 11%;
  width: calc(56.6461 / 1280 * 100vw);
}
.item03 .inner03{
  margin-top: 3%;
}
.item03 .item-box .inner03 .text,
.item03 .item-box .inner03 .link-box{
  margin-left: auto;
}
/* item04--------------------------------- */
.item04 .item-box{
  margin-top: 10%;
}
.item04 .title-box{
  position: relative;
  right: 16%;
}
.item04 .title-box .name-en{
  margin-top: 9%;
}
.item04 .title-box .titletext-box{
  margin-top: 10%;
}
.item04 .title-box .line{
  width: calc(232.3657 / 1280 * 100vw);
  margin: -3% auto 0 5%;
}
.item04 .inner02{
  margin-top: 3%;
}
.item04 .item-box .inner02 .photo{
  margin-top: 28%;
}
/* archive ---------------------------------*/
.archive{
  margin-top: 12%;
}
.archive .title{
  text-align: center;
  font-family: var(--font-Audrey-Normal);
  font-size: calc(36.4255 / 1280 * 100vw);
  line-height: 1;
}
.archive .container{
  position: relative;
  width: calc(742 / 1280 * 100%);
  margin: 0 auto;
}
.archive .swiper{
  margin-top:2%;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 36%;
  translate: 0 0;
  width: calc(12.6768 / 1280 * 106vw);
  height: 20%;
  margin: auto;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background-color: transparent;
}
.swiper-button-prev{
  content: url(../img/slide-arrow02.svg);
  left: -4%;
}
.swiper-button-next{
  content: url(../img/slide-arrow01.svg);
  right: -4%;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
.archive .day{
  margin-top: 3%;
  font-family: var(--font-Audrey-Normal);
  font-size: calc(14 / 1280 * 100vw);
  text-align: center;
  line-height: 1;
}
/*banner-block------------------------------*/
.banner-block{
  width: 100%;
  max-width: 1200px;
  margin: 5% auto 0;
  position: relative;
  z-index: 1;
}
.c-btn01{
  width: 56%;
  margin: 0 auto 2% auto;
  border: 1px solid #666;
  display: block;
  transition: 0.6s ease-in-out;
}
.c-btn01:hover{
  border-color: #000;
}
.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 8% auto 0;
}
.end-box .txt{
  font-size: calc(12 / 1280 * 100vw);
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}
/* footer */
.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%;
  margin: 3% auto 0;
}
.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;
}
.pagetop .image{
  width: 100%;
  vertical-align:top;
}

@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  /* head-block-------------------- */
  .head-block{
    padding-bottom: 12%;
  }
  .head-block .back-graoud{
    height: 100%;
  }
  .head-block .back-graoud .image{
    height: 100%;
    width: auto;
    object-fit: cover;
  }
  /* header------------------------ */
  .header{
    aspect-ratio: 375 / 667;
  }
  .header .logo{
    display: none;
  }
  .header .photo-box{
    position: relative;
    width: 100%;
    margin-top: 3%;
  }
  .header .photo01{
    width: calc(234 / 375 * 100%);
  }
  .header .photo02{
    top: 4.5%;
    right: 0;
    left: auto;
    width: calc(132 / 375 * 100%);
    height: fit-content;
  }
  .header .photo03{
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(132 / 375 * 100%);
    height: fit-content;
  }
  .header .title01{
    top: 74.5%;
    left: 6.5%;
    width: calc(321.1817 / 375 * 100%);
    z-index: 2;
  }
  .header .title01 .image{
    animation-duration: 0.8s;
    animation-delay: 1.4s;
  }
  .header .title02{
    top: 85.75%;
    left: 15%;
    width: calc(252.5763 / 375 * 100%);
    z-index: 2;
  }
  .header .title03{
    top: 94%;
    left: 50%;
    translate: -50% 0;
    width: calc(132.1396 / 375 * 100%);
    z-index: 2;
  }
  .header .icon{
    top: 68%;
    right: 3%;
    width: calc(86.05 / 375 * 100%);
    animation-duration: 1.8s;
  }
  /* lead */
  .lead{
    margin-top: 10%;
  }
  .lead::after{
    height: 70px;
    bottom: -80px;
  }
  .lead .logo{
    width: calc(66 / 375 * 100%);
    margin-inline: auto;
  }
  .lead .logo .image{
    width: 100%;
  }
  .lead .title-box{
    margin-top: 5%;
  }
  .lead .text{
    margin-top: 4%;
    font-size: calc(15 / 375 * 100vw);
    line-height: 2.2;
  }
  .lead .title{
    font-size: calc(24 / 375 * 100vw);
    letter-spacing: 0.1em;
  }
  .lead .title-box .line{
    bottom: 0.5%;
    left: 1%;
    width: calc(103.5721 / 375 * 100vw);
  }
  /* mainitem----------------------- */
  .mainitem{
    margin-top: 18%;
    overflow: hidden;
  }
  .mainitem .title01{
    width: calc(253.8073 / 375 * 100%);
    margin-top: 2%;
  }
  .mainitem .title02{
    width: calc(282.6548 / 375 * 100%);
    animation-delay: 0s;
  }
  .mainitem .photo-box{
    width: calc(332 / 375 * 100%);
    margin: 4% auto 0;
  }
  .mainitem .photo-box .icon01{
    top: 6%;
    left: 10%;
    width: calc(102.7842 / 332 * 100%);
  }
  .mainitem .photo-box .icon02{
    top: 6%;
    right: 8%;
    width: calc(114.1816 / 332 * 100%);
  }
  .mainitem .photo-box .icon03{
    top: 77.5%;
    left: 8%;
    width: calc(97.9946 / 332 * 100%);
  }
  .mainitem .photo-box .icon04{
    top: 73%;
    right: 7%;
    width: calc(83.8135 / 332 * 100%);
  }
  .mainitem .link-box{
    width: calc(324.9409 / 375 * 100%);
    margin: 3% auto 0;
  }
  /* リンクボックス */
  .link-box,
  .style-wrapper .item-box .inner03 .link-box{
    width: calc(305.8691 / 375 * 100%);
    margin: 8% auto 0;
  }
  .link-box .main{
    padding-bottom: 2%;
  }
  .link-box .cart-btm{
    margin-top: 0.1px;
    margin-bottom: 3%;
    border-bottom: 1px solid rgba(0,0,0,0);
  }
  .cart-title{
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.06rem;
  }
  .cart-title span{
    font-size: calc(16 / 375 * 100vw);
  }
  .cart-yen{
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    margin: auto 0 2px 3px;
    font-size: calc(10 / 375 * 100vw);
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 1.8% 3%;
    font-size: calc(10 / 375 * 100vw);
  }
  /* style-wrapper--------------------------- */
  .style-wrapper .title-number{
    width: calc(111.4924 / 375 * 100%);
  }
  div[class*="item"] .title-box  .name-en{
    font-size: calc(36.4311 / 375 * 100vw);
    margin-top: 7%;
  }
  .style-wrapper .name-ja{
    font-size: calc(12 / 375 * 100vw);
  }
  div[class*="item"] .title-box .titletext-box{
    margin-top: 9%;
  }
  .style-wrapper .titletext01{
    font-size: calc(16.544 / 375 * 100vw);
  }
  .style-wrapper .titletext02{
    font-size: calc(24.936 / 375 * 100vw);
    letter-spacing: 0.08em;
  }
  .style-wrapper .item-box{
    flex-direction: column;
    width: 100%;
  }
  .style-wrapper .item-box .inner,
  .style-wrapper .item-box .inner02,
  .style-wrapper .item-box .inner03{
    display: contents;
    width: 100%;
    margin-inline: auto;
  }
  .style-wrapper .item-box .inner02 .photo{
    width: calc(310 / 375 * 100%);
    margin: 18% auto 0;
  }
  .style-wrapper .item-box .inner02 .photo .image{
    border-radius: 16.7568px;
  }
  .style-wrapper .item-box .inner .icon{
    width: calc(94 / 310 * 100%);
  }
  .style-wrapper .item-box .inner02 .icon{
    left: -7%;
  }
  .style-wrapper .item-box .inner02 .link-box{
    width: calc(296.9731 / 375 * 100%);
    margin-top: 4%;
  }
  .style-wrapper .item-box .inner03 .icon{
    top: -9%;
    left: 2%;
  }
  .style-wrapper .title-box{
    right: auto;
    order: 1;
  }
  .style-wrapper .item-box .photo01{
    margin-top: 3%;
    order: 2;
  }
  .style-wrapper .item-box .photo02{
    order: 3;
  }
  .style-wrapper .item-box .text,
  .style-wrapper .item-box .inner03 .text{
    width: calc(305 / 375 * 100%);
    margin: 6% auto 0;
    font-size: calc(16 / 375 * 100vw);
    order: 4;
  }
  .style-wrapper .item-box .link-box{
    order: 5;
  }
  .style-wrapper .item-box .photo03{
    order: 6;
  }
  .style-wrapper .item-box .link-box02{
    order: 7;
  }
  /* item01------------------------- */
  .item01{
    margin-top: 20%;
  }
  /* item01-1------------------------- */
  .item01-1 .title-box{
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    animation-duration: 0s;
  }
  .item01-1 .title-box .line{
    margin-left: 6%;
    width: calc(208.7568 / 375 * 100vw);
  }
  .item01-1 .photo{
    margin-top: 3%;
  }
  .item01-1 .photo .mask{
    animation-delay: 0.2s;
  }
  /* item01-2------------------------- */
  .item01-2{
    margin-top: 18%;
  }
  .item01-2 .item-box{
    padding-top: 16%;
  }
  .item01-2 .titletext-box{
    left: auto;
    margin-top: 0;
    margin-left: 14%;
  }
  .item01-2 .title-box{
    margin-top: 0;
  }
  .item01-2 .title-box .line{
    margin-left: 2%;
    width: calc(195.2472 / 375 * 100vw);
  }
  .item01-2 .photo02{
    margin-top: 6%;
  }
  .item01-2 .text-img{
    top: 13.5%;
    left: 10%;
    width: calc(62.3107 / 375 * 100%);
  }
  /* item02------------------------- */
  .item02{
    margin-top: 20%;
  }
  .item02 .title-box .line{
    margin-left: 2%;
    width: calc(298.5186 / 375 * 100vw);
  }
  .item02 .photo02{
    margin-top: 10%;
  }
  .item02 .photo02 .photo-link{
    display: block;
    margin-top: 8%;
  }
  .item02 .text-img{
    top: 0;
    left: 10%;
    width: calc(62.3107 / 375 * 100%);
  }
  /* item03------------------------- */
  .item03{
    margin-top: 20%;
  }
  .item03 .title-box .line{
    margin-left: 12%;
    width: calc(178.3054 / 375 * 100vw);
  }
  .item03 .photo02{
    margin-top: 6%;
  }
  /* item04------------------------- */
  .item04{
    margin-top: 20%;
  }
  .item04 .title-box .line{
    margin-left: 1%;
    width: calc(208.7569 / 375 * 100vw);
  }
  .item04 .item-box .inner02 .icon{
    left: auto;
    right: -7%;
  }
  /* アーカイブ----------------------- */
  .archive{
    margin-top: 32%;
  }
  .archive .title{
    font-size: calc(30 / 375 * 100vw);
  }
  .archive .swiper{
    margin-top: 3%;
  }
  .archive .container{
    width: calc(280 / 375 * 100%);
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: calc(13.3602 / 375 * 106vw);
  }
  .swiper-button-prev{
    left: -12%;
  }
  .swiper-button-next{
    right: -12%;
  }
  .archive .day{
    font-size: calc(16 / 375 * 100vw);
    margin-top: 4%;
  }
  /* フッター */
  .end-box{
    margin: 16% auto 0;
  }
  .end-box .txt{
    font-size: 0.75rem;
  }
  .banner-block{
    margin-top: 14%;
    margin-bottom: 10%;
  }
  .c-btn01{
    width: 80%;
    margin-bottom: 6%;
  }
  .footer{
    padding-bottom: 6%;
  }
  .footer_sns{
    width: 8vw;
  }
  .f-ow{
    width: 120px;
    margin: 3% auto 0 auto;
  }
  .copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 5% 0 0 0;
  }
  .pagetop{
    right: 0;
    bottom: 0;
    width: calc(45 / 375* 100%);
  }
}
