@charset "UTF-8";
/*=====================================
    高輪精機株式会社 2020.
	INDEX・共通用CSS
=====================================*/

/**リセット*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	border: 0;
	margin: 0;
	padding: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

*,
:after,
:before {
	box-sizing: inherit;
	background-repeat: no-repeat;
}

:after,
:before {
	text-decoration: inherit;
	vertical-align: inherit;
}

/*古いブラウザのHTML5表示ロールのリセット*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

/**共通*/
:root {
	--font-main: "a-otf-ud-shin-go-pr6n", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", sans-serif;
	/* --font-main: "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif; */
}


html {
	width: 100%;
	overflow-y: scroll;
	scroll-behavior: smooth;

}

body {
	font-family: var(--font-main);
	font-feature-settings: "expt";
	font-weight: normal;
	width: 100%;
	margin: 0;
	line-height: 1;
	overflow: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*ios　対応*/
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body::after {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	content: '';
	pointer-events: none;
	background-color: #fff;
	-webkit-transition: opacity 1.0s ease;
	transition: opacity 1.0s ease;
	z-index: 9999;
}

body.fadeout::after {
	opacity: 1;
}

/**safari*/
::selection {
	background: #ccd2dc;
}

/**firefox*/
::-moz-selection {
	background: #ccd2dc;
}

/**IE11*/
_:-ms-lang(x)::-ms-backdrop,
img {
	display: block;
}

/**Edge*/
_:-ms-lang(x)::backdrop,
img {
	display: block;
}

ol,
ul {
	list-style: none;
}

li {
	display: list-item;
	text-align: -webkit-match-parent;
}

/*
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  	content: none; 
}
*/
table {
	border-spacing: 0;
	border-collapse: collapse;
}

button {
	overflow: visible;
	font: inherit;
	color: inherit;
	border-style: none;
	text-transform: none;
	background-color: transparent;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
}

[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
	cursor: pointer;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
	-webkit-appearance: button;
}

a,
abbr[title] {
	text-decoration: none;
	background-color: transparent;
}

img {
	width: 100%;
}

.clearfix:after {
	display: block;
	clear: both;
	content: " ";
}

a.anchor {
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}

/*----------------------------
	グローバルナビゲーション
----------------------------*/
.overlay {
	position: fixed;
	display: block;
	visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, 0);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 301;
}

.side-open .overlay {
	visibility: visible;
	cursor: pointer;
	background: rgba(32, 51, 77, 0.4);
}

/* サイドメニュー */
.side-menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 260px;
	height: 100%;
	padding-top: 27vh;
	padding-left: 40px;
	text-align: left;
	font-size: 13px;
	background: #fff;
	transition: 0.5s;
	z-index: 400;
}

/**IE11*/
_:-ms-lang(x)::-ms-backdrop,
.side-menu {
	width: 300px;
}

.side-menu ul li a {
	color: #20334d;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.3em;
	line-height: 4em;
	position: relative;
}

.side-menu ul li a:before,
.side-menu ul li a:after {
	position: absolute;
	top: 1.5em;
	content: "";
	display: inline-block;
	width: 0%;
	height: 1px;
	background: #a0aab7;
	transition: 0.2s;
}

.side-menu ul li a:before {
	left: 50%;
}

.side-menu ul li a:after {
	right: 50%;
}

.side-menu ul li a:hover:before,
.side-menu ul li a:hover:after {
	width: 50%;
}

.side-menu ul li:last-of-type a {
	margin-right: 0;
}

