@charset "UTF-8";
/* CSS Document */
/*============================
 フォント
【英語】
Medium
font-family: brandon-grotesque, sans-serif;
font-weight: 500;
font-style: normal;

Bold
font-family: brandon-grotesque, sans-serif;
font-weight: 700;
font-style: normal;

【日本語】
Regular
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 400;
font-style: normal;

Medium
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 500;
font-style: normal;

Bold
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 700;
font-style: normal;
============================*/

/*============================
 COMMON
============================*/
:root {
	--yellow-color-primary: #F2AE2F;
	--black-color-primary: #000000;
	--white-color-primary: #FFFFFF;
}

/*
.postlist_artcle .swiper-slide:nth-of-type(2) .postlist_artcle_image::before {
    content: "NEW";
    position: absolute;
    top: -5px;
    left: -36px;
    z-index: 2;
    transform: rotate(315deg);
    width: 115px;
    height: 54px;
    background-color: #ED621E;
    color: var(--white-color-primary);
    font-size: 21px;
    text-align: center;
    line-height: 71px;
}*/

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.footer_top_text a {
	color:#000 !important;
}
.footer_top_text a:hover {
	color:var(--yellow-color-primary) !important;
}

.font_en{
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.sm_visible{
	display: none;
}

.container{
	padding: 0 80px;
}

.inner{
	width: 1189px;
	margin: 0 auto;
}

.main_heading_big{
	font-size: 100px;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1em;
}

.main_heading_small{
	margin-top: 0;
	font-size: 32px;
	letter-spacing: 0.061em;
	line-height: 47px;
}

.bottom_fixed_button{
	position: fixed;
	z-index: 99;
	bottom: 40px;
	right: 40px;
}

.bottom_fixed_button a:hover{
	opacity: 0.5;
}

.bottom_fixed_button a img{
	width: 146px;
}

/* SM */
@media screen and (max-width: 639px) {
	.sm_visible{
		display: block;
	}
	
	.sm_hide{
		display: none;
	}
	
	.container{
		padding: 0;
	}

	.inner{
		width: 90%;
	}
	
	.main_heading_big{
		font-size: 41px;
	}

	.main_heading_small{
		margin-top: 0;
		font-size: 16px;
		line-height: 22px;
	}
	
	.bottom_fixed_button{
		bottom: 20px;
		right: 5%;
	}

	.bottom_fixed_button a img{
		width: 90px;
	}
}



/*===================================
各種アニメーション
===================================*/
/* 背景が出てから表示 */
.heading_wrap{
	display: inline-block;
	animation-name:heading_wrapAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	opacity:0;
}

@keyframes heading_wrapAnimeBase{
	  from {
		opacity:0;
	  }

	  to {
		opacity:1;  
	}
}

.text_appear{
  animation-name:heading_wrapAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes heading_wrapAnimeSecond{
  0% {
	  opacity: 0;
	  }
	  100% {
	  opacity: 1;
	}
}

.text_bg_extend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var( --black-color-primary );
}

.extend_white.text_bg_extend::before{
    background: var( --white-color-primary );
}

@keyframes bgDUextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  51% {
    transform-origin:right;
	  transform:scaleX(1);
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.heading_wrap,
.heading_wrap h2,
.heading_wrap h3,
.heading_wrap p{
    opacity: 0;
}



/* fadeUp */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  	transform: translateY(100px);
  }

  to {
    opacity: 1;
  	transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js-fadeUpTrigger,
.js-fadeUpTrigger-2{
    opacity: 0;
}

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js-fadeLeftTrigger{
    opacity: 0;
}

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.js-fadeRightTrigger{
    opacity: 0;
}

.postlist_inner .top_readmore_button{
	text-align: center;
}

.postlist_inner .top_readmore_button a{
	display: inline-block;
	width: 218px;
	height: 46px;
	margin-top: 40px;
	border-radius: 23px;
	background-color: var(--black-color-primary);
	color: var(--white-color-primary);
	font-size: 12px;
	font-family: brandon-grotesque, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 46px;
	text-align: center;
	transition: 0.3s ease;
}
/* SM */
@media screen and (max-width: 639px) {
	.postlist_inner .top_readmore_button a{
		width: 307px;
		height: 57px;
		border-radius: 10px;
		box-shadow: 0 3px 0 #4D4D4D;
		font-size: 13px;
		line-height: 57px;
	}
}