@charset "utf-8";

/* ========================================
common.css
------------------------------------------

======================================== */
* -webkit-transform-style: preserve-3d;

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
  background:#fff;
  margin: 0;
  padding: 0;
}
html{
    font-size: 62.5%;
}
/*@media screen and (max-width: 768px) {
html{
    font-size: 56.25%;
}
}*/
@media screen and (max-width: 320px) {
	html{
		font-size: 52.5%;
	}
}

/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
	width: 100%;
}

/* ---------------------------------------- 
 - a
---------------------------------------- */
header a[target='_blank']::after,
footer a[target='_blank']::after,
#SectionEntry a[target='_blank']::after,
#SectionEntry a[target='_blank']::after {
    content: none;
}

/* ---------------------------------------- 
 - fonts
---------------------------------------- */
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 400;
    src: url('../../assets/fonts/NotoSansCJKjp-DemiLight.ttf') format('ttf'),
    	 url('../../assets/fonts/NotoSansCJKjp-DemiLight.woff')  format('woff');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 500;
    src: url('../../assets/fonts/NotoSansCJKjp-Medium.ttf') format('ttf'),
    	 url('../../assets/fonts/NotoSansCJKjp-Medium.woff')  format('woff');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: bold;
    font-weight: 700;
    src: url('../../assets/fonts/NotoSansCJKjp-Bold.ttf') format('ttf'),
    	 url('../../assets/fonts/NotoSansCJKjp-Bold.woff')  format('woff');
}

/* ---------------------------------------- 
 - txt
---------------------------------------- */
.mincho {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
    letter-spacing: 0.1em;
}

/* ---------------------------------------- 
 - body
---------------------------------------- */
body{
	font-family: Avenir , Helvetica , Arial , Verdana , Roboto , 'Noto Sans Japanese', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-size:14px;
	font-size:1.4em;
	color:#222;
	line-height:1.8;
	-webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
	letter-spacing:0.05em;
}

.inview.mv {
    opacity: 1.0 !important;
    transform: translate(0,0) !important;
    -webkit-transform: translate(0,0) !important;
}
.inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,10px);
    -webkit-transform: translate(0,10px);
}
#mainVisual .inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

/* ---------------------------------------- 
 - #container
---------------------------------------- */
#Container {
	width:100%;
	/*text-align:center;*/
	margin:0 auto;
    position: relative;
}
#Container .pc {
	display:inline-block;
}
#Container .sp {
	display:none;
}
@media screen and (max-width: 768px) {
	#Container .sp {
		display:inline-block;
	}
	#Container .pc {
		display:none;
	}
}

#Container .flex {
	display: -webkit-box;
    display: flex;
}
#Container .flex.wrap {
	-webkit-flex-wrap: wrap;
  	flex-wrap        : wrap;
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
header{	
	height: 55px;
	text-align:center;
	background:#223355;
	position: relative;
    z-index: 999;
	-webkit-box-shadow: 0 0 10px rgba(34,51,85,0.7);  
	box-shadow: 0 0 10px rgba(34,51,85,0.7); 
}
header #headWrap{	
	height: 55px;
	text-align:center;
	background:#223355;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5); 
	box-shadow: 0 0 10px rgba(0,0,0,0.5); 
}
header #headCol{
	width:96%;
	height:100%;
	max-width:1000px;
	margin:3px auto 0;
	overflow: hidden;
	position:relative;
	display: -webkit-inline-flex;
   	display: inline-flex;
	-webkit-flex-wrap: nowrap;
   	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
header #headCol h1{
	width:12%;
	max-width:119px;
	margin:0 auto 0 0;
}
header #headCol h1 a{
	display:block;
}
header #headWrap.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header #headCol h1 a img{
	display: inline-block;
	backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
	header #headCol{
		width:94%;
		text-align:center;
		margin:0 auto 0;
	}
	header #headCol h1{
		width: 35%;
		max-width: 150px;
	}
}
@media screen and (max-width: 480px) {
	header #headCol h1{
		max-width: 200px;
	}
}

/* .personLink */
a.personLink {
    display: block;
    line-height: 1;
    position: absolute;
        top: 50%;
        right: 60px;
    transform: translateY(-50%);
    transition: all 0.3s;
}
a.personLink:hover {
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
}
a.personLink img {
    width: auto;
}
@media screen and (max-width: 768px) {
a.personLink {
    right: 40px;
    width: 150px;
}
a.personLink:hover {
    cursor: pointer;
    opacity: 1;
}
a.personLink img {
    width: 100% !important;
}
}

