@charset "UTF-8";

/* reset
------------------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a {
	text-decoration: none;
}
a img {
	border: none;
	outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

/* html.body
------------------------------------------------------------ */
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	-webkit-text-size-adjust: 100%; /* ios用フォントサイズ自動調整解除 */
	font-size: 1.0rem;
	line-height: 1.8;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
}
img {
	width: auto;
	max-width: 100%;
	vertical-align: bottom;
}
a {
	transition: all .3s ease-out;
}

/* animation
------------------------------------------------------------ */
@keyframes kurukuru {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes baaam {
	0% {
		opacity: 0;
		transform: scale(10);
	}
	60% {
		opacity: 1;
		transform: scale(1);
	}
	70% {
		transform: scale(1.25);
	}
	80% {
		transform: scale(1);
	}
	90% {
		transform: scale(1.1);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes shun {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	30% {
		opacity: 1;
		transform: scale(0.9);
	}
	99% {
		transform: scale(1);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* loading
------------------------------------------------------------ */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #275c9a;
	z-index: 9999;
	transition: opacity 1.5s ease-in;
}
body.hide #loading {
	opacity: 1;
}
body.view #loading {
	opacity: 0;
}
#loading .inner {
	position: relative;
	width: 80px;
	padding-top: 80px;
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
#loading .inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 80px;
	height: 80px;
	background: url(../img/loding_icon.png) no-repeat center;
	background-size: contain;
	animation: kurukuru 3s infinite linear;
}
#loading .inner::after {
	content: " %";
	font-size: 1.4rem;
}
body.hide #loading .inner {
	opacity: 1;
	transition: opacity 1.2s ease-in;
}
body.view #loading .inner {
	opacity: 0;
}

/* wrapper
------------------------------------------------------------ */
#wrapper {
	position: relative;
	font-size: 2.2rem;
	font-weight: 500;
	overflow: hidden;
}

/* mv
------------------------------------------------------------ */
#mv {
	position: relative;
	width: 100%;
	height: calc(100vh - 73px);
	/*height: 757px;*/
	background: url(../img/mv_bg.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
#mv h1 {
	position: absolute;
	bottom: 100px;
	width: 100%;
	text-align: center;
	z-index: 4;
}
body.hide #mv h1 {
	opacity: 0;
}
body.view #mv h1 {
	animation: baaam 0.5s forwards ease-in 1.3s;
}
#mv h1 img {
	width: 881px;
}
#mv .chara {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-bottom: 65px;
	text-align: center;
	box-sizing: border-box;
}
#mv .chara img {
	height: 1370px;
	max-width: none;
}
#mv .c-yellow_blue {
	z-index: 1;
}
#mv .c-pink_green {
	z-index: 2;
}
#mv .c-red {
	z-index: 3;
}
body.hide #mv .chara {
	opacity: 0;
}
body.view #mv .c-yellow_blue {
	animation: shun 1s forwards linear 0.8s;
}
body.view #mv .c-pink_green {
	animation: shun 0.9s forwards linear 0.9s;
}
body.view #mv .c-red {
	animation: shun 0.8s forwards linear 1s;
}

@media only screen and (max-height:760px) and (min-width:769px) {

	#mv h1 {
		bottom: 0;
	}
	#mv .chara {
		align-items: flex-start;
	}
	#mv .chara img {
		margin-top: -373px;
	}
	
}

@media only screen and (max-height:670px) and (min-width:769px) {

	#mv {
		height: 100vh;
		min-height: 600px;
	}
	
}

/* nav
------------------------------------------------------------ */
nav {
	position: relative;
	width: 100%;
	height: 73px;
	background-color: #000;
	z-index: 9000;
}
nav #nav-btn {
	display: none;
}
nav ul {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 73px;
	background-color: #000;
}
nav.float-on ul {
	position: fixed;
	top: 0;
	left: 0;
}
nav ul li {
	padding: 0 45px;
	border-left: 1px solid #fff;
	line-height: 1.1;
}
nav ul li:first-child {
	border-left: none;
}
nav ul li a {
	font-size: 1.6rem;
	color: #fff;
}
nav ul li a:hover {
	color: #fd261d;
}

