/* =========================
   Reset CSS
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  color: #858585;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 20px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select,dl,dt,dd,ul,ol {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  line-height: 1.6;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

iframe {
  border: 0;
}

/* Safari用 */
input[type="search"] {
  -webkit-appearance: none;
}

sup{
  font-size: 10px;
}
.mini{
  font-size: 10px;
}
@media screen and (max-width:1024px){
  sup{
    font-size: 2vw;
  }
  .mini{
    font-size: 2vw;
  }
}


html{

}
body{
  background: #FEF3ED;
  line-break: strict;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
  display: none;
}


.wrapper{
  position: relative;
}
/* ローディング */
#loading {
   position: fixed;
   inset: 0; 
   z-index: 9999; 
   display: flex; 
   align-items: center; 
   justify-content: center; 
   background: #fff; 
} 
.loading-circle { width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
}
 @keyframes loading-spin {
   to { 
    transform: rotate(360deg); 
  } 
}


/* レイアウト */
.left,
.right{
  position: relative;
  height: 100vh;
  height: 100svh;
  padding-left: 20px;
  padding-right: 20px;
}
/* .left */
.left{
  background: url('../img/common/bg.svg') no-repeat top center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: calc((100% - 500px) / 2);
}
.left .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.left .icon .rotate{
  animation: iconRotate 6s linear infinite;
  margin-bottom: -5px;
}
.left .icon img{
  max-width: max-content;
}
@keyframes iconRotate{
  0%{
    transform: rotateY(0deg);
  }
  50%{
    transform: rotateY(360deg);
  }
  100%{
    transform: rotateY(360deg);
  }
}


/* right */
.right{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: calc((100% - 500px) / 2);
  padding-top: 7.7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right nav li{
  margin-bottom: 2.74vw;
}
.right nav .right-top svg{
  width: 15vw;
  max-width: 75px;
}
.right nav .right-concept svg{
  width: 39.2vw;
  max-width: 196px;
}
.right nav .right-product svg{
  width: 43.4vw;
  max-width: 217px;
}
.right nav .right-T svg{
  width: 40.8vw;
  max-width: 204px;
}
.right nav .right-hoho svg{
  width: 42.2vw;
  max-width: 211px;
}
.right nav .right-U svg{
  width: 40.8vw;
  max-width: 204px;
}
.right nav .right-shop svg{
  width: 20.8vw;
  max-width: 104px;
}

.right .sns{
  margin-top: 52px;
  display: flex;
  margin: 0 auto;
  width: fit-content;
  gap: 37px;
}
.right .product-nav {
  position: relative;
  padding-top: 10px;
  padding-left: 32px;
  margin-bottom: min(10.2vw,51px);
}
.right .product-nav li{
  margin-bottom: 32.5px;
}
.right .product-nav::before{
  display: block;
  content: "";
  width: 23px;
  height: 152px;
  aspect-ratio: 23/152;
  background: url('../img/common/header-line.svg');
  background-size: cover;
  position: absolute;
  top: -10px;
  left: 0;
}
.right nav li svg path{
  transition: .3s;
}
.right nav li:hover svg path{
  fill: #5B5B5B;
}


.center{
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width:1024px){
  .left{
    display: none;
  }
  .center{
    max-width: none;
    width: 100%;
  }

  /* ハンバーガーメニュー */
  .right{
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    max-width: none;
    background: #FEF3ED;
    transform: translateY(-100vh);
    transition: .8s;
  }
  .right .inner{
    padding-top: min(22.2vw,131.5px);
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .right nav {
    width: 51.8vw;
  }
  .right nav .nav{
    margin-bottom: min(13.9vw, 96.5px);
  }
  .right nav li{
    margin-bottom: min(7.9vw, 39.5px);
  }
  .right.active{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    overflow: auto;
    padding-bottom: 20.4vw;
  }
}

/* ハンバーガーメニュー */
#hmenu{
    display: none;
}
@media screen and (max-width:1024px){
  #hmenu{
    width: 11vw;
    aspect-ratio: 1;
    max-width: 55px;
    max-height: 55px;
    background-color: #fff;
    opacity: .9;
    position: fixed;
    top: 15px;
    right: 17px;
    z-index: 9;
    border-radius: 10px;
    border: 3px solid #5B5B5B;
    filter: drop-shadow(2.5px 2.5px 0 #5B5B5B);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14%;
    z-index: 99;
    transition: .3s;
  }
  #hmenu span{
    display: block;
    width: 50%;
    height: 3px;
    background: #5B5B5B;
    transition: .3s;
  }
  #hmenu.active{
    background: none;
    filter: none;
    border: none;
    gap: 0;
    
  }
  #hmenu.active span{
    width: 72%;
    position: absolute;
  }
  #hmenu.active span:nth-child(1){
    transform: rotate(45deg);
  }
  #hmenu.active span:nth-child(2){
    opacity: 0;
    display: none;
  }
  #hmenu.active span:nth-child(3){
    transform: rotate(-45deg);
  }
}


