@charset "UTF-8";
/* ------------------------
    ヘッダー
------------------------ */
.header {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 99;
		padding: 0 20px;
		transition: .3s ease;
}

.header a {
	color: #fff;
}
.header.js-scroll {
		background-color: rgba(0, 0, 0, 0.7);
}
.header.js-scroll .header__inner {
		height: 70px;
}

.header__inner {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		/* -webkit-flex-wrap: wrap;
		flex-wrap: wrap; */
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		width: 1366px;
		max-width: 100%;
		margin: 0 auto;
		height: 100px;
		transition: all .3s ease;
}
.header__wrap {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		/* -webkit-flex-wrap: wrap;
		flex-wrap: wrap; */
		-webkit-align-items: center;
		align-items: center;
}

.header-logo__grid {
		position: relative;
		display: flex;
		align-items: center;
		padding-right: 25px;
		margin-right: 30px;
}
.header-logo__grid::before {
		content: '';
		width: 1px;
		height: 38px;
		background-color: rgba(255, 255, 255, .2);
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit- transform: translateY(-50%);
}
.header__logo {
		display: block;
		width: 204px;
		height: 38px;
		white-space: nowrap;
		text-indent: 100%;
		overflow: hidden;
		background: url(./img/logo_site.svg) no-repeat center/contain;
		margin-right: 15px;
}
.header-logo__grid p {
		font-size: 1.4rem;
		font-weight: bold;
		color: #fff;
}

.header .global-nav {
		height: 100%;
}

.header .global-nav__list {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-items: center;
		align-items: center;
		height: 100%;
}

.header .global-nav__item {
		position: relative;
		margin-right: 25px;
}

.header .global-nav__link {
		display: block;
		position: relative;
		text-decoration: none;
		color: #ffffff;
		font-size: 1.4rem;
		font-weight: bold;
		padding: 10px 0;
}
.header .global-nav__link::before {
		content: '';
		width: 2px;
		height: 15px;
		background: #fff;
		position: absolute;
		top: 50%;
		left: -8px;
		transform: translateY(-50%);
		-webkit- transform: translateY(-50%);
		opacity: 0;
		transition: .3s;
}
.header .global-nav__link:hover::before {
		opacity: 1;
		transition: .3s;
}
.header .has-child .global-nav__link::before {
		display: none;
}

.header .global-nav .sub-nav {
		position: absolute;
		width: 180px;
		top: 100%;
		left: -8px;
		white-space: nowrap;
		background-color: rgba(0, 0, 0, 0.8);
		padding: 10px 20px;
		opacity: 0;
		pointer-events: none;
		transition: .3s;
}

.header .global-nav .sub-nav.js-fade {
		opacity: 1;
		pointer-events: auto;
		transition: .4s;
}

.header .global-nav .sub-nav::before {
		content: '';
		background-color: #fff;
		width: 2px;
		height: 0;
		position: absolute;
		left: 0;
		top: -33px;
		transition: .4s;
}
.header .global-nav .sub-nav.js-fade::before {
		content: '';
		background-color: #fff;
		width: 2px;
		height: calc(100% + 33px);
		position: absolute;
		left: 0;
		top: -33px;
		transition: .4s;
}

.header .global-nav .sub-nav__link {
		display: block;
		position: relative;
		color: #ffffff;
		text-decoration: none;
		padding: 2px 0;
		font-size: 1.4rem;
}

.header .global-nav .sub-nav__link::before {
		content: '';
		width: 2px;
		height: 1px;
		position: absolute;
		background-color: rgba(255, 255, 255, 1);
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
		transition: .3s;
}
.header .global-nav .sub-nav__link::after {
		content: '';
		width: 10px;
		height: 1px;
		position: absolute;
		background-color: rgba(255, 255, 255, .5);
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
}

.header .global-nav .sub-nav__link:hover::before {
		width: 10px;
		transition: .3s;
}

