@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: top; max-width: 100%;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}
q:after, q:before
{ content:'';}
a, input,select,textarea,button
{ outline: none; }
abbr, acronym
{ border: 0;}
*, *:before, *:after {box-sizing: border-box;}



/* !Clearfix
---------------------------------------------------------- */
.clearfix {
	display: block;
	min-height: 1%;
}
.clearfix:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Inline Align ------------------------------------------------------------ */
.taL { text-align: left   !important;}
.taC { text-align: center !important;}
.taR { text-align: right  !important;}

/*common*/
a{
	color: #003557;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

@media screen and (min-width: 835px) {
	a:hover{
		opacity: .7;
	}
	.op:hover img {
		opacity: .7;
		-webkit-opacity: .7;
		-moz-opacity: .7;
	}
}

/* !Layout
---------------------------------------------------------- */
html {
	overflow-y: scroll;
	font-size: 62.5%;
}
/*** タブレット 835x ~ 1400px***/
@media screen and (min-width: 835px) and (max-width: 1440px) {
  html {
      font-size: .6944vw;
  }
}
@media screen and (max-width: 834px) {
  html {
    font-size: 2.67vw;
  }
}
body {
	color: #003557;
	background: #FFF;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
}

.font_eng {
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}
.font_krona {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {
	body {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 835px) {
  .sp {
    display: none!important;
  }
}
@media screen and (max-width: 834px) {
  .pc {
    display: none!important;
  }
}

/* !brex_lp_wrapper
---------------------------------------------------------- */
#brex_lp_wrapper {
	overflow: hidden;
	position: relative;
}
#brex_lp_wrapper:before{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100dvh;
	z-index: -1;
	background: url(../image/bg_sp.png) left top no-repeat;
	background-size: 37.5rem auto;
	content: '';
	pointer-events: none;
}

.brex_lp_inner{
	padding: 0 1.6rem;
	max-width: 144rem;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	margin: 0 auto;
}
@media screen and (min-width: 835px) {
	#brex_lp_wrapper:before{
		background: url(../image/bg_pc.png) left top no-repeat;
		background-size: 100% auto;
	}
	.brex_lp_inner{
		padding: 0 12rem;
	}
}

/* !header
---------------------------------------------------------- */
#brex_lp_header {
	display: none!important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 88;
  background: #003557;
  border-bottom: 2px solid #fff;
  box-shadow: 0 .4rem 1.5rem rgba(0,0,0,.2);
  padding: .8rem 1.6rem;
}

.brex_lp_logo{
	display: flex;
	align-items: center;
}
.brex_lp_logo img{
	width: 4.8rem;
}


@media screen and (min-width: 835px) {
	#brex_lp_header {
	  border-bottom: 2px solid #fff;
	  box-shadow: 0 .4rem 1.5rem rgba(0,0,0,.2);
	  padding: .8rem 7rem;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	.brex_lp_logo img{
		width: 6.4rem;
	}
}


/* !mainVisual
---------------------------------------------------------- */
.brex_lp_mainVisual {
  position: relative;
}