/* follow-link
------------------------------------------------------------ */
#follow-link {
	position: fixed;
	bottom: 7px;
	right: 7px;
	width: 192px;
	transition: transform .3s ease-out;
	transform: scale(0);
	z-index: 9900;
}
#follow-link.float-on {
	transform: scale(1);
}
#follow-link a {
	display: block;
	width: 192px;
}
#follow-link a:hover {
	transform: scale(0.95);
}

/* content-body
------------------------------------------------------------ */
#content-body {
	position: relative;
}

/* lead =========== */
#content-body #lead {
	position: relative;
	padding: 60px 50px;
	background: url(../img/bg_a.jpg) no-repeat top center;
	background-size: cover;
}
#content-body #lead p {
	margin-top: 10px;
	text-align: center;
}
#content-body #lead .lead {
	text-align: center;
}
#content-body #lead h2 {
	margin: 22px auto 26px;
	text-align: center;
}
#content-body #lead #movie {
	max-width: 920px;
	margin: -100px auto 26px;
	padding: 155px 43px 84px;
	background: url(../img/movie_bg.png) no-repeat top left;
	background-size: contain;
}
#content-body #lead #movie button {
	position: relative;
	max-width: 860px;
	padding: 0;
	cursor: pointer;
	border: none;
	outline: 0px;
	background: none;
}
#content-body #lead #movie button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 103px;
	height: 103px;
	background: url(../img/movie_icon.png) no-repeat center;
	background-size: contain;
	transform: translate(-50%,-50%);
	transition: all .3s ease-out;
}
#content-body #lead #movie button:hover::before {
	transform: translate(-50%,-50%) scale(0.95);
}
#content-body #lead .news {
	max-width: 896px;
	margin: 0 auto;
	padding: 30px;
	background-color: #fff;
	border: 1px solid #000;
}
#content-body #lead .news h3 {
	margin-bottom: 15px;
	text-align: center;
	letter-spacing: 0.1em;
}
#content-body #lead .news ul li {
	display: flex;
	justify-content: center;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
#content-body #lead .news ul li .date {
	padding-right: 30px;
	border-right: 1px solid #a3a3a3;
}
#content-body #lead .news ul li .text {
	padding-left: 30px;
}
#content-body #lead .news ul li .text a {
	color: #000;
}
#content-body #lead .news ul li .text a:hover {
	color: #fd261d;
}
#content-body #lead .more-news {
	margin-top: 15px;
	text-align: center;
}
#content-body #lead .more-news::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 15px 3px 0;
	border-left: 8px solid #000;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	box-sizing: border-box;
}
#content-body #lead .more-news a {
	display: inline-block;
	color: #000;
	border-bottom: 1px solid #000;
}
#content-body #lead .more-news a:hover {
	display: inline-block;
	color: #fd261d;
	border-bottom: 1px solid #fd261d;
}

