@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
body {
	margin: 0;
	padding: 0;
	color: #333;
	font-family: 'Open Sans', 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 1.2pt;
	word-break: break-all;
	word-wrap : break-word;
	overflow-wrap : break-word;
	font-feature-settings: "palt";
	overflow-x: hidden !important;
}
img {
	width: 100%;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
a {
	color: #333;
	text-decoration: none;
}

/*--------flexBox--------*/
.flexBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*--------header--------*/
header {
	margin: 0 auto 40px;
	padding: 20px 0;
	background: #f9f9f9;
}
header a {
	max-width: 118px;
	margin: 0 auto;
	display: block;
}

/*--------article--------*/
article {
	overflow-x: hidden !important;
}
#main {
	height: 100vh;
	position: relative;
}
#main h1 {
	width: 100%;
	color: #fff;
	font-size: 110px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	letter-spacing: 2pt;
	text-shadow:
		#333 1px 1px 0, #333 -1px -1px 0,/*右下、左上*/
		#333 -1px 1px 0, #333 1px -1px 0,/*右上、左下*/
		#333 0px 1px 0, #333  0-1px 0,/*右、左*/
		#333 -1px 0 0, #333 1px 0 0;/*上、下*/
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}
#main h1 span {
	font-size: 30px;
	font-weight: normal;
	display: inherit;
	margin: 10px 0 0;
}
#contents {
	background: #fff;
	padding: 100px 0;
}
#contents h2 {
	font-size: 48px;
	font-weight: bold;
	font-style: italic;
	line-height: 1.2;
	margin: 0 0 20px;
}
#contents .intro {
	padding: 0 10% 50px;
}
#contents nav ul li {
	width: 50%;
	height: 200px;
	position: relative;
	overflow: hidden;
	background: #000;
}
#contents nav ul li p {
	position: inherit;
	bottom: -200px;
	color: #333;
}
#contents nav ul li a img {
	width: 100.5%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#contents nav ul li a span {
	width: 100%;
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#contents nav ul li a i {
	font-size: 24px;
	position: absolute;
	bottom: 5%;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
}
#contents nav ul li a:hover {
	color: yellow;
	font-size: 100px;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}
#contents nav ul li a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}
#contents #box01,
#contents #box02,
#contents #box03 {
	padding: 100px 0 0;
	position: relative;
}
#contents #box01 > h2,
#contents #box02 > h2,
#contents #box03 > h2 {
	color: #fff;
	transform: rotate( 90deg );
	text-shadow:
		#333 1px 1px 0, #333 -1px -1px 0,/*右下、左上*/
		#333 -1px 1px 0, #333 1px -1px 0,/*右上、左下*/
		#333 0px 1px 0, #333  0-1px 0,/*右、左*/
		#333 -1px 0 0, #333 1px 0 0;/*上、下*/
	position: absolute;
	top: 350px;
	right: -150px;
	z-index: 999;
}
#contents #box02 h2 {
	right: inherit;
	left: -165px;
}
#contents #box03 h2 {
	right: -6px;
}
#contents #box01 ul,
#contents #box02 ul {
	width: 90%;
	margin: 0 auto;
}
#contents #box01 ul.flexBox,
#contents #box02 ul.flexBox {
	width: 90%;
	margin: 50px auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#contents #box02 ul.flexBox {
	flex-direction: row-reverse;
}
#contents #box01 ul li:nth-child(1),
#contents #box02 ul li:nth-child(1) {
	width: 40%;
}
#contents #box01 ul li:nth-child(2),
#contents #box02 ul li:nth-child(2) {
	width: 52.5%;
}
#contents #box01 ul li:nth-child(2) p,
#contents #box02 ul li:nth-child(2) p {
	font-size: 10px;
	text-align: right;
	padding: 10px 10px 0;
}
#contents .info {
	width: 70%;
	margin: 0 auto;
}
#contents h3 {
	font-size: 26px;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 0 5px;
}
#contents .info > div {
	margin: 20px 0 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#contents .info dl {
	width: 67.5%;
	font-size: 10px;
}
#contents .info dl dt {
	width: 7.5%;
}
#contents .info dl dd {
	width: 92.5%;
}
#contents .model {
	background: linear-gradient(to top right, rgba(255,175,189,.7), rgba(100,216,243,.7), rgba(234,236,198,.7), rgba(245,146,176,.7), rgba(52,219,216,.7));
  background-size: 500% 500%;
  animation: animation_005 5s ease infinite;
	padding: 50px 10%;
	margin: 50px 0 0;
}
#contents .model h2 {
	font-size: 26px;
}
#contents .model dl dt {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	margin: 50px 0 10px;
}
#contents .model dl dt span {
	font-size: 14px;
}