/* menu */
#menu {
    width: 24px;
    height: 20px;
	position: absolute;
    top: 50%;
    right: 0;
    
    margin-top:-10px;
	cursor: pointer;
	z-index: 910;
	/*display:none;*/
    display:block;
}
#menu i {
	position: absolute;
    top: 0;
	left: 50%;
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    background: #fff;
}
#menu i:before {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: 8px;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    background: #fff;
}
#menu i:after {
	display: block;
    width: 12px;
    height: 2px;
    margin-top: 7px;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    background: #fff;
}
#menu:hover i:after {
    width: 24px;
}
#menu.active {
	/*position:fixed;
    top: 5%;
    right: 5%;*/
}
#menu.active i:before {
    display:none;
}
#menu.active i {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	top: 10px;
    left: 0;
	background: #fff;
}
#menu.active i:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	width: 24px;
	margin-top: 0;
	background: #fff;
}
#cb-header #menu {
    /*top: 45px;*/
    top: 50%;
	z-index: 1100;
}
@media screen and (max-width: 768px) {
	#menu {
		display:block;
	}
	header #menu {
		top: 50%;
		margin-top:-10px;
	}
	#cb-header #menu {
		top: 50%;
	}
}

/* ---------------------------------------- 
 - gnavi
---------------------------------------- */
#gnavi{
    background:#223355;	
    margin:0 auto;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    text-align:left;
    overflow: auto;
    width: 100%;
    display: none;
	line-height: 1.5;
}
body.open #gnavi{
    visibility: visible;
}
#gnavi .ttl {
		box-sizing: border-box;
    width: 80%;
    max-width: 768px;
    padding:50px 5% 1.5em;
    font-size:3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
#gnavi #gnaviCol{
    width:100%;
    display: block;
    margin:0 auto;
    
    box-sizing:border-box;
}
#gnavi #gnaviCol ul.nav {
		box-sizing: inherit;
		width: 80%;
    max-width: 768px;
    padding: 0 5%;
    display: block;
    font-size:1.4rem;
    padding-bottom: 2.0em;
}
#gnavi #gnaviCol ul.nav > li{
    margin:0 auto;
    border: none;
}
#gnavi #gnaviCol ul.nav > li > a,
#gnavi #gnaviCol ul.nav li.works > div {
    padding: 0.5em 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    
    display: block;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
#gnavi #gnaviCol ul.nav > li:nth-child(1) > a {
    padding:10px 0 0.5em;
}
#gnavi #gnaviCol ul.nav > li > a:hover,
#gnavi #gnaviCol ul.nav li.works > ul > li a:hover {
    -webkit-opacity:0.5;
    opacity:0.5;
}
#gnavi #gnaviCol ul.nav > li > a > span,
#gnavi #gnaviCol ul.nav li.works > div > span {
    display: block;
}
#gnavi #gnaviCol ul.nav > li > a > span.en,
#gnavi #gnaviCol ul.nav li.works > div > span.en {
    font-size: 2rem;
    font-size: 1.6rem;
    color: #788ca5;
    font-weight: 500;
}
#gnavi #gnaviCol ul.nav > li > a > span.jp,
#gnavi #gnaviCol ul.nav li.works > div > span.jp {
    font-size: 2.4rem;
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}

/*li.works*/
#gnavi #gnaviCol ul.nav li.works > ul > li a {
    padding: 0.5em 0;
    -weblit-transition: 0.3s;
    transition: 0.3s;
    
    display: block;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
#gnavi #gnaviCol ul.nav li.works > ul > li a > span.en {
    margin-left: 2em;
    font-size: 2rem;
    font-size: 1.6rem;
    color: #788ca5;
    font-weight: 500;
}
#gnavi #gnaviCol ul.nav li.works > ul > li a > span.jp {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}
#gnavi #gnaviCol ul.nav li.works > ul > li a:hover {
    opacity:0.5;
}

/*.entry*/
#gnavi .entry {
		box-sizing: border-box;
    width: 80%;
    max-width: 768px;
    padding: 1em 5% 30px;
}
#gnavi .entry dt {
    padding: 0.25em 0;
    margin-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border-top: #fff solid 1px;
    border-bottom: #fff solid 1px;
}
#gnavi .entry dd {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
#gnavi .entry dd p {
    width: 44.5vw;
    max-width: 342px;
	margin: 0 auto;
}
#gnavi .entry dd p img {
    width: 100%;
    height: auto;
}