/**タブレット・スマホ*/
@media only screen and (max-width: 768px) {
	.overlay {
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	.side-menu {
		width: 100%;
		right: -100%;
		padding-top: 10vh;
		padding-left: 0;
		text-align: center;
		z-index: 400;
	}

	.side-menu ul li a {
		line-height: 10vh;
	}

}

/**開閉用ボタン */
.side-menu-btn {
	position: fixed;
	display: none;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	/* background: #1960b0; */
	background: #fff;
	padding: 15px 0 0 12px;
	z-index: 500;
}

/**IE11*/
_:-ms-lang(x)::-ms-backdrop,
.side-menu-btn {
	padding: 8px 0 0 5px;
}

.side-menu-btn .trigger,
.side-menu-btn .trigger span {
	display: inline-block;
	transition: all .2s;
}

.side-menu-btn .trigger {
	position: relative;
	width: 30px;
	height: 19px;
	/* color: #fff; */
}

.side-menu-btn .trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #20334d;
	/* background-color: #fff; */
}

.side-menu-btn .trigger span:nth-of-type(1) {
	top: -2px;
}

.side-menu-btn .trigger span:nth-of-type(2) {
	top: 6px;
}

.side-menu-btn .trigger span:nth-of-type(3) {
	top: 14px;
}

.side-menu-btn .trigger span:nth-of-type(4) {
	bottom: -4px;
	font-size: 10px;
	font-weight: bold;
	background-color: transparent;
}

/**各ブラウザハック*/
/**safari*/
_::-webkit-full-page-media,
_:future,
:root .side-menu-btn .trigger span:nth-of-type(4) {
	font-size: 9px;
}

/**Edge*/
_:-ms-lang(x)::backdrop,
.side-menu-btn .trigger span:nth-of-type(4) {
	font-size: 9px;
}

/**IE11*/
_:-ms-lang(x)::-ms-backdrop,
.side-menu-btn .trigger span:nth-of-type(4) {
	font-size: 9px;
}

.side-menu-btn .trigger.active span:nth-of-type(1),
.side-menu-btn .trigger.active span:nth-of-type(3) {
	width: 10px;
}

.side-menu-btn .trigger.active span:nth-of-type(1) {
	-webkit-transform: translate(20px, 4.5px) rotate(45deg);
	transform: translate(20px, 4.5px) rotate(45deg);
}

.side-menu-btn .trigger.active span:nth-of-type(3) {
	-webkit-transform: translate(20px, -4.5px) rotate(-45deg);
	transform: translate(20px, -4.5px) rotate(-45deg);
}

.side-menu-btn .trigger.active span:nth-of-type(4) {}

/**タブレット・スマホ*/
/*@media only screen and (max-width: 840px) {*/
/*@media only screen and (max-width: 1200px) {*/
@media only screen and (max-width: 1259px) {
	.side-menu-btn {
		display: block;
		top: 0;
		right: 0;
		width: 39px;
		height: 39px;
		/* background: #1960b0; */
		background: #fff;
		padding: 20px 10px 5px 15px;
		z-index: 400;
		/* opacity: 0; */
	}

	#recruit .side-menu-btn {
		opacity: 0;
		transition: opacity 2s ease;
	}
}

/*Android*/
@media only screen and (max-width: 360px) {
	.side-menu-btn .trigger span:nth-of-type(4) {
		font-size: 0.55rem;
	}

}

/*------------------------------
	メインコンテンツ
------------------------------*/
.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 300;
}

/**タブレット・スマホ*/
@media only screen and (max-width: 840px) {
	.wrapper {
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		z-index: 300;
	}
}

/*サイドメニューオープン*/
.side-open .wrapper,
.side-open .overlay {
	-webkit-transform: translate3d(-300px, 0, 0);
	transform: translate3d(-300px, 0, 0);
}

.side-open .side-menu {
	right: 0;
}

