@charset "utf-8";

/*--------------------------------------------------------------
1.0 - basic
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	list-style: none;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

body,
input,
select,
textarea {
	color: #333;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 28px;
	line-height: 2.8rem;
	letter-spacing: 0.08em;
}

body {
	background: #fff;
	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
	color: #242424;
}
h1 {
	font-size: 2.7em;
}
h2 {
	font-size: 2.1em;
}
h3 {
	font-size: 1.8em;
}
h4 {
	font-size: 1.4em;
}

a {
	text-decoration:none;
	color: #20B2AA;
}
a:hover {
	color: #62C9C3;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/*--------------------------------------------------------------
2.0 - PC
--------------------------------------------------------------*/
#wrapper {
	width: 100%;
	margin: 0 auto;
}

/* Header */
#site-header {
	position: fixed;
	width: 100%;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	padding: 0;
}
.hd_container {
	width: 100%;
	max-width: 88%;
	aspect-ratio: 169/10;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	transition: 0.5s;
}
.logo {
	width: 20%;
	padding: 0;
}
.logo a {
	line-height: normal;
	transition: 0.5s;
}
.logo a:hover {
	opacity: .8;
}
.logo img {
	width: 100%;
	height: auto;
	transition: 0.5s;
	display: block;
}
/* Main manu */
.nav-holder {
	width: 80%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.main-nav {
	width: 100%;
	height: 100%;
}
.nav-container {
	width: 100%;
	height: 100%;
}
.hd-mainmenu {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}
.hd-mainmenu li {
	position: relative;
	height: 100%;
	padding: 0 2.5%;
	text-align: center;
}
.hd-mainmenu li a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: 1.1vw;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	transition: 0.5s;
}
.hd-mainmenu li a:hover {
	opacity: .6;
}
.hd-mainmenu li:last-child {
	padding: 0 0 0 2.5%;
}
.hd-mainmenu .have_child {
	margin-right: 2.1%;
}
.hd-mainmenu li.menu-item-has-children > a::after {
	font-family: 'FontAwesome';
	content: '\f078';
	font-size: 1.0vw;
	position: absolute;
	right: 0;
}
.hd-mainmenu li:hover ul.drop_child {
	visibility: visible;
	opacity: 1;
	z-index: 9999;
	transition: 0.5s;
}
.hd-mainmenu li .drop_child {
	list-style: none;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	display: block;
	position: absolute;
	padding-top: 5.17%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 6% 0;
	background-color: rgba(0, 0, 0, 0.8);
}
.hd-mainmenu li .drop_child li {
	display: block;
	padding: 4% 0;
}
.hd-mainmenu li .drop_child li:last-child {
	padding: 4% 0;
}
.hd-mainmenu li .drop_child li a {
	text-align: center;
	color: #fff;
	font-size: 1.0vw;
}

.section {
}
.section-a {
	background: #000;
}
.section-b {
	background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
#site-header.scroll-nav .hd_container {
	aspect-ratio: 653/30;
}
#site-header.scroll-nav .logo img {
	width: 90%;
}
/* Main manu */
#site-header.scroll-nav .hd-mainmenu li a {
	font-size: 1.0vw;
}
#site-header.scroll-nav .hd-mainmenu li .drop_child li a {
	font-size: 0.9vw;
}

/* SP manu */
.sp_menu {
	display: none;
}

#container {
	width: 100%;
	padding-top: 5.20%;
}


/*----- パンくず -----*/
.breadcrumb {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
	padding: 3% 0 0;
	list-style: none;
}
.breadcrumb li {
	display: inline;
	font-size: 1.0vw;
}
.breadcrumb li a {
	color: #666;
}
.breadcrumb li a:hover {
	color: #333;
}
.breadcrumb li + li:before {
	font-family: 'FontAwesome';
	content: '\f105';
	margin: 0;
	padding: 0 0.7%;
	color: #999;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke: 0.4px #fff;
}
.breadcrumb li:first-child::before {
	font-family: 'FontAwesome';
	content: '\f015';
	margin: 0;
	padding: 0 0.5% 0 0;
	color: #999;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke: 0.4px #fff;
}