/* TOP > top-slider-box */
#top .top-slider-box{
  position: relative;
}
/* ロゴ */
#top .top-slider-box .top-swiper-logo{
    position: absolute;
    z-index: 3;
    width: 100%;
    max-width: 449px;
    top: 686px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: top-logo .5s ease 4s forwards;
}

@keyframes top-logo{
  from{
    opacity: 0;
    top: 746px;
  }
  to{
    opacity: 1;
    top: 706px;
  }
}

@media screen and (max-width:1024px){
  #top .top-slider-box{
    width: 100%;
  }
  #top .top-slider-box .top-swiper-logo{
    top: auto;
    bottom: 6.4vw;
    width: 89.8vw;
  }

  @keyframes top-logo{
    from{
      opacity: 0;
      top: auto;
      bottom: 4.0vw;
    }
    to{
      opacity: 1;
      top: auto;
      bottom: 6.6vw;
    }
  }

}


/* TOP > top-anime */
#top .top-anime-box{
  max-height: 800px;
  max-width: 500px;
  overflow: hidden;
  pointer-events: none;
  aspect-ratio: 5/8;
  width: 100%;
}
#top .top-anime-box .top-anime {
  position: relative;
  width: 500px;
  height: 800px;
  margin: 0 auto;
  background: #FEF3ED;
}
.top-anime-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 33.33%;
  opacity: 0;
}

.bg-green {
  left: 0;
  background: #BEE0CC;
  animation: bg-fade .5s ease .5s forwards;
}

.bg-pink {
  left: 33.33%;
  background: #EBA7EE;
  animation: bg-fade .5s ease .8s forwards;
}

.bg-purple {
  left: 66.66%;
  background: #BAB0FF;
  animation: bg-fade .5s ease 1.2s forwards;
}

@keyframes bg-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width:1024px){
  #top .top-anime-box{
    max-width: 100vw;
    max-height: none;
    width: 100%;
  }
  #top .top-anime-box .top-anime{
    width: 100%;
    height: auto;
  }
}

/* 左右 */
#top .top-anime-box .hoho-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: top-open-opacity 1s ease 2.2s forwards;
}

#top .top-anime-box .u-area {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: top-open-opacity 1s ease 2.2s forwards;
}

/* 中央 */
#top .top-anime-box .t-area {
  position: relative;
  width: 500px;
  height: 800px;
  aspect-ratio: 5/8;
  overflow: hidden;
  z-index: 3;
}
#top .top-anime-box .t-mask {
  position: relative;
  width: 167px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  animation: top-open-center 1s ease 2.2s forwards;
}