/**タブレット・スマホ*/
@media only screen and (max-width: 840px) {

	.side-open .wrapper,
	.side-open .overlay {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes sdb {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes sdb {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/*------------------------------
	contents 01　会社について
------------------------------*/
#contents01 {
	overflow: hidden;
	width: 100%;
	background-color: #101e37;
}

#contents01 .box01 {
	position: relative;
	float: right;
	width: 50%;
	height: 100%;
	color: #fff;
	background-size: cover;
	background-color: #006ab7;
}

#contents01 .box01 .inner {
	position: absolute;
	top: 50%;
	left: 16%;
	width: 400px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	overflow: hidden;
}

#contents01 .box01 h3 {
	float: right;
	font-size: 22px;
	margin-left: 80px;
	letter-spacing: 0.2em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#contents01 .box01 p {
	float: right;
	padding-top: 70px;
	font-size: 14px;
	line-height: 3em;
	letter-spacing: 0.1em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#contents01 .box01 .link_btn a {
	position: absolute;
	display: block;
	left: -85px;
	bottom: 80px;
	width: 170px;
	color: #333;
	font-size: 14px;
	transition: 0.5s;
	text-align: center;
	line-height: 3.5em;
	text-decoration: none;
	letter-spacing: 0.2em;
	background-color: #fff;
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4);
	z-index: 2;
}

#contents01 .box01 .link_btn a:after {
	position: absolute;
	display: block;
	right: 25px;
	bottom: 24px;
	width: 12px;
	height: 1px;
	content: "";
	transition: 0.5s;
	border-bottom: 1px solid #aaa;
}

#contents01 .box01 .link_btn a:before {
	position: absolute;
	display: block;
	right: 24px;
	bottom: 25px;
	width: 6px;
	height: 1px;
	content: "";
	transition: 0.5s;
	transform: rotate(30deg);
	border-bottom: 1px solid #aaa;
}

#contents01 .box01 .link_btn a:hover {
	bottom: 90px;
	box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.2);
}

#contents01 .box01 .link_btn a:hover:after {
	right: 18px;
}

#contents01 .box01 .link_btn a:hover:before {
	right: 17px;
}

#contents01 .box02 {
	position: relative;
	overflow: hidden;
	float: left;
	width: 50%;
	height: 100vh;
	min-height: 768px;
}

#contents01 .box02:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	content: "";
	background-color: #101e37;
}

#contents01 .box02.animate:after {
	animation: secondaryImageOverlayIn 0.1s 0s cubic-bezier(0.77, 0, 0.175, 1),
		secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	animation-fill-mode: both;
}

#contents01 .box02 img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
}

#contents01 .box02.animate img {
	/*jsで.animateがついた時、写真がフェードイン*/
	animation: fadeIn 3.0s 0s;
	animation-fill-mode: both;
}

/**タブレット*/
@media only screen and (max-width: 1024px) {
	#contents01 .box01 {
		width: 40%;
	}

	#contents01 .box02 {
		width: 60%;
	}

	#contents01 .box01 .inner {
		max-width: 400px;
		width: 90%;
		margin-right: 50px;
		left: auto;
	}
}

/**1080px以下*/
@media only screen and (max-width: 1080px) {}

/**1000px以下*/
@media only screen and (max-width: 999px) {}

/**タブレット*/
@media only screen and (max-width: 840px) {}

@media only screen and (max-width: 768px) {
	#contents01 {
		height: 750px;
		min-width: 100%;
		background-color: #fff;
	}

	#contents01 .box01 {
		float: none;
		width: 100%;
		height: auto;
		min-width: 100%;
		padding-bottom: 70px;
	}

	#contents01 .box01 .inner {
		position: static;
		width: 80%;
		margin: 0 auto;
		-webkit-transform: none;
		transform: none;
	}

	#contents01 .box01 h3 {
		float: none;
		font-size: 2.0rem;
		width: 100%;
		margin: 80px 0 0;
		text-align: center;
		letter-spacing: 0.1em;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}

	#contents01 .box01 p {
		float: none;
		font-size: 14px;
		padding-top: 0;
		margin-top: 50px;
		line-height: 2em;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}

	#contents01 .box01 p br {
		display: none;
	}

	#contents01 .box01 .link_btn a {
		left: 0;
		right: 0;
		bottom: -22px;
		margin: 0 auto;
		box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
	}

	#contents01 .box01 .link_btn a:hover {
		bottom: -20px;
		box-shadow: 0px 30px 40px rgba(0, 0, 0, 0);
	}

	#contents01 .box02 {
		float: none;
		width: 100%;
		height: 60vw;
		min-width: 100%;
		min-height: 120vw;
	}

	#contents01 .box02.animate:after {
		animation: none;
	}

	#contents01 .box02 img {
		top: 40%;
		width: 100%;
	}
}