/* chara =========== */
#content-body #chara {
	position: relative;
	padding: 50px 0 0;
	background: url(../img/bg_b.jpg) no-repeat top center;
	background-size: cover;
}
#content-body #chara h2 {
	margin: 0 auto 5px;
	text-align: center;
}
#content-body #chara .lead {
	text-align: center;
}
#content-body #chara #chara-list {
	display: flex;
	justify-content: center;
	height: 480px;
	margin-top: 5px;
	padding-top: 210px;
	background: url(../img/chara_b.png) no-repeat top center;
	background-size: 1400px auto;
	box-sizing: border-box;
}
#content-body #chara #chara-list li {
	margin: 0 10px;
	line-height: 1.2;
}
#content-body #chara #chara-list li a {
	position: relative;
	display: block;
	width: 200px;
	padding: 10px;
	font-size: 1.8rem;
	color: #000;
	letter-spacing: 0.1em;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 3px 2px 0px 0 #424242;
}
#content-body #chara #chara-list li a::after {
	content: "";
    position: absolute;
    top: 29px;
    right: 20px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 0 0 5px;
    border-left: 12px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    box-sizing: border-box;
}
#content-body #chara #chara-list li a:hover {
	color: #fff;
	background-color: #fd261d;
}
#content-body #chara #chara-list li a:hover::after {
	border-left: 8px solid #fff;
}
#content-body #chara #chara-item {
	position: relative;
	height: 932px;
	margin: -206px auto 0;
}
#content-body #chara #chara-item .chara {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}
#content-body #chara #chara-item .chara::before {
	content: "";
	position: absolute;
	top: 66px;
	left: 0;
	display: block;
	width: 100%;
	height: 787px;
	z-index: 1;
}
#content-body #chara #chara-item #red.chara::before {
	background: url(../img/slide_r_bg.jpg) no-repeat center;
	background-size: cover;
}
#content-body #chara #chara-item #pink.chara::before {
	background: url(../img/slide_p_bg.jpg) no-repeat center;
	background-size: cover;
}
#content-body #chara #chara-item #blue.chara::before {
	background: url(../img/slide_b_bg.jpg) no-repeat center;
	background-size: cover;
}
#content-body #chara #chara-item #yellow.chara::before {
	background: url(../img/slide_y_bg.jpg) no-repeat center;
	background-size: cover;
}
#content-body #chara #chara-item #green.chara::before {
	background: url(../img/slide_g_bg.jpg) no-repeat center;
	background-size: cover;
}
#content-body #chara #chara-item .chara::after {
	content: "";
	position: absolute;
	top: 100px;
	left: 0;
	display: block;
	width: 100%;
	height: 163px;
	z-index: 2;
}
#content-body #chara #chara-item #red.chara::after {
	background-color: #d6251d;
}
#content-body #chara #chara-item #pink.chara::after {
	background-color: #e61080;
}
#content-body #chara #chara-item #blue.chara::after {
	background-color: #1b2d8e;
}
#content-body #chara #chara-item #yellow.chara::after {
	background-color: #ff7e00;
}
#content-body #chara #chara-item #green.chara::after {
	background-color: #15b54f;
}
#content-body #chara #chara-item .chara img {
	position: relative;
	z-index: 3;
}
#content-body #chara #chara-item .chara button {
	position: absolute;
	right: 50%;
	bottom: 152px;
	width: 444px;
	padding: 0;
	cursor: pointer;
	border: none;
	outline: 0px;
	background: none;
	transform: translateX(498px);
	z-index: 4;
}
#content-body #chara #chara-item .chara button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 103px;
	height: 103px;
	background: url(../img/movie_icon.png) no-repeat center;
	background-size: contain;
	transform: translate(-50%,-50%);
	transition: all .3s ease-out;
	z-index: 5;
}
#content-body #chara #chara-item .chara button:hover::before {
	transform: translate(-50%,-50%) scale(0.95);
}
#content-body #chara #chara-item #red.chara button::before {
	background: url(../img/play_icon_r.png) no-repeat center;
	background-size: contain;
}
#content-body #chara #chara-item #pink.chara button::before {
	background: url(../img/play_icon_p.png) no-repeat center;
	background-size: contain;
}
#content-body #chara #chara-item #bule.chara button::before {
	background: url(../img/play_icon_b.png) no-repeat center;
	background-size: contain;
}
#content-body #chara #chara-item #yellow.chara button::before {
	background: url(../img/play_icon_y.png) no-repeat center;
	background-size: contain;
}
#content-body #chara #chara-item #chara-btn a {
	position: absolute;
	top: 50%;
	display: block;
	width: 77px;
	transform: translateY(-50%);
	z-index: 6;
}
#content-body #chara #chara-item #chara-btn a:hover {
	transform: translateY(-50%) scale(0.95);
}
#content-body #chara #chara-item #chara-btn a.next {
	right: 100px;
}
#content-body #chara #chara-item #chara-btn a.prev {
	left: 100px;
}