/* Post */
.hd_archive {
	width: 100%;
	margin: 0 auto;
	padding: 3% 0;
	background-color: #f9f9f9;
}
.hd_archive h1 {
	width: 100%;
	font-size: 1.6vw;
	text-align: center;
}
.primary {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
	padding: 3% 0 0 0;
	display: flex;
}
.main {
	width: 77%;
	margin: 0 3% 10% 0;
}
.roop {
	width: 100%;
	margin: 0 0 5%;
	padding: 0 0 5%;
	border-bottom: dotted 1px #ccc;
	line-height: normal;
}
.roop h2 {
	margin: 0;
	padding: 0 0 0.5%;
	font-size: 1.4vw;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.roop_meta {
	width: 100%;
	margin: 0;
	padding: 0 0 1.5% 0;
	font-size: 0.95vw;
}
.meta_date {
	margin-right: 1.5%;
}
.meta_date::before {
	font-family: 'FontAwesome';
	content: '\f073';
	font-size: 1.0vw;
	margin-right: 0.8%;
	color: #999;
}
.meta_author {
	margin-right: 1.5%;
}
.meta_author::before {
	font-family: 'FontAwesome';
	content: '\f007';
	font-size: 1.0vw;
	margin-right: 0.8%;
	color: #999;
}
.meta_cat {
	margin-right: 1.5%;
}
.meta_cat::before {
	font-family: 'FontAwesome';
	content: '\f03a';
	font-size: 1.0vw;
	margin-right: 0.8%;
	color: #999;
}
.roop_thum {
	width: 40%;
	margin: 0;
	padding: 0;
	display: inline-block;
}
.roop_thum img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.roop_excerpt {
	width: 56.3%;
	margin: 0;
	padding: 0 0 0 3%;
	display: inline-block;
	vertical-align: top;
	font-size: 1.0vw;
	line-height: 2.0;
}
.roop_excerpt a {
	display: block;
	text-align: right;
	padding-top: 2%;
}

/* Pagination */
.pagination {
	margin: 4% 0 0 0;
	line-height: normal;
}
.nav-links {
	display: flex;
	justify-content: center;
}
.pagination .page-numbers {
	display: inline-block;
	margin-right: 1.2%;
	padding: 0.6% 1.2% 0.8% 1.2%;
	color: #333;
	border: solid 1px #eee;
	border-radius: 3px;
	background: #fff;
	font-size: 0.9vw;
	line-height: 1.2em;
}
.pagination .page-numbers:hover {
	background: #eee;
}
.pagination .current {
	padding: 0.6% 1.2% 0.8% 1.2%;
	background: #999;
	color: #fff;
}
.pagination .current:hover {
	background: #999;
}
.pagination .prev,
.pagination .next {
	background: transparent;
	color: #111;
}
.pagination .dots {
	background: transparent;
	border-style: none;
}
.pagination .dots:hover {
	background: #fff;
}

/* side bar */
.side {
	width: 23%;
	margin: 0 0 10% 3%;
	line-height: normal;
}
.side .widget {
	margin: 0 0 15%;
}
.side .widget h2 {
	padding: 0;
	font-size: 1.1vw;
	font-weight: 500;
}
.side .widget ul li {
	padding: 3% 0;
	font-size: 0.9vw;
	border-bottom: dotted 1px #ccc;
}

/* Single */
.single_ttl {
	margin: 0;
	padding: 0 0 0.5%;
	font-size: 1.4vw;
	font-weight: 500;
}
.single_meta {
	width: 100%;
	margin: 0 0 2%;
	padding: 0 0 1.5% 0;
	font-size: 0.95vw;
	border-bottom: dotted 1px #ccc;
}
.single_cntnt p {
	margin: 0;
	padding: 0 0 1.5%;
	font-size: 0.95vw;
	line-height: 2.0;
}
.single_pagination {
	margin-top: 10%;
	font-size: 0.9vw;
	line-height: 1.4;
}
.nav-previous {
	margin: 0;
	padding-right: 3%;
	border-right: solid 1px #aaa;
	text-align: right;
}
.nav-next {
	margin: 0;
	padding-left: 3%;
	text-align: left;
}

/* Footer */
#footer {
	width: 100%;
	padding: 0 0 2.5% 0;
	color: #fff;
	background-color: rgba(47, 136, 176, 1.0);
	position: relative;
}
#footer-widget {
	width: 100%;
	max-width: 88%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	color: #fff;
	font-size: 0.9vw;
	line-height: normal;
}
#footer-widget li {
	list-style: none;
	padding: 0 2.8% 0 0;
}
#footer-widget li:last-child {
	padding: 0;
}
#footer-widget .widget {
	width: 33.33%;
}
#footer-widget .widget h2 {
	padding-bottom: 2%;
	color: #fff;
	font-size: 1.2vw;
	text-align: center;
}
#footer-widget .widget p {
	padding: 0 0 2%;
	font-size: 0.9vw;
	line-height: 1.8;
}
.copyright {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 0.9vw;
	text-align: center;
	line-height: 1.8;
}