#top .top-anime-box .t-area img {
    position: absolute;
    height: 900px;
    bottom: -14px;
    left: -127px;
    width: 100%;
    height: auto;
    min-width: 500px;
}
@media screen and (max-width:1024px){
  #top .top-anime-box .t-area{
    width: 100%;
    height: auto;
  }
  #top .top-anime-box .hoho-area,
  #top .top-anime-box .u-area{
    height: 100%;
    aspect-ratio: 5 / 24;
  }
  #top .top-anime-box .hoho-area img,
  #top .top-anime-box .u-area img{
    height: 100%;
    width: auto;
  }
  #top .top-anime-box .t-mask{
    width: calc(100% / 3);
  }
  #top .top-anime-box .t-area img{
    bottom: -5vw;
    left: -25vw;
    min-width: 100vw;
  }
}

#top .top-anime-box .t-area .t-mono{
    animation: top-open-center-img 1s ease 2.2s forwards, top-open-opacity 1s ease 2.2s forwards;
}
#top .top-anime-box .t-area .t-color {
    opacity: 0;
    animation: top-open-color 1s ease 2.2s, top-open-center-img 1s ease 2.2s forwards;
}
/* 画像が開く */
@keyframes top-open-center {
  from {
    width: 167px;
  }
  to {
    width: 500px;
  }
}
@media screen and (max-width:1024px) {
    @keyframes top-open-center {
    from {
      width: calc(100%/3);
    }
    to {
      width: 100%;
    }
  }
}

/* 画像位置の移動 */
@keyframes top-open-center-img{
  from {
    left: -127px;
    bottom: -14px;
  }
  to {
    left: 0px;
    bottom: -100px;
  }
}
@media screen and (max-width:1024px) {
@keyframes top-open-center-img{
  from {
    left: -25vw;
    bottom: -5vw;
  }
  to {
    left: 0px;
    bottom: -20vw;
  }
}
}
/* 画像の変化 */
@keyframes top-open-opacity{
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes top-open-color {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* TOP > top-swiper */
#top .top-swiper-box{
  position: absolute;
  width: 500px;
  height: 800px;
  top: 0;
  left: 0;
  opacity: 0;
  animation: top-swiper-visivle .2s ease 2.8s forwards
}
@keyframes top-swiper-visivle{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#top .top-swiper {
  width: 100%;
  height: 100%;
}

#top .top-swiper-box .swiper-pagination {
    position: absolute;
    top: 20px;
    left: 12px;
    width: 114px;
    height: 28px;
}
#top .top-swiper-box .swiper-pagination span {
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #fff;
    margin: 0 15px 0 0;
    opacity: 1;
}
#top .top-swiper-box .swiper-pagination span.swiper-pagination-bullet-active{
    background: #fff;
}
#top .top-swiper-box .swiper-pagination span:last-child{
    margin-right: 0;
}
@media screen and (max-width:1024px){
  #top .top-swiper{
    width: 100%;
  }
  #top .top-swiper img{
    max-width: none;
    width: 100%;
  }
  #top .top-swiper-box{
    width: 100%;
    height: auto;
    aspect-ratio: 5/8;
  }
}

/* ポイント */
#top .top-swiper-box .point{
    position: absolute;
    width: 272px;
    top: 518px;
    left: 36px;
    z-index: 3;
}
#top .top-swiper-box .park {
    position: absolute;
    top: 533px;
    right: 31px;
    width: 150px;
    aspect-ratio: 1;
    z-index: 3;
}

@media screen and (max-width:1024px){
  #top .top-swiper-box .point{
    top: auto;
    bottom: 24.2vw;
    left: 0.72vw;
    width: 54.4vw;
  }
  #top .top-swiper-box .park{
    top: auto;
    bottom: 23.4vw;
    right: 6.2vw;
    width: 30vw;
  }
}