.brex_lp_mainVisual_textWrap {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
.brex_lp_mainVisual_text {
  width: 100%;
  animation: brex_lp_mainVisual_textScroll 15s linear infinite;
}
.brex_lp_mainVisual_text picture,
.brex_lp_mainVisual_text img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes brex_lp_mainVisual_textScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.brex_lp_mainVisual img{
	width: 100%;
}

/*** スマホ 320px ~ 834px***/
@media screen and (max-width: 834px) {

}


/* brex_lp_footer
-----------------------------------------------------------*/
.brex_lp_pagetop{
	background: #FFD900;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.5rem;
	cursor: pointer;
	font-size: 0;
}
.brex_lp_pagetop img{
	width: 7.7rem;
}

.brex_lp_footer{
	padding: 4rem 1.6rem 9rem;
	background: #003557;
	color: #fff;
	text-align: center;
}
.brex_lp_footer_txt{
	font-size: 2.4rem;
}
.brex_lp_footer_sns{
	margin-top: 1.2rem;
	display: flex;
	justify-content: center;
	grid-gap: 1.6rem;
}
.brex_lp_footer_sns li{
	width: 3rem;
}
.brex_lp_footer_sns li img{
	width: 100%;
}
.brex_lp_footer_link{
	margin: 2.4rem auto 3.3rem;
	border-top: 1px solid #fff;
}
.brex_lp_footer_link li{
	border-bottom: 1px solid #fff;
}
.brex_lp_footer_link a{
	display: flex;
	text-align: left;
	padding: 1.5rem 0;
	padding-right: 2rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
	background: url(../image/ico_arr_white.svg)no-repeat right center;
	background-size: 2.4rem auto;
}
.brex_lp_footer_logo img{
	width: 12.1rem;
}
.brex_lp_copyright{
	margin-top: .2rem;
	font-size: 1.4rem;
	/*font-weight: 500;*/
	line-height: 1.93;
}
@media (min-width: 835px) {
	.brex_lp_pagetop{
		height: 5rem;
	}
	.brex_lp_pagetop img{
		width: 14.5rem;
	}

	.brex_lp_footer{
		padding: 7.2rem 0;
	}
	.brex_lp_footer .brex_lp_inner{
		max-width: 96rem;
	}
	.brex_lp_footer_txt{
		display: inline-flex;
		vertical-align: middle;
	}
	.brex_lp_footer_sns{
		margin-top: 0;
		margin-left: 2.4rem;
		display: inline-flex;
		justify-content: center;
		grid-gap: 1.6rem;
	}
	.brex_lp_footer_sns li{
		width: 3rem;
	}
	.brex_lp_footer_sns li img{
		width: 100%;
	}
	.brex_lp_footer_link{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 0 4rem;
		margin: 3.2rem auto 2.4rem;
		border-top: 0 solid #fff;
	}
	.brex_lp_footer_link li:nth-of-type(1),
	.brex_lp_footer_link li:nth-of-type(2){
		border-top: 1px solid #fff;
	}
	.brex_lp_footer_link li{
		border-bottom: 1px solid #fff;
	}
	.brex_lp_footer_link a{
		display: flex;
		text-align: left;
		padding: 1.5rem 1.6rem;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.5;
		background: url(../image/ico_arr_white.svg)no-repeat right .8rem center;
		background-size: 2.4rem auto;
	}
}
/*common*/
.wow{
	opacity: 0;
}
.animated{
	animation-duration: 1.5s;
	animation-delay: .2s;
	animation-timing-function: ease,cubic-bezier(.215,.61,.355,1);
}

.btn_link01{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	width: 34.3rem;
	max-width: 100%;
	height: 5.4rem;
	border-radius: .8rem;
	font-size: 2rem;
	font-weight: bold;
	color: #003557;
	background: #FFD900;
	border: 2px solid #fff;
	box-shadow: .4rem .4rem 0 #fff;

	position: relative;
	top: 0;
	left: 0;
	opacity: 1!important;
}
.btn_link01:before{
	content: '';
	position: absolute;
	right: 1.8rem;
	top: 0;
	z-index: 11;
	width: 2rem;
	height: 100%;
	background: url(../image/ico_arr.svg)no-repeat center center;
	background-size: 100% auto;
	transition: all .5s;
}

@media (min-width: 835px) {
	.btn_link01{
		width: 41.1rem;
		max-width: 100%;
		height: 6.5rem;
		border-radius: .96rem;
		font-size: 2.4rem;
		border: .24rem solid #fff;
		box-shadow: .5rem .5rem 0 #fff;
	}
	.btn_link01:before{
		right: 2rem;
		width: 2.4rem;
	}
	.btn_link01:hover{
		top: .5rem;
		left: .5rem;
		background-color: #C0A402;
		box-shadow: none!important;
	}
}

.img_box {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
}
.img_box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  transition: 0.5s ease-out;
}

.brex_lp_sec_title{
	font-size: 2rem;
	letter-spacing: .02em;
	font-weight: bold;
	color: #003557;
	margin-bottom: 3.2rem;
}
.brex_lp_sec_title.is_white{
	color: #fff;
}
.brex_lp_sec_title .jap{
	display: block;
	font-size: 4rem;
	line-height: 1.3;
	padding-top: 1rem;
}
@media (min-width: 835px) {
	.brex_lp_sec_title{
		font-size: 2.4rem;
		margin-bottom: 4.8rem;
		display: inline-flex;
		flex-direction: column;
		white-space: nowrap;
	}
	.brex_lp_sec_title.is_white{
		color: #fff;
	}
	.brex_lp_sec_title .jap{
		font-size: 4.8rem;
		line-height: 1.3;
	}
}
/*brex_lp_sec01*/

/* player LP middle contents
-----------------------------------------------------------*/
.main_wrap {
	position: relative;
	z-index: 1;
}

#brex_lp_sec01 {
	padding: 4rem 0;
	border-bottom: .8rem solid #FFD400;
	border-top: .8rem solid #FFD400;
	background: url(../image/bg_sec01.png) right  top -7.5rem / 29.8rem auto no-repeat,
		linear-gradient(180deg, rgba(18, 49, 90, 0) 0%, rgba(18, 49, 90, 0.8) 40%, rgba(18, 49, 90, 0.9) 100%),
		url(../image/bg_blue_sp.png) center top / 100% auto repeat-y;
	background-attachment: local,local, fixed;
	color: #fff;
}

