@charset "UTF-8";

/* -------------------------------------------------

 layout

------------------------------------------------- */
a {
color: #333;
text-decoration: none;
}
a:hover, a:focus {
color:	#666;
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
width: auto;
vertical-align: bottom;
}
body {
	background-color: #f4f4f4;
}

/* -------------------------------------------------

 Clearfix

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

/* -------------------------------------------------

 header

------------------------------------------------- */
header {
width: 100%;
position:relative;
}
.header	{
	max-width: 1400px;
	margin: 0 auto 26px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.header > h1	{
	margin: 22px 0 0;
	padding: 0;
	line-height:1 !important;
}
.header__logo	{
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
}
.header__logo a	{
	color: #666666;
}
.header__logo a:hover,
.header__logo a:hover .header__logo--en {
 opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
	text-decoration: none;
}
.header__logo a br	{
	display: none;
}
.header__logo a .header__logo--en	{
	font-weight: 400;
	font-size: 14px;
	line-height:1;
	letter-spacing:0.06em;
	color: #666666;
	display: block;
	margin-top: 10px;
}
.header__logo--shimadai	{
	margin: 26px 0 0;	
}
.header__logo--shimadai a:hover {
 opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
	text-decoration: none;
}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
.header	{
	max-width: 100%;
	padding: 0 40px;
}
}
@media screen and (min-width: 899px) and (max-width: 1024px) {
.header	{
	max-width: 100%;
	padding: 0 40px;
}
.header > h1	{
	margin: 22px 0 0;
}
.header__logo	{
	font-size: 28px;
}
.header__logo--shimadai	{
	margin: 24px 0 0;	
}
}
@media screen and (max-width: 898px)  {
.header	{
	max-width: 100%;
	padding: 0 20px;
}
.header__logo	{
	font-size: 26px;
}
.header__logo a .header__logo--en	{
	font-size: 12px;
}
.header__logo--shimadai a	{
	display: none;
}
}
@media screen and (max-width: 768px)  {
.header__logo	{
	font-size: 24px;
}
.header__logo a .header__logo--en	{
	font-size: 10px;
}
}
@media screen and (max-width: 568px)  {
.header	{
	margin: 0 auto 14px;
	padding: 0 15px;
}
.header > h1	{
	margin: 11px 0 0;
	line-height:1.1 !important;
}
.header__logo	{
	font-size: 20px;
	letter-spacing:0.05em;
}
.header__logo a br	{
	display:block;
}
.header__logo a .header__logo--en	{
	font-size: 9px;
	letter-spacing:0.05em;
	margin-top: 5px;
}
}


/* -------------------------------------------------

 Nav

------------------------------------------------- */
#g-nav {
	display:none;
}
@media screen and (max-width: 898px)  {
#g-nav {
	display: block;
 position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
 height: 100vh;
	background:#f4f4f4;
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール(ナビの数が増えた場合)*/
#g-nav.panelactive #g-nav-list {
 position: fixed;
 z-index: 999; 
 width: 100%;
 height: 100vh;
 overflow: auto;
 -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
 display: none;
 position: absolute;
 z-index: 999;
 top:50%;
 left:50%;
 transform: translate(-50%,-50%);
	width: 100%;
}
#g-nav.panelactive ul {
 display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
	list-style: none;
 text-align: center; 
}
#g-nav li a {
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 18px;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
 position: absolute;
	/*position:fixed;*/
 z-index: 9999;
	top:17px;
	right: 10px;
	cursor: pointer;
 width: 50px;
 height:50px;
}
	
/*×に変化*/	
.openbtn span {
 display: inline-block;
 transition: all .4s;
 position: absolute;
 left: 11px;
 height: 3px;
 border-radius: 2px;
	background-color: #007bbb;
 width: 55%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-1px;
	color: #007bbb;
	font-size: 0.6rem;
	text-transform: uppercase;
}
.openbtn.active span:nth-of-type(1) {
 top: 18px;
 left: 12px;
 transform: translateY(6px) rotate(-45deg);
 width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
 top: 30px;
 left: 12px;
 transform: translateY(-6px) rotate(45deg);
 width: 50%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
 transform: translateY(0) rotate(-45deg);
	top:5px;
	left:8px;
}
}
@media screen and (max-width: 768px)  {
.openbtn {
	top:15px;
}
}
@media screen and (max-width: 568px)  {
.openbtn {
	top:11px;
	right: 5px;
}
}


