@charset "UTF-8";

/* font-family*/
@font-face {
	font-family: "Orbitron";
	src: url("../fonts/OrbitronSemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Orbitron";
	src: url("../fonts/OrbitronBold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "NotoSerifJP";
	src: url("../fonts/NotoSerifJPRegular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "NotoSerifJP";
	src: url("../fonts/NotoSerifJPSemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJPBold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJPLight.woff") format("woff");
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJPMedium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJPRegular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

/* reset-css */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
img,
q,
s,
small,
strong,
sub,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	border: none;
	background-color: transparent;
	outline: none;
	padding: 0;
}

/* reset css end */

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	min-height: 100%;
	height: 100%;
	width: 100%;
	min-width: 100%;
	letter-spacing: 0.1em;
	line-height: 1.8;
	background-color: #FFFFFF;
	font-family: "NotoSansJP", "游ゴシック体", "YuGothic", "游ゴシック Medium",
		"Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	z-index: 1;
	overflow-x: hidden;
}

.content-wrap {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

/* base */
.main {
	width: 100%;
	height: 100%;
}

.container {
	width: 100%;
	margin: 0 auto;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: #1D1D1D;
}

p,
html {
	color: #142C4B;
	font-size: 16px;
	font-weight: 500;
}

a:hover {
	opacity: 0.8;
}

h1 {
	letter-spacing: 1.1px;
	font-family: "Orbitron", serif;
	font-weight: 600;
	font-size: 40px;
	color: #FFFFFF;
}

h2 {
	text-align: center;
	font-family: "Orbitron", serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #142C4B;
}


/*                                 home                             */

.home-hero {
	width: 100%;
	min-width: 100%;
	height: 100vh;
	max-height: 844px;
	background-image: url("../img/home-top.webp");
	background-repeat: no-repeat;
	background-position: center, center;
	background-size: cover;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
}

.webp .home-hero {
	background-image: url("../img/home-top.webp");
}

.no-webp .home-hero {
	background-image: url("../img/home-top.png");
}

.home-hero .home-hero__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}

.home-hero .home-hero__inner .home-top-logo {
	padding: 5px 30px 5px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-10vh);
}

.home-hero .home-hero__inner .home-top-logo .top-logo-img {
	width: 90vw;
	max-width: 660px;
	height: auto;
}

.home-hero .home-hero__inner .top-title {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	transform: translateY(-50%);
}

.home-hero .home-hero__inner .top-title .top-title-main {
	line-height: 1.3;
}

.home-hero .home-hero__inner .top-title .top-title-sub {
	font-family: "NotoSerifJP", serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	padding: 17px 0 14px 0;
	color: #FFFFFF;
	text-shadow: 0 0 3px #000000;
}

.home-hero .home-hero__inner .top-title .home-hero-txt {
	font-family: "NotoSerifJP", serif;
	font-size: 16px;
	font-weight: 400;
	color: #E2F1FF;
	text-shadow: 0 0 3px #000000;
}

@media screen and (min-width: 576px) {
	.home-hero {
		min-height: 100vh;
		max-height: 100vh;
	}

	.home-hero .home-hero__inner .home-top-logo {
		padding-bottom: 30px;
	}

	.home-hero .home-hero__inner .top-title .top-title-main {
		font-size: 50px;
	}

	.home-hero .home-hero__inner .top-title .top-title-sub {
		font-size: 40px;
		padding-top: 17px;
		padding-bottom: 13px;
	}

	.home-hero .home-hero__inner .top-title .home-hero-txt {
		font-size: 16px;
	}
}

@media screen and (min-width: 768px) {
	.home-hero .home-hero__inner .top-title .top-title-main {
		font-size: 60px;
	}

	.home-hero .home-hero__inner .top-title .top-title-sub {
		font-size: 48px;
	}

	.home-hero .home-hero__inner .top-title .home-hero-txt {
		font-size: 24px;
	}
}

.home-hero .scroll {
	position: absolute;
	bottom: 57px;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.scroll .scroll-txt {
	font-size: 12px;
	font-weight: 500;
	margin: 0 auto;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 10px;
}

.scroll .scroll-logo {
	display: block;
	width: 17.5px;
	height: 24.3px;
	margin: 0 auto;
}

@media screen and (min-width: 576px) {
	.scroll .scroll-txt {
		font-size: 15px;
		margin-bottom: 13px;
	}

	.scroll .scroll-logo {
		width: 26.2px;
		height: 36.4px;
	}
}

.updown {
	animation: updown 1.6s linear infinite;
}

@keyframes updown {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, 10px, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}


/*                           service                               */

.home-service {
	height: 100%;
	background-image: url("../img/service-back.webp");
	background-repeat: no-repeat;
	background-position: center, center;
	background-size: cover;
	-o-object-fit: cover;
	object-fit: cover;
}

.webp .home-service {
	background-image: url("../img/service-back.webp");
}

.no-webp .home-service {
	background-image: url("../img/service-back.png");
}

.home-service-back {
	background-color: #FFFFFF;
	opacity: 0.98;
	padding: 120px 0 60px 0;
}

.title {
	display: flex;
	justify-content: center;
	position: relative;
}

.title .title-back {
	position: absolute;
	left: 50%;
	top: calc(50% - 14px);
	transform: translate(-50%, -50%);
	width: 130px;
	z-index: 1;
}

.title .title-back .title-logo-img {
	width: 100%;
	height: auto;
}

.title .section-title-txt {
	margin: auto;
	z-index: 2;
}

.title .section-title-txt .section-title {
	font-size: 28px;
	line-height: 1;
}

.title .section-title-txt .sub-title {
	padding-top: 8px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 2px;
	color: #1D5A92;
}

@media screen and (min-width: 576px) {
	.title .title-back {
		width: 150px;
		top: calc(50% - 18px);
	}

	.title .section-title-txt .section-title {
		font-size: 30px;
	}

	.title .section-title-txt .sub-title {
		padding-top: 8px;
		font-size: 18px;
	}
}

@media screen and (min-width: 768px) {
	.home-service-back {
		padding: 180px 0 100px 0;
	}

	.title .title-back {
		width: 175px;
		top: calc(50% - 20px);
	}

	.title .section-title-txt {
		top: 160px;
	}

	.title .section-title-txt .section-title {
		font-size: 40px;
	}

	.title .section-title-txt .sub-title {
		padding-top: 16px;
		font-size: 20px;
	}
}

.service-contents {
	max-width: 1160px;
	margin: 80px auto 0 auto;
}

.service-list__list {
	width: 80%;
	margin: 0 auto;
	padding-top: 20px;
	margin-bottom: 80px;
}

.service-list__list .service-list__txt {
	color: #110F27;
	margin: 0 auto;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	padding-top: 40px;
	line-height: 1.5;
}

.service-list__back {
	background-size: cover;
	width: 120px;
	height: 120px;
	border-radius: 10%;
	transform: rotate(45deg);
	background-image: url("../img/diamond.webp");
	background-position: left center;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 10;
}

.webp .service-list__back {
	background-image: url("../img/diamond.webp");
}

.no-webp .service-list__back {
	background-image: url("../img/diamond.png");
}

.service-list__back-left {
	background-position: left center;
}

.service-list__back-center {
	background-position: center center;
}

.service-list__back-right {
	background-position: right center;
}

.service-list__item-img {
	position: absolute;
	width: 120px;
	height: 120px;
	top: 0px;
	left: 0px;
	transform: rotate(-45deg);
	z-index: 100;
}

.service-txt .service-txt__txt {
	color: #142C4B;
	padding: 0 20px 40px 20px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
}

@media screen and (min-width: 576px) {
	.service-list {
		display: flex;
		justify-content: center;
		padding-top: 30px;
	}

	.service-list__list {
		width: 30%;
		justify-content: center;
		margin: 0;
	}

	.service-list__back {
		width: 84px;
		height: 84px;
	}

	.service-list__item-img {
		width: 84px;
		height: 84px;
	}

	.service-txt .service-txt__txt {
		padding: 40px 40px 60px 40px;
		font-size: 15px;
		text-align: center;
	}
}

@media screen and (min-width: 768px) {
	.service-list__list .service-list__txt {
		font-size: 16px;
	}

	.service-list__back {
		width: 120px;
		height: 120px;
	}

	.service-list__item-img {
		width: 120px;
		height: 120px;
	}
}

@media screen and (min-width: 920px) {
	.service-list__list .service-list__txt {
		padding-top: 58px;
	}

	.service-list__back {
		width: 140px;
		height: 140px;
	}

	.service-list__item-img {
		width: 140px;
		height: 140px;
	}

	.service-txt .service-txt__txt {
		padding-top: 80px;
	}
}

@media screen and (min-width: 1160px) {
	.service-list__list .service-list__txt {
		font-size: 18px;
	}

	.service-list__back {
		width: 160px;
		height: 160px;
	}

	.service-list__item-img {
		width: 160px;
		height: 160px;
	}

	.service-txt .service-txt__txt {
		padding-top: 110px;
		font-size: 16px;
	}
}

/*                           company                                */
.home-company {
	background-color: #F5F5F5;
	width: 100%;
	height: 100%;
	padding: 120px 0 60px 0;
}

.home-company-container {
	max-width: 1160px;
	margin: auto;
}

.home-company-info {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.home-company-info .home-company-title {
	padding-left: 3%;
}

.company-img-sp {
	display: block;
	width: 100%;
	margin-top: 80px;
}

.company-img-sp .home-company-img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: auto;
	max-height: 150px;
}

.company-img {
	display: none;
}

@media screen and (min-width: 576px) {
	.home-company-container {
		display: flex;
		justify-content: space-around;
		max-width: 1160px;
		margin: auto;
	}

	.company-img-sp {
		display: none;
	}

	.home-company-info {
		width: 60%;
		align-items: flex-start;
	}

	.company-img {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 40%;
		max-width: 538px;
		position: relative;
		z-index: 3;
	}

	.company-img::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		display: block;
		background-image: linear-gradient(60deg, rgba(140, 243, 48, 0.1), rgba(45, 241, 179, 0.2), rgba(246, 136, 247, 0.2));
		width: 19vw;
		height: 16vw;
		z-index: -1;
		transition: all 16s;
		animation: slime 16s linear infinite;
	}

	.company-img .home-company-img {
		width: 100%;
		height: auto;
		z-index: 3;
	}
}

@keyframes slime {
	0% {
		border-radius: 60% 60% 80% 50%/60% 70% 73% 60%;
		width: 19vw;
		height: 16vw;
	}
	25% {
		border-radius: 90% 66% 50% 90%/60% 50% 60% 50%;
		left: -50%;
		top: -25%;
		width: 22vw;
		height: 18vw;
	}
	40% {
		border-radius: 70% 90% 50% 60%/90% 80% 52% 80%;
		left: -50%;
		top: 25%;
		width: 17vw;
		height: 20vw;
	}
	65% {
		border-radius: 90% 66% 50% 90%/60% 50% 60% 50%;
		left: 50%;
		top: -25%;
		width: 17vw;
		height: 20vw;
	}
	80% {
		border-radius: 82% 50% 90% 80%/70% 80% 60% 52%;
		left: 50%;
		top: 25%;
		width: 24vw;
		height: 21vw;
	}
	100% {
		border-radius: 60% 60% 80% 50%/60% 70% 73% 60%;
		left: 50%;
		top: 50%;
		width: 19vw;
		height: 16vw;
	}
}

@media screen and (min-width: 768px) {
	.home-company {
		padding: 180px 0 100px 0;
	}

	.home-company-container {
		margin: 0 30px;
	}
}

@media screen and (min-width: 920px) {
	.home-company-container {
		margin: 0 50px;
	}
}

@media screen and (min-width: 1160px) {
	.home-company-container {
		margin: 0 auto;
	}

	.home-company-info {
		padding: 0 30px;
		width: 50%;
	}

	.company-img {
		width: 50%;
	}
}

.company-table {
	width: 100%;
	margin: 30px 3% 0 3%;
}

.company-table .company-table__list {
	width: 100%;
}

.company-table .company-table__list .company-table__name {
	width: 30%;
	color: #142C4B;
	font-size: 12px;
	font-weight: 700;
	line-height: 2.2;
	white-space: nowrap;
	text-align: left;
	padding-right: 12px;
}

.company-table .company-table__list .company-table__txt {
	width: 70%;
	color: #142C4B;
	font-size: 12px;
	font-weight: 500;
	line-height: 2.2;
	white-space: wrap;
}

.company-jump {
	display: flex;
	justify-content: flex-start;
	padding: 50px 0 0 3%;
}

.company-jump .company-link:hover {
	opacity: 1;
}

.company-jump .company-link {
	position: relative;
	display: inline-block;
	color: #E0822A;
	text-decoration: none;
	outline: none;
}

.company-jump .company-link::before {
	content: "";
	position: absolute;
	bottom: 12px;
	right: 8px;
	width: 30px;
	height: 1px;
	border-radius: 10%;
	background: #E0822A;
	transition: all .3s;
}

.company-jump .company-link::after {
	content: "";
	position: absolute;
	bottom: 16px;
	right: 7px;
	width: 15px;
	height: 1px;
	border-radius: 10%;
	background: #E0822A;
	transform: rotate(25deg);
	transition: all .3s;
}

.company-jump .company-link:hover::before {
	right: 1px;
}

.company-jump .company-link:hover::after {
	right: 0;
}

.view-more {
	width: 170px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #E0822A;
	position: relative;
}


.circle {
	position: relative;
	display: inline-block;
	padding: 0 0 0 20px;
	text-decoration: none;
	outline: none;
}

.circle::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1px solid #E0822A;
	background-color: #FFFFFF;
	transition: all .3s;
}

