@charset "utf-8";

/* CSS Document */


/***********
mainVisual
************/

.mainVisual {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  user-select: none;
  opacity: 0;
  transition: 1s;
}
body.is-loaded .mainVisual {
  opacity: 1;
}

/*
visual
*/

.mainVisual-visual {
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
  display: flex;
  opacity: 0;
  transition: all 2s ease 0.1s;
}
body.is-loaded .mainVisual-visual {
  opacity: 1;
}

.mainVisual-visual-block {
  width: 50%;
  opacity: 0;
  transition: all 2s ease ;
  position: relative;
}
.mainVisual-visual-block::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
body.is-loaded .mainVisual-visual-block {
  opacity: 1;
}
body.is-loaded .mainVisual-visual-block:nth-child(1) {
  transition-delay: 0.2s;
}
body.is-loaded .mainVisual-visual-block:nth-child(2) {
  transition-delay: 0.7s;
}

/*
promo
*/


.mainVisual-promo {
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
  opacity: 0;
  transition: all 2s ease 0.1s;
}
body.is-loaded .mainVisual-promo {
  opacity: 1;
}

/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: var(--header-height);
  z-index: 10;
  opacity: 0;
  transition: 2s;
  scale: 1.05;
}
body.is-started .mainVisual-container {
  opacity: 1;
  transition-delay: 1.2s;
  scale: 1;
}

.mainVisual-block {
}
.mainVisual-title {
  width: clamp(240px,80vw, 1260px);
  margin: 0 auto;
}


/*
slider
*/

.mainVisual-slider{
  opacity: 0;
  transition: all 1s ease 0.2s;
}
body.is-started .mainVisual-slider{
  opacity: 1;
}
.mainVisual-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  height: 100svh;
}
.mainVisual-img{
  width: 100%;
  height: 100svh;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual-img::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  z-index: 2;
  transition: 3s;
}
body.is-loaded .mainVisual-img::after{
  opacity: 0.2;
}
.mainVisual-img > img {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  object-fit: cover;
}


.mainVisual-img{
  width: 100%;
  transform-origin: center center;
}
.slick-animation .mainVisual-img{
  animation: amin-mainVisual-zoom 10s linear forwards;
}
/* .mainVisual-img.-right{
  width: 120%;
  transform-origin: right center;
}
.slick-animation .mainVisual-img.-right{
  animation: amin-mainVisual-right 12s linear forwards;
} */




.mainVisual .slick-dots{
  position: absolute;
  right: 4vw;
  bottom: 35px;
  display: flex;
  justify-content: end;
  z-index: 99;
}
.mainVisual .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--color-base);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin-left: 15px;
  padding: 0;
  cursor: pointer;
}
.mainVisual .slick-dots .slick-active button{
  background-color: var(--color-brand02);
  box-shadow: 0 0 0 4px rgba(0, 42, 126, 0.3);
}


@keyframes amin-mainVisual-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes amin-mainVisual-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes amin-mainVisual-right {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width:640px) {


  .mainVisual {
    height: 120vw;
    min-height: 300px;
    max-height: 100svh;
  }
  body.is-loaded .mainVisual {
    opacity: 1;
  }

  /*
  visual
  */

  .mainVisual-visual {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mainVisual-visual-block {
    width: auto;
    height: 50%;
  }
  body.is-loaded .mainVisual-visual-block:nth-child(1) {
    transition-delay: 0.2s;
  }
  body.is-loaded .mainVisual-visual-block:nth-child(2) {
    transition-delay: 0.7s;
  }


  /*
  promo
  */


  .mainVisual-promo {
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
    opacity: 0;
    transition: all 2s ease 0.1s;
  }
  body.is-loaded .mainVisual-promo {
    opacity: 1;
  }

  /*
  container
  */

  .mainVisual-container {
    padding-bottom: var(--header-height);
    scale: 1.1;
    padding-bottom: 0;
    padding-top: 30px;
  }

  .mainVisual-title {
    width: clamp(240px,100vw, 500px);
    margin-right: -3%;
  }

  /*
  slider
  */

  .mainVisual-slider{
    opacity: 0;
    transition: all 1s ease 0.2s;
  }
  body.is-started .mainVisual-slider{
    opacity: 1;
  }
  .mainVisual-slider :not(.slick-dots) li,
  .mainVisual-img,
  .mainVisual-img > img {
    height: 120vw;
    min-height: 300px;
    max-height: 100svh;
  }


  .mainVisual-img{
    width: 120%;
    transform-origin: left center;
  }
  .slick-animation .mainVisual-img{
    animation: amin-mainVisual-left 12s linear forwards;
  }
  .mainVisual-visual-block:nth-child(2) .mainVisual-img{
    width: 120%;
    transform-origin: right center;
  }
  .mainVisual-visual-block:nth-child(2) .slick-animation .mainVisual-img{
    animation: amin-mainVisual-right 12s linear forwards;
  }

}

/***********
topNews
************/

.topNews {
  padding-top: min(10vw,9em);
  padding-bottom: min(10vw,9em);
}
.topNews-banner {
  display: flex;
  justify-content: center;
  position: relative;
}
.topNews-banner li {
  width: calc(100% / 3);
  padding: 0 1%;
}
body.is-pc .topNews-banner li a:hover {
  opacity: 0.85;
}

/*
slick
*/

.topNews .slick-next,
.topNews .slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-main);
  cursor: pointer;
  transition: 0.2s;
}
.topNews .slick-prev{
  left: -30px;
}
.topNews .slick-next{
  right: -30px;
}