.header__contact {
	display: flex;
	align-items: center;
}
.header__contact .tel {
	position: relative;
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	font-family: 'Saira', sans-serif;
	letter-spacing: 1px;
	padding-right: 15px;
	margin-right: 15px;
	white-space: nowrap;
}
.header__contact .tel::before {
	content: '';
	width: 1px;
	height: 38px;
	background-color: rgba(255, 255, 255, .2);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
}
.header__contact .tel:hover {
	opacity: 0.7;
}
.header__contact .mail {
	width: 33px;
	height: 22px;
	background: url(./img/ico_email.svg) no-repeat center/contain;
}
.header__contact .mail:hover {
	opacity: 0.5;
}
@media only screen and (max-width: 1230px) {
	.header-logo__grid {
		padding-right: 15px;
		margin-right: 15px;
	}
	.header__logo {
		width: 140px;
		height: 26px;
	}
	.header .global-nav__item {
    position: relative;
    margin-right: 12.5px;
	}
	.header__contact .tel {
		font-size: 1.7rem;
	}
	.header__contact .mail {
		width: 26px;
    height: 18px;
	}
}
@media only screen and (max-width: 1024px) {
		.header {
				padding: 0 0 0 15px;
				background-color: transparent;
		}
		.header a {
			color: #fff;
		}
		/* .header.js-scroll {
				background-color: transparent;
		} */
		.header.js-scroll .header__inner {
				height: unset;
		}
		.header__inner {
				height: unset;
				-webkit-align-items: unset;
				align-items: unset;
		}
		.header__wrap {
				-js-display: flex;
				display: -webkit-box;
				display: -webkit-flex;
				display: flex;
				/* -webkit-flex-wrap: wrap;
				flex-wrap: wrap; */
				-webkit-align-items: flex-start;
				align-items: flex-start;
				justify-content: space-between;
				width: 100%;
		}
		.header-logo__grid {
				position: relative;
				display: block;
				align-items: unset;
				padding-right: 0;
				margin-right: 0;
				padding-top: 10px;
		}
		.header-logo__grid::before {
				display: none;
		}
		.js-scroll .header-logo__grid {
				padding-top: 5px;
		}
		.header__logo {
				display: block;
				width: 204px;
				height: 38px;
				white-space: nowrap;
				text-indent: 100%;
				overflow: hidden;
				background: url(./img/logo_site.svg) no-repeat center/contain;
				margin-right: 15px;
		}
		.header-logo__grid p {
				font-size: 1.5rem;
				font-weight: bold;
				color: #fff;
				line-height: 1;
				margin-top: 7px;
				transition: .3s;
		}
		.js-scroll .header-logo__grid p {
			font-size: 1.1rem;
			font-weight: bold;
			color: #fff;
			line-height: 1;
			margin-top: 5px;
			transition: .3s;
		}

		.header__logo {
				background-image: url(./img/logo_site.svg);
				width: 140px;
				height: 27px;
				transition: .3s;
		}
		.js-scroll .header__logo {
				width: 103px;
				height: 20px;
				transition: .3s;
		}

		.header .global-nav {
				height: auto;
				border-left: 0 none;
		}
		.header .global-nav__list {
				display: block;
				height: auto;
				padding: 30px 15px 30px 30px;
		}
		.header .global-nav__item {
				margin-right: 0;
				padding-top: 5px;
		}
		.header .global-nav__list	.global-nav__item:first-child {
				padding-top: 0;
		}
		.header .global-nav__item + .global-nav__item {
			margin-top: 10px;
		}
		.header .global-nav__link {
				font-size: 1.6rem;
				padding: 0 0 0 5px;
				color: #ffffff;
				position: relative;
		}
		.header .global-nav__link::before {
				content: '';
				width: 2px;
				height: 1px;
				background-color: rgba(255, 255, 255, 1);
				position: absolute;
				top: 50%;
				right: 100%;
				left: unset;
				transform: translateY(-50%);
				-wekit- transform: translateY(-50%);
				opacity: 1;
				transition: .3s;
		}
		.header .global-nav__link::after {
				content: '';
				width: 10px;
				height: 1px;
				position: absolute;
				background-color: rgba(255, 255, 255, .5);
				top: 50%;
				right: 100%;
				transform: translateY(-50%);
				-wekit- transform: translateY(-50%);
		}
		.header .global-nav__link:hover::before {
				width: 10px;
				transition: .3s;
		}
		.header .global-nav .sub-nav {
				position: relative;
				top: auto;
				left: auto;
				white-space: normal;
				background-color: rgba(255, 255, 255, 0);
				box-shadow: none;
				padding: 0;
				opacity: 1;
				pointer-events: auto;
		}
		.header .global-nav .sub-nav__link {
				position: relative;
				padding: 0 0 0 5px;
				color: #ffffff;
				margin-top: 5px;
		}
		.header .global-nav .sub-nav__link::before {
				content: '';
				width: 2px;
				height: 1px;
				position: absolute;
				background-color: rgba(255, 255, 255, 1);
				top: 50%;
				right: 100%;
				transform: translateY(-50%);
				-wekit- transform: translateY(-50%);
				transition: .3s;
		}
		.header .global-nav .sub-nav__link::after {
				content: '';
				width: 10px;
				height: 1px;
				position: absolute;
				background-color: rgba(255, 255, 255, .5);
				top: 50%;
				right: 100%;
				transform: translateY(-50%);
				-wekit- transform: translateY(-50%);
		}
		.header .global-nav .sub-nav__link:hover::before {
				width: 10px;
				transition: .3s;
		}


		.header__contact {
			display: none;
		}
		.header__menu_sp {
			display: flex;
			align-items: center;
		}
		.js-scroll .header__menu_sp {
			background-color: #000;
			transition: .3s;
		}
		.drawer-open .header__menu_sp {
			background-color: #000;
			transition: .3s;
		}
		.header__contact_sp {
			display: block;
			position: relative;
			width: 45px;
	    height: 45px;
			border-left: 1px solid rgba(255, 255, 255, 0.2);
			border-right: 1px solid rgba(255, 255, 255, 0.2);
			transition: .3s;
		}
		.header__contact_sp::before {
			content: '';
			width: 26px;
			height: 18px;
			background: url(./img/ico_email.svg) no-repeat center/contain;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			-webkit- transform: translate(-50%, -50%);
		}
}

