@charset "UTF-8";
@import "common.tb.css?1";

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

.more li {
	width: 300px;
	margin-left: auto;
}

.more li:after {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-image: linear-gradient(90deg, transparent 0%, transparent 80%, #0054A7 80%, #0054A7 100%, transparent);
	background-size: 4px 1px;
}

.more li a {
	display: block;
	padding: 0 0 15px 30px;
	text-decoration: none;
	text-align: left;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	color: #333;
	position: relative;
}

.more li a:after {
	display: inline-block;
	vertical-align: 0.1em;
	content: '';
	width: 0.3em;
	height: 0.3em;
	margin-left: 0.2em;
	border-top: solid 2px #76BFF1;
	border-right: solid 2px #76BFF1;
	transform: rotate(45deg);
	position: absolute;
	top: 54%;
	right: 0.5em;
}

.more li .en {
	display: block;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #0054A7;
	position: relative;
}

.more li .en:before {
	content: '';
	width: 20px;
	height: 2px;
	background: #76BFF1;
	position: absolute;
	top: 45%;
	left: -30px;
}

.more li .kana {
	margin-left: 1em;
	font-size: 14px;
}

.more li a .trans {
	display: inline-block;
	vertical-align: top;
	height: 26px;
	overflow: hidden;
	position: relative;
}

.more li a .trans:after {
	content: '';
	height: 2px;
	background: #0054A7;
	transition-property: right;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	position: absolute;
	right: 100%;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.more li a:hover .trans:after {
	right: 0;
}

.more li a .ja {
	display: block;
}

.more li a:hover .ja {
	animation: trans .3s 0s forwards ease-in-out;
}

@keyframes trans {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	50% {
		transform: translate(0, -110%);
		opacity: 0;
	}
	51% {
		transform: translate(0, 110%);
		opacity: 0;
	}
	100% {
		transform: translate(0, 0);
		opacity: 1;
	}
}

/* ---------------------------------------------------------
	CSS Document main
--------------------------------------------------------- */

#main {
	display: flex;
	justify-content: center;
	height: 73vw;
	padding-bottom: 20px;
	position: relative;
	z-index: 0;
}

#main:before {
	content: '';
	width: 50%;
	height: 140%;
	background: url(../top/visual_left.svg) no-repeat 100% -30% / auto 94%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#main:after {
	content: '';
	width: 60%;
	height: 127%;
	background: url(../top/visual_right.svg) no-repeat left bottom / auto 110%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

#main picture {
	width: 100%;
	overflow: hidden;
	transform: scale(0.9, 0.9);
	transition: 0.5s opacity linear 1.4s;
	opacity: 0;
}

#main picture img {
	height: 70vw;
	margin-right: -5vw;
}

#main:after,
#main:before {
	transform: scale(0.5, 0.5);
	transition: 0.5s opacity linear 0.8s;
	opacity: 0;
}

#main.loaded:after,
#main.loaded:before {
	animation: poyon2 0.5s ease-out 0.8s forwards;
	opacity: 1;
}

@keyframes poyon2 {
	0% { transform: scale(0.5, 0.5); }
	75% { transform: scale(1.01, 1.01); }
	100% { transform: scale(1, 1); }
}

#main.loaded picture {
	animation: poyon 0.5s ease-out 1.4s forwards;
	opacity: 1;
}

@keyframes poyon {
	0% { transform: scale(0.9, 0.9); }
	75% { transform: scale(1.01, 1.01); }
	100% { transform: scale(1, 1); }
}

/* ---------------------------------------------------------
	CSS Document about
--------------------------------------------------------- */

#about {
	display: flex;
	justify-content: space-between;
	margin-bottom: 7vw;
}

#about picture {
	width: 50%;
}

#about picture img {
	height: 69.81132075471698vw;
}

#about .section {
	width: 50%;
	padding: 40px;
	text-align: justify;
}

#about h2 {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.5;
}

#about h2:before {
	display: block;
	content: '';
	width: 60px;
	height: 2px;
	margin-bottom: 40px;
	background: #76BFF1;
}

/* ---------------------------------------------------------
	CSS Document features
--------------------------------------------------------- */

#features {
	margin: 0 30px 80px;
}

#features figure img {
	margin-bottom: 50px;
}

#features figure img {
	max-width: 630px;
	width: 80%;
}

/* ---------------------------------------------------------
	CSS Document license
--------------------------------------------------------- */

