@charset "utf-8";

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

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

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
  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.rspImg {
	width: 100%;
    height: auto;
}
@media screen and (max-width: 320px) {
	html{
		width: 100%;
        height: auto;
	}
}


/* ---------------------------------------- 
 - body
---------------------------------------- */
body{
    font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
	font-size:1.6rem;
	/*color: #5a5a5a;*/
    color: #231815;
	line-height:1.8;
	-webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
    background: #fff;
}

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

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

/* ---------------------------------------- 
 - header
---------------------------------------- */
header{	
    width: 100%;
    z-index: 998;
    
    position: fixed;
        top: 0;
        left: 0;
}
header .wrapper {
    background: #0086ce;
    width: 1000px;
    height: 110px;
    padding: 0 20px 0 25px;
    margin: 0 auto;
	position: relative;
    
    display: -webkit-flex;
   	display: flex;
	-webkit-flex-wrap: nowrap;
   	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
header .wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header .wrapper h1 {
    margin-right: 0.5rem;
	position: absolute;
	top: 0; left: 25px;
	z-index: 100;
}
header .wrapper h1 a {
	display:block;
    width: 371px;
	height: auto;
    margin-top: 15px;
    margin-right: 1rem;
    line-height: 1;
    opacity:1;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
header .wrapper h1 a:hover {
    opacity: .6;
}
header .wrapper h1 a img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
header .wrapper {
    width: 100%;
    height: 70px;
}
header .wrapper h1 {
	position: absolute;
        top: 0;
        left: 15px;
}
header .wrapper h1 a {
    width: 250px;
}
}

/* ---------------------------------------- 
 - .navBox
---------------------------------------- */
header .navBox {
    /*width: 650px;*/
    height: 110px;
	/*background: #005aa0;*/
	
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    /*-webkit-flex-direction: column;
    flex-direction: column;*/
    
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
header .navBox {
	background: transparent;
}
header .navBoxSp {
    width: 100%;
	/*background: #005aa0;*/
	
    display: block;
    
    transition: all 0.3s ease-in-out;
}
}

/* #Gnav
----------------------------------------- */
header #GnavSp {
    display: none;
    position: absolute;
        left: -9999px;
}
header #Gnav ul.parent {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    
    font-size: 1.6rem;
}
header #Gnav ul.parent > li {
    padding-right: 0;
    /*background-color: #005aa0;*/
    z-index: 10;
}
header #Gnav ul.parent > li > a {
    height: 110px;
    overflow: hidden;
    /*background-color: #005aa0;*/
    z-index: 10;
    position: relative;
    
    padding: 1rem 25px 1rem 0;
    color: #fff;
    font-size: 1.7rem;
    
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}
header #Gnav ul.parent > li > a:hover{
	opacity: 1;
  color: #A3BBCE;
}
header #Gnav ul.parent > li:first-of-type > a {
    padding-left: 0;
}
header #Gnav ul.parent > li:nth-child(2) > a {
    padding-right: 20px;
}
header #Gnav ul.parent > li:last-of-type > a {
    padding-right: 20px;
}
/*li.menus*/
header #Gnav ul.parent > li.menus {
    position: relative;
}
header #Gnav ul.parent > li.menus > a {
    /*background-color: #005aa0;*/
    z-index: 10;
    position: relative;
}
header #Gnav ul.parent > li.menus > ul.child {
    position: absolute;
    top: -200%;
    left: 0;
    background-color: #e9eaea;
    z-index: 1;
    transition: all 0.4s ease;
}
header #Gnav ul.parent > li.menus:hover > ul.child {
    display: block;
    top: 100%;
}
header #Gnav ul.parent > li.menus ul.child li a {
    display: block;
    padding: 0.5rem 0.5rem 0.5rem 0.2rem;
    font-size: 1.2rem;
    letter-spacing: -0.1em;
    color: #000;
}
header #Gnav ul.parent > li:last-of-type.menus ul.child li a  {
	padding-right: 2.5rem;
}
/*div.infoBox*/
header div.infoBox {
    color: #fff;
    text-align: right;
}
header div.infoBox ul {
    padding-top: 30px;
}
header div.infoBox li {
    font-size: 14px;
	line-height: 1.4;
}
header div.infoBox li.tel {
    font-size: 34px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
header #GnavSp {
    background: #0086ce;
    display: none;
    padding: 20px 0;
    width: 100%;
    position:relative;
        left: inherit;
}
header #GnavSp .box {
    display: flex;
        justify-content: space-between;
    margin-bottom: 20px;
}
header #GnavSp ul.parent {
    /*background-color: #005aa0;*/
    /*font-size: 1.6rem;*/
}
header #GnavSp ul.parent > li {
    padding: 0;
    /*background-color: #005aa0;*/
    z-index: 10;
}
header #GnavSp ul.parent > li > a {
    /*background-color: #005aa0;*/
    z-index: 10;
    position: relative;
    
    padding: 0.5rem 0rem 0.5rem 30px;
    color: #fff;
    font-size: 1.8rem;
    
    display: block;
}
header #GnavSp ul.parent:last-of-type > li > a {
    padding-right: 40px;
}
header #GnavSp a:hover,
header #GnavSp a:visited,
header #GnavSp a:active {
    color: #fff;
}
header #GnavSp ul.parent > li.menus > ul.child {
}
header #GnavSp ul.parent > li.menus ul.child li a {
    display: block;
    padding: 0.5rem 0 0.5rem 40px;
    font-size: 1.6rem;
    letter-spacing: -0.1em;
    color: #fff;
}
header #GnavSp ul.parent:last-of-type > li.menus ul.child li a {
}
header div.infoBox {
    text-align: center;
}
header div.infoBox {
    text-align: center;
}
}

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