@media all and (-ms-high-contrast: none){/* IE11 */
	#gnavi #gnaviCol ul li a {
		transition:none;
	}
}
#gnavi #gnaviCol ul li a:hover {
	text-decoration:none;
}
@media screen and (max-width: 768px) {
    #gnavi .ttl {
        width: 100%;
        font-size:2.2rem;
				box-sizing: border-box;
    }
    #gnavi #gnaviCol ul.nav {
				box-sizing: border-box;
				width: 100%;
    }
    #gnavi #gnaviCol ul.nav > li > a > span.en,
    #gnavi #gnaviCol ul.nav li.works > div > span.en {
        font-size: 1.3rem;
        color: #788ca5;
        font-weight: 500;
    }
    #gnavi #gnaviCol ul.nav > li > a > span.jp,
    #gnavi #gnaviCol ul.nav li.works > div > span.jp {
        font-size: 1.6rem;
        color: #fff;
        font-weight: 500;
    }
    
    #gnavi #gnaviCol ul.nav li.works > ul > li a > span.en {
        margin-left: 1em;
        font-size: 1.3rem;
    }
    #gnavi #gnaviCol ul.nav li.works > ul > li a > span.jp {
        font-size: 2rem;
        font-size: 1.6rem;
    }
    
    /*.entry*/
    #gnavi .entry {
				box-sizing: border-box;
        width: 100%;
        max-width: none;
    }
    #gnavi .entry dt {
        font-size: 1.5rem;
        margin-bottom: 1.5em;
    }
    #gnavi .entry dd p {
        max-width: none;
    }
}
@media screen and (max-width: 480px) {
    
}

/*.link*/
#gnavi .link {
	box-sizing: border-box;
    width: 80%;
    max-width: 768px;
    padding: 1em 5% 30px;
  text-align: center;
}
#gnavi .link a {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
#gnavi .link a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #gnavi .link {
    margin: 0 auto;
  }
  #gnavi .link a {
  font-size: 1.6rem;
  text-align: center;
}
}


/* ---------------------------------------- 
 - #contents
---------------------------------------- */
#contents {
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
}
#contents #contentsCol {
	margin:0 auto;
	overflow:hidden;	
	text-align:left;
	width:100%;
}

/* ---------------------------------------- 
 - #pagetop
---------------------------------------- */
#pageTop {
	width: 50px;
	height: 50px;
	background:#223355;
	position:fixed;
	bottom: 0;
	right: 15px;
	cursor:pointer;
	z-index:100;
	text-indent:-9999px;
	border-radius: 5px 5px 0 0;        /* CSS3草案 */  
    -webkit-border-radius: 5px 5px 0 0;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px 5px 0 0;   /* Firefox用 */
	-webkit-transform: translate3d(0, 100.1%, 0);
	transform: translate3d(0, 100.1%, 0);
	opacity:0;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
#pageTop.fadeIn {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity:1;
	transition-timing-function:cubic-bezier(0.42, 0, 0.58, 1.0);
}
#pageTop:hover {
	opacity:0.5;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
#pageTop a::before,
#pageTop a::after {
	position: absolute;
	top: 8px;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}	
@media screen and (max-width: 480px) {
	#pageTop {
		width: 40px;
		height: 40px;
		right: 2%;
	}
	#pageTop a::before,
	#pageTop a::after {
		top: 7px;
		right: 16px;
		width: 8px;
		height: 8px;
	}
}

/* ---------------------------------------- 
 - SectionEntry
---------------------------------------- */
#SectionEntry {
	width: 100%;
    margin-top: 100px;
	position: relative;
	text-align: left;
    overflow: hidden;
    background: #fafaf6;
	font-size: 16px;
	line-height: 24px;
}
#SectionEntry .wrapper {
    max-width: 850px;
    max-width: 910px;
    min-width: inherit;
    min-height: inherit;
    padding: 70px 0;
    margin: 0 auto;
}
#SectionEntry .wrapper p.youkou.btn {
	display: block;
}
#SectionEntry .wrapper p.youkou.btn a {
    width: calc(100% - 10px);
    box-sizing: border-box;
    display: block;
    padding: 0.75em;
    line-height: 1;
    color: #212f59;
    font-size: 2rem;
    font-weight: 500;
    background-color: #fff;
    border: #212f59 1px solid;
    text-align: center;
    /* box-shadow */
    box-shadow:8px 8px 8px -3px rgba(0,0,0,0.2);
    -webkit-transition: .3s;
    transition: .3s;
    margin: 0 auto;
    max-width: 850px;
}
#SectionEntry .wrapper p.youkou.btn a:hover {
    -webkit-opacity: 0.7;
    opacity: 0.7;
    text-decoration: none;
    box-shadow:4px 4px 4px -3px rgba(0,0,0,0.2);
}
#SectionEntry .wrapper .entry_wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 5em auto 0;
    max-width: 850px;
}
#SectionEntry .wrapper .entry_wrapper:nth-of-type(2) {
    background: #fff;
    border: solid 1px #b5b5b5;
    padding: 30px;
    width: auto;
    max-width: inherit;
}
#SectionEntry .wrapper .entry_wrapper h3 {
    width: 255px; height: 57px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 55px;
    color: #19324d;
    text-align: center;
    padding: 0;
    border-top: #19324d solid 1px;
    border-bottom: #19324d solid 1px;
}
#SectionEntry .wrapper .entry_wrapper p {
		width: 30%;
    max-width: 255px;
    margin-left: 5%;
    text-align: center;
    font-size: 1.4rem;
    color: #212f59;
}