/* Page Top */
#page_top {
	position: fixed;
	right: 1.2%;
	bottom: 30px;
	width: 4.2%;
	cursor: pointer;
	z-index: 120;
}
#page_top a {
	background-color: #2f88b0;
	border-radius: 50%;
	width: 100%;
	height: 0;
	padding-top: 100%;
	text-align: center;
	transition: opacity .5s;
	display: block;
	color: #fff;
	border: solid 1px #fff;
	position: relative;
}
#page_top p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.9vw;
	line-height: 1.2;
}

/* footer floating Banner */
#footer_fb {
	left: 0;
	width: 100%;
	padding: 0;
	background-color: rgba(47, 136, 176, 1.0);
	z-index: 100;
}
.ffb_inner {
	width: 70%;
	margin: 0 auto;
	padding: 1.5% 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	line-height: 1.6;
	letter-spacing: 0.08em;
}
.ffbi_ttl {
	width: fit-content;
	margin: 0;
	padding: 0 4% 0 0;
	line-height: 1.9;
	position: relative;
	text-align: center;
}
.ffbi_ttl::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "\f35a";
	font-family: FontAwesome;
	font-size: 1.8vw;
	color: #fff;
}
.ffbi_ttl h2 {
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.3vw;
	font-weight: 700;
	line-height: 1.6;
	color: #fff;
	border-style: none;
}
.ffbi_ttl p {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 0.85vw;
	font-weight: 400;
}
.ffbi_tel {
	width: fit-content;
	margin: 0;
	padding: 0 0 0 4.5%;
	line-height: 1.9;
	position: relative;
	text-align: center;
}
.ffbi_tel::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-44%);
	content: "\f095";
	font-family: FontAwesome;
	font-size: 2.2vw;
	color: #fff;
}
.ffbi_tel a {
	font-size: 2.5vw;
	font-weight: 800;
	color: #fff;
}
.ffbi_btn {
	width: 24%;
	margin: 0;
	line-height: 1.9;
	position: relative;
	text-align: center;
}
.ffbi_btn a {
	width: 100%;
	margin: 0;
	padding: 2.6% 0 2.8%;
	border: 1px solid #333;
	background-color: #333;
	color: #fff;
	font-size: 1.0vw;
	font-weight: 600;
	text-align: center;
	transition: 0.8s;
	border-radius: 100vh;
	display: block;
}
.ffbi_btn a:hover {
	border: 1px solid #fff;
	background-color: #fff;
	color: #333;
}
.ffbi_btn a::before {
	font-family: "Font Awesome 5 Free";
	font-size: 1.2vw;
	font-weight: 900;
	content: '\f0e0';
	padding-right: 3%;
}


