@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* ---------------------------------------
  基本情報
-----------------------------------------*/

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

@media screen and (max-width: 767px) {
	html {
		font-size: calc(100vw * 10 / 750);
	}
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: 400;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	letter-spacing: 0.1em;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
	text-decoration: none;
}

select::-ms-expand {
	display: none;
}

button:hover {
	cursor: pointer;
}

img,
object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	img {
		width: 100%;
		/* width: inherit !important; */
	}
}


/* responsive
--------------------------------*/

@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}


/* base
--------------------------------*/

body {
	color: #333333;
	font-size: 1.0rem;
	text-align: left;
	min-width: 1180px;
}

main {
	display: block;
	overflow: hidden;
	padding-top: 125px;
}

section {
	position: relative;
}

.wrap {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
	letter-spacing: 0.1em;
}

sup {
	vertical-align: text-top;
	font-size: smaller;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.left {
	float: left;
}

.right {
	float: right;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.bold,
strong {
	font-weight: bold;
	font-weight: 700;
}

.link_txt {
	text-decoration: underline;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


/*font*/

.en {
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
}

._w {
	color: #fff;
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}

	.fade {
		transition: opacity 0.3s ease;
	}

	.fade:hover {
		opacity: 0.8;
		cursor: pointer;
	}
}

@media screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}

	main {
		padding-top: 50px;
	}

	.wrap {
		width: 84%;
	}

	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 2.4rem;
	}

	.sp_block {
		display: block;
	}
}


/* ---------------------------------------
scroll-animation
-----------------------------------------*/

/*fade*/
.fadeup {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

@media screen and (min-width: 769px) {
	.fadein-pc {
		opacity: 0;
		transition: opacity 1s;
	}

	.is-show .fadein-pc {
		opacity: 1;
	}
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.onload.is-show .fadein,
.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}

.delay1 {
	transition-delay: .5s !important;
}

.delay2 {
	transition-delay: 1s !important;
}

.delay3 {
	transition-delay: 1.5s !important;
}

.delay4 {
	transition-delay: 2s !important;
}

.delay5 {
	transition-delay: 2.5s !important;
}

.delay6 {
	transition-delay: 3s !important;
}

.delay7 {
	transition-delay: 3.5s !important;
}

.delay8 {
	transition-delay: 4s !important;
}

.delay9 {
	transition-delay: 4.5s !important;
}

.delay10 {
	transition-delay: 5s !important;
}

/*passing*/
.passing_img {
	position: relative;
	overflow: hidden;
}

.passing_img:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #00a0e9;
	z-index: 1;
	transition: left .4s cubic-bezier(.55, .055, .675, .19) .4s, width .4s cubic-bezier(.215, .61, .355, 1);
}

.passing_img.is-show:before,
.is-show .passing_img:before {
	left: 100%;
	width: 100%;
}

.passing_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0s .4s;
}

.passing_img.is-show img,
.is-show .passing_img img {
	opacity: 1;
}


/* ---------------------------------------
  header
-----------------------------------------*/
#header {
	width: 100%;
	height: 125px;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	overflow: hidden;
}


#header .h_top {
	padding: 14px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .logo {
	display: inline-block;
	width: 270px;
}

#header nav .gnavi {
	display: flex;
	justify-content: space-between;
}

#header nav .gnavi > li {
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

#header nav .gnavi > li > a {
	position: relative;
	display: block;
	padding: 1.175em 1em 1.2em;
	transition: .3s ease;
}

#header nav .gnavi .sub {
	display: none;
}

#header .contact {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

#header .contact .tel .num {
	color: #0066cc;
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1;
	letter-spacing: 0.06em;
}

#header .contact .tel .time {
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0;
	margin-top: 3px;
}

#header .contact .c_btn {
	margin-left: 20px;
	margin-top: 0;
}

#header .contact .c_btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 186px;
	height: 38px;
	color: #0066cc;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	background-color: #fff;
	border: 1px solid #0066cc;
}

#header .contact .c_btn a .ico {
	display: inline-block;
	line-height: 1;
	width: 19px;
	height: 14px;
	margin-right: 10px;
	margin-top: 1px;
}

#header .contact .c_btn a .ico img {
	width: 100%;
	vertical-align: top;
}


