@charset "utf-8";

* {
	box-sizing:border-box;
}
/*firefoxスクロールバー対策*/
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
}
/*base*/
body {
    width: 100%;
	font-family:
		"Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		"BIZ UDPGothic",
		Meiryo,
		sans-serif;
	color: #333;
	margin: 70px 0 0;
}
a img:hover {
	opacity: .6;
}
img {
	vertical-align: middle;
	width: 100%;
}
#icon_box  img {
	max-width: 70px;
}
.icon_box-style,
#footer_btn_block {
	font-size: 0;
    display: flex;
}
.wrapper__new {
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 5px;
}
/*universal*/
.center {
	text-align: center;
}
/*header*/
.header__wrapper {
	position: fixed;
	z-index: 101;
	width: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
	box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header h1 {
	max-width: 240px;
}
#header #head_content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.head_nav-style {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 10px;
	flex-wrap: wrap;
}
#header #head_content #head_nav li a {
	display: block;
	width: 200px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	font-weight: bold;
	color: #2850A0;
	border: 2px solid #2850A0;
	border-radius: 30px;
	padding: 0 10px;
	margin: 0 5px;
	font-size: 16px;
	transition: 0.3s;
}
#header #head_content #head_nav li a:hover {
	color: #fff;
	background-color: #2850A0;
}
#header #head_content #head_nav li#gov a {
	color: #D07100;
	border: 2px solid #D07100;
	transition: 0.3s;
}
#header #head_content #head_nav li#gov a:hover {
	color: #ffffff;
	background-color: #D07100;
}
#header #head_content #head_nav li#edu a {
	color: #008CCF;
	border: 2px solid #008CCF;
}
#header #head_content #head_nav li#edu a:hover {
	color: #fff;
	background-color: #008CCF;
}
#header #head_content #head_nav li#agr a {
	color: #148232;
	border: 2px solid #148232;
}
#header #head_content #head_nav li#agr a:hover {
	color: #fff;
	background-color: #148232;
}
#header #head_content #head_nav li#etabi a {
	color: #3eb166;
	border: 2px solid #3eb166;
	background-color: #3eb166;
}
#header #head_content #head_nav li#etabi a img {
	width: 85%;
}
.hamburger {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
}
.hamburger .bar {
	width: 40px;
	height: 3px;
	background: #333;
	border-radius: 2px;
	display: block;
	position: absolute;
	transition: all 0.3s;
}
.hamburger .bar-top {
	transform: translate(0, -12px);
}
.hamburger .bar-bottom {
	transform: translate(0, 12px);
}
#toggle:checked ~ .hamburger .bar-middle {
	opacity: 0;
}
#toggle:checked ~ .hamburger .bar-top {
	transform: translate(0, 0) rotate(45deg);
}
#toggle:checked ~ .hamburger .bar-bottom {
	transform: translate(0, 0) rotate(-45deg);
}
#toggle {
	display: none;
}
#popmenu {
	max-width: 450px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	position: fixed;
	z-index: 9999;
	display: none;
	/*-webkit-transform: translateX(100%);*/
	/*transform: translateX(100%);*/
	right: 0;
	padding: 30px 15px 100px 15px;
}
#popmenu.menu_open {
	display: block;
	animation: menu_fade 0.3s ease;
	/*-webkit-transform: translateX(0%);*/
	/*transform: translateX(0%);*/
	height: 100%;
	overflow-y: scroll;
}
.business_link_block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.business_link_item {
	width: calc((100% - 15px) / 2);
	margin-bottom: 20px;
}
@keyframes menu_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes menu_move {
	0% {
		transform: translate(100, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}
/*footer*/
.footer {
	background-color: #333;
	color: #fff;
	position: relative;
	padding-bottom: 35px;
}
.footer_link_area {
    max-width: 1366px;
    margin: 0 auto;
}
.footer a:hover {
	color: #ddd;
}
.footer .footer_link_area {
	padding: 0 3% 45px 3%;
}
.footer .footer_link_area .footer_link_block p {
	font-size: 1.9rem;
	margin: 30px 0 10px 0;
}
.footer-btn__are {
	max-width: 1080px;
	margin: 0px auto 45px;
	padding-top: 75px;
	display: flex;
	gap: 20px;
}
.footer .footer_nav {
	border-top: 0.7px solid #fff;
	padding: 25px 60px;
    max-width: 1366px;
    margin: 0 auto;
	font-size: 16px;
}
.footer .footer_nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.footer .footer_nav ul li {
	padding: 0 10px;
}
.footer .footer_nav ul li+ li {
	border-left: 2px solid #fff;
}
.footer .footer_bottom_block {
	max-width: 300px;
	margin: 0 auto;
}
.footer .footer_bottom_block a+ a {
	margin: 0 0 0 35px;
}
.footer .footer_bottom_block .footer_btn_block {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer_end_block {
	background-color: #fff;
	text-align: center;
}
.footer_end_block .footer_outerlink_block img {
	margin: 0 10px;
}
.footer_end_block .footer_copy {
	padding: 20px 10px;
}


#topbtn {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
    z-index: 100;
}
#topbtn i {
	padding-top: 6px;
	display: block;
}
#topbtn a {
	display: block;
	/*z-index: 2000;*/
	/*padding: 8px 0 0 8px;*/
	border-radius: 6px;
	width: 45px;
	height: 45px;
	background-color: #fff;
	color: #333;
	/*font-weight: bold;*/
	text-decoration: none;
	text-align: center;
	line-height: 1rem;
}
#topbtn a:hover {
	text-decoration: none;
	background-color: #555;
}


