/*--reset--*/
body, ul, li, p, h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	font-size: inherit;
	font-weight: inherit;
}

ul, li, ol {
	list-style: none;
}

body {
	font-family: 'Noto Sans JP', 'Roboto', sans-serif;
	color: #121212;
	font-size: 10px;
	font-feature-settings: "palt" 1, "trad" 1;
	letter-spacing: 0.1em;
}

* {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

/*--reset--*/

/*--common--*/

.inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.pcHide {
	display: none;
}

/*--header--*/
.header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.header .inner {
	display: flex;
	background: #fff;
	justify-content: space-between;
	align-items: center;
}

.header .inner .logo {
	line-height: 1;
	font-size: 20px;
	width: 20%;
	font-weight: normal;
	display: flex;
	align-items: center;
}

.header .inner .logo img {
	display: block;

}

/* .header .inner .logo span{
    display: block;
    font-size: 13px;
} */
.header .navibox {
	max-width: 876px;
	font-size: 14px;
}

.header .menuTitle {
	position: relative;
	z-index: 5;
	background: #fff;
}

.header .menuSecond {
	position: absolute;
	z-index: 4;
	top: 0;
	background: #ffffff;
	padding: 64px 0 10px 0;
	display: none;
	width: 100%;
}

.header .menuSecond.open {
	display: block;
}

.header .menuFirst {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-items: center;
}

.header .menuFirst>li>a,
.header .menuFirst .menuTitle a {
	position: relative;
	display: block;
	padding: 20px 30px;
	text-align: center;
	font-weight: 500;
}

.header .menuSecond li a {
	display: block;
	text-align: center;
	padding: 10px 0;
}



@media screen and (min-width:1000px) {

	.menuFirst>li:not(.contact_hdBtn)>a:hover,
	.menuFirst .menuTitle a:hover,
	.menuSecond li a:hover {
		color: #36599d;
	}

	.menuFirst>li:not(.contact_hdBtn)>a::after,
	.menuList::after {
		content: "";
		position: absolute;
		z-index: 6;
		height: 5px;
		bottom: -1px;
		left: 0;
		width: 0;
		background: linear-gradient(90deg, #001546, #36599d);
		transition: .3s;

	}

	.menuFirst>li:not(.contact_hdBtn)>a:hover::after,
	.menuList.mouseon::after {
		width: 100%;
	}

}


.header .menuList {
	position: relative;
	display: block;
}

.header .contact_hdBtn a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	transition: all 0.7s ease-out;
	background: linear-gradient(90deg, #36599d, #001546, #36599d);
	background-size: 200% 100%;
}

.header .contact_hdBtn a:hover {
	background-position: 100% 0;
}

.contact_hdBtn img {
	vertical-align: middle;
	display: inline-block;
	margin: 0 10px 0 0;
}

/*--パンくずリスト--*/
.breadcrumbs {
	display: flex;
	margin: 40px 0 0;
	padding: 0 0 0 15px;
}

.breadcrumbs li {
	display: inline-block;
	position: relative;
	padding: 0 10px 0 0;
	margin: 0 10px 0 0;
	font-size: 13px;
	color: #8e9094;
}

.breadcrumbs li::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 40%;
	width: 5px;
	height: 5px;
	border-top: 1px solid #a6a6a6;
	border-right: 1px solid #a6a6a6;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.breadcrumbs li:last-child::after {
	content: none;
}

/*--footer--*/

.footer {
	background: #323232;
}

.footer .inner {
	padding: 60px 0 0;
	color: #fff;
	letter-spacing: 0.08em;
}

.ft-contact-box {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #fff;
	padding: 40px;
	align-items: center;
}

.ft-contact-box .title {
	font-size: 2.6em;
	width: 25%;
	border-right: 1px solid #fff;
}

.ft-contact-box .title p {
	text-align: center;
	padding: 10px 0;
}

.ft-contact-box .tel {
	width: 35%;
	padding: 0 0 0 60px;
}

.ft-contact-box .tel p {
	font-size: 2em;
	margin: 0 0 10px;
}

.ft-contact-box .tel span {
	font-size: 80%;
}

.ft-contact-box .tel a {
	display: block;
	font-size: 3.2em;
	line-height: 1;
}

.ft-contact-box .ft-contact-bnt {
	width: 40%;
}

.ft-contact-bnt a {
	display: block;
	background: linear-gradient(90deg, #36599d, #001546, #36599d);
	background-size: 200% 100%;
	text-align: center;
	font-size: 2em;
	padding: 15px 30px;
	max-width: 400px;
	border-radius: 3px;
	margin: 0 auto;
	transition: all 0.3s ease-out;
}

.ft-contact-bnt a:hover {
	background-position: 100% 0;
}

.ft-contact-bnt a img {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 0 0;
}

.footer .address {
	font-size: 1.2em;
	letter-spacing: 0.1em;
}

.footer .access {
	margin: 60px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer .inner .logo {
	line-height: 1.2;
	font-size: 20px;
	width: 15%;
	font-weight: normal;
}

.footer .inner .logo span {
	display: block;
	font-size: 14px;
	margin: 0 0 5px;
}

.footer .about_office ul {
	display: flex;
}

.footer .about_office>p {
	font-size: 1.6em;
	padding: 0 0 0 20px;
	margin: 0 0 15px;
	line-height: 1;
}

.footer .about_office ul li a {
	text-align: center;
	padding: 10px 20px;
	font-size: 1.4em;
	position: relative;
	transition: .3s;
}

.footer .about_office ul li a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.footer .about_office ul li a::after {
	position: absolute;
	content: "/";
	right: 0;
}

.footer .about_office ul li:last-child a::after {
	content: none;
}

.footer .copyright {
	text-align: center;
	background: #121212;
	font-size: 1.2em;
	padding: 10px 0;
	color: #fff;
}

#page_top {
	display: none;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 10px;
	bottom: 50px;
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	border-radius: 50%;
	z-index: 5;
}

#page_top span {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top span::before {
	content: '';
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	margin: auto;
	text-align: center;
}

/*---cookie---*/

.cookie_policy{
    width: 100%;
    background: rgba(51, 51, 51, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
}
.cookie_policy_inner{
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
    font-size: 14px;
    display: flex;
    color: #ffffff;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cookie_policy_inner .policytext{
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-size: 13px;
    width: 80%;
    margin: 0 10px 0 0;
}

.cookie_policy_inner .btnbox{
    width: 15%;
}

.cookie_policy_inner p a{
    text-decoration: underline;
}

.cookie_policy .close_btn{
    background: #ffffff;
    border: 1px solid #dddddd;
    padding: 5px 20px;
    cursor: pointer;
    color: #333333;
    margin: 10px 0 0;
}

.cookie_policy a:hover{
    color: #30bed8;
}

main {
    padding-top: 60px;
}

@media screen and (min-width:913px) {

}

@media screen and (max-width:912px) {

	.header .menuFirst>li>a,
	.header .menuFirst .menuTitle a {
		padding: 20px;
	}

	.header .inner .logo {
		width: 20%;
		padding: 0 0 0 10px;
	}
}

@media screen and (max-width:820px) {

	.spHide {
		display: none;
	}

	.pcHide {
		display: block;
	}

	.header .inner {
		position: relative;
		max-height: 60px;
	}

	.header .inner .logo {
		justify-content: center;
		position: relative;
		z-index: 80;
		padding: 10px 0;
		margin: 0 auto;
		width: 50%;
	}

	/*--ハンバーガーメニュー--*/
	.menuBtnBox {
		position: absolute;
		left: 20px;
		top: 20px;
		z-index: 90;
	}

	.menu-trigger {
		position: relative;
		cursor: pointer;
		width: 30px;
		height: 25px;
		border-radius: 5px;
	}

	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		height: 3px;
		border-radius: 2px;
		background: #8e9094;
		width: 100%;
	}

	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}

	.menu-trigger span:nth-of-type(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}

	.menu-trigger.active span:nth-of-type(1) {
		top: 5px;
		transform: translateY(6px) rotate(-45deg);
	}

	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
		/*真ん中の線は透過*/
	}

	.menu-trigger.active span:nth-of-type(3) {
		top: 17px;
		transform: translateY(-6px) rotate(45deg);
	}

	.header .menuFirst {
		display: block;
	}

	.menuTitle {
		background: none;
	}

	.navibox {
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 50;
		transform: translate(-100%);
		transition: all .5s;
		text-align: center;
		overflow-y: auto;
		background: #f1f1f1;
        margin: 60px 0 0;
	}

	.navibox.open {
		transform: translate(0);
	}

	.header .menuOutter {
		padding: 0 0 60px;
	}

	.header .menuFirst {
		display: block;
	}

	.header .menuFirst li, .header .menuTitle {
		border-bottom: 1px solid #e1e3e5;
	}

	.menuSecond li:last-child,
	.header .menuFirst li:last-child {
		border-bottom: none;
	}

	.header .menuFirst li:not(.contact_hdBtn, .menuList) a {
		position: relative;
	}

	.header .menuFirst li:not(.contact_hdBtn, .menuList) a::after {
		content: "";
		position: absolute;
		right: 20px;
		top: 45%;
		width: 10px;
		height: 10px;
		border-top: 1px solid #b8babc;
		border-right: 1px solid #b8babc;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


	.header .menuFirst>li>a,
	.header .menuFirst .menuTitle a {
		font-size: 16px;
		text-align: left;
		font-weight: 700;
	}

	.header .menuSecond li a {
		padding: 20px 20px 20px 50px;
		text-align: left;
		font-size: 16px;
	}

	.header .menuSecond {
		position: relative;
		display: block;
		padding: 0;
		background: none;
	}

	.header .menuFirst .contact_hdBtn a {
		width: 90%;
		margin: 20px auto 0;
		text-align: center;
		background: #36599d;
	}

	/*--ENDハンバーガーメニュー--*/

	.contactBtn {
		width: 10%;
		box-sizing: border-box;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 90;
	}

	.contactBtn a {
		display: block;
		background: #001546;
		color: #fff;
		text-align: center;
		padding: 11px 0;
	}

	.contactBtn a span {
		display: block;
		font-size: 10px;
	}

	.ft-contact-box .title p {
		padding: 0;
	}

	.ft-contact-box {
		padding: 0 20px;
		border: none;
	}

	.ft-contact-box .title {
		width: 100%;
		border: none;
	}

	.ft-contact-box .tel {
		width: 100%;
		padding: 0;
		margin: 30px 0;
		text-align: center;
	}

	.ft-contact-box .ft-contact-bnt {
		width: 100%;
	}

	.footer .inner .logo {
		width: 100%;
	}

	.footer .inner .access {
		padding: 0 20px;
		max-width: 400px;
		margin: 60px auto;
	}

	.footer .address {
		margin: 20px 0 0;
	}

}

@media screen and (max-width:480px) {
	.contactBtn {
		width: 15%;
	}

	.contactBtn a span {
		transform: scale(.8);
	}

	.breadcrumbs {
		margin: 20px 0 0 0;
	}

	.ft-contact-box .tel {
		margin: 20px 0;
	}

	.ft-contact-box .title {
		font-size: 2em;
	}

	.ft-contact-box .tel p {
		font-size: 1.6em;
		line-height: 1;
	}

	.footer .inner .access {
		margin: 30px auto;
	}

    .cookie_policy_inner .policytext{
        width: 100%;
    }

    .cookie_policy_inner .btnbox{
        width: 100%;
    }

    .cookie_policy .close_btn{
        display: block;
        text-align: center;
    }
}

@media screen and (max-width:375px) {


	.header .inner .logo {
		padding: 11px 0;
		width: 50%;
	}

}

@media screen and (max-width:360px) {
	.header .inner .logo {
		width: 40%;
	}

}

@media screen and (max-width:280px) {

	.menu-trigger {
		width: 25px;
		height: 21px;
	}

	.menuBtnBox {
		left: 10px;
		top: 20px;
	}
}


/*--スクロールアニメーション--*/

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.wow {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