.brex_lp_profile_grid {
}

.brex_lp_profile_item {
	padding: 2.4rem .8rem;
	border-right: 1px solid #b0c4d2;
	border-bottom: 1px solid #b0c4d2;
	border-left: 1px solid #b0c4d2;
}

.brex_lp_profile_label {
	color: #b0c4d2;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .02em;
}

.brex_lp_profile_value {
	margin-top: .8rem;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .02em;
}

.brex_lp_profile_value_en {
	margin-top: .4rem;
	font-size: 1.6rem;
}

.brex_lp_history {
	margin-top: 2.4rem;
}

.brex_lp_history_title {
	margin-bottom: 1.6rem;
	color: #ffd400;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .02em;
}

.brex_lp_history_row {
	display: flex;
	gap: 1.6rem;
	align-items: center;
	margin-top: 1.2rem;
}

.brex_lp_history_row_top {
	align-items: flex-start;
}

.brex_lp_history_year {
	width: 6rem;
	flex: 0 0 6rem;
	color: #b0c4d2;
	font-size: 1.3rem;
	font-weight: 700;
}

.brex_lp_history_text {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.6;
}

#brex_lp_sec02 {
	padding: 7.2rem 0;
	background: url(../image/bg_sec02.png) left bottom -20rem / 28rem auto no-repeat,
		url(../image/bg_yellow_sp.png) center top / cover no-repeat;
}

.brex_lp_history_dark {
	margin-top: 0;
	color: #12315a;
}
.brex_lp_history_dark .brex_lp_history_title{
	font-size: 2.4rem;
}
.brex_lp_history_dark .brex_lp_history_title,
.brex_lp_history_dark .brex_lp_history_text {
	color: #12315a;
}

.brex_lp_history_dark .brex_lp_history_year {
	color: #997f00;
}

.brex_lp_award {
	margin-top: 2.4rem;
	padding-top: 2.4rem;
	border-top: 1px solid rgba(153, 127, 0, .5);
}

.brex_lp_award_link {
	display: inline-flex;
	align-items: center;
	color: #12315a;
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 500;
	text-decoration: underline;
}

.brex_lp_target_icon {
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	flex: 0 0 1.6rem;
	margin-left: .8rem;
	object-fit: contain;
}

.brex_lp_design_title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.brex_lp_design_title_en {
	font-family: "Gill Sans", "GillSans-Bold", sans-serif;
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .01em;
	color: transparent;
	-webkit-text-stroke: 1px #1c4b89;
	text-stroke: 1px #1c4b89;
}

.brex_lp_design_title_jp {
	position: relative;
	z-index: 2;
	margin-top: -2.3rem;
	padding: .1rem 1.2rem;
	background: linear-gradient(to bottom, #1c4b89 20%, #0a2241);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .02em;
}

.brex_lp_design_title_yellow .brex_lp_design_title_en {
	-webkit-text-stroke-color: #ffd400;
	text-stroke-color: #ffd400;
}

.brex_lp_design_title_yellow .brex_lp_design_title_jp {
	background: linear-gradient(to bottom, #ffec8f, #ffd400);
	color: #12315a;
}

#brex_lp_sec03 {
	padding: 8rem 0;
	background: transparent;
}

.brex_lp_movie_block {
	margin-top: 2.4rem;
}

.brex_lp_movie_block + .brex_lp_movie_block {
	margin-top: 3.2rem;
}

.brex_lp_movie_block .brex_lp_slider {
	--brex-slide-width: 31.1rem;
}

.brex_lp_movie_heading {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .02em;
}

.brex_lp_movie_line {
	width: 8rem;
	height: .2rem;
	margin: .8rem auto 1.6rem;
	background: linear-gradient(90deg, #FFD400 0%, #FFFB03 100%);


}

.brex_lp_slider {
	--brex-slide-width: 34.3rem;
	position: relative;
}

.brex_lp_slider_view {
	position: relative;
	overflow: visible;
}

.brex_lp_slider_track {
	align-items: center;
}
.brex_lp_slider_slide {
	width: 31.1rem;
}
.brex_lp_movie_img{
	aspect-ratio: 680 / 383;
	position: relative;
	transition: transform .5s;
	transform: scale(.81);
}
.brex_lp_movie_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.brex_lp_movie_slide.swiper-slide-active .brex_lp_movie_img{
	transform: scale(1);
}

.brex_lp_movie_img:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background: #12315A80;
	transition: background .5s;
}

.brex_lp_movie_card {
	cursor: pointer;
}

.brex_lp_movie_play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	width: 6rem !important;
	height: auto!important;
	transform: translate(-50%, -50%);
	opacity: .7;
}

