@charset "utf-8";
/*
theme Name: meikan
Author: xxxx
Description: 名鑑シリーズのベースとなる親テーマです。
version： 1.0.0
*/

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.3;
	color: #373235;
}
img {
	max-width: 100%;
	border: none;
	vertical-align: bottom;
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
}
img {
	zoom: 50%;
}

a {
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}
ul {
	list-style: none;
}

html.no-scroll {
	overflow: hidden;
}

/*PC SP 表示切り替え*/
.pc_content {
	display: block;
}
.sp_content {
	display: none;
}
.pc_br{
	display: initial;
}
.sp_br{
	display: none;
}
@media screen and (max-width: 640px) {
	.header_btns.login_btns.f_box.pc_content {
		display: none;
	}
	.pc_content {
		display: none;
	}
	.sp_content {
		display: block;
	}
}

@media screen and (max-width: 640px) {
	.pc_br{
		display: none;
	}
	.sp_br{
		display: initial;
	}
}
/*fadeIn*/
/*scroll fadein*/
.scroll_fadein {opacity: 0;}
.scroll_fadein_on {
	animation-name: fadeInDown;
	animation-duration: 1.3s;
	animation-fill-mode: forwards;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;         
	}
	100% {
		opacity: 1;
		transform: translate(0);
	}
}

/*timly fadein*/
.fadeInHook{
	opacity:0;
}
.fadeInHook.fadeInOn{
	opacity:1;
	transition:1s;
}

/*base setting*/
.f_box{
	display: flex;
	flex-wrap: wrap;
}
.jc_center{
	justify-content: center;
}
.ai_center{
	align-items: center;
}
.t_center{
	text-align: center;
}
.d_center{
	display: block;
	margin: auto;
}
.t_left{
	text-align: center;
}
.t_right{
	text-align: center;
}
.fw_bold{
	font-weight: bold;
}

/*ベースレイアウト*/
section.section {
	padding: 50px 0;
}

.sec_inner {
	max-width: 95%;
	width: 1200px;
	margin: auto;
}
.sec_inner_900 {
	max-width: 95%;
	width: 900px;
	margin: auto;
}

/******************************
レスポンシブ
/******************************/

@media screen and (max-width: 780px) {
	body {
		font-size: 1.4rem;
	} /* 14px */
	p {
		font-size: 1.4rem;
	} /* 14px */
	li {
		font-size: 1.4rem;
	} /* 14px */
}

@media screen and (max-width: 640px) {
	body {
		font-size: 1.2rem;
	} /* 12px */
	p {
		font-size: 1.2rem;
	} /* 12px */
	li {
		font-size: 1.2rem;
	} /* 12px */
}



/*header*/
header#header {
	padding: 20px 0 10px 0;
}
#header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 95%;
	width: 1200px;
	margin: auto;
}

#header .header-inner .logo {
	width: 300px;
	max-width: 30%;
}

#header .header-inner .logo a img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#header .header-inner .header_menu ul.menu {
	display: flex;
}

#header .header-inner .header_menu ul.menu li {
	padding: 0 20px;
}

#header .header-inner .header_menu ul.menu li a {
	color: #373235;
	font-weight: bold;
	font-size: 14px;
}

#header .header-inner .header_btns p.login_btn {
	margin: 0 5px;
	width: 100px;
	height: 30px;
	display: flex;
    display: table;
	justify-content: center;
	align-items: center;
	border: 1px solid #d1497a;
	border-radius: 5px;
}
#header .header-inner .header_btns p.login_btn.register a,
#header .header-inner .header_btns p.login_btn.logout a
{
	color: #d1497a;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#header .header-inner .header_btns p.login_btn.login,
#header .header-inner .header_btns p.login_btn.mypage{
	background-color: #d1497a;
	color: #fff;
}
#header .header-inner .header_btns p.login_btn.login a,
#header .header-inner .header_btns p.login_btn.mypage a{
	color: #fff;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#header .header-inner .header_btns p.mypage {
	/* 	display: none; */
}


/*ハンバーガー*/
.sp_nav {
	position: fixed;
	right: 20px;
	height: 20px;
	z-index: 500;
}
.nav_toggle {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	z-index: 800;
}
.nav_toggle i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
	position: absolute;
	transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
	top: 5px;
}
.nav_toggle i:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
.nav_toggle i:nth-child(3) {
	bottom: 5px;
}

.nav_toggle.show i:nth-child(1) {
	transform: translateY(9px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
	opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
	transform: translateY(-9px) rotate(45deg);
}

.nav {
	position: fixed;
	top: 3rem;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
	background-color: #bed0da;
	z-index: 400;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	margin: auto;
	max-height: 100vh;
}


.nav.show {
	opacity: 1;
	visibility: visible;
    top: 0;
}

.nav.show .logo {
	margin-bottom: 20px;
}

#header .header-inner .nav.show .logo img {
	width: 400px;
	margin: 0 auto;
	display: block;
}

#header .header-inner .nav.show .logo {
	width: 500px;
	max-width: 90%;
}

.nav.show .menu-header-container {
	max-width: 90%;
	width: 500px;
	margin: 20px auto;
}

.nav.show .menu-header-container ul li a {
	color: initial;
	font-size: 16px;
	line-height: 240%;
}

.nav.show .header_btns.login_btns {
	width: 500px;
	max-width: 90%;
}

#header .nav.show .header_btns.login_btns .login_btn {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
	border-radius: 0;
	height: 50px;
	font-size: 16px;
}

#header .nav.show .header_btns.login_btns .login_btn.register ,
#header .nav.show .header_btns.login_btns .login_btn.logout {
	background-color: #fff;
}


@media screen and (max-width: 480px) {
	#header .header-inner .logo{
		max-width: 60%;
	}
}
/*footer*/
#footer .footer-inner {
	max-width: 95%;
	width: 1200px;
	margin: auto;
}
footer#footer {
	background-color: #f2f2f2;
	padding: 30px 0;
}

#footer .footer-inner .footer_menu ul {
	display: flex;
	justify-content: center;
}

#footer .footer-inner .footer_menu {
	width: 100%;
	margin-bottom: 20px;
}

#footer .footer-inner .footer_menu ul li a {
	margin: 0 20px;
	color: #373235;
	font-size: 14px;
}

#footer .footer-inner .footer_menu ul li:nth-child(n) {
	border-left: 1px solid #373235;
}
#footer .footer-inner .footer_menu ul li:nth-child(1) {
	border-left: none;
}

#footer .footer-inner .copyright {
	text-align: center;
}

#footer .footer-inner .copyright p {
	color: #373235;
	font-size: 12px;
}

@media screen and (max-width: 640px) {
	#footer .footer-inner .footer_menu ul li a {
		margin: 0 5px;
		font-size: 10px;
	}

	#footer .footer-inner .copyright p {
		font-size: 10px;
	}
	
}
@media screen and (max-width: 480px) {
	#footer .footer-inner .footer_menu ul {
		flex-direction: column;
		text-align: center;
	}

	#footer .footer-inner .footer_menu ul li:nth-child(2) {
		border: none;
	}

	#footer .footer-inner .footer_menu ul li {
		margin-bottom: 5px;
    border: none;
	}
	#footer .footer-inner .footer_menu ul li:nth-child(n){
    border: none;
	}
}



/*パンくず*/
.pankuzu {
	background-color: #fbf8f5;
	padding: 6px 0;
	font-size: 12px;
	margin: 20px 0 40px 0;
}

.pankuzu a {
	color: initial;
}
span.pankuzu_arrow {
	font-size: 9px;
	margin: 0 10px;
}