@media screen and (min-width: 768px) {

	#header nav {
		border-top: 1px solid #eaeaea;
	}

	#header nav .gnavi > li > a::before {
		content: "";
		width: 100%;
		height: 4px;
		background-color: #0066cc;
		position: absolute;
		left: 0;
		bottom: 0;
		transform: scale(0);
		transition: .3s ease;
	}

	#header nav .gnavi > li a:hover::before,
	#header nav .gnavi > li.current > a::before {
		transform: scale(1)
	}

	.safari #header nav .gnavi > li > a::before {
		transform: scale(1);
		width: 0;
		right: 0;
		margin: 0 auto;
	}

	.safari #header nav .gnavi > li > a:hover::before,
	.safari #header nav .gnavi > li.current > a::before {
		width: 100%;
	}

	#header .contact .c_btn a:hover {
		color: #fff;
		background-color: #0066cc;
	}

	#header .contact .c_btn a .ico {
		background: url(../img/common/ico_mail_w.svg) no-repeat center / 100% auto;
	}

	#header .contact .c_btn a .ico img {
		transition: .3s ease;
	}

	#header .contact .c_btn a:hover img {
		opacity: 0;
	}
}

@media screen and (max-width: 767px) {

	#header {
		height: 50px;
	}

	#header .h_top {
		position: relative;
		width: 100%;
		height: 100%;
		padding: 15px 4rem;
	}

	#header .logo {
		width: 170px;
	}

	#header .menu-trigger {
		display: block;
		width: 50px;
		height: 50px;
		text-align: center;
		position: absolute;
		right: 2rem;
		top: 0;
		z-index: 101;
	}

	#header .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 26px;
		height: 2px;
		background-color: #0066cc;
	}

	#header .menu-trigger span:nth-of-type(1) {
		top: 20px;
	}

	#header .menu-trigger span:nth-of-type(2) {
		top: 28px;
	}

	#header.navOpen .menu-trigger span:nth-of-type(1) {
		top: 25px;
		transform: rotate(-21deg);
	}

	#header.navOpen .menu-trigger span:nth-of-type(2) {
		top: 25px;
		transform: rotate(21deg);
	}

	#header nav {
		display: none;
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		width: 100%;
		height: calc(100% - 50px);
		max-height: 100%;
		background-color: #fff;
		padding: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	#header .menuwrap {
		width: 100%;
		padding: 2rem 6rem 10rem
	}

	#header nav .gnavi {
		display: block;
	}

	#header nav .gnavi > li {
		position: relative;
		border-bottom: 1px solid #c1c1c1;
	}

	#header nav .gnavi > li:last-child {
		border: none;
	}

	#header nav .gnavi > li > a {
		color: #0066cc;
		font-size: 2.8rem;
		line-height: 2;
		padding: 3.5rem 0;
	}

	#header nav .gnavi .acd {
		width: 5rem;
		height: 12.6rem;
		position: absolute;
		right: 0;
		top: 0;
	}

	#header nav .gnavi .acd::before {
		content: "";
		width: 1.2rem;
		height: 1.2rem;
		border-right: .3rem solid #0066cc;
		border-bottom: .3rem solid #0066cc;
		transform: rotate(45deg);
		position: absolute;
		right: 2rem;
		top: 6rem;
		transition: .3s ease;
	}

	#header nav .gnavi .acd.acd-open::before {
		transform: rotate(45deg) scale(-1, -1);
	}

	#header nav .gnavi .sub {
		display: none;
		padding-bottom: 3rem;
	}

	#header nav .gnavi .sub.col2 {
		display: flex;
		flex-wrap: wrap;
	}

	#header nav .gnavi .sub li {
		font-size: 2.4rem;
		margin-bottom: 1rem;
	}

	#header nav .gnavi .sub.col2 li {
		width: 50%;
	}

	#header nav .gnavi .sub li a {
		display: inline-block;
	}

	#header .contact {
		display: block;
		margin-top: 5rem;
	}

	#header .contact .tel {
		margin-top: 5.6rem;
	}

	#header .contact .tel .num {
		font-size: 6rem;
		line-height: 1;
		letter-spacing: 0.06em;
	}

	#header .contact .tel .time {
		font-size: 2.4rem;
		letter-spacing: 0.1em;
		margin-top: 1rem;
	}

	#header .contact .c_btn {
		margin-left: 0;
	}

	#header .contact .c_btn a {
		width: 100%;
		height: 9rem;
		color: #fff;
		font-size: 2.8rem;
		background-color: #0066cc;
	}

	#header .contact .c_btn a .ico {
		width: 3.3rem;
		height: 2.5rem;
		margin-right: 2rem;
		margin-top: .2rem;
	}

}