.brex_lp_movie_slide.swiper-slide-active .brex_lp_movie_img:before {
	background: transparent;
}

.brex_lp_movie_slide img {
	width: 100%;
}

.brex_lp_slider_prev,
.brex_lp_slider_next {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 2.4rem;
	height: 2.4rem;
	transform: translateY(-50%);
	cursor: pointer;
}

.brex_lp_movie_block .brex_lp_slider_prev,
.brex_lp_movie_block .brex_lp_slider_next {
	top: 9.15rem;
}

.brex_lp_slider_prev {
	left: calc(50% - 31.1rem / 2 - 1.2rem);
}

.brex_lp_slider_next {
	right: calc(50% - 31.1rem / 2 - 1.2rem);
}

.brex_lp_slider_prev img,
.brex_lp_slider_next img {
	width: 100%;
}

.brex_lp_slider_prev:after,
.brex_lp_slider_next:after {
	display: none;
}

.brex_lp_movie_popup {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 4rem 1.6rem;
	background: rgba(0, 0, 0, .8);
}

.brex_lp_movie_popup.is_open {
	display: flex;
}

.brex_lp_movie_popup_inner {
	position: relative;
	width: 100%;
	max-width: 96rem;
}

.brex_lp_movie_popup_close {
	position: absolute;
	right: 0;
	top: -4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.brex_lp_movie_popup_close img {
	width: 1.6rem;
}

.brex_lp_movie_popup_video {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #000;
}

.brex_lp_movie_popup_video iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

html.brex_lp_movie_popup_open,
html.brex_lp_movie_popup_open body {
	overflow: hidden;
}

.brex_lp_movie_caption {
	margin: .8rem 0 0;
	font-size: 1.4rem;
	text-align: center;
	color: #0F1011;
	opacity: 0;
}
.brex_lp_movie_slide.swiper-slide-active .brex_lp_movie_caption{
	opacity: 1;
}

.brex_lp_slider_dots {
	position: static;
	display: flex;
	justify-content: center;
	gap: .8rem;
	width: auto;
	margin-top: 1.6rem;
}

.brex_lp_slider_dots .swiper-pagination-bullet {
	width: .8rem;
	height: .8rem;
	margin: 0!important;
	font-size: 0;
	border-radius: 0;
	background: #b0c4d2;
	opacity: 1;
}

.brex_lp_slider_dots .swiper-pagination-bullet-active {
	background: #ffd400;
}

.brex_lp_movie_sns {
	margin-top: 3.2rem;
}

.brex_lp_movie_sns_list {
	display: flex;
	justify-content: center;
	gap: 4rem;
}

.brex_lp_movie_sns_link {
	display: block;
	width: 5.6rem;
}

.brex_lp_movie_sns_link img {
	width: 100%;
}

#brex_lp_sec04 {
	padding: 8rem 0 19rem;
	background: linear-gradient(180deg, rgba(18, 49, 90, 0) 0%, rgba(18, 49, 90, 0.8) 30%, rgba(18, 49, 90, 1) 70%)
	,url(../image/bg_blue_sp.png) center top / 100% auto repeat-y;
	background-attachment: local,fixed;
}

.brex_lp_qa {
	margin-top: 2.4rem;
}

.brex_lp_qa_tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: flex-end;
	justify-content: flex-end;
	height: 4rem;
	gap: .4rem;
	border-bottom: 1px solid #b0c4d2;
}

.brex_lp_qa_tab {
	padding: 0 1rem;
	border: 1px solid #b0c4d2;
	border-bottom: 0;
	border-radius: .6rem .6rem 0 0;
	color: #b0c4d2;
	font-size: 1.6rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.2rem;
	transition: all .5s;
}

.brex_lp_qa_tabs_bottom {
	display: none;
	border-bottom: 0;
	margin-top: -1px;
	align-items: flex-start;
}

.brex_lp_qa_tabs_bottom .brex_lp_qa_tab {
	border-top: 0;
	border-bottom: 1px solid #b0c4d2;
	border-radius: 0 0 .6rem .6rem;
}

.brex_lp_qa.is_open .brex_lp_qa_tabs_bottom {
	display: grid;
}

.brex_lp_qa_tab.is_active {
	background: #fff;
	border-color: #fff;
	color: #12315a;
	height: 4rem;
}

.brex_lp_qa_list {
	display: none;
	grid-template-columns: 1fr;
}

.brex_lp_qa_list.is_active {
	display: grid;
}

.brex_lp_qa_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.4rem;
	border-right: 1px solid #b0c4d2;
	border-bottom: 1px solid #b0c4d2;
	border-left: 1px solid #b0c4d2;
}

.brex_lp_qa_question {
	color: #b0c4d2;
	font-size: 1.6rem;
}