.circle:hover::before {
	left: 170px;
}

.view-more .view-txt {
	color: #142C4B;
	font-size: 14px;
	line-height: 1;
	padding: 8px 8px 8px 0;
}

@media screen and (min-width: 576px) {
	.company-table {
		margin-top: 60px;
	}
}

@media screen and (min-width: 768px) {
	.company-jump {
		padding-top: 60px;
	}

	.company-table {
		margin-top: 100px;
	}

	.company-table .company-table__list .company-table__name,
	.company-table .company-table__list .company-table__txt {
		font-size: 15px;
	}

	.view-more .view-txt {
		font-size: 16px;
	}
}

@media screen and (min-width: 920px) {

	.company-table .company-table__list .company-table__name,
	.company-table .company-table__list .company-table__txt {
		font-size: 17px;
	}

	.company-jump {
		display: flex;
		justify-content: flex-start;
		padding-top: 70px;
		padding-left: 0;
	}

	.view-more {
		width: 230px;
		display: flex;
		justify-content: space-between;
		border-bottom: 2px solid #E0822A;
	}

	.company-jump .company-link::before {
		bottom: 17px;
		right: 16px;
		width: 40px;
		height: 2px;
		border-radius: 10%;
	}

	.company-jump .company-link::after {
		bottom: 22px;
		right: 15px;
		width: 20px;
		height: 2px;
		border-radius: 10%;
	}

	.company-jump .company-link:hover::before {
		right: 0px;
	}

	.company-jump .company-link:hover::after {
		right: -1px;
	}

	.view-more .view-txt {
		font-size: 22px;
		padding: 12px;
		padding-left: 0;
	}

	.circle::before {
		bottom: -6px;
		width: 8px;
		height: 8px;
		border-width: 2px;
	}

	.circle:hover::before {
		left: 230px;
	}
}