/*----- ANCHOR LINK -----*/
.anchor {
	display: block;
	padding-top: 60px;
	margin-top: -60px;
}

/*----- 404 NOT FOUND -----*/
#notfound {
	width: 100%;
	margin: 0 auto;
	padding: 15% 0;
	text-align: center;
}
#notfound h1 {
	font-size: 3.3vw;
	color: #ccc;
	padding: 0 0 2%;
}
#notfound p {
	font-size: 1.0vw;
	padding: 0 0 3%;
}

/*--------------------------------------------------------------
3.0 - Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1366px) {
	/* Header */
	
	/* Post */
	
	
}

@media screen and (max-width: 1280px) {
	/* Header */
	.logo {
		width: 22%;
	}
	.nav-holder {
		width: 78%;
	}
	
	/* Main manu */
	.hd-mainmenu li a {
		font-size: 1.3vw;
	}
	.hd-mainmenu li.menu-item-has-children > a::after {
		font-size: 1.2vw;
	}
	.hd-mainmenu li .drop_child li a {
		font-size: 1.2vw;
	}
	
	/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
	#site-header.scroll-nav .hd-mainmenu li a {
		font-size: 1.25vw;
	}
	#site-header.scroll-nav .hd-mainmenu li .drop_child li a {
		font-size: 1.15vw;
	}
	
	/*----- パンくず -----*/
	.breadcrumb li {
		font-size: 1.2vw;
	}
	
	/* Post */
	.hd_archive h1 {
		font-size: 1.8vw;
	}
	.roop h2 {
		font-size: 1.6vw;
	}
	.roop_meta {
		font-size: 1.15vw;
	}
	.meta_date::before {
		font-size: 1.2vw;
	}
	.meta_author::before {
		font-size: 1.2vw;
	}
	.meta_cat::before {
		font-size: 1.2vw;
	}
	.roop_excerpt {
		width: 56.1%;
		font-size: 1.2vw;
	}
	
	/* Pagination */
	.pagination .page-numbers {
		font-size: 1.1vw;
	}
	/* side bar */
	.side .widget h2 {
		font-size: 1.3vw;
	}
	.side .widget ul li {
		font-size: 1.1vw;
	}
	
	/* Single */
	.single_ttl {
		font-size: 1.6vw;
	}
	.single_meta {
		font-size: 1.15vw;
	}
	.single_cntnt p {
		font-size: 1.15vw;
	}
	.single_pagination {
		font-size: 1.1vw;
	}
	
	/* Footer */
	#footer-widget {
		font-size: 1.1vw;
	}
	#footer-widget .widget h2 {
		font-size: 1.4vw;
	}
	#footer-widget .widget p {
		font-size: 1.1vw;
	}
	.copyright {
		font-size: 1.1vw;
	}
	/* Page Top */
	
	
	
	/* footer floating Banner */
	.ffb_inner {
		width: 80%;
	}
	.ffbi_ttl::after {
		font-size: 2.0vw;
	}
	.ffbi_ttl h2 {
		font-size: 1.5vw;
	}
	.ffbi_ttl p {
		font-size: 1.05vw;
	}
	.ffbi_tel::before {
		font-size: 2.4vw;
	}
	.ffbi_tel a {
		font-size: 2.7vw;
	}
	.ffbi_btn a {
		font-size: 1.2vw;
	}
	.ffbi_btn a::before {
		font-size: 1.4vw;
	}
	
	
}