/**スマホ用*/
@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	#contents01 .box01 .inner {
		width: 90%;
	}

	#contents01 .box01 p {
		line-height: 1.8;
	}

	#contents01 .box01 h3 {
		font-size: 1.2rem;
		font-weight: bold;
	}

	#contents01 .box01 p .smp_br {
		display: block;
	}

	#contents01 .box01 p br {
		display: block;
	}
}

/*IE対応　縦組レイアウト*/
@media all and (-ms-high-contrast: none) {
	#contents01 h3 {
		width: 20px;
		padding-right: 10px;
	}
}

/*------------------------------
	contents 02　企業理念
------------------------------*/
#contents02 {
	position: relative;
	width: 100%;
	padding-top: 250px;
	background-color: #fff;
}

#contents02 h3 {
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 22px;
	height: 142px;
	margin: 0 auto;
	font-size: 22px;
	letter-spacing: 0.6em;
	font-feature-settings: "palt";
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#contents02 h3:before {
	position: absolute;
	display: block;
	top: -45px;
	width: 1px;
	height: 100px;
	right: -20px;
	content: "";
	background-color: #c9c9c9;
}

#contents02 h3:after {
	position: absolute;
	display: block;
	left: -20px;
	bottom: -30px;
	width: 1px;
	height: 100px;
	content: "";
	background-color: #c9c9c9;
}

#contents02 .five-s_main {
	position: relative;
	overflow: hidden;
	float: right;
	width: 100%;
	margin-top: 180px;
}

#contents02 .five-s_main:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	background-color: #006ab7;
}

#contents02 .five-s_main.animate:after {
	animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	animation-fill-mode: both;
}

#contents02 .five-s_main.animate img {
	/*jsで.animateがついた時、写真がフェードイン*/
	animation: fadeIn 5.0s 0.1s, scale 4.0s 0.4s;
	animation-fill-mode: both;
}

#contents02 .inner {
	position: relative;
	clear: both;
	width: 1000px;
	height: 750px;
	margin: 0 auto;
}

#contents02 .inner .rinen_copy p {
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
	bottom: 0;
	width: 140px;
	height: 330px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 2.5em;
	text-align: justify;
	text-justify: inter-ideograph;
	letter-spacing: 0.06em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#contents02 .inner .rinen_copy {
	position: absolute;
	top: 70px;
	/*-80px*/
	width: 250px;
	/*350*/
	height: 350px;
	margin-left: 50px;
	padding-top: 80px;
	background-color: #fff;
	box-shadow: 8px -8px 10px -6px rgba(0, 0, 0, .3);
}

#contents02 .inner .rinen_copy .link_btn {
	position: relative;
	overflow: hidden;
	width: 170px;
	margin: 380px auto 0;
	border-bottom: 1px solid #aaa;
}

#contents02 .inner .rinen_copy .link_btn:before {
	position: absolute;
	top: 0;
	left: -170px;
	width: 170px;
	height: 1px;
	content: '';
	background: #aaa;
	transition: 0.3s;
}

#contents02 .inner .rinen_copy .link_btn:hover:before {
	left: 0px;
}

#contents02 .inner .rinen_copy .link_btn a {
	position: relative;
	display: block;
	color: #333;
	font-size: 14px;
	text-align: center;
	line-height: 3.2em;
	letter-spacing: 0.2em;
	text-decoration: none;
}

#contents02 .inner .rinen_copy .link_btn a:after {
	position: absolute;
	display: block;
	right: 25px;
	bottom: 22px;
	width: 12px;
	height: 1px;
	content: "";
	transition: 0.3s;
	border-bottom: 1px solid #aaa;
}