#license .container {
	margin-bottom: 80px;
	padding: 50px 30px 50px;
	background: #FBFBFB;
}

#license h2 {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.5;
}

#license .flex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10vw;
}

#license .row {
	width: 47%;
}

#license figure {
	margin-bottom: 15px;
	padding: 15px;
	border: solid 1px #FB0026;
	background: #fff;
}

#license .row:last-of-type figure {
	border: solid 1px #01947F;
}

#license figure img {
	height: 18vw;
}

#license p {
	text-align: justify;
}

#license .flex li {
	margin-left: 1.6em;
	text-align: justify;
	list-style: disc;
}

#license h3 {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
}

#license h3:before,
#license h3:after {
	display: inline-block;
	vertical-align: 0.7vw;
	content: '';
	width: 80px;
	height: 1px;
	background: #333;
}

#license h3:before {
	margin-right: 2em;
}

#license h3:after {
	margin-left: 2em;
}
#license .more {
	margin-top: 50px;
	margin-right: 0;
	position: relative;
	z-index: 0;
}

#license .more:before {
	content: '';
	width: 250px;
	height: 250px;
	background: url(/common/top/balloon_01.svg) no-repeat 0 0;
	position: absolute;
	top: 90px;
	right: -120px;
	z-index: -1;
}
#license .more li {
	background: none;
}
#license .more li:first-child {
	margin-bottom: 20px;
}


/* ---------------------------------------------------------
	CSS Document outline
--------------------------------------------------------- */

#outline {
	margin: 0 30px 80px;
}

#outline h2 {
	margin-bottom: 30px;
	text-align: left;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.5;
}

#outline h2:before {
	display: block;
	content: '';
	width: 60px;
	height: 2px;
	margin-bottom: 40px;
	background: #76BFF1;
}

#outline .flex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10vw;
}

#outline figure {
	margin-bottom: 50px;
}

#outline figure img {
	height: 32vw;
}

/* ---------------------------------------------------------
	CSS Document case
--------------------------------------------------------- */

#case {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

#case .flex {
	width: 50%;
	overflow: hidden;
}

#case .flex img {
	max-width: 200%;
	height: 33.39586563307494vw;
}

#case .section {
	width: 50%;
	padding: 40px 0 0 40px;
	text-align: left;
}

#case h2 {
	margin-bottom: 30px;
	text-align: left;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.5;
}

#case h2:before {
	display: block;
	content: '';
	width: 60px;
	height: 2px;
	margin-bottom: 40px;
	background: #76BFF1;
}

#case .carousel {
	margin-bottom: 50px;
	position: relative;
}

#case .carousel figure {
	padding-right: 40px;
}

#case .slick-arrow {
	width: 30px;
	height: 30px;
	font-size: 0;
	position: absolute;
	top: -40px;
	z-index: 3;
}

#case .slick-arrow.slick-disabled {
	opacity: 0.4;
}

#case .slider_prev {
	right: 65px;
}

#case .slider_next {
	right: 25px;
}

#case .slider_prev:after,
#case .slider_next:after {
	content: '';
	width: 10px;
	height: 10px;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	z-index: 4;
}

#case .slider_prev:after {
	margin-top: -2px;
	border-bottom: solid 2px #76BFF1;
	border-left: solid 2px #76BFF1;
	left: 8px;
}

#case .slider_next:after {
	margin-top: -2px;
	border-top: solid 2px #76BFF1;
	border-right: solid 2px #76BFF1;
	right: 15px;
}

#case .more {
	margin-right: 30px;
}


.campaign {
	width: 100%;
	font-family: "新ゴ R" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
	z-index: 1000;
	padding: 1em 1em 2em 1em;
	background-image: -webkit-linear-gradient(21deg, #1da8e4 0%, #08325e 71%, #010338 100%);
	color: #fff;
	border-radius: 0.5em;
	max-width: 90%;
	margin: 0 auto 50px auto;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.campaign h3 {
	font-family: "フォーク M" , "メイリオ" , Meiryo , "ヒラギノ角ゴPro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
	font-weight: 900;
	font-size: 2rem;
	margin-bottom: 5px;
}
.campaign a {
	margin-top: 1em;
	display: inline-block;
	background: #fff;
	line-height: 1;
	padding: 0.8em 1.5em 1em 1.5em;
	border-radius: 1.3em;
	text-decoration: none;
	color: #333;
	font-size: 1.2rem;
	font-weight: 600;
}
.campaign p span {
	font-size: 120%;
}