/* ------------------------
    スマホナビ
------------------------ */
.drawer-hamburger {
		display: none;
}

@media only screen and (max-width: 1024px) {
		.drawer.drawer--right .drawer-hamburger {
				display: block;
				position: relative;
				box-sizing: border-box;
				width: 45px;
				height: 45px;
				background-color: rgba(255, 255, 255, 0);
				padding: 0 11px;
				overflow: visible;
		}
		.drawer.drawer--right .drawer-hamburger .drawer-hamburger-icon {
				height: 2px;
				background-color: #fff;
				margin: 0;
				width: 100%;
		}
		.drawer.drawer--right .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--right .drawer-hamburger .drawer-hamburger-icon::after {
				width: 100%;
				height: 2px;
				background-color: #fff;
		}
		.drawer.drawer--right .drawer-hamburger .drawer-hamburger-icon::before {
				top: -6px;
		}
		.drawer.drawer--right .drawer-hamburger .drawer-hamburger-icon::after {
				top: 6px;
		}
		.drawer.drawer--right .drawer-nav {
				padding: 0;
				width: 100%;
				max-width: 215px;
				background-color: rgba(0, 0, 0, 1);
				opacity: 1;
				pointer-events: none;
				transition: none;
				right: 0;
				top: 45px;
				transform: translateX(215px);
				transition: .3s;
		}
		.drawer.drawer--right.drawer-open .drawer-toggle {
				left: auto;
				right: auto;
		}
		.drawer.drawer--right.drawer-open .drawer-toggle::after {
				opacity: 1;
		}
		.drawer.drawer--right.drawer-open .drawer-toggle .drawer-hamburger-icon {
				background: transparent;
		}
		.drawer.drawer--right.drawer-open .drawer-toggle .drawer-hamburger-icon::before, .drawer.drawer--right.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
				top: 0;
				left: -2px;
				background: none;
				background-color: #ffffff;
				width: calc(100% + 4px);
		}
		.drawer.drawer--right.drawer-open .drawer-nav {
				width: 100%;
				max-width: 215px;
				background-color: rgba(0, 0, 0, 1);
				pointer-events: auto;
				transform: translateX(0);
				transition: .3s;
		}

		.drawer.drawer--right.drawer-open .drawer-overlay {
				background-color: rgba(0, 0, 0, 0);
		}
}

.drawer--right.drawer-open .drawer-nav {
		top: 45px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
		left: 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
		right: 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
}