/* ---------------------------------------- 
 - #Contents
---------------------------------------- */
#Contents {
	width:100%;
	max-width: 1000px;
    background-color: #fff;
	margin: 0 auto;
	padding-bottom: 3em;
	box-sizing:border-box;
}
#Contents .wrapper {
	width: 100%;
    max-width: 930px;
    padding: 0 20px;
    margin: 0 auto;
	overflow: hidden;	
	text-align: left;
    position: relative;
}
@media screen and (max-width: 768px) {
#Contents .wrapper {
    padding: 0 4%;
}
}
/* #Main
---------------------------------------- */
#Contents #Main {
    width: 100%;
    margin: 110px auto 0;
    position: relative;
}
#Contents #Main .wrapper {
    max-width: 1000px;
    height: 427px;
    padding: 0;
}
@media screen and (max-width: 768px) {
#Contents #Main {
    width: 100%;
    margin: 70px auto 0;
}
#Contents #Main .wrapper {
    height: inherit;
    width: 100%;
}
#Contents #Main .wrapper p img {
    width: 100%;
}
}

/* .section
---------------------------------------- */
#Contents .section .wrapper h2.basic {
    display: inline-block;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 2rem 0;
    position: relative;
}
#Contents .section .wrapper h2.basic span {
    display: inline-block;
    font-size: 2.0rem;
}
#Contents .section .wrapper h2.basic::after {
    content: '';
    background: #1285c8;
    position: absolute;
        top: 43px;
        left: 0;
    height: 5px;
    width: 100%;
}
#Contents .section .wrapper h2.profileTtl {
    color: #0085CE;
    font-size: 32px !important;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 2rem 0;
}
#Contents .section .wrapper h3.basic {
    color: #0085CE;
    font-size: 24px;
    margin-bottom: 0.3em;
}
#Contents .section .wrapper h3.profileSubttl {
    background: #0085CE;
    color: #fff;
    display: block;
    font-size: 21px !important;
    padding: 0 12px;
    text-align: justify;
    text-align-last: justify;
    width: 115px;
}
@media screen and (max-width: 768px) {
#Contents .section .wrapper h2.profileTtl {
    font-size: 24px !important;
}
}

/* ---------------------------------------- 
 - #pagetop
---------------------------------------- */
#pageTop {
	width: 50px;
	height: 60px;
	background:#0068b7;
	position:fixed;
	bottom: 0;
	right: 15px;
	cursor:pointer;
	z-index:100;
	text-indent:-9999px;      /* CSS3草案 */  
	-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: -5px;
	bottom: 0;
	right: 16px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 16px;
	height: 16px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}	


/* ---------------------------------------- 
 - footer
---------------------------------------- */
footer {
	width:100%;
    height: auto;
    
}
footer .wrapper {
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    padding: 3rem;
    margin: 0 auto;
    font-size: 1.6rem;
    text-align: center;
}
/*.copyright*/
footer .wrapper p.copyright {
    margin: 2rem 0;
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
footer .wrapper p.copyright {
    margin: 2rem 0;
    font-size: 1.0rem;
}
}




