@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      top.css
 Update:         2017.2.10
 Style Info:     トップCSSファイル
----------------------------------------------------------- */
/********************************************
モバイルファースト
*********************************************/
.pc {
	display: none;
}
@media screen and (min-width:768px){
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}
}



h3.h3_style {
    text-align: center;
    color: #252b57;
    font-size: 48px;
    font-family: 'TwCenMT', sans-serif;
    position: relative;
}
h3.h3_style.white {
    color: #FFF;
}
h3.h3_style:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #252b57;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
h3.h3_style.white:after {
    background: #FFF;
}

@media screen and (min-width:768px){
    h3.h3_style {
        text-align: center;
        color: #252b57;
        font-size: 64px;
        font-family: 'TwCenMT', sans-serif;
        position: relative;
    }
}

p.btn {
	width: 80%;
	margin: 0 auto;
	border: 2px solid #FFF;
	-webkit-box-shadow: 4px 4px 0 #000;
	box-shadow: 4px 4px 0 #000;
}
p.btn a {
	display: block;
	text-align: center;
	padding: 10px 0;
	color: #FFF;
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	transition: color ease .3s;
	z-index: 1;
}
p.btn a:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background: #FFF;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
p.btn a:after {
	content: "▶";
	font-size: 10px;
	position: absolute;
	display: block;
	width: 11px;
	height: 12px;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}
p.btn a:hover {
	color: #000;
	font-weight: bold;
	z-index: 1;
}
p.btn a:hover:before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
	z-index: -1;
}

@media screen and (min-width:480px){
	p.btn a {
		padding: 12px 0;
		font-size: 16px;
	}	
}

@media screen and (min-width:768px){
	p.btn {
		width: 60%;
	}
}

@media screen and (min-width:980px){
    p.btn {
		width: 100%;
	}
	p.btn a {
		font-size: 18px;
	}
}

/*****メイン*****/
#main {
    width: 100%;
    height:100vh;
    max-height: 100dvh;
    /*display: flex;
    justify-content: center;
    flex-direction: column;*/
    position: relative;
    overflow: hidden;
}
.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.0s ease-in-out;
}
.bg-item.active {
    opacity: 1;
}
.content-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.slide-item {
    width: 90%;
    margin: 0 auto;
    display: none;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.25);
    animation: fade;
}

.slide-item.active {
    display: block;
    animation: fade .5s ease;
}
@keyframes fade {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.scroll_down{
    position:absolute;
    bottom:20px;
    right:0;
    left: 0;
    animation: arrowmove 1s ease-in-out infinite;
    z-index: 3;
    
}

.scroll_down a{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
    color: #FFF;
    font-size: 14px;
    font-family: 'TwCenMT', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 100px;
    height: 24px;
    text-align: center;
    text-decoration: none;
}

.text {
  display: block;
  margin-top: 60px;
  margin-left: 0;
  font-size: 12px;
  color: #FFF;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
    position: absolute;
    width: 28px;
    height: 3px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #FFF;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}

@media only screen and (min-width: 480px) {
    
}

/*****HORIZON*****/
#horizon {
    padding: 5em 10px;
    width: 100%;
    text-align: center;
    background: url("../img/top/bg_holizon.png") no-repeat;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}
#horizon h2 {
    font-family: 'TwCenMT', sans-serif;
    font-size: 85px;
    color: #FFF;
    line-height: 1.0;
    margin-bottom: 0.5em;
}
#horizon h2 p {
    font-family:'NotoSansJP', sans-serif;
    font-size: 14px;
}
#horizon #concept p {
    font-family: "Noto Serif", serif;
    font-size: 19px;
    color: #FFF;
    line-height: 1.6;
    margin-bottom: 1em;
}

@media screen and (min-width:640px){
    #horizon {
        padding: 6em 10px;
    }
	#horizon h2 {
        font-size: 100px;
        margin-bottom: 0.5em;
    }
    #horizon h2 p {
        font-size: 16px;
    }
    #horizon #concept p {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 2em;
    }
}

@media only screen and (min-width: 1280px) {
    #horizon_wrap {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #horizon h2 {
        font-size: 136px;
        margin-bottom: 0.5em;
    }
    #horizon h2 p {
        font-size: 22px;
    }
    #horizon #concept p {
        font-size: 30px;
    }
}