/* ------------------------
    フッター
------------------------ */
.footer {
		position: relative;
		margin-top: 0;
		background-color: #EBEBEB;
		padding: 50px 15px 20px;
		font-size: 1.4rem;
		z-index: 1;
}

.footer__inner {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		max-width: 1120px;
		margin: 0 auto;
}

.footer__logo {
		display: block;
		width: 254px;
}
.footer__information .footer__company {
	display: block;
	font-weight: bold;
	margin-top: 15px;
}
.footer__information p {
	line-height: 1.7;
	margin-top: 10px;
}
.footer__information p a {
	color: #333;
}

.footer__sitemap {
		-js-display: flex;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		width: 560px;
		max-width: calc(100% - 180px);
}

.footer__sitemap .sitemap-list__item {
		margin-top: 15px;
}

.footer__sitemap .sitemap-list__item:first-child {
		margin-top: 0;
}

.footer__sitemap .sitemap-list__item + .sitemap-list__item {
	margin-top: 25px;
}

.footer__sitemap .sitemap-list__link {
		display: block;
		position: relative;
		padding-left: 5px;
		color: #333;
		line-height: 1.1;
		font-size: 1.6rem;
		font-weight: bold;
		text-decoration: none;
}

.footer__sitemap .sitemap-list__link::before {
		content: '';
		width: 2px;
		height: 1px;
		position: absolute;
		background-color: rgba(21, 26, 90, 1);
		top: 50%;
		right: 100%;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
		transition: .3s;
}
.footer__sitemap .sitemap-list__link::after {
		content: '';
		width: 10px;
		height: 1px;
		position: absolute;
		background-color: rgba(21, 26, 90, .4);
		top: 50%;
		right: 100%;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
}
.footer__sitemap .sitemap-list__link:hover::before {
		width: 10px;
		transition: .3s;
}

.footer__sitemap .sitemap-list__item.privacy-policy {
		margin-top: 85px;
}
.footer__sitemap .sitemap-list__item.privacy-policy .sitemap-list__link {
		font-weight: normal;
		font-size: 1.4rem;
}

.footer__sitemap .sitemap-list__sub li {
		margin-top: 10px;
}

.footer__sitemap .sitemap-list__sub li a {
		display: block;
		position: relative;
		padding-left: 5px;
		line-height: 1.5;
		font-size: 1.4rem;
		text-decoration: none;
		color: #333;
}

.footer__sitemap .sitemap-list__sub li a::before {
		content: '';
		width: 2px;
		height: 1px;
		position: absolute;
		background-color: rgba(21, 26, 90, 1);
		top: 50%;
		right: 100%;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
		transition: .3s;
}
.footer__sitemap .sitemap-list__sub li a::after {
		content: '';
		width: 10px;
		height: 1px;
		position: absolute;
		background-color: rgba(21, 26, 90, .4);
		top: 50%;
		right: 100%;
		transform: translateY(-50%);
		-wekit- transform: translateY(-50%);
}
.footer__sitemap .sitemap-list__sub li a:hover::before {
		width: 10px;
		transition: .3s;
}

.footer__copy {
		margin-top: 100px;
		text-align: center;
		font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
		.footer {
				margin-top: 0;
				padding: 55px 15px 15px;
		}
		.footer__logo {
				width: 254px;
		}

		.footer__sitemap {
				-js-display: flex;
				display: -webkit-box;
				display: -webkit-flex;
				display: flex;
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
				-webkit-justify-content: space-between;
				justify-content: space-between;
				width: 100%;
				max-width: 100%;
		}

		.footer__sitemap .sitemap-list__item {
				margin-top: 15px;
				display: none;
		}

		.footer__sitemap .sitemap-list__item:first-child {
				margin-top: 0;
		}

		.footer__sitemap .sitemap-list__item + .sitemap-list__item {
			margin-top: 25px;
		}

		.footer__sitemap .sitemap-list__item.privacy-policy {
				margin-top: 35px;
				display: block;
		}
		.footer__sitemap .sitemap-list__item.privacy-policy .sitemap-list__link {
				font-weight: normal;
				font-size: 1.4rem;
		}

		.footer__sitemap .sitemap-list__sub li {
				margin-top: 10px;
		}

		.footer__copy {
				margin-top: 50px;
		}
}