/* -------------------------------------------------

 footer

------------------------------------------------- */
footer {
	width: 100%;
	margin: 0 0 30px;
	position:relative;
}
.footer__head	{
	max-width: 1400px;
	margin: 0 auto 25px;
	padding: 0 0 20px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	border-bottom: 5px solid #ccc;
}
.footer__head--attention {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;	
}
.footer__head--pagetop a {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	position:relative;
}
.footer__head--pagetop a:before {
 content: '';
 width: 25px;
 height: 25px;
 background: #007bbb;
 border-radius: 50%;
 position: absolute;
 top: 50%;
 left: -25px;
 margin-top: -10px;
	margin-left: -10px;
}
.footer__head--pagetop a:after {
 content: '';
 width: 10px;
 height: 10px;
 border: 0;
 border-top: solid 2px #f4f4f4;
 border-right: solid 2px #f4f4f4;
 position: absolute;
 top: 50%;
 left: -18px;
 margin-top: -1px;
 transform: rotate(-45deg);
	margin-left: -9px;
}
.footer__foot	{
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.footer__foot--contact {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;		
}
.footer__foot--contact .heading {
	margin: 0 0 10px;
}
.footer__foot--contact .address {
	margin: 0 0 0 15px;
}
.footer__foot--contact .address a {
	color: #007bbb;
}
.footer__foot--copyright {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;		
}
.footer__logo--shimadai	{
	display: none;
}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
.footer__head	{
	max-width:100%;
	margin: 0 40px 25px;
}
.footer__foot	{
	max-width:100%;
	padding: 0 40px;
}
}
@media screen and (min-width: 899px) and (max-width: 1024px) {
.footer__head	{
	max-width:100%;
	margin: 0 40px 25px;
}
.footer__foot	{
	max-width:100%;
	padding: 0 40px;
}
}
@media screen and (max-width: 898px)  {
.footer__head	{
	max-width:100%;
	margin: 0 20px 25px;
}
.footer__foot	{
	max-width:100%;
	padding: 0 20px;
}
}
@media screen and (max-width: 667px)  {
.footer__head	{
	flex-flow: column wrap;
	border-bottom: 3px solid #ccc;
}
.footer__head--attention {
	text-indent: -1em;
	padding-left: 1em;
}
.footer__head--pagetop {
	margin:25px 0 0 auto;
}
.footer__foot	{
	flex-flow: column wrap;
}
.footer__foot--contact {
	margin: 0 auto 30px;
}
.footer__foot--copyright {
	padding-top: 15px;
	border-top: 3px solid #ccc;
	text-align: center;
}
.footer__logo--shimadai	{
	display: block;
	margin: 0 auto 25px;	
}
.footer__logo--shimadai a:hover {
 opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
	text-decoration: none;
}
}
@media screen and (max-width: 360px)  {
.footer__foot--copyright {
	font-size: 10px;
}
}


/* -------------------------------------------------

 breadcrumbs

------------------------------------------------- */
.breadcrumbs	{
	max-width: 1400px;
	margin: 0 auto;
}
.breadcrumbs ul	{
	width: 100%;
	padding: 8px 18px;
	background-color:#007bbb;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	position:relative;
	border-bottom: 5px solid #cccccc;
}
.breadcrumbs li	{
 font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	color:#fff;
	position:relative;
	margin-right: 35px;
}
.breadcrumbs li a	{
	color:#fff;
}
.breadcrumbs li a::after	{
	content: '';
 border: 0;
 border-top: solid 1px #fff;
 border-right: solid 1px #fff;
 display: inline-block;
 width: 8px;
 height: 8px;
 position: absolute;
 top: 50%;
 right: -20px;
 transform: translateY(-50%) rotate(45deg);
}
.breadcrumbs li a:hover	{
	color:	#fff;
	text-decoration: underline;
	transition: .3s;
}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
.breadcrumbs {
	max-width: 100%;
	padding: 0 40px;
}
}
@media screen and (min-width: 899px) and (max-width: 1024px) {
.breadcrumbs {
	max-width: 100%;
	padding: 0 40px;
}
}
@media screen and (max-width: 898px)  {
.breadcrumbs	{
	max-width: 100%;
	padding: 0 20px;
}
}
@media screen and (max-width: 768px)  {
.breadcrumbs li	{
	font-size: 16px;
}
}
@media screen and (max-width: 568px)  {
.breadcrumbs	{
	padding: 0 15px;
}
.breadcrumbs ul	{
	padding: 8px 10px;
	border-bottom: 3px solid #cccccc;
}
}
@media screen and (max-width: 480px)  {
.breadcrumbs li	{
	font-size: 14px;
}
}