@media (max-width:1510px) and (min-width:769px) {
	#header #head_content #head_nav li a {
		width: 150px;
		font-size: 14px;
	}
}
@media(max-width: 798px) {
	#footer #footer_bottom_block #footer_btn_block a {
		margin: 5px 0;
	}
}
/*mobile_phone*/
@media(max-width: 500px) {
	#footer #footer_nav ul {
		display: block;
		border: none;
	}
	#footer #footer_nav ul li {
		border: none !important;
	}
}
@media (min-width:769px) {
	.sp-only {
		display: none;
	}
}
@media (max-width:768px) {
	.pc-only {
		display: none;
	}	
}

/* ============common.css追加=============== */
.header__wrapper .header_nav{
	padding: 25px 0px;
	color: #fff;
	font-size: 16px;
}
.header__wrapper .header_nav a {
	text-decoration: none;
	color: #fff;
}
.header__wrapper .header_nav ul {
	display: flex;
	flex-wrap: wrap;
}
.header_nav ul li {
	padding: 0 15px;
	border-left: 0.7px solid #fff;
	margin-bottom: 15px;
}
.header__wrapper .header_btn_block {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.header__wrapper .header_btn_block a {
	width: 50%;
}
.contact__box {
	width: 100%;
	color: #fff;
	border: 1px solid #fff;
	padding: 15px;
	text-align: center;
	margin-bottom: 20px;
	font-size: 16px;
}
.contact__box a {
	display: block;
	text-decoration: none;
	color: #fff;
}
.header-link__area {
	width: 100%;
}
.header-link__item {
	padding: 15px 0;
	border-bottom: 0.7px solid #fff;
	text-align-last: left;
	position: relative;
	color: #fff;
	font-size: 16px;
}
.header-link__item a {
	color: #fff;
	text-decoration: none;
}
.header-link__item::before {
	display: inline-block;
	content: '';
	position: absolute;
	width: 2px; 
	height: 10px; 
	background-color: #ffffff; 
	transform: rotate(-45deg);
	right: 7%; 
	top: 40%;
	transition: 0.3s;
	}
	.header-link__item::after {
		display: inline-block;
		content: '';
		position: absolute;
		width: 2px; 
		height: 10px; 
		background-color: #ffffff; 
		transform: rotate(45deg);
		right: 7%; 
		top: 53%;
		transition: 0.3s;
	}
.header-link__item a {
	display: block;
}
@media (max-width:768px) {
	#popmenu.menu_open {
		height: 100svh;
		overflow-y: scroll;
		padding-bottom: 70px;
	}
	.header__wrapper .header_nav {
		padding: 15px 0;
	}
	body {
		margin: 60px 0 0 ;
	}
}
/*add 20240704*/
.head--logo__img {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.head_e-tabi {
	max-width: 180px;
}
@media(max-width: 798px) {
	.head_e-tabi {
		max-width: 120px;
	}
	.head--logo__img {
		gap: 0;
	}
	#header h1 {
		max-width: 200px;
	}
}
@media (max-width:1260px) and (min-width:769px) {
	.head_nav-style {
		max-width: 674px;
		gap: 5px;
	}
	.head_e-tabi {
		width: 180px;
	}
	#header h1 {
		width: 270px;
	}
}
/*footer*/
.footer_link_block {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.footer__section {
	margin-bottom: 10px;
}
.footer__section-title {
	cursor: pointer;
	font-size: 15px;
	max-width: 220px;
	font-weight: bold;
	margin-right: 25px;
	padding-bottom: 15px;
}
.footer__section-list {
	margin: 5px 0;
	font-size: 15px;
}
.footer__section-item {
	font-size: 13px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.footer__section-ul {
	list-style: 'ー';
	list-style-position: outside;
	margin-left: 15px;
}
.link-mark {
	position: relative;
}
.link-mark::after {
	position: absolute;
	display: inline-block;
	content: "";
	background-image: url(../img/link.webp);
	width: 11px;
	height: 11px;
	background-size: contain;
	bottom: 1px;
	right: -15px;
}

@media (max-width: 768px) {
	.footer__section-list {
	display: none;
	transition: max-height 0.3s ease-out;
	overflow: hidden;
	margin-bottom: 0;  
	}
	.footer__section.active .footer__section-list {
	display: block;
	}
	.footer__section {
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 0;
	}
	.footer__section-item  {
	border-right: none;
	margin: 0.5em;
	padding-bottom: 0;
	}
	.footer__section-title {
	border-bottom: 0.7px solid #ffffff;
	max-width: 100%;
	position: relative;
	font-size: 15px;
	padding: 15px 0;
	color: #fff;
	margin-right: 0;
	}
	.footer__section-title::before {
	display: inline-block;
	content: '';
	position: absolute;
	width: 2px; 
	height: 10px; 
	background-color: #ffffff; 
	transform: rotate(45deg);
	right: 7%; 
	top: 40%;
	transition: 0.3s;
	}
	.footer__section-title::after {
		display: inline-block;
		content: '';
		position: absolute;
		width: 2px; 
		height: 10px; 
		background-color: #ffffff; 
		transform: rotate(-45deg);
		right: calc(7% + 6px); 
		top: 40%;
		transition: 0.3s;
	}
	.footer__section-title.open::after {
		/* ラベルアイコンの縦棒を横向きに回転 */
			transform: rotate(45deg);
	}
	.footer__section-title.open::before {
		/* ラベルアイコンの縦棒を横向きに回転 */
			transform: rotate(-45deg);
	}
	.footer__section-ul {
		display: flex;
		flex-direction: column;
	}
	ul.footer__section-list {
		width: 94%;
		margin: 0 auto;
		font-size: 14px;
	}
	.footer__section--active .footer__section-list,
	.footer__submenu-section--active .footer__submenu-list {
		display: block;
	}
	.footer-btn__are {
		flex-wrap: wrap;
		padding-top: 45px;
		margin-bottom: 35px;
	}
	.footer-btn__item {
		width: calc((100% - 20px) / 2);
	}
	.footer-btn__item:last-child {
		width: 63%;
	}
	.footer .footer_nav ul {
		font-size: 13px;
		margin-bottom: 0;
		justify-content: flex-start;
	}
	.footer .footer_nav ul li {
		margin-bottom: 10px;
	}
	.footer .footer_nav {
		padding: 25px 3% 0;
		border-top: none;
	}
	.footer .footer_nav ul li {
	border-left: 2px solid #fff;
	}
	.footer_link_block {
		flex-direction: column;
		gap: 0;
	}
	.footer .footer_link_area {
		padding-bottom: 20px;
	}
}
#header a ,#footer a {
	text-decoration: none;
}
#footer a {
	color: #fff;
}
a:visited {
	color: inherit;
}