/* j-tec =========== */
#content-body #j-tec {
	position: relative;
	padding: 125px 50px 106px;
	background: url(../img/bg_c.jpg) no-repeat top center;
	background-size: cover;
}
#content-body #j-tec h2 {
	margin: 0 auto 95px;
	text-align: center;
}
#content-body #j-tec #mission h3 {
	margin-bottom: 20px;
	text-align: center;
}
#content-body #j-tec #mission p {
	text-align: center;
}
#content-body #j-tec #work-life {
	margin: 95px auto 0;
}
#content-body #j-tec #work-life h3 {
	margin-bottom: 15px;
	text-align: center;
}
#content-body #j-tec #work-life > p {
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
}
#content-body #j-tec #work-life ul {
	display: flex;
	justify-content: center;
	margin: 55px auto 0;
}
#content-body #j-tec #work-life ul li {
	width: 353px;
	margin: 0 25px;
}
#content-body #j-tec #work-life ul li h4 {
	margin-bottom: 28px;
}
#content-body #j-tec #work-life ul li p {
	margin-top: 25px;
	letter-spacing: 0.05em;
	text-align: left;
}
#content-body #j-tec #work-life ul li p em {
	background: linear-gradient(transparent 55%, #ffe548 0%);
}
#content-body #j-tec #company h3 {
	margin: 75px auto 35px;
	text-align: center;
}
#content-body #j-tec #company .more-link {
	text-align: center;
}
#content-body #j-tec #company .more-link a {
	display: inline-block;
}
#content-body #j-tec #company .more-link a:hover {
	transform: scale(0.95);
}

/* news =========== */
#content-body #news {
	position: relative;
	padding: 140px 50px 135px;
	background: url(../img/bg_d.jpg) no-repeat center;
	background-size: cover;
}
#content-body #news h2 {
	text-align: center;
}
#content-body #news #news-list {
	max-width: 520;
	margin: 60px auto 0;
}
#content-body #news #news-list li {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
#content-body #news #news-list li:first-child {
	margin-top: 0;
}
#content-body #news #news-list li .date {
	padding-right: 10px;
	border-right: 1px solid #a3a3a3;
}
#content-body #news #news-list li .text {
	padding-left: 10px;
}
#content-body #news #news-list li .text a {
	color: #000;
}
#content-body #news #news-list li .text a:hover {
	color: #fd261d;
}
#content-body #news #news-pager {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 40px auto 100px;
}
#content-body #news #news-pager li {
	width: 40px;
	height: 40px;
	margin: 10px;
}
#content-body #news #news-pager li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 1.4rem;
	color: #000;
	background-color: #fff;
	border: 2px solid #000;
	box-sizing: border-box;
}
#content-body #news #news-pager li a.active {
	color: #fff;
	background-color: #000;
}
#content-body #news #information h3 {
	margin-bottom: 40px;
	text-align: center;
}
#content-body #news #information #bnr {
	display: flex;
	justify-content: center;
	align-items: center;
}
#content-body #news #information #bnr li {
	margin: 0 15px;
}
#content-body #news #information #bnr li a {
	display: block;
}
#content-body #news #information #bnr li a:hover {
	transform: scale(0.95);
}

/* footer
------------------------------------------------------------ */
footer {
	position: relative;
	padding: 35px 50px 45px;
	background-color: #fff;
}
footer #copyright {
	text-align: center;
}