/*****MV*****/
#mv {
    width: 100%;
    height: auto;
    position: relative;
}
#mv .video {
    max-width: 100%;
    position: relative;
}
#mv #mv_btn {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
}
#mv #mv_btn #play_btn, #mv #mv_btn #pause_btn {
    position: absolute;
    color: #FFF;
    font-family: 'TwCenMT', sans-serif;
    font-size: 30px;
    cursor: pointer;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border:2px solid #FFF;
    background:rgba(0,0,0,0.40);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity:0;
}
#mv #mv_btn #play_btn.active {
    opacity:1;
}

@media only screen and (min-width: 980px) {
    #mv #mv_btn:hover #pause_btn.active {
        opacity:1;
    }
}

/****Slide Show****/
#slideshow {
    width: 100%;
    padding: 5em 0;
    background: url("../img/top/bg_holizon.png") no-repeat;
    background-size: cover;
    background-position: center;
}
#slideshow ul {
    display: flex;
    width: 95%;
    height: 500px;
    margin: 0 auto;
    justify-content: flex-start;
}
#slideshow ul li {
    flex: 0 0 3%;
    transition: flex-grow 0.5s ease;
    position: relative;
    border-radius: 4px;
    cursor: pointer;
}
#slideshow ul li::after {
    content: "";
    position: absolute;
    inset:0;
    background: rgba(0,0,0,0.55);
    opacity: 1;
    transform: opacity 0.4s ease;
}
#slideshow ul li.active {
    flex: 1 0 auto;
}
#slideshow ul li.active::after {
    opacity:0;
}
#slideshow ul li span {
    display: none;
}
.n01 {
    background: url("../img/top/imgcut_01.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n02 {
    background: url("../img/top/imgcut_02.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n03 {
    background: url("../img/top/imgcut_03.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n04 {
    background: url("../img/top/imgcut_04.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n05 {
    background: url("../img/top/imgcut_05.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n06 {
    background: url("../img/top/imgcut_06.png") no-repeat;
    background-size: cover;
    background-position: center top;
}
.n07 {
    background: url("../img/top/imgcut_07.png") no-repeat;
    background-size: cover;
    background-position: center top;
}

@media screen and (min-width:640px){
    #slideshow {
        padding: 8em 0 6em;
    }
    #slideshow ul {
        height: 600px;
    }
    #slideshow ul li {
        flex: 0 0 5%;
    }
}

@media screen and (min-width:768px){
    #slideshow ul li {
        flex: 0 0 8%;
        transition: flex-grow 0.5s ease;
        position: relative;
        border-radius: 4px;
    }
}

@media screen and (min-width:1280px){
    #slideshow {
        width: 1200px;
        margin: 0 auto;
        padding: 12em 0 8em;
    }
    #slideshow ul {
        height: 750px;
    }
}

/****campaign****/
#campaign {
    width: 95%;
    margin: 0 auto;
    padding-top: 3em;
    padding-bottom: 10em;
    box-sizing: border-box;
}
#cmp_box {
    width: 100%;
    margin: 0 auto;
    background: #dfd6cd;
    padding: 10px 10px 20px;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}
#cmp_box .cmp_bnr {
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}
#cmp_box #cmp_items {
    display: flex;
    justify-content: space-between;
}
#cmp_box #cmp_txt {
    background: #000;
    color: #FFF;
    font-weight: bold;
    padding: 8px 10px;
    margin-top: 10px;
}
#cmp_items p {
    width: 32%;
    background: #FFF;
    padding: 5px;
    margin-top: 10px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
#numkit {
    margin-top: 2em;
}

@media only screen and (min-width: 480px) {
    #cmp_box {
        padding: 10px 15px 20px;
    }
}

@media only screen and (min-width: 640px) {
    
}

@media only screen and (min-width: 768px) {
    #campaign {
        width: 95%;
        margin: 0 auto;
        padding-top: 3em;
        padding-bottom: 15em;
    }
    #cmp_items p {
        padding: 10px;
    }
}