/* tablet */
@media screen and (max-width: 1024px) {
	/* Header */
	.hd_container {
		max-width: 92%;
		aspect-ratio: 707/60;
	}
	.logo {
		width: 24%;
	}
	.nav-holder {
		width: 76%;
	}
	
	/* Main manu */
	.hd-mainmenu li {
		padding: 0 1.8%;
	}
	.hd-mainmenu li a {
		font-size: 1.6vw;
	}
	.hd-mainmenu li:last-child {
		padding: 0 0 0 1.8%;
	}
	.hd-mainmenu .have_child {
		margin-right: 1.8%;
	}
	.hd-mainmenu li.menu-item-has-children > a::after {
		font-size: 1.5vw;
		right: -2%;
	}
	.hd-mainmenu li .drop_child li a {
		font-size: 1.5vw;
	}
	/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
	#site-header.scroll-nav .hd_container {
		aspect-ratio: 707/50;
	}
	#site-header.scroll-nav .logo img {
		width: 97%;
	}
	#site-header.scroll-nav .hd-mainmenu li a {
		font-size: 1.55vw;
	}
	#site-header.scroll-nav .hd-mainmenu li .drop_child li a {
		font-size: 1.45vw;
	}
	
	#container {
		padding-top: 7.81%;
	}
	
	/*----- パンくず -----*/
	.breadcrumb li {
		font-size: 1.4vw;
	}
	
	/* Post */
	.hd_archive h1 {
		font-size: 2.0vw;
	}
	.main {
		margin: 0 2% 10% 0;
	}
	.roop h2 {
		font-size: 1.8vw;
	}
	.roop_meta {
		font-size: 1.35vw;
	}
	.meta_date::before {
		font-size: 1.4vw;
	}
	.meta_author::before {
		font-size: 1.4vw;
	}
	.meta_cat::before {
		font-size: 1.4vw;
	}
	.roop_excerpt {
		width: 55.8%;
		font-size: 1.4vw;
	}
	
	/* Pagination */
	.pagination .page-numbers {
		font-size: 1.3vw;
	}
	
	/* side bar */
	.side {
		margin: 0 0 10% 2%;
	}
	.side .widget h2 {
		font-size: 1.5vw;
		line-height: 1.4;
	}
	.side .widget ul li {
		font-size: 1.3vw;
	}
	
	/* Single */
	.single_ttl {
		font-size: 1.8vw;
	}
	.single_meta {
		font-size: 1.35vw;
	}
	.single_cntnt p {
		font-size: 1.35vw;
	}
	.single_pagination {
		font-size: 1.3vw;
	}
	
	/* Footer */
	#footer-widget {
		font-size: 1.3vw;
	}
	#footer-widget .widget h2 {
		font-size: 1.6vw;
	}
	#footer-widget .widget p {
		font-size: 1.3vw;
	}
	
	/* Page Top */
	
	
	
	
	
}


/* smart phone */
@media screen and (max-width: 844px) {
	
}

