@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500..900&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
table {
		border-collapse: collapse;
}
img {
		border: none;
		vertical-align: top;
}
body {
		font-family: "Noto Sans JP", sans-serif;
		font-size: 15px;
		color: #222;
		background: #E9EAE3;
		-webkit-text-size-adjust: 100%;
		-webkit-font-smoothing: antialiased;
}
.container {
		overflow: hidden
}
.header_logo_body {
		position: fixed;
		top: 0;
		left: 0;
		width: 352px;
		height: 90px;
		border-radius: 0px 0px 5px 0px;
		background: #FFF;
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
		z-index: 5000;
		display: flex;
		align-items: center;
		box-sizing: border-box;
		padding-left: 30px;
}
.header_logo {
		width: 285px;
}
.header_logo img {
		width: 100%;
		height: auto;
}
.header_nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: flex-end;
		z-index: 2000;
		box-sizing: border-box;
		padding-right: 40px;
		padding-top: 30px;
}
.header_nav ul {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		list-style: none;
		position: relative;
		z-index: 5;
}
.header_nav ul li {
		margin-left: 20px;
}
.header_nav ul li a {
		color: #222;
		text-decoration: none;
}
#toppage .header_nav ul li a {
		color: #fff;
}
.header_nav ul li.contact_mn a {
		padding-left: 25px;
		position: relative;
}
.header_nav ul li.contact_mn a::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 5px);
		left: 0;
		width: 16px;
		height: 12px;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 16px;
		background-image: url("../images/icon_mail.png")
}
.header_nav ul li a span {
		display: inline-block;
		position: relative;
}
.header_nav ul li a span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -4px;
		left: -3px;
		width: 100%;
		height: 1px;
		transform-origin: left center;
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		background: #222;
		transform: scaleX(0);
}
#toppage .header_nav ul li a span::after {
		background: #fff;
}
@media (hover: hover) {
		.header_nav ul li a:hover span::after {
				left: 0px;
				transform: scaleX(1);
		}
}
@media(max-width: 1400px) {
		.header_logo_body {
				width: 260px;
				height: 70px;
				padding-left: 15px;
		}
		.header_logo {
				width: 220px;
		}
		.header_nav {
				padding-right: 20px;
				padding-top: 25px;
		}
		.header_nav ul li {
				margin-left: 15px;
		}
}
@media(min-width: 1251px) {
		.header_trigger {
				display: none;
		}
		.drawer {
				display: none !important
		}
}
@media(max-width: 1250px) {
		.header_nav {
				display: none
		}
		.header_trigger {
				position: fixed;
				top: 0;
				right: 0;
				width: 70px;
				height: 70px;
				z-index: 5000;
				cursor: pointer;
				box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
				border-radius: 0 0 0 5px;
				background: #0062B2;
				transition: background 0.4s;
		}
		.header_trigger.navOpen {
				background: #222;
		}
		.header_trigger .header_trigger_bar {
				position: absolute;
				left: 17px;
				height: 2px;
				width: 36px;
				background: #fff;
				transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
				border-radius: 8px;
		}
		.header_trigger .header_trigger_bar:nth-child(1) {
				top: 25px;
		}
		.header_trigger .header_trigger_bar:nth-child(2) {
				top: 34px;
		}
		.header_trigger .header_trigger_bar:nth-child(3) {
				top: 43px;
				transform-origin: left center;
				transform: scaleX(0.65)
		}
		.header_trigger .header_trigger_bar:nth-child(4) {
				top: 43px;
				opacity: 0;
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(1) {
				transform: translateY(9px) rotate(-45deg);
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(2) {
				opacity: 0;
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(3) {
				opacity: 0;
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(4) {
				opacity: 1;
				transform: translateY(-9px) rotate(45deg);
		}
		.drawer {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				z-index: 1000;
				background: #F7F7F6 url("../images/drawer_bg_pc.jpg") no-repeat center center;
				display: none;
		}
		.drawer_container {
				display: flex;
				justify-content: center;
				align-items: center;
		}
		.drawer_wrap {
				display: flex;
		}
		.drawer_wrap ul {
				margin: 0 20px;
				width: 290px;
				border-top: 1px solid #ddd;
		}
		.drawer_wrap li {
				list-style: none;
				font-size: 17px;
				border-bottom: 1px solid #ddd;
		}
		.drawer_wrap li a {
				color: #222;
				text-decoration: none;
				padding: 15px;
				display: block;
				position: relative;
		}
		.drawer_wrap li a::after {
				content: '';
				display: block;
				position: absolute;
				right: 10px;
				top: calc(50% - 5px);
				width: 0;
				height: 0;
				border-style: solid;
				border-top: 5px solid transparent;
				border-bottom: 5px solid transparent;
				border-left: 9px solid #222;
				border-right: 0;
		}
}
@media (hover: hover) {
		.header_trigger:hover .header_trigger_bar:nth-child(3) {
				transform: scaleX(1)
		}
}
@media(max-width: 767px) {
		.header_logo_body {
				width: 225px;
				height: 64px;
				padding-left: 12px;
		}
		.header_logo {
				width: 194px;
		}
		.header_trigger {
				width: 64px;
				height: 64px;
				border-radius: 0 0 0 4px;
		}
		.header_trigger .header_trigger_bar {
				left: 15px;
				height: 2px;
				width: 34px;
		}
		.header_trigger .header_trigger_bar:nth-child(1) {
				top: 23px;
		}
		.header_trigger .header_trigger_bar:nth-child(2) {
				top: 31px;
		}
		.header_trigger .header_trigger_bar:nth-child(3) {
				top: 39px;
		}
		.header_trigger .header_trigger_bar:nth-child(4) {
				top: 39px;
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(1) {
				transform: translateY(8px) rotate(-45deg);
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(4) {
				opacity: 1;
				transform: translateY(-8px) rotate(45deg);
		}
		.drawer {
				background: #F7F7F6 url("../images/drawer_bg_sp.jpg") no-repeat center center;
				background-size: 100%;
				height: 100vh !important
		}
		.drawer_container {
				display: block;
		}
		.drawer_wrap {
				display: block;
				padding-top: 90px;
		}
		.drawer_wrap ul {
				margin: 0;
				width: 100%;
				border-top: none;
		}
		.drawer_wrap li {
				font-size: 16px;
		}
		.drawer_wrap li a {
				color: #222;
				text-decoration: none;
				padding: 15px;
				display: block;
				padding-left: 35px;
		}
		.drawer_wrap li a::after {
				right: 35px;
		}
}
@media(max-width: 375px) {
		.header_logo_body {
				width: 185px;
				height: 50px;
				padding-left: 10px;
		}
		.header_logo {
				width: 165px;
		}
		.header_trigger {
				width: 50px;
				height: 50px;
		}
		.header_trigger .header_trigger_bar {
				left: 12px;
				width: 26px;
		}
		.header_trigger .header_trigger_bar:nth-child(1) {
				top: 17px;
		}
		.header_trigger .header_trigger_bar:nth-child(2) {
				top: 24px;
		}
		.header_trigger .header_trigger_bar:nth-child(3) {
				top: 31px;
		}
		.header_trigger .header_trigger_bar:nth-child(4) {
				top: 31px;
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(1) {
				transform: translateY(7px) rotate(-45deg);
		}
		.header_trigger.navOpen .header_trigger_bar:nth-child(4) {
				transform: translateY(-7px) rotate(45deg);
		}
		.drawer_wrap {
				padding-top: 80px;
		}
		.drawer_wrap li {
				font-size: 15px;
		}
		.drawer_wrap li a {
				padding-top: 12px;
				padding-bottom: 12px;
		}
}
footer {
		background: #fff;
		padding: 70px 40px;
}
.footer_inner {
		max-width: 1170px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
		padding-bottom: 100px;
}
.footer_logo {
		width: 375px;
		margin: 0 0 30px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_right {
		width: 660px;
		display: flex;
		justify-content: space-between;
}
.footer_right ul li {
		margin-bottom: 15px;
		list-style: none;
}
.footer_right ul li a {
		color: #222;
		text-decoration: none;
}
@media(min-width: 768px) {
		.footer_right ul li:last-child {
				margin-bottom: 0;
		}
}
.footer_address {
		line-height: 1.8;
}
.copyright {
		padding: 25px 0px;
		color: #fff;
		background: #0062B2;
}
.copyright p {
		text-align: center;
		font-size: 13px;
}
@media(max-width: 1200px) {
		.footer_logo {
				width: 300px;
		}
		.footer_right {
				width: 550px;
		}
}
@media(max-width: 1100px) {
		.footer_inner {
				display: block;
				padding-bottom: 0;
		}
		.footer_left {
				margin-bottom: 40px;
		}
		.footer_right {
				width: 80%;
		}
}
@media(max-width: 840px) {
		.footer_right {
				width: 90%;
		}
}
@media(max-width: 767px) {
		footer {
				background: #fff;
				padding: 50px 30px 50px;
		}
		.footer_logo {
				width: 100%;
				max-width: 290px;
				margin-bottom: 35px;
		}
		.footer_left {
				margin-bottom: 35px;
		}
		.footer_right {
				width: 100%;
				display: block;
		}
		.copyright {
				padding: 15px 0px;
		}
		.copyright p {
				font-size: 12px;
		}
}
/* ============= */
.link_btn a {
		color: #222;
		text-decoration: none;
		position: relative;
		display: inline-block;
		padding-right: 65px;
}
.link_btn a .link_btn_arw {
		position: absolute;
		right: 0;
		top: calc(50% - 23px);
		width: 47px;
		height: 47px;
		border-radius: 50%;
		margin-left: 12px;
}
.link_btn_arw::before, .link_btn_arw::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 50%;
}
.link_btn_arw::before {
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		background: #222;
}
.link_btn_arw::after {
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 47px;
		background-image: url(../images/arw47_right_wht.png);
}
@media (hover: hover) {
		.link_btn a:hover .link_btn_arw::before {
				transform: scale(1.25)
		}
}
.link_btn p {
		font-size: 16px;
		font-weight: 600;
		margin: 0 !important
}
@media(max-width: 767px) {
		.link_btn p {
				font-size: 15px;
		}
		.link_btn a {
				padding-right: 40px;
		}
		.link_btn a .link_btn_arw {
				top: calc(50% - 16px);
				width: 32px;
				height: 32px;
				margin-left: 0;
		}
		.link_btn_arw::after {
				background-size: 32px;
		}
}
/* =========================== */
.case_item_caption .link_btn a {
		color: #fff;
}
.case_item_caption .link_btn a .link_btn_arw::before {
		background: #fff;
}
.case_item_caption .link_btn a .link_btn_arw::after {
		background-image: url(../images/arw47_right_blu.png);
}
.link_btn_center {
		display: flex;
		justify-content: center;
}
.link_btn_right {
		display: flex;
		justify-content: flex-end
}
.link_arw {
		width: 37px;
		height: 37px;
		position: relative;
}
.link_arw::before, .link_arw::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
}
.link_arw::before {
		border-radius: 50%;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.link_arw::before {
		border-radius: 50%;
}
.link_arw::after {
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 37px;
		background-image: url("../images/link_btn_arw_wht.png")
}
@media (hover: hover) {
		.fv_news_inner a:hover .link_arw::before {
				transform: scale(1.25)
		}
}
@media(min-width: 768px) {
		br.spbr {
				display: none;
		}
		.spObj {
				display: none !important;
		}
}
@media(max-width: 767px) {
		.link_arw {
				width: 32px;
				height: 32px;
		}
		.link_arw::after {
				background-size: 32px;
		}
		.pcObj {
				display: none !important;
		}
}
::selection {
		background: #c7d0de !important;
		-webkit-background-clip: inherit;
		-webkit-text-fill-color: #0062B2;
		color: #0062B2;
}
::-moz-selection {
		background: #c7d0de;
}
::-webkit-scrollbar {
		width: 10px;
		height: 10px;
}
::-webkit-scrollbar-track {
		background-color: #fff;
}
::-webkit-scrollbar-thumb {
		background-color: #0062B2;
}