@charset "utf-8";
/* CSS Document */
/*===================================================================
     common            
===================================================================*/
body {
	font-family: 'Didact Gothic', "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
	height: 100%;
	width: 100%;
	

}
* {
	margin: 0;
	padding: 0;
}


/*=================================*/
@media screen and (max-width:1000px) {
  /*開閉ボタン*/
  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 18px;
    right: 17px;
    z-index: 10000;
    cursor: pointer;
    cursor: hand;
  }

@media screen and (max-width:768px) {
   #nav_toggle {
    top: 24px;
    right: 20px;
  }
}
	
  #nav_toggle div {
    position: relative;
  }
	
  #nav_toggle span {
    display: block;
    height: 3px;
    background: rgba(37,99,150,1.00);
    position: absolute;
    border-radius: 3px;
    width: 100%;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
	
  #nav_toggle span:nth-child(1) {
    top: 4px;
  }
	
  #nav_toggle span:nth-child(2) {
    top: 16px;
  }
	
  /*開閉ボタンopen時*/
  .clicked #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
	
  .clicked #nav_toggle span:nth-child(2) {
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
/*===================================*/


img {
    image-rendering: -webkit-optimize-contrast;
}

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

#wrap {
	overflow: hidden;
}

ul {
	list-style: none;
}

@media screen and (min-width:1001px) {
.pc_none {
	display: none;
}
}

@media screen and (max-width:1000px) {
.sp_none {
	display: none;
}
}


@media screen and (min-width:501px) {
.pc_m_none {
	display: none;
}
}

@media screen and (max-width:500px) {
.sp_m_none {
	display: none;
}
}


/* header */

#header_container {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width:1000px) {
#header_container {
	width: 95%;
}	
}

#header_list {
	list-style: none;
	display: flex;
	align-items: center;
}

@media screen and (max-width:1000px) {
#header_list {
	display: none;
}	
}

#header_list li {
	display: inline-block;
	margin: 0 15px 0 0 
}

#header_list li img {
	width: 30px;
}

#header_list li:last-child {
	margin: 0;
}

#header_list li a {
	display: inline-block;
	/* width: 100%; */
	font-size: 13px;
}

#header_list li a:hover {
	opacity: 0.5;
}

#header_container h1 {
	width: 200px;
	padding: 12px 0;
}

@media screen and (max-width:1000px) {
#header_container h1 {
	width: 150px;
	padding: 5px 0 10px;
}	
}

#header_container h1 a {
	display: inline-block;
	width: 100%;
}

#header_container h1 span {
	font-size: 12px;
	color: #01527f;
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: bold;
}

@media screen and (max-width:1000px) {
#header_container h1 span {
	font-size: 9px;
}	
}

#header_container h1 img {
	display: block;
	width: 100%;
	margin: 0 auto;
}




#top_banner {
	position: relative;
	width: 70%;
	margin: 0 auto;
}

@media screen and (max-width:1000px) {
	#top_banner {
		width: 90%;
	}
}

#top_banner img {
	width: 100%;
}

#gnav {
	max-width: 1500px;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
}

@media screen and (max-width:1000px) {
  #gnav {
    position: fixed;
    top: 0;
    right: -105%;
    bottom: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-color: #FFF;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: scroll;
    font-size: 13px;
	z-index: 9999; 
  }
}

@media screen and (max-width:1000px) {
.clicked #gnav {
  right: 0;
  
}
}

#gnav_list {
	display: flex;
	justify-content: space-between;
	border-left: 1px solid #FFF;
	box-sizing: border-box;
	width: 100%;
}

@media screen and (max-width:1000px) {
#gnav_list {
	display: block;
	width: 95%;
	margin: 0 auto;
	border-left: 0px solid #FFF;
}	
}

#gnav_list li {
	width: 12.5%;
	box-sizing: border-box;
}

@media screen and (max-width:1000px) {
#gnav_list li {
	width: 100%;
}	
}



#gnav_list li a {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 20px 8px;
	box-sizing: border-box;
	font-weight: bold;
	background-color:rgba(229,229,229,1.00);
	border-right: 1px solid #FFF;
	color: #5F5F5F;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

@media screen and (max-width:1000px) {
#gnav_list li a {
	text-align: left;
	font-size: 15px;
	padding: 15px 10px;
	border-right: 0px solid #FFF;
}	
}

#gnav_list li a:hover {
	background-color:rgba(37,99,150,1.00);
	color: #FFF
}

#gnav_list .active_nav a {
	background-color:rgba(37,99,150,1.00);
	color: #FFF;
}

@media screen and (min-width:1001px) {
	#icon_box {
		display: none;
	}
}

@media screen and (max-width:1000px) {
	#icon_box {
		display: flex;
	}
}

#icon_box {
		align-items: center;
		margin: 0 auto;
		top: 0;
		position: fixed;
		right: 17%;
		justify-content: center;
}