@media only screen and (min-width: 1280px) {
    #campaign {
        width: 1000px;
        margin: 0 auto;
        padding-top: 5em;
        padding-bottom: 20em;
    }
}

/****STYLE****/
#style {
    background: #FFF;
    position: relative;
    padding-top: 1em;
    padding-bottom: 5em;
    /*padding: 5em 0;*/
}
#style:before {
    content:"";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
    aspect-ratio: 1000 / 100;
    background: url("../img/top/section_deco.svg") no-repeat;
    background-size: 100% 100%;
    transform: translateY(-100%) rotate(180deg);
}


/****LIVE COMMERCE****/
#live_commerce {
    background: #FFF;
    padding-bottom: 5em;
}
#live_commerce #livecommerce_wrap {
    height: 600px;
    background-image: url("../img/top/bg_livecommerce.png");
    background-repeat: no-repeat;
    background-color:rgba(255,255,255,1);
    background-blend-mode:exclusion;
    background-size: contain;
    background-position: center;
}


/****line up****/
#line_up {
    background: #FFF;
	padding: 30px 10px 50px;
    position: relative;
}
#line_up:after {
    content:"";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom:1px;
    aspect-ratio: 1000 / 100;
    background: url("../img/top/section_deco.svg") no-repeat;
    background-size: 100% 100%;
    transform: translateY(100%);
}
#line_up .section_lineup {
	margin: 30px 0 60px;
}

#line_up .section_lineup h4 {
	text-align: center;
	color: #252b57;
	font-size: 18px;
    font-weight: bold;
}

#line_up .section_lineup ul {
	margin: 20px 0;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
#line_up .section_lineup ul li {
	width: 48%;
	height: auto;
	margin-top: 20px;
	position: relative;
    display: flex;
    flex-direction: column;
}

#line_up .section_lineup ul li p {
	color: #252b57;
    font-weight: bold;
}
#line_up .section_lineup ul li p.product_name{
	margin: 5px 0 10px;
}
#line_up .section_lineup ul li p.product_name span{
	color: #fff;
    font-size: 80%;
    background:#252b57;
    border-radius: 50px;
    padding: 2px 5px;
}
#line_up .section_lineup ul li p.price{
	text-align: right;
	font-size: 88%;
    margin-top: auto;
}
#line_up .section_lineup ul li a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

@media only screen and (min-width: 480px) {
    #line_up .section_lineup h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 640px) {
    #line_up .section_lineup ul li {
        width: 45%;
        margin-top: 2.5em;
    }
}

@media screen and (min-width:768px){
    #line_up {
		padding: 40px 20px 20px;
	}
	#line_up .section_lineup {
		margin: 30px 0 80px;
	}
    #line_up .section_lineup h4 {
        font-size: 28px;
    }
	#line_up .section_lineup ul li {
		width: 30%;
	}
	#line_up .section_lineup ul li p.price{
		font-size: 100%;
	}
}

@media only screen and (min-width: 1280px) {
    #line_up .section_lineup {
        width: 1192px;
        margin: 0 auto;
		margin-top: 30px;
        margin-bottom: 100px;
	}
    #line_up .section_lineup ul li {
		width: 28%;
        margin-top: 5em;
	}
    #line_up .section_lineup h4 {
        font-size: 32px;
    }
}

/*フェデレーション*/
#federation {
    padding-top: 5em;
    padding-bottom: 5em;
}
#federation h4 {
    color: #FFF;
    text-align: center;
    margin: 2em 0;
}
#federation ul  {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#federation ul li {
    position: relative;
    cursor: pointer;
    word-break: break-all;
}
#federation .fed_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:0;
    z-index: 2;
    transition: opacity 0.5s;
}

#federation ul li:hover .fed_info {
    opacity:1;
}

