@charset "utf-8";

body {
	font-family: "Work Sans", YakuHanJP, "NotoSansSubset", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.center {
	text-align: center;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.forPC {
	display: block;
}

.forSP {
	display: none;
}

.sml {
	font-size: .7em;
}

.spacer20 {
	display: block;
	width: 100%;
	height: 20px;
}

.spacer30 {
	display: block;
	width: 100%;
	height: 30px;
}

.spacer40 {
	display: block;
	width: 100%;
	height: 40px;
}

.spacer50 {
	display: block;
	width: 100%;
	height: 50px;
}

.border-top {
	border-top: 1px solid #ccc;
}

.border-bottom {
	border-bottom: 1px solid #ccc;
}

.mbottom20 {
	margin-bottom: 20px;
}

.mbottom30 {
	margin-bottom: 30px;
}

.mbottom40 {
	margin-bottom: 40px;
}

.mbottom50 {
	margin-bottom: 50px;
}

@keyframes lazy-fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

img[loading=lazy] {
	opacity: 0;
	animation: lazy-fade .5s forwards;
}

.header {
	position: fixed;
	width: 100%;
	padding: 1.6em 2em;
	z-index: 3;
	border: none;
	background-color: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #ddd;
	transition: all .3s ease;
}

.header.on {
	position: fixed;
	padding: .5em 2em;
	background-color: rgba(255, 255, 255, .96);
	top: 0;
	left: 0;
}

.contents-wrp {
	display: block;
	padding-top: 93px;
	transition: all .3s ease;
}

.contents-wrp.on {}

.header .logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.5em;
	font-weight: bold;
	position: relative;
	z-index: 4;
}

.header .name {
	padding: 0 .5em;
}

.header .logo img {
	width: 100%;
	height: auto;
}

.header .logo a {
	color: #222;
	text-decoration: none;
}

.hd-menu-wrp {
	margin-left: auto;
	margin-right: .5em;
	position: relative;
	z-index: 3;
}

.hd-menu-wrp .menu-item a {
	font-size: .84em;
	font-weight: bold;
	line-height: 1;
	display: block;
	padding: 1em;
	transition: all .3s ease;
}

.hd-menu-wrp .menu-item:first-child a {
	font-size: .94em;
	line-height: .75;
}

.hd-menu-wrp .menu-item a:hover {
	color: #222;
}

.menu-btn-wrp {
	display: block;
	position: relative;
	z-index: 2;
}

.menu-btn-wrp .menu-btn {
	z-index: 3;
	transform: translateY(18%);
}

.menu-btn-wrp .checkbox {
	display: none;
}

.menu-global {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	opacity: 0;
	padding-top: 2em;
	background-color: #f9f9f9;
	overflow: hidden;
	transition: opacity .3s ease;
	z-index: 2;
}

.menu-wrp {
	width: 22%;
	font-size: .9em;
	padding: 60px 20px;
}

.menu-wrp .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-wrp .sub-menu {
	list-style: none;
	margin: 0 0 .75em;
	padding-left: 1em;
}

.menu-wrp .menu li {
	list-style: none;
	margin: 0;
	text-align: left;
}

.menu-wrp .menu li a {
	display: block;
	font-size: 1em;
	padding: .75em 0;
	font-weight: bold;
	position: relative;
}

.menu-wrp .menu>li:first-child>a {
	font-size: 1.1em;
}

.menu-wrp .menu li a::after {
	content: "";
	width: .4em;
	height: .4em;
	border-top: 1px solid;
	border-right: 1px solid;
	position: absolute;
	top: calc(50% - .2em);
	right: .5em;
	transform: rotate(45deg);
}

.menu-wrp .menu .menu-item {
	border-bottom: 1px solid #ccc;
}

.menu-wrp .sub-menu .menu-item a {
	font-size: .9em;
	font-weight: normal;
}

.menu-wrp .sub-menu .menu-item:last-child {
	border-bottom: none;
}

.tag-menu-wrp {
	width: 76%;
	padding: 60px 20px;
}

.tag-menu-wrp .scroll-area {
	height: 80vh;
	padding-right: 1em;
	padding-bottom: 80px;
	overflow: auto;
}

.tag-title {
	margin-bottom: 1.5em;
}

.tag-menu-wrp .columns-4 {
	justify-content: flex-start;
}

.tag-menu-wrp li {
	width: 25%;
	border: 1px solid #ccc;
	margin: 0 -1px -1px 0;
}

.tag-menu-wrp li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: .8em;
	line-height: 1.4;
	color: #222;
	padding: 1em;
}