.ttl-cmn-01 {
	display: block;
	text-align: center;
	font-size: 3.5rem;
	padding-bottom: 15px;
	position: relative;
	line-height: 1.5;
	color: #fff;
	z-index: 1;
}
.ttl-cmn-01::before {
	content: '';
	width: 70px;
	height: 5px;
	background: url(./img/ttl-cmn-01.svg) no-repeat center/contain;
	bottom: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
	transition: .3s;
}
#page-index .ttl-cmn-02 {
	padding-top: 130px;
}
.ttl-cmn-02 {
	display: block;
	text-align: center;
	font-size: 3rem;
	padding-bottom: 5px;
	position: relative;
	line-height: 1.5;
	padding-top: 75px;
}
.ttl-cmn-02::before {
	content: '';
	width: 39px;
	height: 2px;
	background: url(./img/ttl-cmn-02.svg) no-repeat center/contain;
	bottom: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
	transition: .3s;
}
.ttl-cmn-02::after {
	color: #EBEBEB;
	font-size: 8.5rem;
	font-weight: bold;
	font-family: 'Saira', sans-serif;
	letter-spacing: 1px;
	top: 20px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
	white-space: nowrap;
}
.ttl-cmn-02.business::after {
	content: 'OUR BUSINESS';
}
.ttl-cmn-02.works::after {
	content: 'WORKS';
}
.ttl-cmn-02.white {
	color: #fff;
}
.ttl-cmn-02.white::before {
	background: url(./img/ttl-cmn-02_white.svg) no-repeat center/contain;
}
.ttl-cmn-02.white::after {
	color: rgba(255, 255, 255, .3);
}
.ttl-cmn-02.white.skill::after {
	content: 'TECHNICAL SKILLS';
}
.ttl-cmn-02.white.profile::after {
	content: 'PROFILE';
}

.ttl-cmn-03 {
	display: block;
	font-size: 2.2rem;
	padding-bottom: 5px;
	position: relative;
	line-height: 1.5;
	margin-top: 80px;
}
.ttl-cmn-03::before {
	content: '';
	width: calc(100% - 40px);
	height: 2px;
	background-color: #EBEBEB;
	position: absolute;
	bottom: 0;
	right: 0;
}
.ttl-cmn-03::after {
	content: '';
	width: 38px;
	height: 2px;
	background: url(./img/ttl-cmn-03.svg) no-repeat center/contain;
	bottom: 0;
	left: 0;
	position: absolute;
	transition: .3s;
}

.ttl-cmn-04 {
	display: block;
	font-size: 1.8rem;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
	margin-top: 80px;
}
.ttl-cmn-04::before {
	content: '';
	width: 11px;
	height: calc(100% - 10px);
	background: url(./img/ttl-cmn-04.svg) repeat center/contain;
	top: 5px;
	left: 0;
	position: absolute;
	transition: .3s;
}