/* modal
------------------------------------------------------------ */
#modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 130px 30px 115px;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 9999;
}
#modal.modal-youtube {
	padding: 10px 30px;
}
#modal .bg {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	z-index: 1;
}
#modal.modal-youtube #modal-btn {
	position: absolute;
    top: 0;
    right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	padding: 0;
	cursor: pointer;
	outline: 0;
	background: none;
	border: none;
	box-sizing: border-box;
	z-index: -1;
}
#modal.modal-youtube #modal-btn:hover span i {
	background-color: #fd261d;
}
#modal.modal-youtube #modal-btn span {
	position: relative;
	width: 60px;
	height: 60px;
}
#modal.modal-youtube #modal-btn span i {
	position: absolute;
	left: 0;
	display: block;
	width: 60px;
	height: 6px;
	background-color: #fff;
}
#modal.modal-youtube #modal-btn span i:nth-child(1) {
	top: 0;
	-webkit-transform: translateY(27px) rotate(-45deg);
	transform: translateY(27px) rotate(-45deg);
}
#modal.modal-youtube #modal-btn span i:nth-child(2) {
	bottom: 0;
	-webkit-transform: translateY(-27px) rotate(45deg);
	transform: translateY(-27px) rotate(45deg);
}
#modal .modal-body {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 96%;
    max-width: 1000px;
	transform: translate(-50%, -50%);
	z-index: 3;
	opacity: 0;
}
#modal.modal-youtube .modal-body {
	padding-top: 80px;
}
#modal .modal-body #player-box {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
#modal .modal-body #player-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media only screen and (max-height:66vw) {

	#modal.modal-youtube .modal-body {
		width: calc((100vh - 100px) / 0.5625);
	}
	
}
/* close */
#modal.close {
	transition-delay: 0.5s;
	z-index: -1;
}
#modal.close .modal-body {
	opacity: 0;
	transition: opacity 0.2s;
}
/* open */
#modal.open {
	z-index: 9501;
}
#modal.open #modal-btn {
	opacity: 1;
	z-index: 4;
}
#modal.open .bg {
	opacity: 0.9;
}
#modal.open .modal-body {
	opacity: 1;
}

/* scroll-flag
------------------------------------------------------------ */
.scroll-flag {
	opacity: 0;
	transform: scale(1.1);
	transition: all .3s ease-out;
}
.scroll-flag.scroll-on {
	opacity: 1;
	transform: scale(1);
}

@media print {

	/* wrapper
	------------------------------------------------------------ */
	#wrapper {
		min-width: 1400px;
	}

}

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

	/* wrapper
	------------------------------------------------------------ */
	#wrapper {
		min-width: 1400px;
	}

	/* device-sp
	------------------------------------------------------------ */
	.device-sp {
		display: none !important;
	}

}