#federation .fed_info a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#federation .fed_info > div {
    width: 100%;
    background: #FFF;
    padding: 10px 5px;
    box-sizing: border-box;
}
#federation .fed_info h5 {
    font-size: 9px;
    text-align: center;
    margin-bottom: 5px;
    font-family: 'TwCenMT', sans-serif;
}
#federation .fed_info p {
    font-size: 7px;
}
#federation .fed_info.ar {
    background:rgba(133,169,219,0.80);
}
#federation .fed_info.de {
    background:rgba(255,233,2,0.80);
}
#federation .fed_info.it {
    background:rgba(75,192,104,0.80);
}
#federation .fed_info.es {
    background:rgba(254,232,10,0.80);
}
#federation .fed_info.mx {
    background:rgba(248,63,61,0.80);
}
#federation .fed_info.col {
    background:rgba(57,148,253,0.80);
}
#federation .fed_info.be {
    background:rgba(248,63,61,0.80);
}

@media only screen and (min-width: 640px) {
    #federation {
        padding-top: 8em;
        padding-bottom: 8em;
    }
    #federation h4 {
        font-size: 16px;
    }
    #federation .fed_info h5 {
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
    }
    #federation .fed_info p {
        font-size: 10px;
    }
}

@media only screen and (min-width: 980px) {
    #federation {
        padding-top: 15%;
        padding-bottom: 8em;
    }
    #federation h4 {
        font-size: 22px;
    }
    #federation .fed_info h5 {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
    #federation .fed_info p {
        font-size: 10px;
        font-weight: bold;
        text-align: center;
    }
}

@media only screen and (min-width: 1280px) {
    #federation {
        width: 1200px;
        margin: 0 auto;
    }
    #federation .fed_info h5 {
        font-size: 24px;
    }
    #federation .fed_info p {
        font-size: 12px;
    }
}

/*trionda*/
#bnr_area {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 5em;
    text-align: center;
    max-width: 715px;
}


/*フロートメニュー*/
#float_btn {
	position:fixed;
	width:100%;
    /*height: 101px;*/
    bottom:0;
    left: 0;
    right: 0;
    margin: auto;
	/*margin-top:175px;*/
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	z-index:10;
}
#float_wrap {
    position: relative;
    background: rgba(3,9,56,0.80);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 10px;
    box-sizing: border-box;
}
#float_title {
    font-family: 'TwCenMT', sans-serif;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
}
#float_menu ul {
    display: flex;
    justify-content: space-between;
}
#float_menu ul li {
    width: 42px;
}
#float_menu ul li .country_name {
    color: #fff;
    font-size: 6px;
    text-align: center;
    margin-top: 2px;
}

/*page top*/
#page_top {
	width: 40px;
	height: 40px;
	background: #FFF;
    border: 2px solid #0b1140;
    border-radius: 50%;
    position: fixed;
    bottom: 10px;
	right: 10px;
    z-index: 11;
}
#page_top a {
	color: #0b1140;
	display: block;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	text-align: center;
	padding-top: 15px;
    font-family: 'TwCenMT', sans-serif;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
#page_top a:before {
	content: "▲";
	font-size: 12px;
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin: auto;
}

@media screen and (min-width:480px){
    #float_wrap {
        padding: 10px 15px;
    }
    #float_menu ul li .country_name {
        color: #fff;
        font-size: 6px;
        text-align: center;
        margin-top: 2px;
        font-weight: bold;
    }
}

@media screen and (min-width:640px){
    #float_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 15px 10px;
    }
    #float_title {
        width: 200px;
        font-size: 24px;
        text-align: left;
        margin-bottom: 0;
    }
    #float_menu {
        flex: 1;
    }
}

@media screen and (min-width:768px){
    #float_menu ul li {
        width: 50px;
    }
    #float_menu ul li .country_name {
        color: #fff;
        font-size: 8px;
        text-align: center;
        margin-top: 2px;
    }
}

@media screen and (min-width:980px){
    #float_btn {
        position:fixed;
        width:900px;
        bottom:10px;
        left: 0;
        right: 0;
        margin: auto;
    }
    #float_wrap {
        border-radius: 50px;
        padding: 15px 30px 10px;
        box-sizing: border-box;
    }
    #float_title {
        width: 300px;
        font-size: 24px;
        text-align: left;
        margin-bottom: 0;
    }
}



/********************************************
タブレット　ランドスケープ
*********************************************/
@media only screen and (min-width: 980px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1280px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1370px) {
	
}


/********************************************
PC
*********************************************/
@media only screen and (min-width: 1680px) {
	
}