.ttl-cmn-05 {
	display: block;
	font-size: 1.6rem;
	position: relative;
	line-height: 1.5;
	margin-top: 40px;
	color: #00053a;
}
.grid-cmn .ttl-cmn-05 {
	margin-top: 10px;
}
@media only screen and (max-width: 768px) {
	.ttl-cmn-01 {
		display: block;
		text-align: center;
		font-size: 3.2rem;
		padding-bottom: 10px;
		position: relative;
		line-height: 1.5;
		color: #fff;
		z-index: 1;
	}
	.ttl-cmn-01::before {
		content: '';
		width: 70px;
		height: 5px;
		background: url(./img/ttl-cmn-01.svg) no-repeat center/contain;
		bottom: 0;
		left: 50%;
		position: absolute;
		transform: translateX(-50%);
		-webkit- transform: translateX(-50%);
		transition: .3s;
	}
	#page-index .ttl-cmn-02 {
		padding-top: 90px;
	}
	.ttl-cmn-02 {
		display: block;
		text-align: center;
		font-size: 3rem;
		padding-bottom: 5px;
		position: relative;
		line-height: 1.5;
		padding-top: 60px;
	}
	.ttl-cmn-02::before {
		content: '';
		width: 39px;
		height: 2px;
		background: url(./img/ttl-cmn-02.svg) no-repeat center/contain;
		bottom: 0;
		left: 50%;
		position: absolute;
		transform: translateX(-50%);
		-webkit- transform: translateX(-50%);
		transition: .3s;
	}
	.ttl-cmn-02::after {
		color: #EBEBEB;
		font-size: 4rem;
		font-weight: bold;
		font-family: 'Saira', sans-serif;
		letter-spacing: 1px;
		top: 35px;
		left: 50%;
		position: absolute;
		transform: translateX(-50%);
		-webkit- transform: translateX(-50%);
		white-space: nowrap;
	}

	.ttl-cmn-03 {
		display: block;
		font-size: 2.2rem;
		padding-bottom: 5px;
		position: relative;
		line-height: 1.5;
		margin-top: 50px;
	}
	.ttl-cmn-03::before {
		content: '';
		width: calc(100% - 40px);
		height: 2px;
		background-color: #EBEBEB;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.ttl-cmn-03::after {
		content: '';
		width: 38px;
		height: 2px;
		background: url(./img/ttl-cmn-03.svg) no-repeat center/contain;
		bottom: 0;
		left: 0;
		position: absolute;
		transition: .3s;
	}

	.ttl-cmn-04 {
		display: block;
		font-size: 1.8rem;
		padding-left: 20px;
		position: relative;
		line-height: 1.5;
		margin-top: 50px;
	}
	.ttl-cmn-04::before {
		content: '';
		width: 11px;
		height: calc(100% - 10px);
		background: url(./img/ttl-cmn-04.svg) repeat center/contain;
		top: 5px;
		left: 0;
		position: absolute;
		transition: .3s;
	}

	.ttl-cmn-05 {
		display: block;
		font-size: 1.6rem;
		position: relative;
		line-height: 1.5;
		margin-top: 20px;
		color: #00053a;
	}
}

.btn-link {
	position: relative;
	display: inline-block;
	margin-top: 20px;
	padding-left: 17px;
	color: #333;
}
.btn-link::before {
  content: '';
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: rgba(29, 175, 233, 0.5);
}
.btn-link::after {
  content: '';
  width: 2px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: #00053a;
  transition: .3s;
}
.btn-link:hover::after {
	width: 10px;
	transition: .3s;
}

.btn-cmn-01 {
	position: relative;
	display: block;
	padding: 0 20px;
	width: 250px;
	height: 70px;
	line-height: 68px;
	background-color: #fff;
	border: 1px solid #151A5A;
	font-weight: bold;
	color: #333;
	margin: 30px auto 0;
}
.btn-cmn-01::before {
  content: '';
  width: 25px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: #EBEBEB;
}
.btn-cmn-01::after {
  content: '';
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: #151A5A;
  transition: .3s;
}
.btn-cmn-01:hover::after {
	width: 25px;
	transition: .3s;
}

.catch {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin-top: 40px;
}
.read {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 30px;
}
.catch + .read {
	margin-top: 15px;
}
@media only screen and (max-width: 768px) {
	.catch {
		font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
		margin-top: 30px;
	}
	.read {
		font-size: 1.5rem;
		text-align: left;
		margin-top: 30px;
	}
	.catch + .read {
		margin-top: 15px;
	}
}

