@charset "utf-8";
*{
	margin: 0;
	padding: 0; 
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html{
	font-size: 62.5%;
}

body{
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
}

a{
	text-decoration: none;
}

img{
	border: 0;
	max-width: 100%;
}

ul,li{
	list-style: none;
}

.inner{
	position: relative;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.fade{
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

/* -------------------- common -------------------- */
.commonH2 {
	font-size: 3rem;
	font-weight: bold;
	color: #222222;
	text-align: center;
}

.commonTxt01 {
	font-size: 1.6rem;
	color: #222222;
	text-align: center;
	line-height: 1.6875;
}

/*------------page_list------------*/
.page_list_box{
	text-align: center;
	font-size: 0;
	margin-top: 64px;
}
.page_list{
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
}
.page_list span,
.page_list a{
	position: relative;
	float: left;
	width: 42px;
	height: 42px;
	padding-top: 9px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 8px;
	color: #004da0;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #004da0;
	font-size: 1.6rem;
	font-weight: bold;
}
.page_list a:hover{
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background-color: #004da0;
	color: #ffffff;
}
.page_list span.current{
	background-color: #004da0;
	color: #ffffff;
}
.page_list .prev{
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("/wp-content/themes/wordpress/img/icon_img10_blue.png");
}

.page_list .next{
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("/wp-content/themes/wordpress/img/icon_img09_blue.png");
}
.page_list a.prev:hover{
	background-image: url("/wp-content/themes/wordpress/img/icon_img10_white.png");
}
.page_list a.next:hover{
	background-image: url("/wp-content/themes/wordpress/img/icon_img09_white.png");
}

/* -------------------- header -------------------- */
header{
	width: 100%;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 102;
}
header .inner{
	display: table;
	max-width: 1100px;
	width: 90%;
}
.logo{
	width: 141px;
	display: table-cell;
	vertical-align: middle;
}
.logo a{
	width: 100%;
	display: block;
}
.logo img{
	display: block;
	margin: 0 auto;
}
nav{
	width: auto;
	display: table-cell;
	vertical-align: middle;
}
.nav_list{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.nav_list>li{
	list-style-type: none;
	text-align: center;
	position: relative;
	cursor: pointer;
}
.nav_link{
	display: block;
	color: #080808;
	font-size: 1.4rem;
	font-weight: bold;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	position: relative;
	text-decoration: none;
	padding: 20px 7.5px;
	line-height: 1;
}
.nav_link img{
	margin-left: 3px; 
	margin-bottom: 2px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.nav_link.on{
	color: #004da0;
}
.nav_link.onpage{
	color: #004da0;
}
.nav_inner_list{
	display: none;
	position: absolute;
	bottom: 0;
	left: -26%;
	right: -26%;
	border: 2px solid #004da0;
	background-color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-ms-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	z-index: 2;
}
.nav_inner_list::before{
	content: "";
	position: absolute;
	width: 20px;
	height: 15px;
	background: url(/wp-content/themes/wordpress/img/icon_img01.png) no-repeat center;
	left: 0;
	right: 0;
	top: -12px;
	margin: auto;
}
.nav_inner_list li{
	padding: 0 10px;
	border-bottom: 1px solid #e0dfdf;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	list-style-type: none;
}
.nav_inner_list li:last-of-type{
	border-bottom: none;
}
.nav_inner_list a{
	color: #080808;
	display: block;
	font-size: 1.4rem;
	position: relative;
	text-align: left;
	padding: 10px 0 10px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.nav_inner_list a::before{
	content: "・";
	position: absolute;
	top: 10px;
	left: 0;
}
.nav_inner_list a:hover{
	color: #004da0;
}
.nav_list>li:first-of-type .nav_link, 
.nav_list>li:last-of-type .nav_link{
	border-left: none;
}
.nav_list>li:last-of-type{
	width: 235px;
	padding: 0;
	margin-left: 17px;
}
.nav_right_list{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.nav_right_list li{
	list-style-type: none;
	background-color: #004da0;
	border-bottom: solid 1px #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav_right_list li:last-of-type{
	background-color: #4593d0;
}
.nav_right_list li a{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #fff;
	font-weight: bold;
	height: 51px;
	text-align: center;
}
.nav_right_list li:last-of-type a{
	font-size: 2.3rem;
	color: #fff;
}
.nav_right_list li a img{
	display: inline-block;
	margin: 0 10px;
}
.nav_right_list li:hover{
	opacity: 0.8;
}
.d-menu{
	display: none;
}

/* -------------------- footer -------------------- */
footer .cont{
	padding: 40px 0 30px;
	background-color: #585e64;
}
footer .cont ul li{
	list-style-type: none;
	font-size: 1.2rem;
	color: #fff;
	line-height: 1;
}
footer .cont .ul1{
	text-align: center;
	margin-bottom: 22px;
}
footer .cont .ul1 li{
	margin-bottom: 5px;
}
footer .cont .ul1 a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border-bottom: 1px solid transparent;
	line-height: 1;
}
footer .cont .ul1 a:hover{
	border-bottom: 1px solid #fff;
}
footer .cont .ul-2_3{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer .cont .ul-2_3 li{
	padding: 0 15px;
	border-left: 1px solid #fff;
	margin-bottom: 16px;
}
footer .cont .ul-2_3 li:first-of-type{
	border-left: 1px solid transparent;
}
footer .cont .ul-2_3 a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	line-height: 1;
}
footer .cont .ul-2_3 a:hover{
	color: #3d91db;
}
footer .cont .ul2{
	margin-bottom: 25px;
}
footer .cont .ul3{
	width: 100%;
	max-width: 910px;
	margin: auto;
}
footer .cont p{
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1;
	margin-bottom: 25px;
}
footer .copyrightText{
	font-size: 1.2rem;
	color: #222222;
	text-align: center;
	padding: 26px 0 23px;
}

.pagetop{
	display: none;
	width: 53px;
	height: 53px;
	position: fixed;
	right: 100px;
	bottom: 248px;
	z-index: 100;
}
.pagetop img{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.pagetop:hover img{
	-ms-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media only screen and (max-width:1366px){
	.logo{
		width: 120px;
	}
	.nav_link{
		padding: 20px 6px;
	}
	.nav_list>li:last-of-type{
		width: 195px;
		margin-left: 15px;
	}
	.nav_right_list li a{
		height: 45px;
	}
	.nav_right_list li a img{
		margin: 0 5px;
	}
	.nav_right_list li a img:first-of-type{
		width: 18px;
	}
	.nav_right_list li:last-of-type a{
	    font-size: 2rem;
	}
	.pagetop{
		right: 50px;
		bottom: 100px;
	}
}
@media only screen and (max-width:1200px){
	.logo{
		width: 110px;
		padding: 25px 0;
	}
	.nav_list>li:last-of-type{
		width: 100px;
	}
	.nav_right_list{
		border: none;
		display: flex;
	}
	.nav_right_list li a, 
	.nav_right_list li:last-of-type a{
		font-size: 0;
		width: 120%;
	}
	.nav_right_list li a img{
		display: none;
	}
	.nav_right_list li:nth-of-type(1){
		background: url(/wp-content/themes/wordpress/img/icon_img03.png) no-repeat center, #004da0;
		width: 50%;
		border-radius: 5px;
	}
	.nav_right_list li:nth-of-type(2){
		background: url(/wp-content/themes/wordpress/img/icon_img05.png) no-repeat center, #4593d0;
		width: 50%;
		margin-left: 5px;
		border-radius: 5px;
	}
}
@media only screen and (max-width:1024px){
	.fade{
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	
	/* -------------------- header -------------------- */
	header{
		width: 100%;
	}
	header.fixed{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 102;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	}
	header .inner{
		display: block;
		width: 90%;
	}
	.logo{
		display: block;
	}
	nav{
		width: 100%;
		display: none;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		background: #fff;
		z-index: 9;
		border-top: 1px solid #004da0;
		overflow: scroll;
	}
	.nav_list{
		display: block;
	}
	.nav_list>li{
		width: 100%;
		display: block;
		text-align: left;
		border-bottom: 1px solid #004da0;
		padding: 0;
	}
	.nav_link{
		padding: 20px 5% 18px;
		border-left: none;
	}
	.nav_link:hover,
	.nav_link.on{
		background: transparent;
		color: #080808;
	}
	.nav_link.onpage{
		background: transparent !important;
	}
	.nav_inner_list{
		display: block;
		position: static;
		bottom: auto;
		left: auto;
		right: auto;
		border: none;
		background: transparent;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-ms-transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
		z-index: 1;
		padding-left: 5%;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}
	.nav_inner_list::before{
		display: none;
	}
	.nav_inner_list li{
		padding: 0;
		border-bottom: none;
		border-top: 1px solid #004da0;
	}
	.nav_inner_list li:last-of-type{
		border-bottom: none;
	}
	.nav_inner_list a:hover{
		color: #080808;
	}
	.nav_list>li:last-of-type{
		width: 100%;
		margin-left: 0;
		border-bottom: none;
	}
	.nav_right_list li{
		border: none;
		height: 50px;
		border-radius: 0!important;
	}
	.nav_right_list li:last-of-type{
		border-bottom: none;
		margin-left: 0;
	}
	.nav_right_list li a{
		width: 100%;
		padding: 10px 5%;
		background: transparent;
		border: none;
		height: auto;
	}
	.nav_right_list li a:hover{
		color: #080808;
	}
	.d-menu{
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		width: 50px;
		height: 50px;
		cursor: pointer;
		overflow: hidden;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: 2px solid #004da0;
	}
	.panel-btn{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		background: #fff;
	}
	.panel-btn-icon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 2px;
		margin: -1px 0 0 -15px;
		background: #004da0;
		transition: .2s;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 30px;
		height: 2px;
		background: #004da0;
		transition: .3s;
	}
	.panel-btn-icon:before{
		margin-top: -10px;
	}
	.panel-btn-icon:after{
		margin-top: 8px;
	}
	.panel-btn .close{
		background: transparent;
	}
	.panel-btn .close:before,
	.panel-btn .close:after{
		margin-top: 0;
	}
	.panel-btn .close:before{
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.panel-btn .close:after{
		-ms-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.pagetop:hover img{
		-ms-transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	/* -------------------- common -------------------- */
	.secCommonPd {
		padding: 90px 0 !important;
	}
	.commonH2{
		font-size: 2.6rem;
	}
}
@media only screen and (max-width:768px){
	/* -------------------- footer -------------------- */
	footer .cont .ul1{
		margin-bottom: 20px;
	}
	footer .cont .ul-2_3 li{
		margin-bottom: 15px;
	}
	footer .cont .ul2{
	    margin-bottom: 20px;
	}
	footer .cont p{
	    margin-bottom: 20px;
	}

	/* -------------------- common -------------------- */

	.secCommonPd {
		padding: 80px 0 !important;;
	}

	.commonH2{
		font-size: 2.4rem;
	}
	.commonTxt01 {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width:767px){
	/* -------------------- header -------------------- */
	.nav_link,.nav_right_list li a{
		padding: 15px 5% 13px;
	}
	.pagetop{
		width: 45px;
		height: 45px;
		background-size: 100%;
		right: 20px;
		bottom: 60px;
	}
}

@media only screen and (max-width: 480px){
	/* -------------------- header -------------------- */
	.logo{
		width: 100px;
		padding: 20px 0;
	}
	.d-menu{
		width: 42px;
		height: 42px;
	}
	.panel-btn-icon{
		width: 24px;
		margin: -1px 0 0 -12px;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after{
		width: 24px;
	}
	.panel-btn-icon:before{
		margin-top: -8px;
	}
	.panel-btn-icon:after{
		margin-top: 6px;
	}
	
	/* -------------------- footer -------------------- */
	footer .cont .ul1{
		margin-bottom: 15px;
	}
	footer .cont .ul-2_3 li{
		margin-bottom: 10px;
		padding: 0 10px;
	}
	footer .cont .ul2{
	    margin-bottom: 15px;
	}
	footer .cont p{
		font-size: 1.8rem;
	    margin-bottom: 15px;
	}
	footer .copyrightText{
		padding: 20px 0 15px;
	}

	/* -------------------- common -------------------- */
	.secCommonPd {
		padding: 60px 0 !important;;
	}
	.commonH2{
		font-size: 2.2rem;
	}

	/*------------page_list------------*/
	.page_list span,
	.page_list a {
		width: 38px;
		height: 38px;
		font-size: 1.4rem;
		padding-top: 8px;
		margin: 0 5px;
	}
	.page_list .prev,
	.page_list .next{
		background-size: 6px auto;
	}
}

footer .addFooter{
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #f6ac19;
	border-top: solid 1px #ffffff;
	padding: 15px 0;
	z-index: 100;
}
footer .addFooter .footerMob{
	display: none;
}
footer .addFooter .inner{
	display: flex;
	align-items: center;
	justify-content: center
}
footer .addFooter .inner .fixed_txt{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: url(/wp-content/themes/wordpress/img/campaignadd-fixed_txt.png) no-repeat right center;
	background-size: cover;
	padding: 8px 26px 8px 23px;
}
footer .addFooter .inner .fixed_txt br{
	display: none;
}
footer .addFooter .inner .fixed_tel{
	padding: 0 20px 0 30px;
	line-height: 1.25;
}
footer .addFooter .inner .fixed_tel a{
	font-size: 24px;
	font-weight: bold;
	color: #222222;
	background: url(/wp-content/themes/wordpress/img/campaignadd-fixed_tel.png) no-repeat left center;
	padding-left: 35px;
}
footer .addFooter .inner .fixed_tel a:hover{
	opacity: 0.8;
}
footer .addFooter .inner .fixed_tel p{
	font-size: 12px;
	color: #222222;
}
footer .addFooter .inner .fixed_mail a{
	font-size: 14px;
	font-weight: bold;
	color: #222222;
	background: url(/wp-content/themes/wordpress/img/campaignadd-fixed_mail.png) no-repeat 5% center;
	border: solid 1px #222222;
	padding: 14px 15px 13px 43px;
}
footer .addFooter .inner .fixed_mail a:hover{
	opacity: 0.8;
}

@media screen and (max-width:1280px){
	footer .addFooter .inner .fixed_txt{
		font-size: 16px;
	}
	footer .addFooter .inner .fixed_tel{
		padding: 0 15px 0 25px;
	}
	footer .addFooter .inner .fixed_mail a{
		padding: 14px 10px 13px 33px;
	}
}
@media screen and (max-width:1024px){
	footer .addFooter .inner .fixed_txt{
		padding: 5px 26px 5px 15px;
	}
	footer .addFooter .inner .fixed_txt br{
		display: block;
	}
	footer .addFooter .inner .fixed_tel{
		padding: 0 5px 0 15px;
	}
	footer .addFooter .inner .fixed_tel a{
		font-size: 20px;
	}
}
@media screen and (max-width:767px){
	footer .addFooter{
		padding: 0;
	}
	footer .addFooter .inner{
		display: none;
	}
	footer .addFooter .footerMob{
		display: block;
		height: 50px;
		display: flex;
	}
	footer .addFooter .footerMob a{
		width: 49.5%;
	}
	footer .addFooter .footerMob a.telmob{
		border-right: 1px solid #fff;
		background: url(/wp-content/themes/wordpress/img/campaignadd-fixed_tel.png) no-repeat center;
	}
	footer .addFooter .footerMob a.mailmob{
		background: url(/wp-content/themes/wordpress/img/campaignadd-fixed_mail01.png) no-repeat center;
	}
}

.globalBr{
	display: none;
}
@media screen and (max-width:480px){
	.globalBr{
		display: block;
	}
}








/*footer share*/
footer .website_link .service_list{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin: auto;
}
footer .website_link .service_list li{
	padding: 0 15px;
	border-left: 1px solid #fff;
	margin-bottom: 16px;
}
footer .website_link .service_list li:first-of-type{
	border-left: 1px solid transparent;
}
footer .website_link .service_list a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	line-height: 1;
}
footer .website_link .service_list a:hover{
	color: #3d91db;
}
footer .website_link .service_list a .website_name{
	font-size: inherit;
	color: inherit;
	font-family: inherit;
}
footer .website_link .service_list a .website_name br{
	display: none;
}
footer .website_link .service_list a img{
	display: none;
}
footer .website_link .service_tit span{
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1;
	margin-bottom: 25px;
	display: block;
}
footer .website_link .service_tit img{
	display: none;
}
@media only screen and (max-width:768px){
	footer .website_link .service_list li{
		margin-bottom: 15px;
	}
	footer .website_link .service_tit span{
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 480px){
	footer .website_link .service_list li{
		margin-bottom: 10px;
		padding: 0 10px;
	}
	footer .website_link .service_tit span{
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
}

/* Tap target fix (WCAG 2.5.8): expand hit area without visual shift. 2026-07-18 */
footer a {
  display: inline-block;
  padding: 6px 4px;
  margin: -6px -4px;
}
.aioseo-breadcrumbs a {
  display: inline-block;
  padding: 4px 2px;
  margin: -4px -2px;
}