.tag-count {
	display: inline-block;
	margin-left: .5em;
	font-size: .8em;
	background-color: #e6e6e6;
	border-radius: .5em;
	padding: .25em 1em;
	color: #222;
}

@media screen and (max-width:767px) {
	.menu-global .inner {
		overflow: scroll;
		height: 100vh;
	}

	.menu-wrp {
		width: 100%;
		padding: 60px 15px 0;
	}

	.tag-menu-wrp {
		width: 100%;
		height: auto;
		margin-top: 2em;
		font-size: .9em;
		padding: 20px 15px 100px;
	}

	.tag-menu-wrp .scroll-area {
		height: auto;
		padding-right: 0;
		overflow: hidden;
	}

	.tag-menu-wrp li {
		width: calc(100% / 2);
	}

	.tag-menu-wrp li a {
		padding: .5em;
	}

	.tag-title {
		margin-bottom: 1em;
	}
}

#gmenu:checked+.menu-global {
	opacity: 1;
	height: 100vh;
}

.user-menu-wrp {
	position: relative;
	z-index: 3;
	transform: translateY(18%);
}

.userlogin-wrp {
	display: flex;
	cursor: pointer;
	margin-right: 1em;
}

.userlogin-wrp .usericon {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	overflow: hidden;
	border: 3px solid #ccc;
}

.userlogin-wrp .usericon img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	overflow: hidden;
}

.user-menu-wrp .checkbox {
	display: none;
}

#loginmenu-list {
	position: absolute;
	top: 2.7em;
	right: 0;
	width: 220px;
	background-color: #f9f9f9;
}

#loginmenu-list li {
	height: 0;
	opacity: 0;
	text-align: left;
	overflow: hidden;
	transition: opacity .3s ease;
}

#loginmenu:checked~#loginmenu-list {
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

#loginmenu:checked~#loginmenu-list li {
	height: 2em;
	opacity: 1;
	position: relative;
}

#loginmenu:checked~#loginmenu-list li.usericon-wrp {
	height: auto;
	margin-bottom: .5em;
}

#loginmenu:checked~#loginmenu-list li.usericon-wrp .usericon {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	overflow: hidden;
}

#loginmenu:checked~#loginmenu-list li.usericon-wrp .usericon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#loginmenu:checked~#loginmenu-list li a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	width: 100%;
	height: 100%;
	font-size: .9em;
	line-height: 1.5;
	padding: .25em 1em;
}

@media screen and (max-width:767px) {

	.header,
	.header.on {
		width: 100%;
		padding: 1em;
	}

	.header .logo {
		font-size: 1.1em;
	}

	.contents-wrp {
		padding-top: 63px;
		transition: all .3s ease;
	}

	.menu-btn-wrp .menu-btn {
		transform: translateY(5%);
	}

	.user-menu-wrp {
		margin-left: auto;
		transform: translateY(5%);
	}
}

a {
	color: #004098;
	text-decoration: none;
}

.blue {}

.new {
	display: inline-block;
	background-color: #c94646;
	color: #fff;
	font-size: .6em;
	padding: .4em 1em;
	margin-right: 1em;
	border-radius: 2px;
	vertical-align: .2em;
}

.footer {
	display: block;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	background-color: #f0f0f0;
}

.address-wrp {}

.address {
	width: 70%;
	list-style: none;
	text-align: left;
	padding: 1em;
	margin-left: 10%;
}

.address li {
	width: 30%;
	padding-right: 2%;
	margin-right: 2%;
	border-right: 1px solid #ccc;
}

.address li:last-child {
	border-right: none;
}

.address h3 {
	font-size: 1.1em;
	padding: 1em 0;
}

.address address,
.address .tel {
	font-style: normal;
	line-height: 1.5;
	margin-bottom: .5em;
}

.cdp-wrp {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20%;
	background-color: #004098;
	padding: 1em;
}

