@charset "UTF-8";

body {
  font-size: 87.5%;
  line-height: 1.5;
  color: #232933;
}

#brand .p-mainContents{
	padding: 80px 0 0;
}

/* メインビジュアル */
.brand-mv img{
	display: block;
	width: 100%;
	height: auto;
}

/* セクション共通 */
.brand-section + .brand-section,
.brand-section + .brand-cta{
	margin-top: 120px;
}

#brand .c-heading-wrap {
  padding-bottom: 72px;
}
#brand .c-heading-wrap .c-headingLv1 {
  font-size: 50px;
}
#brand .c-heading-wrap .c-headingLv1 + p {
  font-size: 20px;
  margin-top: 23px;
  color: #2b73ba;
  font-weight: 700;
}

/* CM & MAKING */
.brand-movieList{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 72px;
}
.brand-movieList_item{
	width: calc((100% - 40px) / 2);
}
.brand-movie{
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	background-color: #000;
}
.brand-movie_thumb{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}
.brand-movie_thumb::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 80px;
	height: 80px;
	border: 2px solid #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s;
}
.brand-movie_thumb::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	border-style: solid;
	border-width: 11px 0 11px 18px;
	border-color: transparent transparent transparent #fff;
	transform: translate(-40%, -50%);
}
.brand-movie_thumb:hover::before{
	transform: translate(-50%, -50%) scale(1.2);
}
.brand-movie_thumb img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.brand-movie_iframe{
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}
.brand-movieList_caption{
  font-size: 18px;
	margin-top: 24px;
	font-weight: 700;
	text-align: center;
}
.brand-movieList_switch{
	padding: 0;
	border: none;
	background: none;
	font-size: inherit;
	font-weight: 700;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}
.brand-movieList_switch:hover{
	text-decoration: none;
}
.brand-movieList_switch.is-active{
	color: #2b73ba;
	text-decoration: none;
	cursor: default;
}

/* 広告グラフィック */
.brand-graphicList{
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 72px;
}
.brand-graphicList_item{
	width: calc((100% - 64px) / 3);
}
.brand-graphicList_img img{
	display: block;
	width: 100%;
	height: auto;
}
.brand-viewMore{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 190px;
	margin: 40px auto 0;
	padding: 10px 1em;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #232933;
	background-color: #fff;
	border: 1px solid #d3d9e0;
	border-radius: 20px;
	transition: opacity 0.3s;
  position: relative;
}
.brand-viewMore:hover{
  background-color: #edf0f5;
}
.brand-viewMore img{
	width: 16px;
	height: auto;
  position: absolute;
  top: calc(50% - 8px);
  right: 14px;
}

/* CTAエリア */
.brand-cta{
	max-width: 770px;
	margin-right: auto;
	margin-left: auto;
  padding: 40px 40px 50px;
	background-color: #fff;
	border-radius: 16px;
}
.brand-cta_title{
  font-size: 20px;
	font-weight: 700;
	text-align: center;
  line-height: 1.5;
}
.brand-cta_title br{
  display: none;
}
.brand-cta_btnList{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-top: 30px;
}
.brand-cta_btn{
	width: auto;
	min-width: 310px;
	margin-top: 0;
	padding: 15px 40px;
}
.brand-cta_btn-youtube > img{
	position: static;
	width: 22px;
	height: auto;
	margin-right: 8px;
	vertical-align: -1px;
}

/* 画像拡大モーダル */
.brand-modal{
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
}
.brand-modal.is-open{
	display: block;
}
.brand-modal_overlay{
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.brand-modal_content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(90%, 640px);
}
.brand-modal_img{
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 140px);
	margin: 0 auto;
}
.brand-modal_close{
	position: absolute;
	top: -52px;
	right: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	transition: opacity 0.3s;
}
.brand-modal_close:hover{
	opacity: 0.7;
}
.brand-modal_close::before,
.brand-modal_close::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background-color: #232933;
}
.brand-modal_close::before{
	transform: translate(-50%, -50%) rotate(45deg);
}
.brand-modal_close::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}


@media only screen and (max-width:767px){
/*! Small only */

	#brand .p-mainContents{
		padding: 48px 0 0;
	}

	.brand-section + .brand-section,
	.brand-section + .brand-cta{
		margin-top: 80px;
	}

  #brand .c-heading-wrap {
    padding-bottom: 37px;
  }
  #brand .c-heading-wrap .c-headingLv1 {
    font-size: 28px;
  }
  #brand .c-heading-wrap .c-headingLv1 + p {
    font-size: 12px;
    margin-top: 13px;
  }

	/* CM & MAKING */
	.brand-movieList{
		gap: 40px;
		margin-top: 40px;
	}
	.brand-movieList_item{
		width: 100%;
	}
	.brand-movie{
		border-radius: 12px;
	}
	.brand-movie_thumb::before{
		width: 64px;
		height: 64px;
	}
	.brand-movie_thumb::after{
		border-width: 9px 0 9px 15px;
	}
	.brand-movieList_caption{
		margin-top: 16px;
	}

	/* 広告グラフィック */
	.brand-graphicList{
		gap: 48px;
		margin-top: 40px;
	}
	.brand-graphicList_item{
		width: 100%;
	}
	.brand-viewMore{
		display: none;
	}

	/* CTAエリア */
	.brand-cta{
		padding: 32px 24px;
	}
  .brand-cta_title br{
    display: block;
  }
	.brand-cta_btnList{
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.brand-cta_btnItem{
		width: 100%;
	}
	.brand-cta_btn{
		width: 100%;
		min-width: 0;
	}
	.brand-cta_btn-youtube{
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* 画像拡大モーダル */
	.brand-modal_close{
		top: -48px;
		width: 36px;
		height: 36px;
	}
	.brand-modal_close::before,
	.brand-modal_close::after{
		width: 16px;
	}

}