@media (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

.pc_view {
	display: block;
}
.sp_view {
	display: none;
}

.spbr {
	display: none;
	}

@media screen and (max-width: 768px) {
	.pc_view {
		display: none;
	}
	.sp_view {
		display: block;
	}
	
	.spbr {
		display: block;
	}
	
	/* Header */
	.hd_container {
		max-width: 92%;
		height: 60px;
	}
	.logo {
		width: 40%;
	}
	.logo img {
		max-width: 200px;
	}
	
	/* Main manu */
	.nav-holder {
		display: none;
	}
	.main-nav {
		display: none;
	}
	/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
	#site-header.scroll-nav .hd_container {
		height: 46px;
	}
	#site-header.scroll-nav .logo img {
		width: 85%;
	}
	
	/* SP manu */
	.sp_menu {
		display: inline-block;
	}
	.nav-open {
		width: 28px;
		height: 22px;
		vertical-align: middle;
	}
	.nav-open span, .nav-open span:before, .nav-open span:after {
		position: absolute;
		transition: all 0.4s;
		height: 3px;/*線の太さ*/
		width: 30px;/*長さ*/
		border-radius: 3px;
		background: #666;
		display: block;
		content: '';
		cursor: pointer;
		z-index: 9999;
	}
	.nav-open span:before {
		bottom: -9px;
	}
	.nav-open span:after {
		bottom: -18px;
	}
	.nav-content {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		transition: all 600ms ease-out;
		transform: translateZ(0) translateX(100%);
	}
	.nav-content.open {
		opacity: 1;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9998;
		width: 60%;
		height: 100%;
		background: #333;/*背景色*/
		transition: all 600ms ease-out;
		transform: translateZ(0) translateX(0%);
	}
	.navi-container {
		width: 77%;
		margin: 60px auto 0;
	}
	.navi-container ul li {
		font-size: 2.5vw;
		padding: 7% 0;
		border-bottom: 1px solid #444;
		line-height: 1.6;
	}
	.navi-container ul li a {
		display: block;
		color: #fff;
	}
	/*.menu-item-has-childrenは子メニューを持つ親メニューにつくクラス*/
	.navi-container li.menu-item-has-children {
		position: relative;
	}
	/*メニューが閉じてる時のアイコン設定*/
	.navi-container li.menu-item-has-children::after {
		font-family: 'FontAwesome';
		content: '\f078';
		font-weight: 400;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		cursor: pointer;
		color: #fff;
	}
	/*メニューが開いてる時のアイコン設定*/
	.navi-container li.menu-item-has-children.arrowup::after {
		font-family: 'FontAwesome';
		content: '\f077';
		font-weight: 400;
		position: absolute;
		top: 20%;
		right: 10px;
		color: #fff;
	}
	.navi-container ul li .sub-menu {
		padding: 0 0 0 7%;
		border-bottom: none!important;
	}
	.navi-container ul li .sub-menu li {
		font-size: 2.2vw;
		padding: 7% 0;
		border-bottom: 1px dotted #494949;
	}
	.navi-container ul li .sub-menu li:last-child {
		padding: 7% 0 0 0;
		border-bottom: none;
	}
	
	/*三本線を動かす*/
	.nav-open.active span {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
		background-color: #888;
	}
	.nav-open.active span:before {
		-webkit-transform: translateY(-9px) rotate(45deg);/*打ち消す*/
		transform: translateY(-9px) rotate(45deg);/*打ち消す*/
		opacity: 0;
	}
	.nav-open.active span:after {
		-webkit-transform: translateY(-18px) rotate(45deg);
		transform: translateY(-18px) rotate(90deg);
		background-color: #888;
	}
	
	#container {
		padding-top: 60px;
	}
	
	/*----- パンくず -----*/
	.breadcrumb {
		max-width: 92%;
	}
	.breadcrumb li {
		font-size: 1.6vw;
	}
	
	/* Post */
	.hd_archive h1 {
		font-size: 2.3vw;
	}
	.primary {
		max-width: 92%;
		display: block;
	}
	.main {
		width: 100%;
		margin: 0 0 10% 0;
	}
	.roop h2 {
		font-size: 2.1vw;
	}
	.roop_meta {
		font-size: 1.65vw;
	}
	.meta_date::before {
		font-size: 1.7vw;
	}
	.meta_author::before {
		font-size: 1.7vw;
	}
	.meta_cat::before {
		font-size: 1.7vw;
	}
	.roop_excerpt {
		font-size: 1.7vw;
	}
	
	/* Pagination */
	.pagination .page-numbers {
		font-size: 1.6vw;
	}
	
	/* side bar */
	.side {
		width: 60%;
		margin: 0 auto 10%;
		display: block;
	}
	.side .widget h2 {
		font-size: 1.8vw;
	}
	.side .widget ul li {
		font-size: 1.6vw;
	}
	
	/* Single */
	.single_ttl {
		font-size: 2.1vw;
	}
	.single_meta {
		font-size: 1.65vw;
	}
	.single_cntnt p {
		font-size: 1.65vw;
	}
	.single_pagination {
		font-size: 1.6vw;
	}
	
	/* Footer */
	#footer {
		padding: 0 0 3% 0;
	}
	#footer-widget {
		max-width: 92%;
		font-size: 1.6vw;
	}
	#footer-widget .widget h2 {
		font-size: 1.9vw;
	}
	#footer-widget .widget p {
		font-size: 1.6vw;
	}
	.copyright {
		font-size: 2.0vw;
		line-height: 1.6;
	}
	
	/* Page Top */
	#page_top {
		right: 5%;
		width: 8%;
	}
	#page_top p {
		transform: translate(-48%, -58%);
		font-size: 2.0vw;
		line-height: 1.0;
	}
	
	/* footer floating Banner */
	.ffb_inner {
		width: 80%;
		padding: 2.5% 0;
		justify-content: center;
	}
	.ffbi_ttl {
		width: 100%;
		margin: 0 0 2%;
		padding: 0;
	}
	.ffbi_ttl::after {
		display: none;
	}
	.ffbi_ttl h2 {
		font-size: 2.6vw;
	}
	.ffbi_ttl p {
		font-size: 1.8vw;
	}	
	.ffbi_tel {
		padding: 0 3% 0 0;
	}
	.ffbi_tel::before {
		left: -15%;
		font-size: 3.3vw;
	}
	.ffbi_tel a {
		font-size: 3.6vw;
	}
	.ffbi_btn {
		width: 40%;
	}
	.ffbi_btn a {
		padding: 1.8% 0 2%;
		font-size: 2.0vw;
	}
	.ffbi_btn a::before {
		font-size: 2.2vw;
	}
	
	
	
	
}