/* ---------------------------------------
  main common
-----------------------------------------*/
/*bg*/
.bg {
	background-color: #0066cc;
}

/*slider*/
.slick-slider {
	opacity: 0;
}

.slick-slider.slick-initialized {
	opacity: 1;
}

/*btn*/
.btn {
	margin-top: 60px;
}

.btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 356px;
	height: 60px;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: 10px 64px 10px 60px;
	background-color: #0066cc;
	z-index: 1;
	overflow: hidden;
	transition: .4s ease;
}

.btn a::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #00a0e9;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
	transition: .4s ease;
}

a .arw {
	width: 4px;
	height: 4px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -2px;
	transition: .4s ease;
	will-change: background-color;
}

a .arw::before,
a .arw::after {
	content: "";
	position: absolute;
	transition: .4s ease;
	will-change: transform;
}

a .arw::before {
	width: 11px;
	height: 2px;
	background-color: #fff;
	border-radius: 1px;
	left: -18px;
	top: 1px;
}

a .arw::after {
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	border-radius: 1px;
	right: 0;
	top: 2px;
	transform: rotate(45deg) scale(0);
	transform-origin: right top;
}

.btn._w a {
	color: #0066cc;
	background-color: #fff;
	border: 1px solid #fff;
}

.btn._w a::before {
	/*	content: none;*/
	background-color: #0066cc;
}

.btn._w a .arw {
	background-color: #0066cc;
}

.btn._w a .arw::before {
	background-color: #0066cc;
}

.btn._w a .arw::after {
	border-right: 2px solid #0066cc;
	border-top: 2px solid #0066cc;
}

.btn_s {
	margin-top: 20px;
}

.btn_s a,
.btn_s span.btntxt {
	display: inline-block;
	text-align: left;
	position: relative;
	min-width: 128px;
	height: auto;
	color: #0066cc;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: 0 40px 10px 0;
}

.btn_s a::before,
.btn_s span.btntxt::before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #0066cc;
	border-radius: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 1s ease;
	will-change: transform;
}

.btn_s a .arw,
.btn_s span.btntxt .arw {
	right: 0;
	margin-top: -6px;
}

.btn_s a .arw,
.btn_s span.btntxt .arw {
	background-color: #0066cc;
}

.btn_s a .arw::before,
.btn_s span.btntxt .arw::before {
	background-color: #0066cc;
}

.btn_s a .arw::after,
.btn_s span.btntxt .arw::after {
	border-right: 2px solid #0066cc;
	border-top: 2px solid #0066cc;
}

.btn_s._w a,
.btn_s._w span.btntxt {
	color: #fff;
}

.btn_s._w a::before,
.btn_s._w span.btntxt::before {
	background-color: #fff;
}

.btn_s._w a .arw,
.btn_s._w span.btntxt .arw {
	background-color: #fff;
}

.btn_s._w a .arw::before,
.btn_s._w span.btntxt .arw::before {
	background-color: #fff;
}

.btn_s._w a .arw::after,
.btn_s._w span.btntxt .arw::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
}

.btn_s._back a,
.btn_s._back span.btntxt {
	padding: 0 0 10px 40px;
}

.btn_s._back a .arw,
.btn_s._back span.btntxt .arw {
	right: auto;
	left: 0;
}

.btn_s._back a .arw::before,
.btn_s._back span.btntxt .arw::before {
	left: auto;
	right: -18px;
}

.btn_s._back a .arw::after,
.btn_s._back span.btntxt .arw::after {
	border: none;
	border-left: 2px solid #0066cc;
	border-top: 2px solid #0066cc;
	transform: rotate(-45deg) scale(0);
	transform-origin: left top;
	left: 0;
}

@media screen and (min-width: 768px) {
	.btn a:hover::before {
		left: 0;
	}

	a:hover .arw {
		background-color: transparent !important;
	}

	a:hover .arw::before {
		transform: translateX(8px);
	}

	a:hover .arw::after {
		transform: rotate(45deg) scale(1);
	}

	.btn._w a:hover {
		color: #fff;
	}

	.btn._w a:hover .arw::before {
		background-color: #fff;
	}

	.btn._w a:hover .arw::after {
		border-color: #fff;
	}

	.btn_s a:hover::before {
		animation: line_anime .6s ease;
	}

	.btn_s._back a:hover .arw::before {
		transform: translateX(-8px);
	}

	.btn_s._back a:hover .arw::after {
		transform: rotate(-45deg) scale(1);
	}

}