#top .top-swiper-box .point.fadein{
  transform: translateY(-20px);
  opacity: 0;
  animation: point-fade .8s ease 3.3s forwards;
}
#top .top-swiper-box .park.fadein{
  transform: translateY(-20px);
  opacity: 0;
  animation: point-fade .8s ease 3.7s forwards;
}
@keyframes point-fade{
  from{
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOP > TOPIC */
#top #topic {
  background: #fff;
  padding: 75px 40px;
  position: relative;
}
#top #topic h2{
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
#top #topic h2 img{
  width: 24.6vw;
  max-width: 123px;
  height: auto;
}
#top #topic .topic-swiper {
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

#top #topic .topic-swiper .swiper-slide {
  width: 317px;
  height: 357px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width:1024px){
  #top #topic .topic-swiper .swiper-slide{
    width: 63.4vw;
    height: 71.4vw;
  }
}

#top #topic .topic-swiper .swiper-slide img {
  display: block;
  max-width: 317px;
  width: 63.4vw;
  aspect-ratio: 317/357;
  object-fit: contain;
}
@media screen and (max-width:1024px){
  #top #topic .topic-swiper .swiper-slide img{
    max-width: none;
  }
}

#top #topic .topic-swiper .swiper-slide a{
  height: fit-content;
}
#top .topic-swiper .swiper-navigation-icon {
  display: none;
}

#top .topic-swiper .swiper-button-next,
#top .topic-swiper .swiper-button-prev {
  width: 25px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#top .topic-swiper .swiper-button-next {
  right: max(-19%, -10px);
  background-image: url('../img/common/arrow-next.png');
}

#top .topic-swiper .swiper-button-prev {
  left: max(-19%, -10px);
  background-image: url('../img/common/arrow-prev.png');
}
#top .topic-swiper .swiper-pagination{
  position: absolute;
  bottom: -40px;
}

#top .topic-swiper .swiper-pagination span{
  background: #C7C7C7;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-right: 13px;
}
#top .topic-swiper .swiper-pagination span:last-child{
  margin-right: 0;
}
#top .topic-swiper .swiper-pagination span.swiper-pagination-bullet-active{
  background: #858585;
}
#top .topic-news{
  font-size: 12px;
  width: 63.4vw;
  margin: 20px auto 0;
}
#top .topic-news .bold,
#top .topic-news dt{
  font-size: 16px;
  font-weight: 500;
}

/* TOP > CONCEPT */
#top #concept {
  position: relative;
  overflow: hidden;
  height: 730px;
}
#top #concept h2 img{
  max-width: 196px;
  width: 39.2vw;
  height: auto;
}
#top #concept .inner{
  padding: 75px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
#top #concept .title img{
  width: 52.4vw;
  max-width: 262px;
  height: auto;
}
#top #concept button img{
  max-width: 296px;
  width: 59.2vw;
  height: auto;
}

/* TOP > CONCEPT animation */
#top #concept .animation{
  position: relative;
  width: 500px;
  height: 730px;
}
@media screen and (max-width:1024px){
  #top #concept {
    height: 146vw;
  }
  #top #concept .animation{
    width: 100%;
    height: 146vw;
  }
}

#top #concept .container{
  position: absolute;
  transform-origin: center;
}

/* c01 */
#top #concept .container.c01{
  width: 241px;
  height: 241px;
  top: 245px;
  left: 130px;
  z-index: 2;
}

#top #concept .container.c01 .item{
  width: 241px;
  height: 241px;
  background: #FEEDE3;
  transform: rotate(20deg);
  animation: c01 15s linear infinite;
}

@keyframes c01{
  from{
    transform: rotate(20deg);
  }
  to{
    transform: rotate(380deg);
  }
}

/* c02 */
#top #concept .container.c02{
  width: 365px;
  height: 365px;
  top: -40px;
  left: 261px;
}

#top #concept .container.c02 .item{
  width: 365px;
  height: 365px;
  background-image: url('../img/top/concept-02.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(0deg);
  animation: c02 22s linear infinite;
}
@keyframes c02{
  from{
    transform: rotate(0);
  }
  to{
    transform: rotate(360deg);
  }
}