.brex_lp_qa_answer {
	margin-top: .4rem;
	color: #ffd400;
	font-size: 1.6rem;
	font-weight: 700;
}

.brex_lp_qa_more {
	display: none;
}

.brex_lp_qa.is_open .brex_lp_qa_more {
	display: flex;
}

.brex_lp_qa_more_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .8rem;
	width: 24.8rem;
	height: 4rem;
	margin: -3rem auto 0;
	padding: 0 1rem;
	border: 1px solid #b0c4d2;
	border-radius: .4rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	background: url(../image/plus.svg)no-repeat right 1rem center;
	background-size: 2rem auto;
	z-index: 3;
}

.brex_lp_qa.is_open .brex_lp_qa_more_btn {
	display: none;
}

.brex_lp_marquee {
	overflow: hidden;
	margin-top: 10.4rem;
	color: #ffd400;
	font-family: "Krona One", sans-serif;
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 400;
	white-space: nowrap;
}

.brex_lp_marquee_text {
	width: max-content;
	animation: brex_lp_marquee 36s linear infinite;
}

@keyframes brex_lp_marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

#brex_lp_sec05 {
	position: relative;
	padding: 8rem 0 7rem;
	margin: -11rem 0 -6rem;
	background: transparent;
}

#brex_lp_sec05:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -20%;
	width: 140%;
	border-radius: 50% / 10rem;
	background: url(../image/bg_yellow_sp.png) center top / cover no-repeat,
		#ffd400;
	content: '';
	pointer-events: none;
}

.brex_lp_message_visual .brex_lp_design_title {
	margin-bottom: 2.4rem;
}

.brex_lp_message_img {
	display: block;
	width: 29rem;
	margin: 0 auto;
}

.brex_lp_message_cta {
	margin-top: 3.2rem;
	padding: 2.4rem;
	border: 1px solid #12315a;
	background: linear-gradient(to bottom, #fff, #dfe2e7);
	text-align: center;
}

.brex_lp_message_text {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.brex_lp_button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.6rem;
	width: 24.8rem;
	height: 4rem;
	max-width: 100%;
	margin: 1.6rem auto 0;
	border: 1px solid #12315a;
	border-radius: .4rem;
	background: linear-gradient(to bottom, #ffe97c, #ffd400);
	box-shadow: 0px 1px .8rem 0px #3E3E3E14;
	color: #12315a;
	font-size: 1.6rem;
	font-weight: 700;
	position: relative;
}

.brex_lp_button .brex_lp_target_icon {
	width: 2rem;
	height: 2rem;
	flex-basis: 2rem;
	margin-left: 0;
	transition: transform .35s;
	position: absolute;
	right: 1rem;
	top: 1rem;
}

#brex_lp_sec06 {
	padding: 12rem 0 8rem;
	background: #12315a url(../image/bg_stats_sp.png) center / 100% auto no-repeat;
	color: #fff;
	/*background-attachment: fixed;*/
}

#brex_lp_sec06 .brex_lp_movie_heading {
	margin-top: 2.4rem;
}

.brex_lp_stats_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

.brex_lp_stats_item {
	padding: 1.6rem;
	border: 1px solid #b0c4d2;
	background: rgba(18, 49, 90, .8);
}

.brex_lp_stats_item h3 {
	color: #ffd400;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.brex_lp_stats_name {
	margin-top: .4rem;
	font-size: 1.2rem;
	min-height: 3em;
	font-weight: 700;
}

.brex_lp_stats_values {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 1.6rem;
	margin-top: 1.2rem;
	color: #ffd400;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

.brex_lp_stats_values span {
	display: block;
	margin-bottom: .2rem;
	color: #b0c4d2;
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 400;
}
.brex_lp_stats_values p+p{
	font-size: 1.6rem;
}

#brex_lp_sec07 {
	padding: 8rem 0 8rem;
	background: transparent;
}
.brex_lp_goods_slider .brex_lp_slider_dots{
	margin-top: 3rem;
}
.brex_lp_goods_slider {
	--brex-slide-width: 29.4rem;
	margin-top: 3.2rem;
}

.brex_lp_goods_card {
	display: block;
	padding: 2.4rem;
	border: 1px solid #12315a;
	background: rgba(255, 212, 0, .8);
}

.brex_lp_goods_slide {
	opacity: .5;
	transition: opacity .5s, transform .5s;
	transform: rotate(4deg) scale(.92);
}


.brex_lp_goods_slide.swiper-slide-active {
	opacity: 1;
	transform: rotate(4deg) scale(1);
}

.brex_lp_goods_card img {
	width: 100%;
	background: #fff;
}