@media screen and (max-width: 767px) {

	/*btn*/
	.btn {
		margin-top: 8rem;
	}

	.btn a {
		min-width: 53rem;
		height: 9rem;
		font-size: 2.4rem;
		padding: 2rem 9rem 2rem 8.6rem;
	}

	a .arw {
		width: .5rem;
		height: .5rem;
		right: 3.4rem;
		margin-top: -.25rem;
	}

	a .arw::before {
		width: 1.8rem;
		height: .3rem;
		border-radius: .15rem;
		left: -2.6rem;
		top: .1rem;
	}

	a .arw::after {
		content: none;
	}

	.btn_s {
		margin-top: 6rem;
	}

	.btn_s a,
	.btn_s span.btntxt {
		min-width: 18.6rem;
		font-size: 2.4rem;
		padding: 0 5rem 1.2rem 0;
	}

	.btn_s a::before,
	.btn_s span.btntxt::before {
		height: .3rem;
		border-radius: .15rem;
	}

	.btn_s a .arw,
	.btn_s span.btntxt .arw {
		right: 0;
		margin-top: -.8rem;
	}

	.btn_s._back a .arw::before,
	.btn_s span.btntxt .arw::before {
		right: -2.6rem;
	}

	.btn_s._back a .arw::after,
	.btn_s._back span.btntxt .arw::after {
		content: none;
	}
}

@keyframes line_anime {
	0% {
		left: 0;
		transform: scale(1, 1);
		transform-origin: right;
	}

	50% {
		transform: scale(0, 1);
		transform-origin: right;
	}

	51% {
		transform: scale(0, 1);
		transform-origin: left;
	}

	100% {
		transform: scale(1, 1);
		transform-origin: left;
	}
}

/*pagettk*/
#pagettl {
	height: 210px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#pagettl::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 102, 204, .8);
	position: absolute;
	left: 0;
	top: 0;
}

#pagettl .wrap {
	height: 100%;
	display: flex;
	align-items: center;
}

#pagettl .ttl {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	line-height: 1;
}

#pagettl .ttl span {
	position: relative;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	line-height: 1.5;
}

#pagettl .ttl span.ja {
	font-size: 4rem;
	letter-spacing: 0.15em;
}

#pagettl .ttl span.en {
	color: #b2d1f0;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding-left: 38px;
	margin-left: 30px;
	position: relative;
	top: .2em;
}

#pagettl .ttl span.en::before,
#pagettl .ttl span.en::after {
	content: "";
	background-color: #b2d1f0;
	position: absolute;
}

#pagettl .ttl span.en::before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	left: 0;
	top: 9px;
}

#pagettl .ttl span.en::after {
	width: 20px;
	height: 2px;
	border-radius: 1px;
	left: 6px;
	top: 10px;
}

.breadcrumb {
	padding: 5px 0 4px;
	border-bottom: 1px solid #999999;
}

/*
.breadcrumb .list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
*/

.breadcrumb .list li {
	position: relative;
	display: inline;
	color: #0066cc;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin-right: 2.5em;
}

.breadcrumb .list li:last-child {
	margin-right: 0;
}

.breadcrumb .list li::after {
	content: "";
	display: inline;
	width: 7px;
	height: 7px;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	position: absolute;
	right: -1.4em;
	top: .5em;
	transform: rotate(-45deg);
}

.breadcrumb .list li:last-child::after {
	display: none;
}

.breadcrumb .list li a {
	color: #999999;
	/*	display: block;*/
}

@media screen and (min-width: 768px) {
	.breadcrumb .list li a:hover {
		opacity: .8;
	}
}

@media screen and (max-width: 767px) {
	#pagettl {
		height: 30rem;
	}

	#pagettl .ttl {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	#pagettl .ttl span.ja {
		font-size: 5.7rem;
	}

	#pagettl .ttl span.en {
		font-size: 2.4rem;
		padding-left: 6rem;
		margin-left: 0;
		top: 0;
	}

	#pagettl .ttl span.en::before {
		width: .6rem;
		height: .6rem;
		top: 1.6rem;
	}

	#pagettl .ttl span.en::after {
		width: 3rem;
		height: .4rem;
		border-radius: .2rem;
		left: .9rem;
		top: 1.7rem;
	}

	.breadcrumb {
		padding: .6rem 0 .5rem;
	}

	.breadcrumb .list li {
		font-size: 2.1rem;
		margin-right: 2em;
	}

	.breadcrumb .list li::after {
		width: .9rem;
		height: .9rem;
		top: 1.25rem;
		right: -1.1em;
	}
}

