@charset "UTF-8";
/****************************************
Resetting
*****************************************/
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 {
	border: 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, main,hgroup, menu, nav, section {
	display: block;
}

body {
}

ol,ul,li{
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="submit"],
input[type="button"],
input[type="reset"]{
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
color: #ffffff;
background: #808080;
padding: 10px 20px;
font-size: 120%;
}

a{
	text-decoration: none;
}
/******************************************
normarise
******************************************/
*{
	box-sizing:border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
}


body{
	color: #000000;
	font-size:20px;
}

a{
	color: #000000;
	transition: .5s;
}


/******************************************
clearfix
******************************************/
.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}  
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}  
.clearfix {
	display: block;
}  
/* End hide from IE-mac */

/****************************************
Layout
*****************************************/
/*flexbox*/
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
}
.flex--start{
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

.flex--center{
	justify-content: center;
	-webkit-justify-content: center;
}
.flex--end{
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

.flex--bet{
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

/*col*/
.col2{
	width:48%;
}


.col3{
	width:30%;
}

.col4{
	width:25%;
}

.col5{
	width:18.4%;
}

.col6{
	width:15%;
}
.col7{
	width:40%;
}
.col8{
	width:60%;
}

.inner{
	margin: 0 auto;
	max-width: 1080px;
	width: 90%;
}
/****************************************
header
*****************************************/
.site-header{
	background: #fff;
	padding: 20px;
}

.site-logo__img{
	height: auto;
	width: 50%;
}
.gnav__menu__item{
	margin-left: 20px;
}

.gnav__menu__item__link{
	font-size: 16px;
}

/****************************************
footer
*****************************************/
.site-footer{
	background: #333;
	color: #fff;
	padding: 10px 0;
}
/****************************************
contents
*****************************************/
.hero{
	margin-bottom: 120px;
	max-height: 600px;
	overflow: hidden;
}

.hero__img{
	height: auto;
	width: 100%;
}

.sec{
	position: relative;
	margin-bottom: 0px;
	background: #ffffff;
}
.sec2{
	position: relative;
	margin-bottom: 0px;
	background: #f5f5f5;
}

.page-title{
	text-align: center;
}

.page-title__title{
	color: #333;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 40px;
}

.img-container{
	overflow: hidden;
	position: relative;
  height: 800px;
}

.img-container__img{
	display: block;
	position: relative;
	z-index: 0;
/*　▼画像幅の半分、右に動かす*/
  left: 50%;
  height: 800px;
  width: 800px;
/*　▼画像の幅の半分だけ、ネガティブマージンを設定*/
  margin-left: -400px;
}

.cat-image {
  position:relative;
  width: 100%;
  height:670px;
}
.cat-image img {
  position:absolute;
/*　▼画像幅の半分、右に動かす*/
  left:50%;
  height:670px;
  width: 1200px;
/*　▼画像の幅の半分だけ、ネガティブマージンを設定*/
  margin-left:-600px;
}



.img-container:before{
	background: #ffffff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transform: translateX(-100%);
	transition:all .4s 0s ease; 
	width: 100%;
	z-index: 1;		
}

.text-container{
	opacity: 0;
	padding: 10px 200px 10px 40px;
	transition:all .2s 0s ease; 
line-height: 170%;
}

.text-container__title{
	color: #000000;
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.text-container__subtitle{
	color: #191970;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

/*アニメーションするプロパティを設定します*/
.img-container.active img{
	opacity: 2;
}


.text-container.active{
	opacity: 1;
}