#icon_box a img {
	width: 25px;
    margin: 21px 7px;
}


#blog_banner {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0 0 80px; 
}

@media screen and (max-width:1000px) {
#blog_banner {
	display: block;
	margin: 30px 0 80px; 
}	
}

#blog_banner li {
	width: 230px;
	margin: 15px;
	
}

@media screen and (max-width:1000px) {
#blog_banner li {
	width: 230px;
	margin: 0 auto 15px;
}	
}

#blog_banner li a {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 20px 10px;
	font-weight: bold;
	font-size: 18px;
}

#blog_banner #blog a {
	background-color: #c00000;
	color: #FFF;
}

#blog_banner #voice a {
	background-color: #4473c5;
	color: #FFF;
} 

/* footer*/

#footer {
	width: 100%;
}

#footer_container {
	width: 95%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 15px 0;
}

#footer_item {
	display: flex;
	width: 100%;
	margin: 0 0 30px;
}

@media screen and (max-width:1000px) {
#footer_item {
	display: block;
}	
}

#footer_logo_box {
	width: 30%;
	padding: 0 15px 0 0;  
}

@media screen and (max-width:1000px) {
#footer_logo_box {
	width: 95%;
	margin: 0 auto 60px;
	padding: 0; 
}	
}

#footer_logo {
	width: 150px;
	margin: 0 0 15px;
}

#footer_logo img {
	width: 100%;
}

#footer_logo_box h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 15px;
}

#footer_logo_box p {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 15px;
}

#footer_logo_box small {
	font-size: 13px;
}

#footer_message {
	width: 30%;
	padding: 0 15px 0 0;  
}

@media screen and (max-width:1000px) {
#footer_message {
	width: 95%;
	margin: 0 auto 60px;
	padding: 0;  
}	
}

#footer_message h4 {
	font-size: 18px;
	font-weight: bold;
	color: rgba(110,110,110,1.00);
	margin: 0 0 15px;
}

@media screen and (max-width:500px) {
#footer_message h4 {
	text-align: center;
}	
}

#footer_message p {
	font-size: 16px;
	line-height: 1.4;
	color: rgba(110,110,110,1.00);
}

#footer_contact {
	width: 260px;
}

@media screen and (max-width:1000px) {
#footer_contact {
	width: 260px;
	margin: 0 auto;
}	
}

#footer_contact a {
	display: inline-block;
	width: 100%;
}


#footer_contact a img {
	width: 100%;
}

#footer_call {
	display: flex;
	margin: 0 0 20px;
	align-items: center;
}


#footer_call figure {
	width: 70px;
	margin: 0 15px 0 0;
}

@media screen and (max-width:1000px) {
#footer_call figure {
	width:40px;
	margin: 0 15px 0 0;
}	
}

@media screen and (max-width:500px) {
#footer_call figure {
	width: 30px;
	margin: 0 10px 0 0;
}	
}

#footer_call figure img {
	width: 100%;
}

#footer_call p {
	color: #ff0000;
    font-size: 50px;
    font-family: "メイリオ" , "sans-serif" , "MS UI Gothic" !important;
    font-weight: bold;
}

@media screen and (max-width:1000px) {
#footer_call p {
    font-size: 30px;
}	
}

@media screen and (max-width:500px) {
#footer_call p {
    font-size: 16px;
}	
}

#footer_call p span {
	font-size: 30px;
    font-weight: bold;
	color: rgba(115,115,115,1.00);
	padding: 0 0 0 15px;
}

@media screen and (max-width:1000px) {
#footer_call p span {
	font-size: 18px;
	padding: 0;
}	
}

@media screen and (max-width:500px) {
#footer_call p span {
	font-size: 14px;
}	
}

.normalize_info {
	font-size: 14px;
	color: rgba(99,99,99,1.00);
	line-height: 1.6;
}

#footer_info {
	background-color: #000;
}

#footer_info ul {
	display: flex;
	padding: 10px 0;
	max-width: 1600px;
	width: 95%;
	margin: 0 auto;
}

@media screen and (max-width:500px) {
#footer_info ul {
	display: block;
}	
}

#footer_info ul li {
	display: inline-block;
	margin: 0 15px 0 0;
}

@media screen and (max-width:500px) {
#footer_info ul li {
	display: block;
	margin: 0 auto;
}	
}

#footer_info ul li a {
	display: inline-block;
	width: 100%;
	color: #8A8A8A;
	font-size: 12px;
}

#footer_info small {
	font-size: 12px;
	color: #FFF;
	padding: 0 0 10px;
	text-align: center;
	display: block;
	width: 100%;
}

/* 修正 */

#copy {
	width: 40%;
    position: absolute;
    top: 73%;
    right: 0px;
    padding: 5px 20px 5px 5px;
    background-color: rgb(178 178 178 / 75%);
}

#copy-img {
	width: 100%;
}