#contents02 .inner .rinen_copy .link_btn a:before {
	position: absolute;
	display: block;
	right: 24px;
	bottom: 23px;
	width: 6px;
	height: 1px;
	content: "";
	transition: 0.3s;
	transform: rotate(30deg);
	border-bottom: 1px solid #aaa;
}

#contents02 .inner .rinen_copy .link_btn a:hover:after {
	right: 15px;
}

#contents02 .inner .rinen_copy .link_btn a:hover:before {
	right: 14px;
}

#contents02 .inner .rinen_copy.animate {
	animation: fadeIn 2.0s 1.0s;
	animation-fill-mode: both;
}

/**5S ver.1*/
#contents02 .inner .fade1 img,
#contents02 .inner .fade2 img,
#contents02 .inner .fade3 img,
#contents02 .inner .fade4 img,
#contents02 .inner .fade5 img {
	position: absolute;
	overflow: hidden;
	width: 80px;
	height: auto;
}

#contents02 .inner .fade1 img {
	top: 50px;
	right: 450px;
}

#contents02 .inner .fade2 img {
	top: 50px;
	right: 280px;
}

#contents02 .inner .fade3 img {
	top: 50px;
	right: 100px;
}

#contents02 .inner .fade4 img {
	top: 300px;
	right: 370px;
}

#contents02 .inner .fade5 img {
	top: 300px;
	right: 190px;
}

/**5S ver.2*/
#contents02 .inner .fade00 {
	position: absolute;
	top: 100px;
	right: 0;
	width: 501px;
	height: 501px;
	font-size: 0;
	margin-bottom: 100px;
	z-index: 0;
}

#contents02 .inner .fade00 div {
	display: table-cell;
	width: 500px;
	height: 500px;
}

/**5S ver.3*/
#contents02 .inner .fade02 {
	position: absolute;
	top: 50px;
	right: -150px;
	width: 700px;
	height: auto;
	font-size: 0;
}

/**1080px以下*/
@media only screen and (max-width: 1080px) {
	#contents02 .inner .fade00 {
		right: 10%;
	}
}

/**1000px以下*/
@media only screen and (max-width: 999px) {
	#contents02 .inner {
		width: 100%;
	}

	#contents02 .inner .fade00 {
		width: 399px;
		height: 399px;
		right: 30px;
	}

	#contents02 .inner .fade00 img {
		width: 399px;
		height: 399px;
	}

	#contents02 .inner .rinen_copy {
		margin-left: 30px;
	}
}

/**タブレット用*/
@media only screen and (max-width: 768px) {
	#contents02 {
		height: 1000px;
	}

	#contents02 h3 {
		top: 100px;
		width: 20px;
		font-size: 20px;
	}

	#contents02 h3:before {
		top: -30px;
		right: -15px;
		height: 80px;
	}

	#contents02 h3:after {
		height: 80px;
		bottom: -5px;
		left: -15px;
	}

	#contents02 .five-s_main {
		width: 1vw;
		min-width: 100%;
		float: none;
		border-left: 9.5vw solid #fff;
		margin-top: 50px;
		box-sizing: border-box;
	}

	#contents02 .inner {
		width: 90%;
		height: 120vw;
	}

	#contents02 .inner .rinen_copy {
		width: 250px;
	}

	#contents02 .inner .fade00 {
		right: 0;
	}

}

/**スマホ用*/
@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	#contents02 .inner .rinen_copy {
		position: static;
		width: 90%;
		padding-top: 0;
		margin: 30px auto;
		box-shadow: none;
	}

	#contents02 .inner .rinen_copy p {
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}

	#contents02 .inner .rinen_copy .link_btn {
		margin-top: 0;
		border: 1px solid #aaa;
	}

	#contents02 .inner .rinen_copy .link_btn:hover:before {
		left: -170px;
	}

	#contents02 .inner .rinen_copy p {
		line-height: 2.0em;
	}

	#contents02 .inner .fade00 {
		top: 300px;
		width: 96%;
		height: auto;
		right: 1.5%;
	}

	#contents02 .inner .fade00 img {
		width: 100%;
		height: auto;
	}
}