.contents_wrap {
	padding: 100px 0;
}

@media screen and (max-width: 767px) {
	.contents_wrap {
		padding: 15rem 0;
	}
}

/* secttl
--------------------------------*/

.secttl {
	line-height: 1;
	margin-bottom: 45px;
}

.secttl span {
	position: relative;
	display: inline-block;
	font-weight: 700;
	line-height: 1.5;
}

.secttl span.en {
	color: #0066cc;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding-left: 38px;
}

.secttl span.en::before,
.secttl span.en::after {
	content: "";
	background-color: #0066cc;
	position: absolute;
}

.secttl span.en::before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	left: 0;
	top: 9px;
}

.secttl span.en::after {
	width: 20px;
	height: 2px;
	border-radius: 1px;
	left: 6px;
	top: 10px;
}

.secttl.tar span.en {
	margin-right: 0.8rem;
}

.secttl span.ja {
	font-size: 4rem;
}

.secttl span.ja.txt_s {
	font-weight: 500;
	font-size: 2rem;
	margin: .5em 0 .1em;
}

.secttl._w {
	color: #fff;
}

.secttl._w .en {
	color: #b2d1f0;
}

.secttl._w span::before,
.secttl._w span::after {
	background-color: #b2d1f0;
}


@media screen and (max-width: 767px) {
	.secttl {
		margin-bottom: 7rem;
	}

	.secttl span.en {
		font-size: 2.4rem;
		padding-left: 6rem;
		margin-bottom: 1rem;
	}

	.secttl span.en::before {
		width: .6rem;
		height: .6rem;
		top: 1.4rem;
	}

	.secttl span.en::after {
		width: 3rem;
		height: .4rem;
		border-radius: .2rem;
		left: .9rem;
		top: 1.5rem;
	}

	.secttl span.ja {
		font-size: 6rem;
		line-height: 1.2;
	}

	.secttl span.ja.txt_s {
		font-size: 3rem;
		margin: .3em 0 .5em;
	}
}

/* other
--------------------------------*/
#sec_other {
	padding: 100px 0;
}

#sec_other .bg_wave {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/service/other_bg_pc.png");
	background-size: cover;
	z-index: -1;
}

#sec_other .bg_wave .water {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/service/other_bg_pc.png");
	background-size: cover;
	filter: url("#wave-filter");
}

#sec_other .list .item {
	width: 542px;
	height: 278px;
}

#sec_other .list .item a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
	background-size: cover;
	background-position: center;
	padding: 45px 50px 25px;
}

#sec_other .list .item a::before,
#sec_other .list .item a::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

#sec_other .list .item a::before {
	background-color: rgba(0, 102, 204, .7);
	z-index: 1;
	transition: .3s ease;
}

#sec_other .list .item a::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 100%);
	opacity: 0;
	mix-blend-mode: multiply;
	transition: .3s ease;
}

#sec_other .list .item .inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	z-index: 2;
}

#sec_other .list .item .ttl {
	position: relative;
	line-height: 1;
	margin-bottom: 1em;
}

#sec_other .list .item .ttl span.en,
#sec_other .list .item .ttl span.ja {
	position: relative;
	display: inline-block;
	font-weight: 700;
	line-height: 1.5;
}

#sec_other .list .item .ttl span.en {
	color: #7fb2e5;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding-left: 38px;
	transition: .3s ease;
}

#sec_other .list .item .ttl span.en::before,
#sec_other .list .item .ttl span.en::after {
	content: "";
	background-color: #7fb2e5;
	position: absolute;
	transition: .3s ease;
}

#sec_other .list .item .ttl span.en::before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	left: 0;
	top: 9px;
}

#sec_other .list .item .ttl span.en::after {
	width: 20px;
	height: 2px;
	border-radius: 1px;
	left: 6px;
	top: 10px;
}

#sec_other .list .item .ttl.tar span.en {
	margin-right: 0.8rem;
}

#sec_other .list .item .ttl span.ja {
	font-size: 3rem;
}

#sec_other .list .item .ttl .arw {
	width: 5px;
	height: 5px;
	top: auto;
	bottom: 20px;
	right: 0;
}

#sec_other .list .item .ttl .arw::before {
	width: 18px;
	height: 3px;
	border-radius: 2px;
	left: -26px;
}