@media screen and (max-width: 580px) {
	/* Header */
	.logo {
		width: 50%;
	}
	.nav-content.open {
		width: 70%;
	}
	.navi-container ul li {
		font-size: 3.1vw;
	}
	.navi-container ul li .sub-menu li {
		font-size: 2.8vw;
	}
	
	/*----- パンくず -----*/
	.breadcrumb {
		max-width: 80%;
	}
	.breadcrumb li {
		font-size: 2.1vw;
	}
	
	/* Post */
	.primary {
		max-width: 80%;
		padding: 5% 0 0 0;
		display: block;
	}
	.hd_archive h1 {
		font-size: 3.0vw;
	}
	.roop h2 {
		font-size: 2.8vw;
	}
	.roop_meta {
		padding: 0 0 2% 0;
		font-size: 2.35vw;
	}
	.meta_date::before {
		font-size: 2.3vw;
	}
	.meta_author::before {
		font-size: 2.3vw;
	}
	.meta_cat::before {
		font-size: 2.3vw;
	}
	.roop_thum {
		width: 100%;
		display: block;
	}
	.roop_excerpt {
		width: 100%;
		margin: 0;
		padding: 2% 0 0 0;
		display: block;
		font-size: 2.3vw;
		line-height: 1.8;
	}
	
	/* Pagination */
	.pagination .page-numbers {
		font-size: 2.2vw;
	}
	
	/* side bar */
	.side {
		width: 100%;
	}
	.side .widget h2 {
		font-size: 2.4vw;
	}
	.side .widget ul li {
		font-size: 2.2vw;
	}
	
	/* Single */
	.single_ttl {
		font-size: 2.7vw;
	}
	.single_meta {
		font-size: 2.25vw;
	}
	.single_cntnt p {
		font-size: 2.25vw;
	}
	.single_pagination {
		font-size: 2.2vw;
	}
	
	/* Footer */
	#footer-widget {
		max-width: 92%;
		padding: 0;
		display: block;
		font-size: 2.2vw;
	}
	#footer-widget li {
		list-style: none;
		padding: 0;
	}
	#footer-widget .widget {
		width: 100%;
		padding-bottom: 3%;
	}
	#footer-widget .widget h2 {
		font-size: 2.5vw;
	}
	#footer-widget .widget p {
		font-size: 2.2vw;
	}
	.copyright {
		font-size: 2.6vw;
	}
	
	/* Page Top */
	
	
	
	/* footer floating Banner */
	.ffb_inner {
		width: 90%;
		justify-content: start;
	}
	.ffbi_ttl {
		margin: 0 0 1%;
		text-align: left;
	}
	.ffbi_ttl h2 {
		font-size: 3.2vw;
	}
	.ffbi_ttl p {
		font-size: 2.4vw;
	}
	.ffbi_tel {
		padding: 0 4% 0 6%;
	}
	.ffbi_tel::before {
		left: 0;
		font-size: 3.9vw;
	}
	.ffbi_tel a {
		font-size: 4.2vw;
	}
	.ffbi_btn {
		width: 45%;
	}
	.ffbi_btn a {
		padding: 1.8% 0 2%;
		font-size: 2.6vw;
	}
	.ffbi_btn a::before {
		font-size: 2.8vw;
	}

	
	
	
	
	
}