/* iphone */
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
	#contents02 .inner .fade00 {
		top: 300px;
		width: 96%;
		height: auto;
		right: 1.5%;
	}

	#contents02 .inner .fade00 img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 360px) {
	#contents02 .inner .rinen_copy p {
		font-size: 0.8rem;
	}
}

/*IE対応　縦組レイアウト*/
@media all and (-ms-high-contrast: none) {
	#contents02 h3 {
		width: 14px;
	}
}

/*-------------------------------------
	contents 03　動画    
-------------------------------------*/
/* 共通のスタイル */
#top_sec03 {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

#top_sec03 .main-video {
	position: relative;
	z-index: 2;
	width: auto;
	height: 100vh;
	object-fit: contain;
	margin: auto;
	display: block;
	filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

/* スマホ用のスタイル */
@media screen and (max-width: 768px) {
	#top_sec03 {
		height: auto;
	}

	#top_sec03 .main-video {
		width: 100%;
		height: auto;
	}
}


/*------------------------------
	contents 04　メッセージ

------------------------------*/
#top_sec04 {
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 20px;
}

#top_sec04 h2 {
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 2;
	text-align: center;

	font-family: var(--font-main);
}

/* スマホ用のスタイル */
@media screen and (max-width: 768px) {

	#top_sec04 h2 {
		font-size: 16px;
		text-align: left;
	}
}