@media screen and (min-width: 1160px) {

	.company-table .company-table__list .company-table__name,
	.company-table .company-table__list .company-table__txt {
		font-size: 18px;
	}
}

/*                             footer                               */
.footer {
	background: linear-gradient(180deg, #fff 0%, #fff 50%, #263038 50%, #263038 100%);
	width: 100%;
	padding-top: 120px;
}

.footer .footer-main {
	width: 100%;
	margin-top: 80px;
}

.footer-main p {
	font-weight: 400;
	font-size: 13px;
	color: #FFFFFF;
}

.footer-map__google {
	width: 100%;
	height: 300px;
}

.footer-map__info {
	margin-bottom: 30px;
	padding-left: 20px;
	margin-top: 30px;
}

.footer-map__info-left {
	display: flex;
	align-items: center;
}

.footer-map__logo-back {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 26%;
	width: 30px;
	height: 30px;
	padding: 5px;
	margin-right: 15px;
}

.footer-map__logo {
	width: 20px;
	height: auto;
}

.footer-map__info-right {
	margin-left: 45px;
	line-height: 2;
}

.footer-map__info-right p {
	line-height: 2;
}

.footer-link-list {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.footer-link-list__list {
	padding-left: 8px;
	padding-right: 25px;
	position: relative;
}

.footer-link-list li:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 17px;
	height: 2px;
	background-color: #E0822A;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.footer-link-list li:last-child:after {
	content: none;
}

.footer-copyright .footer-copyright-txt {
	text-align: center;
	font-size: 10px;
	padding-bottom: 10px;
}

@media screen and (min-width: 576px) {
	.footer-map__google {
		width: 90%;
		height: 400px;
		margin: 0 auto;
	}

	.footer-map__info {
		padding-top: 35px;
		margin-bottom: 40px;
		display: flex;
		justify-content: space-around;
		align-items: flex-start;
	}

	.footer-map__info-left {
		display: flex;
		align-items: center;
	}

	.footer-copyright .footer-copyright-txt {
		font-size: 10px;
	}
}

@media screen and (min-width: 768px) {
	.footer {
		padding-top: 180px;
	}

	.footer .footer-main {
		margin-top: 100px;
	}

	.footer-main p {
		font-size: 13px;
	}

	.footer-map__google {
		height: 450px;
	}

	.footer-map__info {
		padding-bottom: 80px;
		max-width: 1160px;
		margin: 0 auto;
	}

	.footer-map__info-left {
		width: 45%;
		justify-content: center;
	}

	.footer-map__info-right {
		width: 45%;
		margin-left: 0;
	}

	.footer-map__logo-back {
		width: 42px;
		height: 42px;
		padding: 8px;
		margin-right: 15px;
	}

	.footer-map__logo {
		width: 26px;
		height: auto;
	}

	.footer-map-list {
		display: flex;
	}

	.footer-tel {
		margin-right: 25px;
	}

	.footer-link {
		width: 90%;
		margin: 0 auto;
		text-align: center;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.footer-link-list {
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}

	.footer-copyright .footer-copyright-txt {
		font-size: 12px;
	}
}

@media screen and (min-width: 920px) {
	.footer-main p {
		font-size: 16px;
	}

	.footer-map__google {
		max-width: 1080px;
		height: 530px;
	}

	.footer-link {
		max-width: 1160px;
	}

	.footer-link-list {
		margin-bottom: 45px;
	}

	.footer-map__info {
		margin-bottom: 100px;
	}

	.footer-copyright .footer-copyright-txt {
		font-size: 14px;
		padding-bottom: 35px;
	}
}

@media screen and (min-width: 1160px) {
	.footer-map__logo-back {
		background-color: #FFFFFF;
		border-radius: 26%;
		width: 56px;
		height: 56px;
		padding: 12.5px;
		margin-right: 15px;
	}

	.footer-map__logo {
		width: 30.5px;
		height: auto;
	}

	.footer-map__info {
		margin-bottom: 136px;
	}

	.footer-main p {
		font-size: 18px;
	}

	.footer-link-list__list {
		padding-left: 30px;
		padding-right: 50px;
		position: relative;
	}

	.footer-link-list li:after {
		width: 24px;
	}
}


/*                 company-page               */
/*                 company-top                */
.page-top {
	width: 100%;
	height: 200px;
	background-image: url("../img/company.webp");
	background-repeat: no-repeat;
	background-position: left, center;
	background-size: cover;
	-o-object-fit: cover;
	object-fit: cover;
	display: flex;
	align-items: center;
}

.webp .page-top {
	background-image: url("../img/company.webp");
}

.no-webp .page-top {
	background-image: url("../img/company.png");
}

.page-top-title {
	padding-left: 30px;
}

.page-top-title-main {
	display: inline-block;
	font-family: "Orbitron", sans-serif;
	font-size: 30px;
	font-weight: 700;
	border-bottom: 3px solid #fff;
	text-shadow: 0px 1px 6px #000;
	padding-bottom: 8px;
}

.page-top-title .page-top-title-txt {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #FFFFFF;
	text-shadow: 0px 1px 6px #000;
	padding-top: 8px;
	letter-spacing: 3px;
}

.page-bread-back {
	background-color: #232323;
}

.page-bread {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 30px;
}

.page-bread .page-bread__home {
	display: inline-block;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 12px;
	padding: 0 10px;
}

.page-bread .page-bread__text {
	display: inline-block;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 12px;
	padding: 0 10px;
}

.page-bread .bread-arrow {
	display: inline-block;
	height: 10px;
	width: auto;
}

@media screen and (min-width: 576px) {
	.page-top {
		height: 360px;
	}

	.page-top-title {
		padding-left: 30px;
	}

	.page-top-title .page-top-title-txt {
		font-size: 20px;
	}
}

@media screen and (min-width: 768px) {
	.page-top {
		height: 450px;
	}

	.page-top-title {
		padding-left: 50px;
	}

	.page-top-title .page-top-title-main {
		font-size: 50px;
		padding-bottom: 10px;
	}

	.page-top-title .page-top-title-txt {
		font-size: 25px;
		padding-top: 10px;
	}

	.page-bread {
		padding: 10px 30px;
	}

	.page-bread .page-bread__home {
		font-size: 14px;
		padding: 0 14px;
	}

	.page-bread .page-bread__text {
		font-size: 14px;
		padding: 0 14px;
	}

	.bread-arrow {
		height: 13px;
	}
}

@media screen and (min-width: 920px) {
	.page-top {
		height: 570px;
	}

	.page-top-container {
		width: 100%;
		margin: auto;
		max-width: 1120px;
	}

	.page-top-title {
		padding-left: 55px;
	}

	.page-top-title h1 {
		padding-bottom: 12px;
		font-size: 60px;
	}

	.page-top-title .page-top-title-txt {
		font-size: 30px;
		padding-top: 12px;
	}

	.page-bread {
		padding: 12px 30px;
		margin: auto;
		max-width: 1200px;
	}

	.page-bread .page-bread__home {
		font-size: 16px;
	}

	.page-bread .page-bread__text {
		font-size: 16px;
	}
}


/*                     page-service                     */
.company-service {
	width: 100%;
	padding-top: 65px;
}

.company-service .company-service__container {
	width: 100%;
	padding: 0 3%;
}

.company-service__left {
	margin: 0 10px;
}

.company-service .company-service__title {
	font-family: "Orbitron", serif;
	font-weight: 700;
	font-size: 18px;
	color: #1D5A92;
}

.company-service__sub-title {
	width: 320px;
	font-size: 20px;
	font-weight: 700;
	margin: 15px 0 30px 0;
	letter-spacing: 2.5px;
	line-height: 35px;

}

.company-service__sub-title span {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2.5px;
	border-bottom: 6px solid #EFF53A;
}

.company-service__txt {
	line-height: 2;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
}

.company-service__left p {
	color: #0B1421;
}

.company-service__sp-img {
	padding: 40px 0;
}

.company-service__right {
	display: none;
}

@media screen and (min-width: 576px) {
	.company-service__container {
		margin-top: 120px;
		display: flex;
		justify-content: space-around;
	}

	.company-service__left {
		margin: 0 10px;
		width: 60%;
	}

	.company-service__sp-img {
		padding: 40px 0;
	}

	.company-service__sp-img {
		display: none;
	}

	.company-service__right {
		display: block;
		position: relative;
		width: 40%;
		overflow: hidden;
	}

	.company-service__right .company-service__img {
		width: 100%;
		align-items: center;
	}

	.company-service__right .company-service__black {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: auto;
		padding: 0 20px 0 10px;
		z-index: 2;
	}

	.company-service__right .company-service__clip {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		padding: 0 20px 0 10px;
		align-items: center;
		z-index: 3;
	}

	.company-service__right .company-service__clip .company-service__img {
		width: 0;
		height: 100%;
		align-items: center;
		clip-path: url(#clip1);
		z-index: 3;
	}

	.slidecurtain.active,
	.slidecurtain.active .company-service__img {
		animation: slidecurtain 0.6s 0.2s linear forwards;
		transition: width 0.6s;
	}
}

@keyframes slidecurtain {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.company-service .company-service__title {
		font-size: 20px;
	}

	.company-service__sub-title {
		width: 450px;
		font-size: 28px;
		margin: 15px 0 30px 0;
		letter-spacing: 3px;
		line-height: 45px;
	}

	.company-service__sub-title span {
		font-size: 30px;
		letter-spacing: 3px;
		border-width: 8px;
	}

	.company-service__txt {
		font-size: 13px;
		line-height: 2.2;
	}

	.company-service__right .company-service__img {
		padding: 20px;
	}
}

@media screen and (min-width: 920px) {
	.company-service {
		padding-top: 100px;
	}

	.company-service__container {
		max-width: 1100px;
		padding: 20px;
		margin: 0 auto;
		justify-content: center;
	}

	.company-service .company-service__title {
		font-size: 24px;
	}

	.company-service__sub-title {
		width: 550px;
		font-size: 36px;
		margin: 20px 0 40px 0;
		letter-spacing: 3.6px;
		line-height: 55px;
	}

	.company-service__sub-title span {
		font-size: 36px;
		letter-spacing: 3.6px;
		border-width: 10px;
	}

	.company-service__txt {
		font-size: 15px;
	}
}

@media screen and (min-width: 1160px) {
	.company-service__left {
		padding-right: 30px;
	}
}


/*                     company-company                  */
.page-company {
	width: 100%;
	margin-top: 70px;
	padding: 20px 10px;
}

.page-company-title {
	display: flex;
	align-items: flex-end;
	margin-bottom: 30px;
}

.page-company-title-logo {
	width: 60px;
	height: auto;
}

.page-company-title-main {
	font-weight: 700;
	font-size: 20px;
	color: #0B1421;
	margin-left: 10px;
}

.page-company-box {
	border: 6px solid #040D15;
	padding: 20px;
	position: relative;
	z-index: 100;
}

.page-company-box .page-company-table .page-company-table__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.page-company-box .page-company-table .page-company-table__list:not(:last-of-type) {
	padding-bottom: 12px;
}

.page-company-box .page-company-table .page-company-table__list .page-company-table__name,
.page-company-box .page-company-table .page-company-table__list .page-company-table__txt {
	display: inline-block;
	width: 100%;
	color: #142C4B;
	font-size: 12px;
	line-height: 2.2;
	text-align: left;
	padding-right: 12px;
}

.page-company-box .page-company-table .page-company-table__list .page-company-table__name {
	font-weight: 700;
}

.page-company-box .page-company-table .page-company-table__list .page-company-table__txt {
	font-weight: 500;
	white-space: wrap;
}

.page-company-back-sp {
	position: absolute;
	width: 200px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: -5;
	opacity: 0.1;
}

.page-company-back {
	display: none;
}

@media screen and (min-width: 576px) {
	.page-company-box {
		display: flex;
		justify-content: space-around;
	}

	.page-company-back-sp {
		display: none;
		opacity: 0.4;
	}

	.page-company-table {
		width: 70%;
	}

	.page-company-box .page-company-table .page-company-table__list {
		flex-direction: row;
	}

	.page-company-box .page-company-table .page-company-table__list .page-company-table__name {
		width: 30%;
	}

	.page-company-box .page-company-table .page-company-table__list .page-company-table__txt {
		width: 70%;
	}

	.page-company-back {
		display: block;
		width: 30%;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.page-company-back .page-company__img {
		max-width: 200px;
		opacity: 0.4;
	}
}

@media screen and (min-width: 768px) {
	.page-company {
		margin-top: 100px;
		padding: 20px 30px;
	}

	.page-company-title {
		margin-bottom: 40px;
	}

	.page-company-title-logo {
		width: 75px;
		height: auto;
	}

	.page-company-title-main {
		font-size: 26px;
		margin-left: 20px;
	}

	.page-company-box {
		border-width: 8px;
		padding: 45px;
	}
}

@media screen and (min-width: 920px) {
	.page-company {
		max-width: 1000px;
		margin: 0 auto;
		margin-top: 160px;
	}

	.page-company-title {
		margin-bottom: 50px;
	}

	.page-company-title-logo {
		width: 89px;
		height: auto;
	}

	.page-company-title-main {
		font-size: 32px;
		margin-left: 28px;
	}

	.page-company-box {
		border-width: 10px;
		padding: 60px;
	}

	.page-company-box .page-company-table .page-company-table__list .page-company-table__name,
	.page-company-box .page-company-table .page-company-table__list .page-company-table__txt {
		font-size: 14px;
	}
}

@media screen and (min-width: 1131px) {
	.page-company-box .page-company-table .page-company-table__list .page-company-table__name,
	.page-company-box .page-company-table .page-company-table__list .page-company-table__txt {
		font-size: 16px;
	}
}

/*              privacy-policy           */
.privacy-policy-main {
	width: 100%;
}

.privacy-policy-title {
	text-align: center;
	margin: 50px;
}

.privacy-policy-title__h2 {
	font-size: 24px;
	color: #142C4B;
	letter-spacing: 3px;
}

.privacy-policy__content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 3%;
}

.privacy-policy__content .privacy-policy__section {
	width: 100%;
	padding: 32px 0;
}

.privacy-policy__content .privacy-policy__section .privacy-policy__heading {
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 20px;
	color: #142C4B;
}

.privacy-policy__txt {
	font-size: 12px;
	font-weight: 400;
	color: #142C4B;
	line-height: 2;
}

@media screen and (min-width: 768px) {
	.privacy-policy-title {
		margin: 65px;
	}

	.privacy-policy-title__h2 {
		font-size: 32px;
	}

	.privacy-policy__txt {
		font-size: 14px;
	}

	.privacy-policy__content .privacy-policy__section .privacy-policy__heading {
		font-size: 16px;
	}
}

@media screen and (min-width: 920px) {
	.privacy-policy-title {
		margin: 80px 0 100px 0;
	}

	.privacy-policy-title__h2 {
		font-size: 40px;
	}

	.privacy-policy__txt {
		font-size: 16px;
	}

	.privacy-policy__content .privacy-policy__section .privacy-policy__heading {
		font-size: 18px;
	}
}

/*                     404                  */
.page-error {
	width: 100%;
	padding: 100px 0;
}

.page-error .page-error__inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 3%;
}

.page-error .page-error__inner .page-error__title {
	text-align: center;
	font-size: 20px;
	line-height: 1.8;
	color: #142C4B;
	font-weight: 700;
}

.page-error .page-error__inner .page-error__button {
	display: flex;
	justify-content: center;
	margin: 80px auto 0 auto;
}

.page-error .page-error__inner .page-error__button .page-error__link {
	display: inline-block;
	text-align: center;
	font-size: 15px;
	padding: 12px 24px;
	line-height: 1;
	background-color: #142C4B;
	color: #FFFFFF;
	font-weight: 500;
	border-radius: 3px;
}

@media screen and (min-width: 768px) {
	.page-error .page-error__inner .page-error__title {
		font-size: 24px;
	}
}

/*         fade          */
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s, transform 0.8s;
}

.fade.active {
	animation: fade 0.8s ease-in-out forwards;
}

.fade.active.fade-a {
	animation-delay: 0s;
}

.fade.active.fade-b {
	animation-delay: 0.3s;
}

.fade.active.fade-c {
	animation-delay: 0.6s;
}

@keyframes fade {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

/*         popin          */
.popin {
	opacity: 0;
	transform: scale(0);
}

.popin.active {
	animation: popin .6s linear forwards;
}

@keyframes popin {
	0% {
		opacity: 0.5;
		transform: scale(0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