#sec_other .list .item .ttl .arw::after {
	width: 11px;
	height: 11px;
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
	border-radius: 2px;
	top: 2.5px;
}

#sec_other .list .item .txt {
	text-align: justify;
}

#sec_other .list .item._about a {
	background-image: url(../img/service/other_about_bg_pc.jpg);
}

#sec_other .list .item._works a {
	background-image: url(../img/service/other_works_bg_pc.jpg);
}

#sec_other .list .item._technology a {
	background-image: url(../img/service/other_technology_bg_pc.jpg);
}

#sec_other .list .item._company a {
	background-image: url(../img/service/other_company_bg_pc.jpg);
}

#sec_other .list .item._service a {
	background-image: url(../img/service/other_service_bg_pc.jpg);
}

@media screen and (min-width: 768px) {
	#sec_other .list .item:nth-child(n + 3) {
		margin-top: 16px;
	}

	#sec_other .list .item a:hover::before {
		opacity: 0;
		transition: .3s ease;
	}

	#sec_other .list .item a:hover::after {
		opacity: 0.6;
		transition: .1s ease;
	}

	#sec_other .list .item a:hover .ttl .en {
		color: #0066cc;
	}

	#sec_other .list .item a:hover .ttl .en::before,
	#sec_other .list .item a:hover .ttl .en::after {
		background-color: #0066cc;
	}

	#sec_other .list .item a:hover .ttl .arw::before {
		transform: translateX(10px);
	}
}

@media screen and (max-width: 767px) {
	#sec_other {
		padding: 15rem 0;
	}

	#sec_other .bg_wave {
		background-image: url("../img/service/other_bg_sp.png");
	}

	#sec_other .bg_wave .water {
		background-image: url("../img/service/other_bg_sp.png");
	}

	#sec_other .list .item {
		width: 100%;
		height: 35rem;
	}

	#sec_other .list .item + .item {
		margin-top: 2.4rem;
	}

	#sec_other .list .item a {
		padding: 4.5rem 4rem 2.75rem;
	}

	#sec_other .list .item a::before {
		content: none;
	}

	#sec_other .list .item a::after {
		opacity: .6;
	}

	#sec_other .list .item .ttl span.en {
		color: #0066cc;
		font-size: 2.4rem;
		padding-left: 6rem;
		margin-bottom: .3em;
	}

	#sec_other .list .item a .ttl .en::before,
	#sec_other .list .item a .ttl .en::after {
		background-color: #0066cc;
	}

	#sec_other .list .item .ttl span.en::before {
		width: .6rem;
		height: .6rem;
		top: 1.6rem;
	}

	#sec_other .list .item .ttl span.en::after {
		width: 3rem;
		height: .4rem;
		border-radius: .2rem;
		left: .9rem;
		top: 1.7rem;
	}

	#sec_other .list .item .ttl span.ja {
		font-size: 4rem;
	}

	#sec_other .list .item .ttl .arw {
		width: .8rem;
		height: .8rem;
		bottom: 2.5rem;
	}

	#sec_other .list .item .ttl .arw::before {
		width: 2.8rem;
		height: .6rem;
		border-radius: .3rem;
		left: -4rem;
	}

	#sec_other .list .item .ttl .arw::after {
		content: none;
	}

	#sec_other .list .item .txt {
		line-height: 1.75;
		letter-spacing: 0.05em;
	}

	#sec_other .list .item._about a {
		background-image: url(../img/common/other_about_bg_sp.jpg);
	}

	#sec_other .list .item._works a {
		background-image: url(../img/common/other_works_bg_sp.jpg);
	}

	#sec_other .list .item._technology a {
		background-image: url(../img/common/other_technology_bg_sp.jpg);
	}

	#sec_other .list .item._company a {
		background-image: url(../img/common/other_company_bg_sp.jpg);
	}

	#sec_other .list .item._service a {
		background-image: url(../img/common/other_service_bg_sp.jpg);
	}
}

/*pagetop*/
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}

#pagetop a {
	position: relative;
	display: block;
	width: 30px;
	height: 150px;
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 1.6rem;
	line-height: 32px;
	letter-spacing: 0.1em;
	padding-top: 2.8em;
	border-radius: 15px;
	background-color: #fff;
	overflow: hidden;
	z-index: 1;
}

#pagetop a::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 160, 233, 1) 0%, rgba(0, 126, 202, 1) 100%);
	opacity: .75;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#pagetop a .arw {
	width: 4px;
	height: 4px;
	right: 13px;
	top: 14px;
	margin: 0 auto;
}