#contents .model dl dd a {
	text-decoration: underline;
}
#contents #box03 .flexBox {
	margin: 0 15% 20px;
}
#contents #box03 .flexBox > p {
	width: 40%;
}
#contents #box03 .flexBox > div {
	width: 57.5%;
}
#contents #box03 ul.flexBox {
	margin: 50px 5% 0;
}
#contents #box03 ul li {
	width: 47.5%;
}
#contents #box03 ul li p {
	font-size: 10px;
	text-align: right;
	padding: 10px 10px 0;
}
#contents #box03 ul li a {
	float: right;
	margin: 10px 10px 0;
}

/*--------btn--------*/
.btn {
	color: #fff;
	text-align: center;
	background: #333;
	width: 30%;
	padding: 5px 0;
	border-radius: 5px;
	display: inline-block;
}
.btn:hover {
	background: #3595df;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	-ms-transition: all 0.7s;
	-o-transition: all 0.7s;
	transition: all 0.7s;
}

/*--------footer--------*/
footer {
	background: #f9f9f9;
	font-size: 10px;
	text-align: center;
	padding: 20px 0;
}
/*--------pageTop--------*/
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 5px;
	z-index: 9999;
}
#pageTop a {
	color: #fff;
	display: block;
	font-size: 18px;
	padding: 7px 0 0 8px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background: #333;
	font-weight: bold;
	text-align: center;
}
#pageTop i.fa {
	padding-right: 7px;
}
/*--------animation--------*/
@keyframes animation_005 {
  0% {
    background-position:0% 50%;
  }
  50% {
    background-position:100% 50%;
  }
  100% {
    background-position:0% 50%;
  }
}

@media screen and (max-width: 768px) {
/*--------header--------*/
header {
	padding: 12.5px 0;
	margin: 0 auto 20px;
}
header a {
	width: 25%;
}
/*--------article--------*/
#main {
	height: 400px;
}
#main h1 {
	width: 300px;
	font-size: 70px;
	line-height: 1;
}
#main h1 span {
	font-size: 20px;
}
#contents {
    padding: 80px 0 30px;
}
#contents h2 {
	font-size: 38px;
}
#contents nav ul li a span {
	font-size: 40px;
	width: 126px;
}
#contents nav ul li a img {
    width: 160%;
}
#contents #box01,
#contents #box02,
#contents #box03 {
	padding: 80px 0 0;
}
#contents #box01 > h2,
#contents #box02 > h2,
#contents #box03 > h2 {
	font-size: 24px;
	top: 180px;
	right: -100px;
}
#contents #box01 ul.flexBox,
#contents #box02 ul.flexBox {
	width: 100%;
}
#contents #box01 ul li:nth-child(1),
#contents #box02 ul li:nth-child(1) {
	width: 42.5%;
}
#contents #box02 h2 {
	right: inherit;
	left: -108px;
}
#contents #box03 h2 {
	right: -25px;
}
#contents h3 {
	font-size: 20px;
}
#contents .info {
    width: 80%;
}
#contents .info dl dt {
	width: 12.5%;
}
#contents .info dl dd {
	width: 87.5%;
}
#contents .model dl dt {
    font-size: 16px;
}
#contents #box03 .flexBox {
    margin: 0 5% 50px;
}
#contents #box03 .flexBox > p {
	width: 70%;
	margin: 0 auto 20px;
}
#contents #box03 .flexBox > div,
#contents #box03 ul li {
	width: 100%;
}
#contents #box03 ul li {
	margin: 0 auto 50px;
}
#contents .model h2 {
	font-size: 20px;
}

/*--------btn--------*/

/*--------pageTop--------*/
#pageTop {
	bottom: 10px;
	right: 10px;
}
#pageTop a {
	width: 32px;
	height: 35px;
	padding: 4px 0 0 8px;
}
#pageTop i.fa {
	padding-top: 0.2px;
}
}