/* c03 */
#top #concept .container.c03{
  width: 456px;
  height: 456px;
  top: 243px;
  left: -249px;
}

#top #concept .container.c03 .item{
  width: 456px;
  height: 456px;
  background-image: url('../img/top/concept-03.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(0deg);
  z-index: 1;
  animation: c03 32s linear infinite;
}
@keyframes c03{
  from{
    transform: rotate(0);
  }
  to{
    transform: rotate(360deg);
  }
}

/* c04 */
#top #concept .container.c04{
  position: relative;
  width: 489px;
  height: 489px;
  top: 426.5px;
  left: 119px;
  
}

#top #concept .container.c04 .item{
  position: absolute;
  width: 489px;
  height: 489px;
  background-image: url('../img/top/concept-04.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(0deg);
  animation: c04 24s linear infinite;
}

@keyframes c04{
  from{
    transform: rotate(0);
  }
  to{
    transform: rotate(360deg);
  }
}


/* TOP > AREA */
#top #area{
  background: #fff;
  padding: 75px 40px;
  overflow: hidden;
}
#top #area h2{
  width: fit-content;
  margin: 0 auto;
}

/* common > .p-bnr-swiper */

#p-bnr{
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#p-bnr .p-bnr-swiper{
  width: 100%;
  margin-top: 20px;
  position: relative;
  padding-bottom: 40px;
}
#p-bnr .p-bnr-swiper .swiper-slide{
  width: 73.2vw;
  max-width: 366px;
}

#p-bnr .p-bnr-swiper img{
  width: 366px;
  height: auto;
}
@media screen and (max-width:1024px){

}

#p-bnr .p-bnr-swiper .swiper-pagination span{
  background: #C7C7C7;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-right: 13px;
}
#p-bnr .p-bnr-swiper .swiper-pagination span:last-child{
  margin-right: 0;
}
#p-bnr .p-bnr-swiper .swiper-pagination span.swiper-pagination-bullet-active{
  background: #858585;
}

/* common > #footer */
#footer{
  background: #FFFCDB;
  padding: 75px 40px;
  text-align: center;
}
#footer .inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .inner h2{
  margin-bottom: 40px;
}
#footer .inner h2 img{
  width: 207px;
  height: auto;
}
#footer .inner .footer-shopList{
  margin: 35px auto 40px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 0 6%;
  width: 54.4vw;
  flex-wrap: wrap;
  max-width: 297px;
}

#footer .inner .attention{
  font-size: min(2.6vw, 13px);
  letter-spacing: .07em;
}
#footer .inner .footer-sns{
  margin: 47px auto 90px;
  display: flex;
  gap: 33px;
}
#footer .inner .footer-sns img{
  width: 8.6vw;
  max-width: 43px;
  height: auto;
}


#footer .inner .footer-onlineShop{
  margin-bottom: 46px;
}
#footer .inner .footer-onlineShop img{
  width: 300px;
  height: auto;
}
#footer .inner .footer-corporate{
  margin-bottom: 62px;
}
#footer .inner .footer-corporate img{
  width: 276px;
  height: auto;
}
#footer .inner .footer-brand{
  margin-bottom: 30px;
}
#footer .inner .footer-brand img{
  width: 185px;
  height: auto;
}
#footer .inner .fotter-co img{
  width: 279px;
  height: auto;
}
@media screen and (max-width:1024px){
  #footer .inner h2 img{
    width: 41.4vw;
  }
  #footer .inner .footer-onlineShop img{
    width: 60vw;
  }
  #footer .inner .footer-corporate img{
    width: 55.2vw;
  }
  #footer .inner .footer-brand img{
    width: 37vw;
  }
  #footer .inner .fotter-co img{
    width: 55.8vw;
  }
}

#page-top{
  position: absolute;
  right: 31px;
  bottom: 353px;
}
#page-top img{
  width: 15.6vw;
  max-width: 78px;
  height: auto;
}