@media screen and (max-width: 390px) {
	/* Header */
	.logo {
		width: 60%;
	}
	.navi-container ul li {
		font-size: 3.6vw;
		padding: 9% 0;
	}
	.navi-container ul li .sub-menu li {
		font-size: 3.3vw;
		padding: 9% 0;
	}
	.navi-container ul li .sub-menu li:last-child {
		padding: 9% 0 0 0;
	}
	
	/*----- パンくず -----*/
	.breadcrumb {
		max-width: 90%;
	}
	.breadcrumb li {
		font-size: 2.6vw;
	}
	
	/* Post */
	.primary {
		max-width: 90%;
	}
	.hd_archive h1 {
		font-size: 3.5vw;
	}
	.roop h2 {
		font-size: 3.3vw;
	}
	.roop_meta {
		font-size: 2.85vw;
	}
	.meta_date::before {
		font-size: 2.8vw;
	}
	.meta_author::before {
		font-size: 2.8vw;
	}
	.meta_cat::before {
		font-size: 2.8vw;
	}
	.roop_excerpt {
		font-size: 2.8vw;
	}
	
	/* Pagination */
	.pagination .page-numbers {
		font-size: 2.7vw;
	}
	
	/* side bar */
	.side .widget h2 {
		font-size: 2.9vw;
	}
	.side .widget ul li {
		font-size: 2.7vw;
	}
	
	/* Single */
	.single_ttl {
		font-size: 3.2vw;
	}
	.single_meta {
		font-size: 2.75vw;
	}
	.single_cntnt p {
		font-size: 2.75vw;
	}
	.single_pagination {
		font-size: 2.7vw;
	}
	
	/* Footer */
	#footer-widget {
		padding: 0;
		font-size: 2.7vw;
	}
	#footer-widget .widget {
		padding-bottom: 4%;
	}
	#footer-widget .widget h2 {
		font-size: 3.0vw;
	}
	#footer-widget .widget p {
		font-size: 2.7vw;
	}
	.copyright {
		font-size: 3.1vw;
	}
	
	/* Page Top */
	
	
	
	/* footer floating Banner */
	.ffbi_ttl h2 {
		font-size: 3.7vw;
	}
	.ffbi_ttl p {
		font-size: 2.9vw;
	}
	.ffbi_tel {
		margin-top: -2%;
		padding: 0 3% 0 6%;
		line-height: 1.4;
		display: block;
	}
	.ffbi_tel::before {
		font-size: 4.1vw;
		line-height: 1.4;
		transform: translateY(-30%);
	}
	.ffbi_tel a {
		font-size: 4.5vw;
	}
	.ffbi_btn {
		width: 50%;
	}
	.ffbi_btn a {
		padding: 1.8% 0 2%;
		font-size: 2.8vw;
	}
	.ffbi_btn a::before {
		font-size: 3.0vw;
	}
	
	
}


@media screen and (max-width: 360px) {
	/* Header */
	.nav-content.open {
		width: 70%;
	}
	
	
	
}