#pagetop a .arw::before {
	width: 2px;
	height: 11px;
	left: 1px;
	top: auto;
	bottom: -17px;
}

#pagetop a .arw::after {
	right: 2px;
	top: 0;
	transform: rotate(-45deg) scale(0);
	transform-origin: right top;
}

@media screen and (min-width: 768px) {
	#pagetop a:hover .arw::before {
		transform: translateY(-9px);
	}

	#pagetop a:hover .arw::after {
		transform: rotate(-45deg) scale(1);
	}
}

@media screen and (max-width: 767px) {
	#pagetop {
		right: 1.4rem;
		bottom: 1.4rem;
	}

	#pagetop a {
		width: 4.6rem;
		height: 20rem;
		font-size: 2rem;
		line-height: 4.6rem;
		padding-top: 3em;
		border-radius: 2.3rem;
	}

	#pagetop a .arw {
		width: .5rem;
		height: .5rem;
		right: 2rem;
		top: 1.4rem;
	}

	#pagetop a .arw::before {
		width: .3rem;
		height: 1.8rem;
		bottom: -2.6rem;
	}

}

/* ---------------------------------------
  フッター
-----------------------------------------*/
/*f_contact*/
#footer .f_contact {
	padding: 100px 0;
	background-color: #f2f7fc;
	background-image: url(../img/common/bg_dot.png);
}

#footer .f_contact .lead {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.9;
	margin-bottom: 1.25em;
}

#footer .f_contact .c_btn {
	width: 533px;
	height: 131px;
}

#footer .f_contact .c_btn a {
	display: block;
	position: relative;
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 20px;
	background-color: #0066cc;
	z-index: 1;
	overflow: hidden;
}

#footer .f_contact .c_btn a::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #00a0e9;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
	transition: .4s ease;
}

#footer .f_contact .c_btn .ttl {
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: .6em;
}

#footer .f_contact .c_btn .ttl .ico {
	display: inline-block;
	line-height: 1;
	margin-right: 12px;
}

#footer .f_contact .c_btn .ttl .ico img {
	vertical-align: top;
}

#footer .f_contact .c_btn.mail .ttl .ico {
	width: 19px;
	height: 14px;
	vertical-align: -.1em;
}

#footer .f_contact .c_btn.tel .ttl .ico {
	width: 17px;
	height: 17px;
	vertical-align: -.05em;
}

#footer .f_contact .c_btn .txt {
	position: relative;
	display: inline-block;
	font-weight: 500;
	font-size: 1.8rem;
	padding: 0 2.5em;
	margin-top: .3em;
}

#footer .f_contact .c_btn .txt .arw {
	right: 0;
}

#footer .f_contact .c_btn .tel {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.2;
}

#footer .f_contact .c_btn .time {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: .3em;
}

/*f_menu*/
#footer .f_menu {
	padding: 60px 0;
}

#footer .f_menu .wrap {
	justify-content: flex-start;
	white-space: nowrap;
}

#footer .f_menu .nav {
	padding: 0 40px;
}

#footer .f_menu .nav + .nav {
	border-left: 1px solid #fff;
}

#footer .f_menu .nav:first-child {
	padding-left: 0;
}

#footer .f_menu .nav:last-child {
	padding-right: 0;
}

#footer .f_menu .nav a {
	display: inline-block;
	letter-spacing: 0.05em;
	transition: .3s ease;
}

#footer .f_menu .nav > li {
	display: flex;
	align-items: flex-start;
	line-height: 1.5;
	font-weight: 500;
}

#footer .f_menu .nav > li + li {
	margin-top: 1.5em;
}

#footer .f_menu .nav > li > a {
	width: 170px;
}

#footer .f_menu .nav .sub {
	margin-left: 25px;
	margin-top: 2px;
}

#footer .f_menu .nav .sub li {
	color: #d9e8f7;
	font-size: 1.4rem;
	line-height: 1.5;
}

#footer .f_menu .nav .sub li + li {
	margin-top: .65em;
}

/*f_main*/
#footer .f_main {
	padding: 60px 0;
}

#footer .f_main .info {
	min-width: 310px;
}

#footer .f_main .logo {
	width: 278px;
}

#footer .f_main .logo img {
	width: 100%;
}

#footer .f_main .address {
	font-weight: 500;
	margin-top: 1.5em;
}

#footer .f_main .number {
	margin-top: 10px;
}

#footer .f_main .number p {
	color: #0066cc;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
}