.tmp-catch__wrap {
	margin: 100px auto 0;
	width: 100%;
	max-width: 780px;
	padding: 0 20px;
}
.tmp-catch__wrap .tmp-catch {
	margin-top: 0;
}
.tmp-catch {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 40px;
	color: #151A5A;
}
.tmp-catch + p {
	margin-top: 20px;
}
@media only screen and (max-width: 768px) {
	.tmp-catch__wrap {
		margin: 50px auto 0;
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	.tmp-catch__wrap .tmp-catch {
		margin-top: 0;
	}
	.tmp-catch {
		font-size: 2rem;
		font-weight: bold;
		margin-top: 30px;
		color: #151A5A;
	}
	.tmp-catch + p {
		margin-top: 20px;
	}
}

.ttl-cmn-03 + .table-cmn-01,
.ttl-cmn-04 + .table-cmn-01,
.ttl-cmn-05 + .table-cmn-01 {
	margin-top: 10px;
}
.table-cmn-01 {
	margin-top: 50px;
}
.table-cmn-01 table {
	width: 100%;
	border-bottom: 1px solid #BFBFBF;
}
.table-cmn-01 table th {
	background-color: #00053a;
	color: #ffffff;
	padding: 15px 18px;
}
.table-cmn-01 table tr {
	border-top: 1px solid #BFBFBF;
}
.table-cmn-01 table td {
	border-right: 1px solid #BFBFBF;
	padding: 15px 18px;
}
.table-cmn-01 table td:last-child {
	border-right: 0 none;
}
@media only screen and (max-width: 768px) {
	.ttl-cmn-03 + .table-cmn-01,
	.ttl-cmn-04 + .table-cmn-01,
	.ttl-cmn-05 + .table-cmn-01 {
		margin-top: 10px;
	}
	.table-cmn-01 {
		margin-top: 50px;
	}
	.table-cmn-01 table {
		width: 100%;
		border-bottom: 1px solid #BFBFBF;
	}
	.table-cmn-01 table th {
		background-color: #00053a;
		color: #ffffff;
		padding: 7px;
		width: 100%;
		display: block;
	}
	.table-cmn-01 table tr {
		border-top: 1px solid #BFBFBF;
	}
	.table-cmn-01 table td {
		border-right: 1px solid #BFBFBF;
		padding: 12px 0;
		display: block;
	}
	.table-cmn-01 table td:last-child {
		border-right: 0 none;
	}
}


.table-cmn-01 .list {
	margin-top: 0;
}
.list {
	margin-top: 40px;
}
.list li + li {
	margin-top: 5px;
}
.list li {
	position: relative;
	padding-left: 15px;
}
.list li::before {
	content: '';
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #151A5A;
	position: absolute;
	top: 6px;
	left: 0;
}



.blue-wrap + .blue-wrap {
	margin-top: 50px;
}
.blue-wrap {
	position: relative;
	padding: 60px 0;
	margin-top: 80px;
}
.blue-wrap::before {
	content: '';
	width: 100vw;
	height: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
	background-color: #D8DBE5;
}
.blue-wrap .ttl-cmn-03,
.blue-wrap .ttl-cmn-04,
.blue-wrap .ttl-cmn-05 {
	margin-top: 0;
}
@media only screen and (max-width: 768px) {
	.blue-wrap + .blue-wrap {
		margin-top: 30px;
	}
	.blue-wrap {
		position: relative;
		padding: 40px 0;
		margin-top: 50px;
	}
	.blue-wrap::before {
		content: '';
		width: 100vw;
		height: 100%;
		position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translateY(-50%) translateX(-50%);
	  -webkit- transform: translateY(-50%) translateX(-50%);
		background-color: #D8DBE5;
	}
	.blue-wrap .ttl-cmn-03,
	.blue-wrap .ttl-cmn-04,
	.blue-wrap .ttl-cmn-05 {
		margin-top: 0;
	}
}

.form-wrap {
	padding: 60px 0 90px;
	background-color: #D8DBE5;
	margin-top: 80px;
}
.ttl-cmn-03 + .form-wrap,
.ttl-cmn-04 + .form-wrap {
	margin-top: 20px;
}
.form-inner {
	width: 100%;
	max-width: 780px;
	margin: -30px auto 0;
	padding: 0 20px;
}
.form-table {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	width: 100%;
}
.form-table dt {
	width: 100%;
	margin-top: 30px;
	font-weight: bold;
}
.form-table dt.req::after {
	content: '（必須）';
	display: inline-block;
	color: #ec1c24;
	font-size: 1.2rem;
	margin: -2px 0 0 3px;
}
.form-table dd {
	width: 100%;
	padding: 5px 0 0;
}
.form-table dd.check-wrap {
	padding: 5px 0;
}
@media only screen and (max-width: 768px) {
	.form-wrap {
		width: auto;
		margin: 0 -20px;
		padding: 50px 0 90px;
		margin-top: 50px;
	}
	.ttl-cmn-03 + .form-wrap,
	.ttl-cmn-04 + .form-wrap {
		margin-top: 20px;
	}
	.form-inner {
		width: 100%;
		max-width: 780px;
		margin: -30px auto 0;
		padding: 0 20px;
	}
	.form-table {
		margin-top: 10px;
	}
	.form-table dt {
		width: 100%;
	}
	.form-table dd {
		width: 100%;
		padding: 5px 0 0;
	}
	.form-table dd.check-wrap {
		padding: 0;
	}
}
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
	font-size: 1.5rem;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	background-color: #fff;
	border: 1px solid #BFBFBF;
	padding: 12px 10px;
	width: 100%;
}
@media only screen and (max-width: 768px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	select,
	textarea {
		padding: 12px 10px;
	}
}
select {
	width: auto;
	min-width: 360px;
	padding-right: 28px;
	background: url(./img/ico_arrow_select.svg) no-repeat center right 9px;
	background-color: #fff;
}
@media only screen and (max-width: 768px) {
	select {
		min-width: 1px;
	}
}
textarea {
	height: 240px;
}
.checkbox {
	margin-right: 60px;
}
.checkbox input[type="checkbox"] {
	display: none;
}
.checkbox input[type="checkbox"]:checked + span::before {
	background-color: #00053a;
}
.checkbox input[type="checkbox"]:checked + span::after {
	transform: rotate(45deg) scale(1);
}
.checkbox span {
	display: inline-block;
	position: relative;
	padding: 10px 0 10px 43px;
	cursor: pointer;
}
.checkbox span::before {
	content: '';
	position: absolute;
	width: 29px;
	height: 29px;
	background-color: #fff;
	border: 1px solid #BFBFBF;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease;
}
.checkbox span::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 12px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	left: 11px;
	top: calc(50% - 7px);
	transform: scale(0);
	transition: all .3s ease;
}
@media only screen and (max-width: 768px) {
	.checkbox span {
		padding: 6px 0 6px 35px;
	}
}
.btn-submit {
	position: relative;
	width: 250px;
	margin: auto;
}
.btn-submit::before {
  content: '';
  width: 25px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: #EBEBEB;
	z-index: 1;
}
.btn-submit::after {
  content: '';
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  background-color: #00053a;
  transition: .3s;
	z-index: 1;
}
.btn-submit:hover::after {
	width: 25px;
	transition: .3s;
}
input[type="submit"] {
	font-size: 1.5rem;
	text-align: left;
	transition: all .3s ease;
	position: relative;
	display: block;
	padding: 0 20px;
	width: 250px;
	height: 70px;
	line-height: 68px;
	background-color: #fff;
	border: 1px solid #00053a;
	font-weight: bold;
	color: #333;
	margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
	input[type="submit"] {
		line-height: 70px;
		padding: 0 20px;
		margin-top: 10px;
	}
}
/* プライバシーポリシーチェック */
.wpcf7-form-control-wrap.privacy .wpcf7-list-item {
	display: block;
	text-align: center;
  margin: 0;
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item input[type="checkbox"] {
  display: none;
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
  background-color: #00053a;
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #BFBFBF;
	background-color: #fff;
  left: 0;
  top: calc(50% - 11px);
  transition: all .5s ease;
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  transform: scale(1) rotate(-45deg);
}
.wpcf7-form-control-wrap.privacy .wpcf7-list-item .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  left: 4px;
  top: calc(50% - 6px);
  width: 14px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scale(0);
  transition: all .5s ease;
}
/* プライバシーポリシーチェック */

/* ページネーション */
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi a.larger, .wp-pagenavi a.smaller,
.wp-pagenavi span , .wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
  padding: 6px;
  border: none;
  color: #fff;
  background-color: #C4C4C4;
  display: inline-block;
  width: 35px;
  height: 35px;
  font-weight: bold;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border: none;
  background-color: #00053a;
  padding: 6px;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  background-color: #fff;
  color: #fff;
  border: solid 1px #00053a;
  padding: 5px;
  position: relative;
}
.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover {
  border: solid 1px #00053a;
  background-color: #00053a;
  color: #00053a;
}
.wp-pagenavi a.nextpostslink::before, .wp-pagenavi a.previouspostslink::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 9px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #00053a #00053a transparent transparent;
  transform: rotate(45deg);
}
.wp-pagenavi a.previouspostslink::before {
  left: 14px;
  transform: rotate(-135deg);
}
.wp-pagenavi a.nextpostslink:hover::before,
.wp-pagenavi a.previouspostslink:hover::before {
  border-color: #fff #fff transparent transparent;
}
/* ページネーション */