/*--------------------------------
	アニメーション
--------------------------------*/
@keyframes fadeIn {

	/*消えている状態から現れるアニメーション*/
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes scale {

	/*じわっと拡大するアニメーション*/
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

@keyframes secondaryImageOverlayIn {

	/*はじめにブロックを伸ばすアニメーション*/
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes secondaryImageOverlayOut {

	/*伸びたブロックを横に追いやるアニメーション*/
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(102%);
	}
}

/*--------------------------------
	フッター
--------------------------------*/
footer {
	width: 100%;
}

footer .smp_br {
	display: none;
}

.l-footer {
	position: relative;
	width: 100%;
	z-index: 1
}

.l-footer .footer-main {
	position: relative;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.67;
	background: #1960B1;
	/*006ab7*/
}

.l-footer .footer-main .re_top {
	position: absolute;
	top: -8px;
	left: 50%;
	-webkit-transform: translateX(-44px);
	transform: translateX(-44px);
	z-index: 10;
}

.l-footer .footer-main .re_top button {
	position: relative;
	display: flex;
	top: -12px;
	width: 86px;
	height: 86px;
	color: #fff;
	align-items: center;
	letter-spacing: 0.1rem;
	justify-content: center;
	z-index: 10;
}

/**IE11*/
_:-ms-lang(x)::-ms-backdrop,
.l-footer .footer-main .re_top button {
	top: -4px;
	padding-right: 1%;
	font-size: 0.6rem;
	text-align: center;
}

.l-footer .footer-main .re_top a {
	position: absolute;
	color: #fff;
	margin-top: -10px;
	margin-left: -5px;
	font-size: 0.7rem;
	text-align: center;
}

.l-footer .footer-main .re_top span {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 86px;
	height: 86px;
	border-radius: 4px;
	background: #1960B1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.l-footer .footer-main .re_top::before {
	position: absolute;
	top: 0;
	left: 38px;
	width: 0;
	height: 0;
	content: '';
	border-width: 0 5px 6px;
	border-style: solid;
	border-color: transparent transparent #fff;
	transition: transform .2s cubic-bezier(.39, .575, .565, 1);
	transition: transform .2s cubic-bezier(.39, .575, .565, 1), -webkit-transform .2s cubic-bezier(.39, .575, .565, 1);
	z-index: 12;
}

.l-footer .footer-main .f_main {
	position: relative;
	overflow: hidden;
	padding: 80px 0 72px;
}

.l-footer .footer-main .f_main::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 800px;
	height: 600px;
	content: '';
	pointer-events: none;
	background-size: contain;
	/* background-image: url("../images/top/footer_bg.webp"); */
}

.l-footer .footer-main .f_main .f_container {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
}

/*会社情報*/
.l-footer .footer-main .f_main01 {
	position: relative;
	display: flex;
	text-align: left;
	z-index: 2;
}

.l-footer .footer-main .f_main01 .f_box00_1,
.l-footer .footer-main .f_main01 .f_box00_2,
.l-footer .footer-main .f_main01 .f_box00_3 {
	display: inline-block;
}

.l-footer .footer-main .f_main01 .f_box00_1 {
	width: 300px;
}

.l-footer .footer-main .f_main01 .f_box00_1 img {
	max-width: 230px;
}

.l-footer .footer-main .f_main01 .f_box00_2 {
	width: 425px;
}

.l-footer .footer-main .f_main01 .f_box00_3 {
	width: 425px;
}

.l-footer .footer-main .f_logo img {
	width: 300px;
	height: auto;
}



.l-footer .footer-main .f_access {
	color: #fff;
	line-height: 1.5;
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: 0;
	margin-left: 32px;
	padding-left: 28px;
	border-left: 1px solid #656161;
}

.l-footer .footer-main .f_tel {
	color: #fff;
	line-height: 1.8;
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: 0;
	margin-left: 32px;
	padding-left: 28px;
	border-left: 1px solid #656161;
}

.l-footer .footer-main .f_tel .text {
	font-size: 0.8rem;
	font-weight: normal;
}

.l-footer .footer-main .f_main02,
.l-footer .footer-main .f_main03 {
	display: flex;
	margin-top: 18px;
	text-align: left;
	justify-content: space-between;
}

/*フッターメニュー*/
.l-footer .footer-main .f_main02 .f_box01 {
	width: 1000px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: right;
}

.l-footer .footer-main .f_nav {
	position: relative;
	display: flex;
	/* float: right; */
	justify-content: center;
	margin-top: -4px;
	flex-wrap: wrap;

}

.l-footer .footer-main .f_navitem {
	margin-left: 33px;
}

.l-footer .footer-main .f_navitem a {
	color: #fff;
	font-size: 0.85rem;
}

/* リンクの下線アニメーション */
.l-footer .footer-main .f_navitem a {
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
	position: relative;
}

.l-footer .footer-main .f_navitem a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 50%;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.l-footer .footer-main .f_navitem a:hover::after {
	width: 100%;
}


.f_navitem_pc {}

.f_navitem_sp {
	display: none;
}

/*コピーライト*/
.l-footer .footer-main .f_main03 .f_box02 {
	width: 1000px;
	margin: 0 auto;
	padding-top: 15px;
	text-align: center;
}

.l-footer .footer-main .copyright {
	color: #b0afaf;
	font-size: 0.8rem;
	letter-spacing: 0.01rem;
}

/**1000px以下*/
@media only screen and (max-width: 999px) {

	.l-footer .footer-main .f_main02 .f_box01,
	.l-footer .footer-main .f_main03 .f_box02 {
		width: 98%;
	}

	.l-footer .footer-main .f_nav {
		padding-right: 5%;
	}

	.l-footer .footer-main .f_main01 .f_box00_1 {
		width: 15%;
	}

	.l-footer .footer-main .f_main01 .f_box00_2 {
		width: 45%;
	}

	.l-footer .footer-main .f_main01 .f_box00_3 {
		width: 40%;
	}
}

/**タブレット用*/
@media only screen and (max-width: 840px) {
	.l-footer .footer-main .f_main .f_container {
		padding: 0 20px;
	}

	.l-footer .footer-main .f_main .u-d-none {
		display: none !important;
	}

	.l-footer .footer-main {
		font-size: 1.3rem;
		line-height: 2;
	}

	.l-footer .footer-main .page-top button {
		top: -26px;
		font-size: 1rem;
	}
}

@media only screen and (max-width: 768px) {
	.l-footer .footer-main .main {
		padding: 62px 0 42px;
	}

	.l-footer .footer-main .f_main::before {
		width: 600px;
		height: 450px;
	}

	.l-footer .footer-main .f_main01 {
		text-align: center;
	}

	.l-footer .footer-main .f_main02 {
		margin-top: 36px;
		text-align: center;
	}

	.l-footer .footer-main .f_logo img {
		width: 140px;
	}

	.l-footer .footer-main .f_access {
		text-align: left;
		margin-top: 11px;
		line-height: 1.85;
	}

	.l-footer .footer-main .f_tel {
		text-align: left;
	}
}

/**スマホ用*/
@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	.l-footer .footer-main {
		width: 100%;
	}

	.l-footer .footer-main .f_main::before {
		height: 0;
	}

	.l-footer .footer-main .f_main01 {
		display: inline;
		width: 98%;
		height: 350px;
	}

	.l-footer .footer-main .f_main02,
	.l-footer .footer-main .f_main03 {
		display: inline;
	}

	.l-footer .footer-main .f_main .f_container {
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.l-footer .footer-main .f_main01 .f_box00_1,
	.l-footer .footer-main .f_main01 .f_box00_2,
	.l-footer .footer-main .f_main01 .f_box00_3 {
		display: block;
		overflow: hidden;
		width: 100%;
		margin-bottom: 15px;
	}

	.l-footer .footer-main .f_main01 .f_box00_1 {
		margin-top: 11px;
	}

	.l-footer .footer-main .f_logo img {
		width: 50%;
		z-index: 10;
	}

	.l-footer .footer-main .f_main02 .f_box01 {
		text-align: left;
	}

	.l-footer .footer-main .f_nav {
		float: none;
		display: block;
		padding-right: 0;
	}

	.l-footer .footer-main .f_nav li {
		display: block;
	}

	.l-footer .footer-main .f_navitem a {
		font-size: 1rem;
		font-weight: bold;
	}

	.l-footer .footer-main .f_nav .f_navitem_pc {
		display: none;
	}

	.l-footer .footer-main .f_nav .f_navitem_sp {
		display: list-item;
	}
}

/*--------------------------------
	TOPに戻るボタン
--------------------------------*/
#top_btn {
	position: fixed;
	width: 50px;
	height: 50px;
	right: -150px;
	bottom: 50px;
	opacity: 0.6;
	background: #1960B1;
	border: solid 0.5px #fff;
	z-index: 9999;
}