#footer .f_main .number p span {
	display: inline-block;
	min-width: 2.5em;
	text-align: justify;
}

#footer .f_main .img {
	width: 362px;
}

#footer .f_main .map {
	position: relative;
	width: 362px;
	height: 241px;
}

#footer .f_main .map iframe {
	width: 100%;
	height: 100%;
}

#footer .f_main .map .btn {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-top: 0;
}

#footer .f_main .map .btn a {
	min-width: inherit;
	width: auto;
	height: 34px;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	padding: 5px 38px 5px 32px;
}

#footer .f_main .map .btn a .arw {
	right: 10px;
}

#footer .copyright {
	color: #c1c1c1;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.035em;
	margin-top: 2em;
}

@media screen and (min-width: 768px) {

	#footer .f_contact .c_btn a:hover::before {
		left: 0;
	}

	#footer .f_menu .nav a:hover {
		opacity: .8;
	}
}

@media screen and (max-width: 767px) {
	#footer .f_contact {
		padding: 14rem 0 15rem;
		background-size: 1.5rem;
	}

	#footer .f_contact .lead {
		font-size: 3rem;
		margin-bottom: 2em;
	}

	#footer .f_contact .c_btn {
		width: 100%;
		height: 19.7rem;
	}

	#footer .f_contact .c_btn + .c_btn {
		margin-top: 3.6rem;
	}

	#footer .f_contact .c_btn a {
		padding: 3.2rem;
	}

	#footer .f_contact .c_btn .ttl .ico {
		margin-right: 1.6rem;
	}

	#footer .f_contact .c_btn.mail .ttl .ico {
		width: 2.9rem;
		height: 2.2rem;
	}

	#footer .f_contact .c_btn.tel .ttl .ico {
		width: 2.6rem;
		height: 2.6rem;
	}

	#footer .f_contact .c_btn .txt {
		font-size: 2.7rem;
	}

	#footer .f_contact .c_btn .tel {
		font-size: 3.9rem;
	}

	#footer .f_contact .c_btn .time {
		font-size: 2.1rem;
	}

	/*f_menu*/
	#footer .f_menu {
		padding: 14rem 0;
	}

	#footer .f_menu .wrap {
		justify-content: space-between;
	}

	#footer .f_menu .nav {
		padding: 0;
	}

	#footer .f_menu .nav + .nav {
		border-left: none;
	}

	#footer .f_menu .nav > li {
		display: block;
	}

	#footer .f_menu .nav > li + li {
		margin-top: 1.4em;
	}

	#footer .f_menu .nav > li.pc:first-of-type + li {
		margin-top: 0;
	}

	#footer .f_menu .nav > li.mt {
		margin-top: 2.2em;
	}

	#footer .f_menu .nav > li > a {
		width: auto;
	}

	#footer .f_menu .nav .sub {
		margin-left: 0;
		margin-top: .6rem;
	}

	#footer .f_menu .nav .sub li {
		font-size: 2.1rem;
		line-height: 1.45;
	}

	#footer .f_menu .nav .sub li + li {
		margin-top: .75em;
	}

	/*f_main*/
	#footer .f_main {
		padding: 15rem 0 0;
	}

	#footer .f_main .info {
		min-width: inherit;
	}

	#footer .f_main .logo {
		width: 49.4rem;
		margin: 0 auto;
	}

	#footer .f_main .logo img {
		width: 100%;
	}

	#footer .f_main .info {
		text-align: center;
	}

	#footer .f_main .number {
		display: inline-block;
		margin-top: 2.5rem;
	}

	#footer .f_main .number p {
		text-align: left;
		font-size: 5.076rem;
	}

	#footer .f_main .img {
		width: 100%;
		margin-top: 6rem;
	}

	#footer .f_main .map {
		margin-top: 6rem;
		width: 100%;
		height: 42rem;
	}

	#footer .f_main .map .btn a {
		height: 5.1rem;
		font-size: 2.1rem;
		padding: .5rem 5.8rem .5rem 4.8rem;
	}

	#footer .f_main .map .btn a .arw {
		right: 2rem;
	}

	#footer .copyright {
		text-align: center;
		font-size: 2.1rem;
		margin-top: 0;
		padding: 5rem 1rem;
	}
}


/* ---------------------------------------
  clearfix
-----------------------------------------*/

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}


/* Hides from IE Mac */

* html .cf {
	height: 1%;
}

.cf {
	display: block;
}


/* End Hack */