.cdp-wrp .cdp-logo {
	width: 100%;
	max-width: 180px;
	margin: 0 auto;
}

.cdp-wrp .cdp-logo img {
	width: 100%;
	height: auto;
	max-width: 180px;
}

@media screen and (max-width:1024px) {
	.address {
		list-style: none;
		text-align: left;
		padding: 1em;
		margin-left: 3%;
	}

	.address li {
		font-size: .9em;
		/* width: 45%; */
		padding-right: 2%;
		margin-right: 2%;
	}

	.cdp-wrp {
		width: 25%;
		padding: 2em;
	}
}

.bg-black {
	display: block;
	width: 100%;
	padding: 3em 1em;
	background-color: #222;
	color: #fff;
}

.footer-menu .menu {
	display: flex;
	justify-content: center;
	padding: 2em;
	margin: 0 auto;
}

.footer-menu .menu li a {
	display: block;
	font-size: .9em;
	padding: 1em;
	list-style: none;
	color: #fff;
}

.copyright {
	display: block;
	text-align: center;
	font-size: .74em;
	padding: 3em 1em;
}

.share-btn-wrp {
	text-align: center;
	margin-bottom: 2em;
}

@media screen and (max-width:767px) {
	.address {
		width: 100%;
		margin: 0 auto;
	}

	.address li {
		width: 100%;
		padding-right: 0;
		margin-right: 0;
	}

	.address li:first-child {
		border-right: none;
		border-bottom: 1px solid #ccc;
		padding-bottom: 1em;
		margin-bottom: 1em;
	}

	.cdp-wrp {
		width: 100%;
	}

	.footer-menu .menu li a {
		font-size: .9em;
		padding: .5em 1em;
	}
}

.btn a {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 1em 3em;
	font-size: .9em;
	display: inline-block;
	position: relative;
	transition: all .3s ease;
}

.btn a:hover {
	background-color: #004098;
	color: #fff;
	border-color: #004098;
}

.btn a::before {
	content: "";
	width: .4em;
	height: .4em;
	border-top: 1px solid;
	border-right: 1px solid;
	position: absolute;
	top: calc(50% - .2em);
	right: 1em;
	transform: rotate(45deg);
}

@media screen and (max-width:767px) {
	.btn {
		margin: 4% auto;
	}

	.btn a {
		font-size: .75em;
	}
}

.navigation {
	width: 100%;
	display: block;
	text-align: center;
}

.nav-links {
	display: flex;
	justify-content: center;
	text-align: center;
}

.pager_list .pager_item {
	display: inline-block;
	margin: 0;
	text-align: center;
}

.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.5em;
	height: 2.5em;
	color: #222;
	margin: .5em;
	text-decoration: none;
	position: relative;
}

.page-numbers.current {
	background-color: #004098;
	color: #fff;
	border-radius: 100%;
}

.next.page-numbers,
.prev.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7em;
	text-align: center;
	color: #222;
	text-decoration: none;
	position: relative;
}

@media screen and (max-width:767px) {
	.page-numbers {
		display: none;
	}

	.next.page-numbers,
	.prev.page-numbers {
		display: flex;
	}
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	font-size: 1em;
	color: #222;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 3px;
	display: block;
	padding: 1em;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	font-size: 1em;
	color: #222;
	border-color: #333;
}

select {
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	height: 3em;
	max-width: 100%;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted #333;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: .5em;
}

input[type="radio"]+label,
input[type="checkbox"]+label {
	font-weight: 400;
}

button,
input[type="button"],
input[type="submit"] {
	background-color: #222;
	border: 0;
	border-radius: 2px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	font-weight: normal;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	transition: background .2s;
}

input+button,
input+input[type="button"],
input+input[type="submit"] {
	padding: .75em 2em;
}

.single .entry-body-wrp .wp-block-image {
	width: 70%;
	margin: 1em auto 2em;
}

.wp-block-image img {
	width: 100%;
	height: auto;
}

.iblock {
	display: inline-block;
}

@media screen and (max-width:767px) {
	.forPC {
		display: none !important;
	}

	.forSP {
		display: block !important;
	}

	.single .entry-body-wrp .wp-block-image {
		width: 90%;
		margin: 1em auto 2em;
	}
}