#top_btn a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#top_btn a::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 25px;
	height: 25px;
	text-align: center;
	margin: auto;
	color: #fff;
	font-size: 25px;
	content: "\f102";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}

/**1000px以下の場合*/
@media only screen and (max-width: 999px) {
	#top_btn {
		right: -55px;
		bottom: 20px;
	}
}

/**スマホの場合*/
@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	#top_btn {
		bottom: 85px;
	}
}

/*--------------------------------
	ソリューションサイト用
--------------------------------*/
.solution {
	display: flex;
	text-align: center;
}

.solution a {
	margin: 10px auto 0 auto;
	width: 300px;
}

.solution a img {
	border: 0.5px white solid;
	transition: 0.5s;
}

.solution a img:hover {
	box-shadow: 1px 1px 12px rgba(0, 0, 0, .65);
	transition: 0.5s;
}

.l-footer .footer-main .f_main03 {
	margin-top: 0px;
}

@media only screen and (max-width: 429px),
only screen and (-webkit-min-device-pixel-ratio: 3) {
	.solution {
		flex-wrap: wrap
	}
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up,
.scroll_up_1 {
	transition: 0.6s ease-in-out;
	transform: translateY(20px);
	opacity: 0;
}

.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
}

.scroll_up_1.on {
	transform: translateY(0);
	opacity: 1.0;
	transition-delay: 0.4s;
}