@media only screen and (max-width:768px) {

	/* wrapper
	------------------------------------------------------------ */
	#wrapper {
		font-size: 3.466vw;
	}

	/* mv
	------------------------------------------------------------ */
	#mv {
		height: 137vw;
		background: url(../img/mv_bg_sp.jpg) no-repeat center;
		background-size: cover;
	}
	#mv h1 {
		bottom: 5.5vw;
	}
	#mv h1 img {
		width: 100%;
	}
	#mv .chara {
		display: block;
		width: 100%;
		height: 100%;
		padding-bottom: 0;
	}
	#mv .chara img {
		height: 100%;
	}
	
	/* nav
	------------------------------------------------------------ */
	nav {
		height: auto;
		background: none;
	}
	nav #nav-btn {
		position: fixed;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 17.86vw;
		height: 15.2vw;
		padding: 0;
		cursor: pointer;
		border: none;
		background-color: #000;
		outline: 0px;
		box-sizing: border-box;
		transition: all 0.5s;
		z-index: 9003;
	}
	nav #nav-btn span {
		position: relative;
		width: 10.13vw;
		height: 8.53vw;
	}
	nav #nav-btn span i {
		position: absolute;
		left: 0;
		display: block;
		width: 10.13vw;
		height: 0.73vw;
		background-color: #fff;
		transition: all 0.5s;
	}
	nav #nav-btn span i:nth-child(1) {
		top: 0;
	}
	nav #nav-btn span i:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}
	nav #nav-btn span i:nth-child(3) {
		bottom: 0;
	}
	body.nav-open nav #nav-btn span i:nth-child(1) {
		-webkit-transform: translateY(4vw) rotate(-45deg);
		transform: translateY(4vw) rotate(-45deg);
	}
	body.nav-open nav #nav-btn span i:nth-child(2) {
		opacity: 0;
	}
	body.nav-open nav #nav-btn span i:nth-child(3) {
		-webkit-transform: translateY(-4vw) rotate(45deg);
		transform: translateY(-4vw) rotate(45deg);
	}
	nav ul {
		position: fixed;
		top: 15.2vw !important;
		left: 100% !important;
		display: block;
		width: 100%;
		height: auto;
		z-index: 9900;
		transition: all 0.5s;
	}
	body.nav-open nav ul {
		left: 0 !important;
	}
	nav ul li {
		padding: 0;
		border-left: none;
		border-top: 1px solid #fff;
		background-color: rgba(15,74,143,0.95);
	}
	nav ul li:first-child {
		border-top: none;
	}
	nav ul li a {
		display: block;
		padding: 20px 25px;
		font-size: 1.8rem;
		color: #fff;
		font-weight: 400;
	}

	/* follow-link
	------------------------------------------------------------ */
	#follow-link {
		position: fixed;
		bottom: 2.66vw;
		right: 2.66vw;
		width: 25.33vw;
	}
	#follow-link a {
		width: 25.33vw;
	}
	
	/* content-body
	------------------------------------------------------------ */
	#content-body {
		position: relative;
	}
	
	/* lead =========== */
	#content-body #lead {
		padding: 8.53vw 0;
		background: url(../img/bg_a_sp.jpg) no-repeat top center;
		background-size: cover;
	}
	#content-body #lead p {
		margin-top: 2.93vw;
	}
	#content-body #lead .lead img {
		width: 64vw;
	}
	#content-body #lead h2 {
		width: 91.73vw;
		margin: 2.93vw auto;
	}
	#content-body #lead #movie {
		width: 96vw;
		margin: -6.66vw auto 5.06vw;
		padding: 15.73vw 4.4vw 7.66vw;
		box-sizing: border-box;
	}
	#content-body #lead #movie button {
		position: relative;
		max-width: 860px;
		padding: 0;
		cursor: pointer;
		border: none;
		outline: 0px;
		background: none;
	}
	#content-body #lead #movie button::before {
		width: 17.33vw;
		height: 17.33vw;
	}
	#content-body #lead #movie button:hover::before {
		transform: translate(-50%,-50%);
	}
	#content-body #lead .news {
		width: 91.33vw;
		padding: 5.33vw;
		box-sizing: border-box;
	}
	#content-body #lead .news h3 {
		margin-bottom: 5.33vw;
		font-size: 2.93vw;
		text-indent: 0.1em;
	}
	#content-body #lead .news ul li {
		display: block;
		font-size: 2.93vw;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
		line-height: 1.8;
		text-align: center;
	}
	#content-body #lead .news ul li .date {
		padding-right: 0;
		border-right: none;
	}
	#content-body #lead .news ul li .text {
		padding-left: 0;
	}
	#content-body #lead .more-news {
		margin-top: 5.33vw;
	}
	#content-body #lead .more-news::before {
		width: 1.3vw;
		height: 1.3vw;
		margin: 0 2.65vw 0.4vw 0;
		border-left: 1.3vw solid #000;
		border-top: 0.65vw solid transparent;
		border-bottom: 0.65vw solid transparent;
	}
	#content-body #lead .more-news a {
		font-size: 2.46vw;
	}
	
	/* chara =========== */
	#content-body #chara {
		position: relative;
		padding: 6.66vw 0 0;
		background: url(../img/bg_b_sp.jpg) no-repeat top center;
		background-size: contain;
	}
	#content-body #chara h2 {
		width: 33.33vw;
		margin: 0 auto 2.4vw;
	}
	#content-body #chara .lead img {
		width: 56.53vw;
	}
	#content-body #chara #chara-list {
		position: relative;
		height: 74.4vw;
		margin-top: -12vw;
		padding-top: 0;
		background: url(../img/chara_b_sp.png) no-repeat top center;
		background-size: contain;
	}
	#content-body #chara #chara-list li {
		position: absolute;
	}
	#content-body #chara #chara-list li:nth-child(1) {
		top: 25.33vw;
		left: 1.73vw;
	}
	#content-body #chara #chara-list li:nth-child(2) {
		top: 56vw;
		left: 20.8vw;
	}
	#content-body #chara #chara-list li:nth-child(3) {
		top: 38.66vw;
		left: 38.93vw;
	}
	#content-body #chara #chara-list li:nth-child(4) {
		top: 56vw;
		right: 20.8vw;
	}
	#content-body #chara #chara-list li:nth-child(5) {
		top: 25.33vw;
		right: 1.73vw;
	}
	#content-body #chara #chara-list li a {
		width: 22.66vw;
		padding: 2vw 2vw 1vw;
		font-size: 3.33vw;
		border-radius: 1.33vw;
		box-shadow: 0.66vw 0.53vw 0px 0 #424242;
		box-sizing: border-box;
	}
	#content-body #chara #chara-list li a::after {
		position: static;
		width: 1.86vw;
		height: 1.86vw;
		margin: 0;
		border-left: 1.86vw solid #000;
		border-top: 0.93vw solid transparent;
		border-bottom: 0.93vw solid transparent;
	}
	#content-body #chara #chara-list li a:hover::after {
		border-left: 1.86vw solid #fff;
	}
	#content-body #chara #chara-item {
		height: auto;
		margin: -2vw auto 0;
	}
	#content-body #chara #chara-item .chara::before {
		display: none;
	}
	#content-body #chara #chara-item .chara::after {
		display: none;
	}
	#content-body #chara #chara-item .chara button {
		right: 3.33vw;
		bottom: 8.66vw;
		width: 93.33vw;
		transform: none;
	}
	#content-body #chara #chara-item .chara button::before {
		width: 14.6vw;
		height: 14.6vw;
	}
	#content-body #chara #chara-item #red.chara button {
		border-radius: 4px;
		border: 0.8vw solid #d6251d;
	}
	#content-body #chara #chara-item #pink.chara button {
		border-radius: 4px;
		border: 0.8vw solid #e61080;
	}
	#content-body #chara #chara-item #bule.chara button {
		border-radius: 4px;
		border: 0.8vw solid #1b2d8e;
	}
	#content-body #chara #chara-item #yellow.chara button {
		border-radius: 4px;
		border: 0.8vw solid #ff7e00;
	}
	#content-body #chara #chara-item #chara-btn a {
		top: 80vw;
		width: 7vw;
		transform: translateY(0);
	}
	#content-body #chara #chara-item #chara-btn a:hover {
		transform: translateY(0) scale(0.95);
	}
	#content-body #chara #chara-item #chara-btn a.next {
		right: 0;
	}
	#content-body #chara #chara-item #chara-btn a.prev {
		left: 0;
	}
	
	/* j-tec =========== */
	#content-body #j-tec {
		position: relative;
		padding: 12.66vw 0 17.06vw;
		background: url(../img/bg_c_sp.jpg) no-repeat top center;
		background-size: cover;
	}
	#content-body #j-tec h2 {
		width: 82.93vw;
		margin: 0 auto 11.33vw;
	}
	#content-body #j-tec #mission h3 {
		width: 57.33vw;
		margin: 0 auto 4.93vw;
	}
	#content-body #j-tec #mission p img {
		width: 96vw;
	}
	#content-body #j-tec #work-life {
		margin: 13.33vw auto 0;
	}
	#content-body #j-tec #work-life h3 {
		width: 49.86vw;
		margin: 0 auto 6vw;
	}
	#content-body #j-tec #work-life ul {
		display: block;
		width: 74.66vw;
		margin: 0 auto;
	}
	#content-body #j-tec #work-life ul li {
		width: 100%;
		margin: 6.66vw 0 0;
	}
	#content-body #j-tec #work-life ul li h4 {
		margin-bottom: 1.6vw;
	}
	#content-body #j-tec #work-life ul li h4 img {
		height: 3.46vw;
	}
	#content-body #j-tec #work-life ul li p {
		margin-top: 1.46vw;
	}
	#content-body #j-tec #work-life ul li p em {
		background: linear-gradient(transparent 55%, #ffe548 0%);
	}
	#content-body #j-tec #company h3 {
		width: 54.93vw;
		margin: 10vw auto 4vw;
	}
	#content-body #j-tec #company .more-link a {
		width: 54vw;
	}
	
	/* news =========== */
	#content-body #news {
		padding: 9.06vw 0 16.8vw;
		background: url(../img/bg_d_sp.jpg) no-repeat center;
		background-size: cover;
	}
	#content-body #news h2 img {
		width: 58.4vw;
	}
	#content-body #news #news-list {
		width: 90vw;
		margin: 8vw auto 0;
	}
	#content-body #news #news-list li {
		display: block;
		margin-top: 3.33vw;
		font-size: 2.93vw;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
		line-height: 1.8;
		text-align: center;
	}
	#content-body #news #news-list li .date {
		padding-right: 0;
		border-right: none;
	}
	#content-body #news #news-list li .text {
		padding-left: 0;
	}
	#content-body #news #news-pager {
		width: 80vw;
		margin: 6vw auto 14.33vw;
	}
	#content-body #news #news-pager li {
		width: 7vw;
		height: 7vw;
		margin: 2vw;
	}
	#content-body #news #news-pager li a {
		width: 7vw;
		height: 7vw;
		font-size: 2.5vw;
		border: 0.5vw solid #000;
	}
	#content-body #news #information h3 {
		width: 59.46vw;
		margin: 0 auto 6.2vw;
	}
	#content-body #news #information #bnr {
		flex-wrap: wrap;
	}
	#content-body #news #information #bnr li {
		margin: 2vw 4vw;
	}
	#content-body #news #information #bnr li:first-child {
		width: 100%;
		text-align: center;
	}
	#content-body #news #information #bnr li:first-child img {
		width: 21.33vw;
	}
	#content-body #news #information #bnr li:nth-child(2) img {
		width: 25.6vw;
	}
	#content-body #news #information #bnr li:nth-child(3) img {
		width: 31.6vw;
	}
	
	/* footer
	------------------------------------------------------------ */
	footer {
		position: relative;
		padding: 5.333vw 0 6vw;
		background-color: #fff;
	}
	footer #copyright img {
		width: 37.86vw;
	}
	
	/* modal
	------------------------------------------------------------ */
	#modal {
		padding: 40px 15px;
	}
	#modal.modal-youtube .modal-body {
		padding-top: 14vw;
	}
	#modal.modal-youtube #modal-btn {
		top: -10px;
		right: 0;
		width: 55px;
		height: 55px;
	}
	#modal.modal-youtube #modal-btn span {
		position: relative;
		width: 40px;
		height: 21px;
	}
	#modal.modal-youtube #modal-btn span i {
		width: 40px;
		height: 4px;
	}
	#modal.open #modal-btn span i:nth-child(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}
	#modal.open #modal-btn span i:nth-child(2) {
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);
	}

	/* device-pc
	------------------------------------------------------------ */
	.device-pc {
		display: none !important;
	}

}

@media only screen and (max-width:374px) {

	/* wrapper
	------------------------------------------------------------ */
	#wrapper {
		font-size: 1rem;
	}

	/* content
	------------------------------------------------------------ */
	#content #content-inner #note #note-inner #img img {
		width: 100px;
	}
	#content #content-inner #note #note-inner #text p {
		font-size: 1rem;
		letter-spacing: 0;
		text-indent: 0;
	}
	
	/* footer
	------------------------------------------------------------ */
	footer h2 {
		font-size: 2rem;
	}
	footer #partner li {
		margin: 10px 5px 0;
	}
	footer #partner li a img {
		height: 35px;
	}

}