.brex_lp_goods_card h3 {
	margin-top: 1.6rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

.brex_lp_goods_card p {
	margin-top: .8rem;
	font-size: 1.6rem;
}

.brex_lp_goods_links {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-direction: column-reverse;
	padding: 0 1.6rem;
}
.brex_lp_goods_links .brex_lp_button{
	margin-top: 2.4rem;
}

.brex_lp_button_white {
	background: none;
}

/* sec05 layout adjustment
-----------------------------------------------------------*/
@media screen and (max-width: 834px) {
	#brex_lp_sec05 {
		padding: 0 0 8rem;
	}

	#brex_lp_sec05:before {
		top: 7.8rem;
	}

	.brex_lp_message {
		display: flex;
		flex-direction: column;
	}

	.brex_lp_message_cta {
		order: 1;
		width: 100%;
		margin-top: 0;
	}

	.brex_lp_message_visual {
		order: 2;
		width: 100%;
		margin-top: 3.8rem;
	}

	.brex_lp_message_img {
		width: 31rem;
	}
}

/* Q&A closed mask adjustment
-----------------------------------------------------------*/
.brex_lp_qa {
	position: relative;
}

.brex_lp_qa:not(.is_open):after {
	position: absolute;
	right: 0;
	bottom: -4rem;
	left: 0;
	z-index: 1;
	height: 14rem;
	border-radius: 0 0 .4rem .4rem;
	background: linear-gradient(180deg, transparent 0%,rgba(18, 49, 90, 0.5) 20%, #12315A 40%);
	content: '';
	pointer-events: none;
}


/* sec01 / sec02 SP layout adjustment
-----------------------------------------------------------*/
@media screen and (max-width: 834px) {
	.brex_lp_profile_item {
		border-right: 0;
		border-left: 0;
	}

	.brex_lp_history_title {
		margin-bottom: 0;
	}

	.brex_lp_history {
		/*padding-right: .8rem;*/
		padding-left: .8rem;
	}

	.brex_lp_history_row,
	.brex_lp_history_row_top {
		display: block;
		margin-top: 1.6rem;
	}

	.brex_lp_history_year {
		width: auto;
		margin-bottom: .4rem;
		font-size: 1.6rem;
		line-height: 1.5;
		flex: none;
	}

	.brex_lp_history_text {
		font-size: 2rem;
		line-height: 1.5;
	}

	.brex_lp_award .brex_lp_history_title {
		margin-bottom: 1.6rem;
	}

	.brex_lp_award_link {
		display: inline;
		line-height: 2;
	}

	.brex_lp_award_link .brex_lp_target_icon {
		display: inline-block;
		margin-left: .4rem;
		vertical-align: -.3rem;
	}
}

/* PC middle styles
-----------------------------------------------------------*/
@media screen and (min-width: 835px) {
	.brex_lp_mainVisual {
		position: relative;
	}

	.brex_lp_scroll {
		position: absolute;
		bottom: 11rem;
		left: 3.2rem;
		z-index: 2;
		display: flex;
		align-items: center;
		flex-direction: column;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 1;
		letter-spacing: .08em;
		pointer-events: none;
		font-family: "Krona One", sans-serif;
	}

	.brex_lp_scroll span {
		writing-mode: vertical-rl;
	}

	.brex_lp_scroll:after {
		width: .2rem;
		height: 6.4rem;
		margin-top: 1.6rem;
		background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
		content: '';
	}

	#brex_lp_sec01 {
		padding: 5rem 0 9.6rem;
		border-width: 1.2rem;

		background: linear-gradient(180deg, rgba(18, 49, 90, 0) 0%, rgba(18, 49, 90, 0.8) 40%, rgba(18, 49, 90, 0.9) 100%),
			url(../image/bg_blue.png) center top / cover no-repeat;
		background-attachment: local, fixed;
	}

	#brex_lp_sec01 .brex_lp_inner {
		max-width: 114rem;
	}

	.brex_lp_profile_grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		border-top: 2px solid #b0c4d2;
		border-left: 2px solid #b0c4d2;
	}

	.brex_lp_profile_item {
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 14.6rem;
		padding: 2.4rem 1.6rem;
		border-top: 0;
		border-right: 2px solid #b0c4d2;
		border-bottom: 2px solid #b0c4d2;
		border-left: 0;
	}

	.brex_lp_profile_label {
		font-size: 2rem;
	}

	.brex_lp_profile_value {
		font-size: 2.4rem;
	}

	.brex_lp_profile_value_en {
		font-size: 2rem;
	}

	.brex_lp_history {
		width: 74rem;
		margin: 4rem auto 0;
	}

	.brex_lp_history_dark {
		margin-top: 0;
	}

	.brex_lp_history_title,
	.brex_lp_history_dark .brex_lp_history_title {
		font-size: 2.8rem;
		margin-bottom: 2.4rem;
	}

	.brex_lp_history_row,
	.brex_lp_history_row_top {
		display: flex;
		gap: 1.6rem;
		align-items: center;
		margin-top: 1.6rem;
	}

	.brex_lp_history_row_top {
	}

	.brex_lp_history_year {
		width: 8.1rem;
		flex: 0 0 8.1rem;
		font-size: 2rem;
	}

	.brex_lp_history_text {
		font-size: 2.4rem;
	}

	#brex_lp_sec02 {
		padding: 9.6rem 0;
		background-image: url(../image/bg_yellow.png);
		background-position: center top;
		background-size:  cover;
	}

	.brex_lp_award {
		margin-top: 3.2rem;
		padding-top: 3.2rem;
		border-width: 2px;
	}

	.brex_lp_award_link {
		font-size: 2rem;
	}

	.brex_lp_design_title {
	}

	.brex_lp_design_title_en {
		font-size: 8rem;
	}

	.brex_lp_design_title_jp {
		margin-top: -3rem;
		font-size: 2rem;
	}

	#brex_lp_sec03 {
		padding: 9.6rem 0;
	}

	.brex_lp_movie_block {
		margin-top: 3.2rem;
	}

	.brex_lp_movie_block + .brex_lp_movie_block {
		margin-top: 4.8rem;
	}

	.brex_lp_movie_heading {
		font-size: 2.4rem;
	}

	.brex_lp_movie_line {
		width: 12rem;
		height: .4rem;
		margin: 1.6rem auto 2.4rem;
	}

	.brex_lp_movie_block .brex_lp_slider {
		--brex-slide-width: 68rem;
	}

	.brex_lp_movie_slide {
		width: 68rem;
	}

	.brex_lp_movie_block .brex_lp_slider_prev,
	.brex_lp_movie_block .brex_lp_slider_next {
		top: 19.15rem;
		width: 3.2rem;
		height: 3.2rem;
	}

	.brex_lp_movie_play {
		width: 8rem !important;
		height: auto!important;
	}

	.brex_lp_movie_popup {
		padding: 6rem;
	}

	.brex_lp_movie_popup_close {
		top: -4.8rem;
		width: 4rem;
		height: 4rem;
	}

	.brex_lp_movie_popup_close img {
		width: 2rem;
	}

	.brex_lp_movie_block .brex_lp_slider_prev {
		left: calc(50% - 34rem - 1.6rem);
	}

	.brex_lp_movie_block .brex_lp_slider_next {
		right: calc(50% - 34rem - 1.6rem);
	}

	.brex_lp_movie_caption {
		font-size: 1.6rem;
		margin-top: 1.6rem;
	}

	.brex_lp_movie_sns {
		margin-top: 4.8rem;
	}

	.brex_lp_movie_sns_list {
		gap: 5.6rem;
	}

	.brex_lp_movie_sns_link {
		width: 7.2rem;
	}

	#brex_lp_sec04 {
		padding: 9.6rem 0 19rem;
		background: linear-gradient(180deg, rgba(18, 49, 90, 0) 0%, rgba(18, 49, 90, .8) 30%, #12315a 70%),
			url(../image/bg_blue.png) center top / cover repeat-y;
		background-attachment: local, fixed;
	}

	#brex_lp_sec04 .brex_lp_inner {
		max-width: 114rem;
	}

	.brex_lp_qa {
		margin-top: 3.2rem;
	}

	.brex_lp_qa:not(.is_open):after {
		bottom: -5.6rem;
		height: 18rem;
		border-radius: 0 0 1.2rem 1.2rem;
	}

	.brex_lp_qa_tabs,
	.brex_lp_qa_list {
		width: 90rem;
		margin-right: auto;
		margin-left: auto;
	}

	.brex_lp_qa_tabs {
		height: 5.4rem;
		gap: .8rem;
		border-width: 2px!important;
	}

	.brex_lp_qa_tab {
		height: 5.4rem;
		padding: 0 1.2rem;
		font-size: 2rem;
		border-width: 2px!important;
		border-radius: .8rem .8rem 0 0;
	}
	.brex_lp_qa_tabs_bottom .brex_lp_qa_tab{
		border-radius: 0 0 .8rem .8rem;
	}

	.brex_lp_qa_tab.is_active {
		height: 5.4rem;
	}

	.brex_lp_qa_list.is_active {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.brex_lp_qa_item {
		grid-gap: .4rem;
		min-height: 14.6rem;
		padding: 2.4rem 1.6rem;
		border-right: 2px solid #b0c4d2;
		border-bottom: 2px solid #b0c4d2;
		border-left: 0;
	}

	.brex_lp_qa_item:nth-child(3n + 1) {
		border-left: 2px solid #b0c4d2;
	}

	.brex_lp_qa_question {
		font-size: 2rem;
	}

	.brex_lp_qa_answer {
		font-size: 2rem;
	}

	.brex_lp_qa_more_btn {
		width: 24.8rem;
		height: 5.4rem;
		margin-top: -2.8rem;
		padding: 0 1.2rem;
		border-width: 2px;
		border-radius: .4rem;
		font-size: 2rem;
		background-size: 2.4rem auto;
		transition: opacity .3s;
	}
	.brex_lp_qa_more_btn:hover{
		opacity: .7;
	}

	.brex_lp_marquee {
		margin-top: 13rem;
		font-size: 1.6rem;
	}

	#brex_lp_sec05 {
		padding: 9.6rem 0;
		margin: -11rem 0 -9.5rem;
	}

	#brex_lp_sec05:before {
		border-radius: 50% / 24rem;
		background-image: url(../image/bg_yellow.png);
	}

	#brex_lp_sec05 .brex_lp_inner {
		max-width: 124rem;
	}

	.brex_lp_message {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4rem;
	}

	.brex_lp_message_visual {
		order: 1;
		width: 48rem;
	}

	.brex_lp_message_img {
		width: 100%;
	}

	.brex_lp_message_cta {
		order: 2;
		width: 48rem;
		margin-top: 0;
		padding: 3.2rem;
		border-width: 2px;
	}

	.brex_lp_message_text {
		font-size: 2.8rem;
	}

	.brex_lp_button {
		width: 28.8rem;
		height: 4.3rem;
		font-size: 1.8rem;
		border-width: 2px;
	}

	#brex_lp_sec06 {
		padding: 19rem 0 9.6rem;
		background-image: url(../image/bg_stats.png);
		background-size: 144rem auto;
		background-position: bottom center;
	}

	#brex_lp_sec06 .brex_lp_inner {
		max-width: 99rem;
	}

	#brex_lp_sec06 .brex_lp_movie_heading {
		margin-top: 2.4rem;
	}

	.brex_lp_stats_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.4rem;
		margin-top: 3.2rem;
	}

	.brex_lp_stats_item {
		padding: 1.6rem;
		border-width: 2px;
	}

	.brex_lp_stats_item h3 {
		font-size: 2.4rem;
	}

	.brex_lp_stats_name {
		min-height: 0;
		font-size: 1.4rem;
	}

	.brex_lp_stats_values {
		font-size: 2.4rem;
	}
	.brex_lp_stats_values p+p{
		font-size: 1.8rem;
	}

	.brex_lp_stats_values span {
		font-size: 1.2rem;
	}

	#brex_lp_sec07 {
		padding: 9.6rem 0;
	}

	.brex_lp_goods_slider {
		--brex-slide-width: 31.9rem;
		margin-top: 3.2rem;
	}

	.brex_lp_goods_slide {
		transform: rotate(6deg) scale(.92);
		width: 31.9rem;
	}
	.brex_lp_goods_slide.swiper-slide-active {
		transform: rotate(6deg) scale(1);
}

	.brex_lp_goods_card {
		padding: 3.2rem;
	}

	.brex_lp_goods_card h3 {
		font-size: 2.4rem;
	}
	.brex_lp_goods_card p{
		font-size: 1.8rem;
	}

	.brex_lp_goods_slider .brex_lp_slider_prev,
	.brex_lp_goods_slider .brex_lp_slider_next {
		width: 3.2rem;
		height: 3.2rem;
	}

	.brex_lp_goods_slider .brex_lp_slider_prev {
		left: calc(50% - 15.95rem - 1.6rem);
	}

	.brex_lp_goods_slider .brex_lp_slider_next {
		right: calc(50% - 15.95rem - 1.6rem);
	}

	.brex_lp_goods_links {
		margin-top: 4.4rem;
		justify-content: center;
		flex-direction: row;
		gap: 3.2rem;
	}

	.brex_lp_goods_links .brex_lp_button {
		margin: 0;
	}


	.brex_lp_target_icon{
		width: 2rem;
		height: 2rem;
	}
	.brex_lp_award_link .brex_lp_target_icon{
		width: 3.2rem;
		height: 3.2rem;
	}
	.brex_lp_button:hover{
		opacity: 1;
	}
	.brex_lp_button:hover .brex_lp_target_icon {
		transform: translate(.3rem, -.3rem);
	}
	.brex_lp_slider_dots{
		margin-top: 2.4rem;
		grid-gap: 1.2rem;
	}
	.brex_lp_slider_dots .swiper-pagination-bullet{
		width: 1.2rem;
		height: 1.2rem;
	}
	.brex_lp_message_visual .brex_lp_design_title{
		margin-bottom: 3.2rem;
	}
}