.topNews .slick-next span,
.topNews .slick-prev span{
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-base);
  margin: 0 auto;
  rotate: 45deg;
  transition: 0.2s;
}
.topNews .slick-prev span {
  border-right: none;
  border-top: none;
  translate: 20% 0 ;
}
.topNews .slick-next span {
  border-left: none;
  border-bottom: none;
  translate: -20% 0 ;
}


@media screen and (max-width:834px) {

  .topNews {
  }
  .topNews-banner {
    margin: 0 auto;
  }
  .topNews-banner li {
    width: auto;
    padding: 0 5px 0;
  }
  .topNews-banner li a {
    display: block;
    width: 240px;
  }


  /*
  slick
  */

  .topNews .slick-next,
  .topNews .slick-prev{
    scale: 0.6;
  }
  .topNews .slick-prev{
    left: -10px;
  }
  .topNews .slick-next{
    right: -10px;
  }

}

/***********
topIntro
************/

.topIntro {
  padding-top: min(10vw,9em);
  background-color: var(--color-sub03);
}
.topIntro-heading {
  text-align: center;
  max-width: clamp(240px,80vw, 640px);
  margin: 0 auto 2em;
}
.topIntro-container {
  display: flex;
}
.topIntro-img {
  width: 60%;
  padding-right: 5%;
}
.topIntro-inner {
  flex: 1;
}
.topIntro-title {
  font-size: clamp(20px,2vw, 30px);
  padding: 0.5em 0;
  margin-bottom: 1.2em;
  color: var(--color-primary01);
  border: 1px solid var(--color-main);
  border-right: none;
  border-left: none;
}

.topIntro-link {
  text-align: center;
  padding-top: 3em;
}

/*
ticker
*/

.topTicker {
  width: 100%;
  opacity: 0;
  padding-top: min(10vw,9em);
  transition: 1s;
}
body.is-started .topTicker {
  opacity: 1;
  transition-delay: 0.1s;
}
.topTicker-container {
  display: flex;
}
.topTicker-container img {
  width: auto;
  height: clamp(50px,10vw, 138px);

}
.topTicker-item {
  display: inline-block;
}
.topTicker-item:nth-child(odd) {
  background: var(--color-grad01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.topTicker-item:nth-child(even) {
  background: var(--color-grad02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width:834px) {

  .topIntro {
  }
  .topIntro-heading {
  }
  .topIntro-container {
    display: block;
  }
  .topIntro-img {
    width: auto;
    padding-right: 0;
    padding-bottom: 3em;
  }
  .topIntro-title {
    text-align: center;
  }

  .topIntro-link {
    padding-top: 2em;
    padding-bottom: 1em;
  }
}



/***********
topShop
************/

.topShop {
  padding-top: min(10vw,9em);
  padding-bottom: min(10vw,9em);
  background-color: var(--color-main);
}


/***********
topOthers
************/

.topOthers {
  padding-top: min(10vw,9em);
  padding-bottom: min(10vw,9em);
}
.topOthers-container {
  position: relative;
}
.topOthers-heading {
  font-weight: 600;
  font-size: clamp(24px,2.4vw, 36px);
  font-family: var(--font-family-gothic-en);
  position: absolute;
  left: 0;
  top: 0;
  rotate: 90deg;
  transform-origin: left top;
  padding-top: 1em;
}



.topOthers-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -5em;
}
.topOthers-card li {
  width: 48.5%;
  margin-bottom: 5em;
}

.topOthers-visual {
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
}
.topOthers-img {
}
.topOthers-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 47 / 23;
}
.topOthers-external {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
}
body.is-pc .topOthers-card a:hover .topOthers-external {
  opacity: 1;
}
.topOthers-external-btn {
  display: inline-block;
  width: 16em;
  margin: 0 auto;
  padding: 0.8em;
  font-weight: 500;
  font-size: clamp(14px,1.2vw, 16px);
  color: var(--color-base);
  border-bottom: 1px solid var(--color-base);
  position: relative;
}
.topOthers-external-btn::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  scale: 0.8;
  opacity: 0.8;
}

.topOthers-link {
  text-align: center;
  padding-top: 1em;
}
.topOthers-link-more {
}

@media screen and (max-width:1440px) {

  .topOthers-container {
    padding-left: min(12vw,80px);
  }
  .topOthers-heading {
    padding-top: 0;
    translate: 2em 0;
  }

}


@media screen and (max-width:834px) {

  .topOthers-link-more.l-more {
    font-size: 11px;
    letter-spacing: 0;
  }

}

@media screen and (max-width:520px) {

  .topOthers {
  }
  .topOthers-container {
    position: relative;
  }
  .topOthers-heading {
    padding-top: 0;
    translate: 1.5em 0;
  }

  .topOthers-card {
    display: block;
    margin-bottom: -3em;
  }
  .topOthers-card li {
    width: auto;
    margin-bottom: 3em;
  }

  .topOthers-link {
    padding-top: 0.5em;
  }

}
/***********
topInfo
************/

.topInfo {
  padding-top: min(10vw,9em);
  padding-bottom: min(14vw,12em);
  background-color: var(--color-sub03);
}

.topInfo-link {
  padding-top: 2em;
  text-align: center;
}

@media screen and (max-width:834px) {

  .topInfo-link {
    padding-top: 0;
  }

}

/***********
feedTitle
************/

.feedTitle {
  font-size: clamp(18px,1.6vw, 24px);
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  padding-bottom: 0.6em;
}

@media screen and (max-width:768px) {

  .feedTitle {
    padding-left: 12px;
  }

}
/***********
xxxxx
************/