#SectionEntry .wrapper .entry_wrapper:nth-of-type(2) p.txt {
    line-height: 1.5;
    font-size: 18px;
    text-align: left;
    margin-left: 0;
}
@media screen and (max-width: 768px) {
    #SectionEntry {
        height: auto;
        padding: 0;
    }
    #SectionEntry .wrapper {
        max-width: 83vw;
        margin: 0 auto;
        padding: 13.3vw 0;
    }
    #SectionEntry .wrapper p.youkou.btn a {
        width: calc(100% - 10px);
        padding:   1em;
        max-width: 68vw;
    }
    #SectionEntry .wrapper .entry_wrapper {
        display: block;
        max-width: 68vw;
    }
    #SectionEntry .wrapper .entry_wrapper h3 {
        width: 100%; height: auto;
        box-sizing: border-box;
        font-size: 1.8rem;
        line-height: 1;
        padding: 1em;
    }
    #SectionEntry .wrapper .entry_wrapper p {
        width: 100%;
			max-width: none;
        margin-top: 8vw;
				margin-left: 0;
    }
    #SectionEntry .wrapper .entry_wrapper:nth-of-type(2) p.txt {
        margin-top: 0;
    }
}


/* ---------------------------------------- 
 - Modal
---------------------------------------- */
.iziModal {
   /* display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;*/
    background: rgba(255,255,255,0.00) !important;
	box-shadow: none !important;
    overflow: hidden;
    /*transition: margin-top .3s ease,height .3s ease;
    transform: translateZ(0);
    box-sizing: border-box;*/
}
.iziModal-wrap,
.iziModal-content{
    overflow: hidden !important;
}
a.closeBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    
    background: #212f59;
    border-radius: 100px;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    line-height: 30px;
    cursor: pointer;
}
a.closeBtn:hover {
    text-decoration: none;
}
/* ---------------------------------------- 
 - footer
---------------------------------------- */
footer {
	width:100%;
	background:#fff;
}
footer #footCol{
	width:96%;
	max-width:1000px;
	margin:0 auto;
	padding:40px 0 50px;
	text-align:left;
	position:relative;	
	overflow:hidden;
	box-sizing:border-box;
	display: -webkit-flex;
   	display: flex;
	-webkit-flex-wrap: nowrap;
   	flex-wrap: nowrap;
	justify-content: space-between;
}
footer #footCol .linkBox {
	width: 65%;
}
footer #footCol .linkBox ul {
	overflow:hidden;
}
footer #footCol .linkBox ul li {
	display:inline-block;
	font-size:1.2rem;
	font-weight:500;
	float:left;
	padding:0 5% 0 0;
}
footer #footCol .linkBox ul li:last-child {
	padding-rught:0;
}
footer #footCol .linkBox ul li a {
	color:#19324D;
	transition: 0.5s;
	opacity: 1.0;
}
footer #footCol .linkBox ul li a:hover {
	opacity: 0.5;
	text-decoration:none;
}
footer #footCol .copy{
	font-size:1.0rem;
	letter-spacing:0;
	color:#808080;
}
@media screen and (max-width: 768px) {
	footer #footCol{
		width:100%;
		padding:3.0em 0 5.0em;
		display: block;
		text-align: center;
	}
	footer #footCol .linkBox {
		padding:0 0 2.0em;
		width:100%;
		text-align: left;
	}
	footer #footCol .linkBox ul {
		border-top: solid 1px #dcdcdc;
	}
	footer #footCol .linkBox ul li {
		float:none;
		width:100%;
		display: block;
		border-bottom: solid 1px #dcdcdc;
		font-size:1.4rem;
	}
	footer #footCol .linkBox ul li a {
		padding:1.5em 3%;
		display: block;
	}
	footer #footCol .copy{
		font-size:1.3rem;
		margin: 0 auto;
	}
}
@media screen and (max-width: 480px) {
	footer #footCol .linkBox {
		padding:0 0 3.0em;
	}
	footer #footCol .linkBox ul {
		display: block;
	}
	footer #footCol .linkBox ul li {
		padding:0 0 1.0em;
		display:block;
	}
	footer #footCol .footBox {
		display: block
	}
}