@charset "utf-8";
/*	◆ CSS Document ◆
こちらは各項目に対するCSS設定用のCSSです。
ベースになるコード、:rootで変数にしたもの、よく使う項目の設定はbase-rem-normal.cssにあります。
使いまわせるコンポーネントのベースはcompornent.cssにあります。
 */

/*--------------------------------------------------
	Header
--------------------------------------------------*/

/*--------------------------------------------------
	HBM
--------------------------------------------------*/

/*--------------------------------------------------
	MV
--------------------------------------------------*/
#mv{
	background: url(../images/teaser/teaser_bg_pc.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	width: 100%;
	aspect-ratio: 1920 / 1120;
	--catch-img-width: min(47.5625rem, 39.64vw, calc(100vw - 3rem));
	--date-img-width: min(41.3125rem, 34.43vw, calc(100vw - 3rem));
}
.catch{
  padding-block: 3rem;
}
.catch h1 img{
  width: var(--catch-img-width);
  height: auto;
}
.catch p img{
  width: var(--date-img-width);
  height: auto;
}

@media (max-width:768px) {
  #mv{
    background: url(../images/teaser/teaser_bg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
    aspect-ratio: 768 / 1120;
    --catch-img-width: min(47.5625rem, 99.09vw, calc(100vw - 3rem));
    --date-img-width: min(41.3125rem, 86.07vw, calc(100vw - 3rem));
  }

}




/*--------------------------------------------------
	SNS
--------------------------------------------------*/
.sns_list{
  background: var(--color-bg);
  padding-block: 2.5rem;
}
.sns_list p{
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
}
.sns_list p.big{
  font-size: 2rem;
  font-weight: 600;
}

.sns_list ul{
  gap: 2rem;
}

@media (max-width:768px) {
  .sns_list{
    padding-block: 2rem;
  }
  .sns_list p{
    font-size: 1rem;
  }
  .sns_list p.big{
    font-size: 1.4rem;
  }
  .sns_list ul{
    gap: 1.5rem;
  }
}


/*--------------------------------------------------
	Footer
--------------------------------------------------*/
footer{
  background: var(--color-text);
  padding-block: 3rem;
  color: var(--color-bg);
  text-align: center;
}
footer p{
  font-weight: bold;
}

@media (max-width:768px) {
  footer{
    padding-block: 1.5rem;
  }

}
