@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
img{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* デフォルトのタイポグラフィ */
h1, h2, h3 {
  line-height: 1.3;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}

p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
}

/***************** 
* アニメーション
******************/
/* 左から表示 */
@keyframes slideInFromLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.c-slide-in-left {
  opacity: 0;
}

.c-slide-in-left.js-animeOn {
  opacity: 1;
  animation: 0.5s ease-out 0s 1 slideInFromLeft;
}

/*下からフェードイン*/
.c-fade-up {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 0;
}

.c-fade-up.js-animeOn {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

/* バウンス表示 */
.c-expand-bounce {
    transform: scale(0);
    animation-fill-mode: forwards
}

.c-expand-bounce.js-animeOn {
    animation-name: expand-bounce;
    animation-duration: .25s
}

@keyframes expand-bounce {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(1.25)
    }

    100% {
        transform: scale(1)
    }
}

/* ズームイン */
.c-zoom-in {
    transform: scale(1.2);
    animation-fill-mode: forwards
}

.c-zoom-in.js-animeOn {
    animation-name: zoom-in;
    animation-duration: .25s
}

@keyframes zoom-in {
    0% {
        transform: scale(1.2)
    }
    100% {
        transform: scale(1)
    }
}

/***************** 
* ユーティリティ
******************/
.u-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-pc--inline {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .u-pc--inline {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}
.u-sp--inline {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp--inline {
    display: inline !important;
  }
}

/***************** 
* レイアウト
******************/
.l-container {
  max-width: 448px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 429px) {
  .l-container
  {
    box-shadow: 0 0 99px 0 rgba(255, 198, 10, 0.9);
  }
}
.l-inner{
  padding: 0 min(5vw, 40px);
}

/***************** 
* 共通コンポーネント
******************/
/* 背景色 */
.c-marker{
  position: relative;
  z-index: 1;
  display: inline-block;
}
.c-marker::before{
  content: '';
  width: 100%;
  height: 1em;
  background-color: #FFF95F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}


/***************** 
* 個別スタイル
******************/
.p-kadonokiwami {
  background-color: #000000;
  position: relative;
}

/* 背景(サイド) 768px以上で表示 */
.p-kadonokiwami-sidebg--left,
.p-kadonokiwami-sidebg--right{
  display: none;
}
@media screen and (min-width: 767px) {
  .p-kadonokiwami-sidebg--left{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(50% - 224px);
    height: 100%;
  }
  .p-kadonokiwami-sidebg--right{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: calc(50% - 224px);
    height: 100%;
  }
  .p-kadonokiwami-sidebg__inner{
    position: relative;
    height: 100%;
  }
  .p-kadonokiwami-sidebg--left .p-kadonokiwami-sidebg__img{
    position: absolute;
    width: min( 17.08vw, 328px);
    height: auto;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
  }
  .p-kadonokiwami-sidebg--right .p-kadonokiwami-sidebg__img{
    position: absolute;
    width: min( 17.92vw, 344px);
    height: auto;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
  }
}

/* MV */
.p-kadonokiwami-mv{
  padding: 40px 0 56px;
}
.p-kadonokiwami-mv__people-wrap{
  position: relative;
  margin-top: 10px;
}
.p-kadonokiwami-mv__people__txt{
  position: absolute;
  top: -60px;
  left: 12.5px;
  width: 30%;
}

/* About */
.p-kadonokiwami-about{
  position: relative;
}
.p-kadonokiwami-about .l-inner{
  position: relative;
  z-index: 1;
}
.p-kadonokiwami-about__ttl{
  max-width: 344px;
  margin: 0 auto 16px;
}
.p-kadonokiwami-about__txt{
  text-align: center;
  margin-bottom: 16px;
}
.p-kadonokiwami-about__bg{
  position: absolute;
  width: 57.14%;
  top: 160px;
  left: 0;
  z-index: 0;
}

/* ラインナップ */
.p-kadonokiwami-lineup__ttl{
  background-image: url(../images/ttl_h2_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8px;
  text-align: center;
  color: #000;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.47;
  margin-bottom: 40px;
}
.c-card{
  border-radius: 15px;
  background-color: #fff; 
  position: relative;
  z-index: 1;
}
.c-card__ttl{
  background-image: url(../images/lineup_card_ttl_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 11px;
  text-align: center;
  color: #000000;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.45;
  border-radius: 15px 15px 0 0;
}
.c-card__ttl--small{
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-top: 5px;
}
.c-card__body{
  padding: 24px 14px 64px;
}

.c-card__lead{
  color: #000;
  font-size: min(4vw ,1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.76;
  text-align: center;
  margin-bottom: 8px;
}
.c-card__mainimg{
  margin-bottom: 16px;
  padding: 0 10px;
}
.c-card-item{
  margin-bottom: 48px;
}
.c-card-item:last-child{
  margin-bottom: 0;
}
.c-card-item__label{
  display: inline-block;
  min-width: 184px;
  width: auto;
  padding: 4px 9px;
  border-radius: 16px;
  background-color: #003EA2;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 24px;
}
.c-card-item__label.--green{
  background-color: #01863C;
}
.c-card-item__label.--gray{
  background-color: #595A59;
}
.c-card-item__img{
  max-width: 204px;
  margin: 0 auto;
  display: block;
}

.p-kadonokiwami-lineup__content--01{
  padding-bottom: 32px;
}
.p-kadonokiwami-lineup__content--01 .c-card{
  margin-top: -70px;
}

.p-kadonokiwami-lineup__content--02{
  padding-bottom: 40px;
}
.p-kadonokiwami-lineup__content--02 .c-card{
  margin-top: -64px;
}
.p-kadonokiwami-lineup__content--02 .c-card__lead{
  margin-bottom: 32px;
}
.p-kadonokiwami-lineup__content--02 .c-card__mainimg{
  margin-bottom: 40px;
}
.p-kadonokiwami-lineup__content--02 .c-card-item:nth-of-type(1) .c-card-item__label{
  width: 100%;
}
.p-kadonokiwami-lineup__content--02 .c-card-item .c-card-item__img{
  max-width: 240px;
}
.p-kadonokiwami-lineup__content--02 .c-card-item:nth-of-type(1) .c-card-item__img{
  max-width: 100%;
}
.p-kadonokiwami-lineup__content--02 .c-card-item:nth-of-type(2) .c-card-item__ttlimg{
  width: calc(100% - 28px);
  display: block;
  margin: 0 auto 8px;
}

.p-kadonokiwami-lineup__content--03{
  padding-bottom: 40px;
}
.p-kadonokiwami-lineup__content--03 .c-card{
  margin-top: -92px;
}
.p-kadonokiwami-lineup__content--03 .c-card__lead{
  margin-bottom: 24px;
}
.p-kadonokiwami-lineup__content--03 .c-card__mainimg{
  margin-bottom: 40px;
}
.p-kadonokiwami-lineup__content--03 .c-card-item .c-card-item__img{
  max-width: 240px;
}

.p-kadonokiwami-lineup__content--04 .c-card{
  margin-top: -80px;
}
.p-kadonokiwami-lineup__content--04 .c-card__lead{
  margin-bottom: 32px;
}
.p-kadonokiwami-lineup__content--04 .c-card__mainimg{
  margin-bottom: 24px;
}
.p-kadonokiwami-lineup__content--04 .c-card-item .c-card-item__img{
  max-width: 136px;
}

.p-kadonokiwami-footer__img{
  padding: 72px 0 64px;
  max-width: 176px;
  margin: 0 auto;
  display: block;
}
.p-kadonokiwami-footer__copyright{
  display: flex;
  align-items: center;
  justify-items: center;
  background-image:url(../images/copyright_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-kadonokiwami-footer__copyright a{
  font-size: 13px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #000;
  display: block;
  margin: 0 auto;
  letter-spacing: 0;
    line-height: 1.875;
}