@charset "UTF-8";

/* ================
      common
================ */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	position: relative;
	z-index: 0;
	min-width: 960px;
}
img {
	max-width: 100%;
	height: auto;
}
main {
	position: relative;
	z-index: 1;
}

/* h2上部 */
.pt {
	padding-top: 56px;
}

/* txet上部 */
.p-pt {
	padding-top: 14px;
}

section h2 {
	font-weight: bold;
	font-size: 3rem;
	padding-bottom: 6px;
}
.en {
	text-transform: uppercase;
	color: #0163be;
	font-size: 2.2rem;
	font-family: var(--noto);
}
h2 .en {
	display: block;
	padding-bottom: 2px;
}
.s-contents p {
	padding-top: 14px;
}
.red {
	color: #e12b18;
}
.gray {
	color: #a6a6a6;
}
.txt-small {
	font-size: 75%;
}
.not-text {
	text-align: center;
	padding: 50px 0 70px;
}

.bg-wrapper {
	overflow: hidden;
}

.sp {
	display: none;
}
@media screen and (max-width: 950px) {
	body {
		min-width: auto;
	}
}

/* 斜線 */
.d-line,
.d-line-w {
	width: 1px;
	height: 33px;
	background-color: #0163be;
	transform: rotate(45deg);
	display: block;
	margin-left: 14px;
}
.d-line-w {
	background-color: #fff;
}
.line-center {
	margin-left: 50%;
}

/* 下線 */
.under-line {
	height: 0.06em;
	width: 100%;
	display: block;
	background-color: #414141;
	margin-bottom: 23px;
	margin-top: 10px;
	position: relative;
}
.under-line::before {
	content: "";
	position: absolute;
	display: inline-block;
	height: 200%;
	width: 20%;
	background-color: #414141;
	left: 0;
	top: -1px;
}

/* ボタン */
.btn,
.btn-w {
	margin-top: 51px;
	font-weight: bold;
	vertical-align: middle;
	display: inline-block;
}
.btn::after,
.btn-w::after {
	content: "";
	background: url(../../img/arrow.png) no-repeat center / contain;
	width: 21px;
	height: 21px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 2px 7px;
}
.btn-w::after {
	background-image: url(../../img/arrow-w.png);
}
.btn:hover,
.btn-w:hover {
	color: #63c1f3;
}
.btn:hover.btn::after,
.btn-w:hover.btn-w::after {
	transform: translateX(10px) scale(1.2);
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

/* リンク */
.link-blank {
	margin: 0 1em;
	color: #3e81dd;
	display: inline-block;
	line-height: 0.8;
}
.link-blank:hover {
	border-bottom: #3e81dd solid 1px;
}
.link-blank::after {
	content: "";
	background: url(../../img/link.png) no-repeat center / contain;
	width: 13px;
	height: 12px;
	display: inline-block;
	margin-left: 4px;
}

/* ロード画面 */
#loader {
	background-color: #008cd6;
	width: 100vw;
	height: 100vh;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
#loader.loaded {
	animation: loading01 2.5s forwards;
	pointer-events: none;
}

@keyframes loading01 {
	0% {
		opacity: 1;
	}
	85% {
		opacity: 1;
		clip-path: circle(100% at 50% 50%);
	}
	100% {
		clip-path: circle(0px at 50% 50%);
		opacity: 0;
	}
}

#loader svg {
	width: 300px;
}
#loader svg path {
	fill: none;
	stroke: #fff;
	stroke-dasharray: 1280;
	stroke-dashoffset: 1280;
	animation: loading 2s both;
}

@keyframes loading {
	0% {
		stroke-dashoffset: 1280px;
	}
	27% {
		stroke-dashoffset: 0px;
	}
	80% {
		fill: #fff;
		stroke-dashoffset: 0px;
	}
	81% {
		fill: none;
	}
	100% {
		stroke-dasharray: 1280px;
	}
}

/* 読み込み */
#loader02 {
	display: none;
}
#loader02.loaded {
	display: block;
}

/* fede-in */
.fade {
	opacity: 0;
}
.fade-in {
	-webkit-transition: all 2s;
	transition: all 2s;
}
.fade-in-up {
	-webkit-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	transform: translateY(100px);
}
.fade-in-right {
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	transform: translateX(-100px);
}
.fade-in-left {
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	transform: translateX(100px);
}
.js-fade {
	transform: translate(0);
	opacity: 1;
}
.d-line.js-fade,
.d-line-w.js-fade {
	transform: translate(0) rotate(45deg);
}

.fade01,
.fade02 {
	position: relative;
	overflow: hidden;
}
.fade01 img {
	opacity: 0;
	-webkit-transition-delay: 0.6s;
	-webkit-transition-duration: 0.1s;
	transition-delay: 0.6s;
	transition-duration: 0.1s;
}
.fade01.fade.js-fade img {
	opacity: 1;
}
.fade02.fade.js-fade {
	animation: fadeBg 0.1s 0.6s forwards;
}
.fade01.fade.js-fade::after,
.fade02.fade.js-fade::after {
	content: "";
	position: absolute;
	display: block;
	background-color: #171717;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	animation: slide-r01 2s ease forwards;
	transform: translateX(100%);
}
@keyframes slide-r01 {
	0% {
		width: 100%;
	}
	30% {
		transform: translateX(0);
		width: 100%;
	}
	45% {
		transform: translateX(0);
		width: 100%;
	}
	100% {
		width: 0;
		transform: translateX(0);
	}
}
@keyframes fadeBg {
	from {
		background-color: transparent;
	}
	to {
		background: url(../../img/business.jpg) no-repeat center / cover;
	}
}

/* ================
      header
================ */
#header {
	height: 104px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	z-index: 2;
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
}
#header.header-bg {
	background-color: #fff;
	height: 90px;
}
/*
#header.header-bg .nav ul li + li {
	border-left: #171717 solid 1px;
}
*/
#header h1,
.h-rogo {
	margin-left: 4%;
}
#header h1 img,
.h-rogo img {
	width: 13.25vw;
	max-width: 200px;
	min-width: 140px;
}
.nav {
	height: 100%;
}
#header nav {
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: bold;
	filter: drop-shadow(1px 1px 6px rgb(0, 0, 0, 0.1));
}
#header.header-bg nav {
	filter: none;
}
.nav ul {
	display: flex;
  align-items: center;
}
.nav ul li {
	padding: 0 22px;
	line-height: 1;
	letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}

.nav ul li:first-of-type::before {
  display: none;
}

.nav ul li::before,
.nav ul li + li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav ul li::before {
  background: #fff;
  z-index: 2;
}

.nav ul li + li::after {
  display: none;
  background-color: #fff;
}

.nav ul .msystem {
  line-height: 1.3;
}

.nav ul .msystem::after {
  display: none;
}

.nav ul .msystem a::after {
  bottom: -25px;
}

.nav ul li a {
	position: relative;
	color: #fff;
}
#header.header-bg nav a {
	color: #171717;
}

#header.header-bg .nav ul li::before {
  background: #171717;
}

.nav ul li a:hover {
	opacity: 0.8;
}
.nav ul li a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #0163be;
	bottom: -10px;
	left: 0;
	transform: scale(0, 1);
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.nav ul li a:hover::after {
	transform: scale(1, 1);
}
.contact-link {
	background: linear-gradient(110deg, #767676, #323232);
	height: 100%;
	width: 174px;
	position: relative;
	color: #fff;
}
#header.header-bg .contact-link {
	color: #fff;
}
.contact-link::before,
.contact-link::after {
	position: absolute;
}
.contact-link::before {
	content: "";
	background: url("../../img/mail-w.png") no-repeat center / contain;
	width: 21px;
	height: 15px;
	top: 27%;
	left: 50%;
	transform: translateX(-50%);
}
.contact-link::after {
	content: "お問い合わせ";
	top: 52%;
	left: 22%;
}
.contact-link:hover::after,
.contact-link:hover::before {
	opacity: 0.5;
}
@media screen and (max-width: 950px) {
	#header h1,
	.h-rogo {
		margin-left: 2%;
	}
	.nav ul li {
		padding: 0px 16px;
	}
	.contact-link {
		width: 122px;
	}
	.contact-link::after {
		top: 55%;
		left: 12%;
	}
}

/* ================
      contact
================ */
.contact {
	background-color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
}
.contact .s-contents {
	padding: 78px 0;
	max-width: 800px;
}
.inquiry {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 55px;
}
.inquiry address {
	text-align: center;
	font-size: 1.8rem;
}
.inquiry address span {
	font-size: 4.4rem;
	font-weight: bold;
	font-family: var(--noto);
}
.inquiry address span::before {
	content: "";
	background: url(../../img/tel.png) no-repeat center / contain;
	display: inline-block;
	width: 41px;
	height: 41px;
	vertical-align: middle;
	margin-right: 17px;
	margin-bottom: 3px;
}
.c-btn {
	padding: 28px 22px;
	border: #171717 solid 1px;
	color: #171717;
	font-weight: bold;
	font-size: 1.8rem;
	display: block;
	height: 88px;
}
.c-btn span::before {
	content: "";
	background: url(../../img/mail.png) no-repeat center / contain;
	display: inline-block;
	vertical-align: middle;
	width: 27px;
	height: 19px;
	margin-right: 14px;
}
.inquiry a:hover span {
	color: #63c1f3;
}
.inquiry a:hover span::before {
	opacity: 0.7;
}

@media screen and (min-width: 768px) {
	address a {
		pointer-events: none;
	}
}

/* ================
      link
================ */
.link {
	background-color: #ededed;
	padding-top: 60px;
	padding-bottom: 51px;
}
.link h2 {
	text-align: center;
	padding-bottom: 62px;
}
.link-list {
	max-width: 1030px;
	width: 94%;
	margin: 0 auto;
	font-size: 1.8rem;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
}
.link .link-list li {
	width: 30%;
	margin-left: 5%;
	margin-bottom: 45px;
  padding-left: 1em;
  position: relative;
}
.link .link-list li:first-child,
.link .link-list li:nth-child(4),
.link .link-list li:nth-child(7) {
	margin-left: 0;
}
.link .link-list li a::after {
	content: "";
	background: url(../../img/link.png) no-repeat center / contain;
	width: 15px;
	height: 14px;
	display: inline-block;
	margin-left: 3px;
}
.dot {
	background-color: #0163be;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 3px;
  position: absolute;
  left: 0;
  top: .55em;
}
.link-list li a:hover {
	opacity: 0.6;
}

/* ================
      footer
================ */
footer {
	background-color: #525252;
	overflow-y: hidden;
}
footer a:hover {
	color: #63c1f3;
}
.footer-wrapper {
	width: 77%;
	max-width: 1300px;
	min-width: 1070px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 28px;
	display: grid;
	grid-template-rows: 170px 40px;
	grid-template-columns: 351px 1fr;
}

.footer-logo {
	grid-row: 1 / 7;
	grid-column: 1 / 2;
}

.footer-logo img {
	width: 205px;
}

.footer-logo .lp {
  margin-top: 1.5em;
}

.footer-logo .lp img {
  width: 351px;
  max-width: inherit;
}

.footer-logo address {
	padding-top: 34px;
	color: #fff;
}
.g-nav {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}
.g-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-weight: bold;
  max-width: 850px;
  margin-left: auto;
  line-height: 2.5;
}
.g-nav ul li {
	margin-left: 38px;
}
.g-nav ul:first-child {
	letter-spacing: 0.1em;
}
.g-nav ul:nth-child(2) {
	opacity: 0.4;
	margin-top: 32px;
	font-weight: normal;
	font-size: 1.4rem;
}
.g-nav a {
	color: #fff;
	line-height: 2;
}
.footer-low {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	margin: 0 0 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	color: #fff;
  position: relative;
}
.lp-link {
	font-weight: bold;
	letter-spacing: 0.08em;
	background-color: #444444;
	border: 1px solid rgba(255, 255, 255, 0.4);
  right: 0;
  top: 230px;
}
.lp-link a {
	display: inline-block;
	padding: 10px 45px;
  white-space: nowrap;
}
.lp-link:hover {
	opacity: 0.8;
}
.lp-link:hover a,
.sns a:hover {
	color: #fff;
}
.sns {
	text-transform: uppercase;
	margin-left: 40px;
}
.sns span {
	padding-right: 22px;
}
.copyright {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #3e3e3e;
	color: #787878;
}

.footer-wrapper .twitter {
  position: absolute;
  right: 0;
  top: -1.8em;
  width: 550px;
  height: 239px;
  overflow: auto;
}

@media screen and (max-width: 1070px) {
	.footer-wrapper {
		width: 92%;
	}
}

/* ================
      2nd
================ */
.second-ttl {
	height: 400px;
	position: relative;
	z-index: -1;
}
.second-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	overflow: hidden;
}
.second-bg::after {
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	animation: bg-image 14s linear;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}
@keyframes bg-image {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.second-ttl::before {
	content: "";
	position: absolute;
	height: 200%;
	width: 400px;
	background: #fff;
	opacity: 0.3;
	filter: none;
	bottom: 30px;
	left: -80px;
	transform: rotate(45deg);
}
.second-ttl::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 34vw;
	min-width: 400px;
	height: 4000px;
	background-color: #008cd6;
	transform: rotate(45deg);
	right: 600px;
	top: -550px;
	animation: bg-slide 3.8s 0.5s ease-in-out forwards;
}

@keyframes bg-slide {
	from {
		clip-path: inset(3000px 0);
	}
	to {
		clip-path: inset(0 0);
	}
}

@media screen and (max-width: 1500px) {
	.second-ttl::after {
		right: 710px;
	}
}

.second-ttl h1 {
	font-size: 2.6rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.4;
	padding-top: 154px;
	padding-left: 4%;
	filter: drop-shadow(#171717 0 0 5px);
}
.second-ttl h1 svg {
	width: 395px;
	height: auto;
	overflow: visible;
	font-family: var(--noto);
	text-transform: uppercase;
	display: block;
	letter-spacing: 0;
}
.second-ttl h1 svg text {
	fill: transparent;
	stroke: #fff;
	stroke-width: 1;
	font-size: 7.7rem;
}

/* パンくずリスト */
.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 13px;
	margin-left: 4%;
	text-transform: uppercase;
	font-size: 1.2rem;
}
.breadcrumb ul .item + .item::before {
	content: "/";
	margin-left: 6px;
	padding-right: 6px;
}

.flex-contents {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.flex-contents .s-contents {
	width: 40vw;
	min-width: 340px;
	padding-right: 6%;
	padding-top: 78px;
	padding-bottom: 78px;
	margin: 42px 0;
}
.flex-contents .name {
	font-size: 2.5rem;
	padding-left: 0.5em;
}
.side-img {
	width: 50vw;
	height: auto;
	min-width: 500px;
	max-width: 750px;
	position: relative;
}
.side-img .side-img01 {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 1500px) {
	.flex-contents .s-contents {
		width: 50vw;
	}
}

@media screen and (max-width: 890px) {
	.flex-contents {
		justify-content: space-between;
	}
	.flex-contents .s-contents {
		padding-right: 2%;
		margin-left: 2%;
		margin-top: 0;
	}
}

/* product */
.remarks {
	display: flex;
	margin: 11px 0;
}
.remarks li {
	padding: 5px 16px;
	font-size: 1.4rem;
	font-weight: bold;
	margin-right: 7px;
}
.remarks .green {
	color: #14382b;
	background: #c9f3e4;
	border: #3d8c6f solid 1px;
}
.remarks .yellow {
	color: #3b3109;
	background: #fff8a7;
	border: #b9a91d solid 1px;
}
.remarks .blue {
	color: #11294f;
	background: #94bdf6;
	border: #1e62c1 solid 1px;
}

/* ================
    form*入力画面
================ */
/* form */
.form-wrapper {
	background: var(--gray);
	margin-top: 14px;
	padding-bottom: 56px;
}
.form {
	background: #fff;
	margin: 29px auto 0;
	width: 978px;
}
.form-txt {
	padding-top: 50px;
}
.form .required,
.form .any {
	padding: 2px 7px;
	margin-right: 14px;
	font-size: 1.4rem;
}
.form .required {
	background: #dd4242;
	color: #fff;
}
.form .any {
	background: #efefef;
	color: #939393;
}
.form table {
	width: 79%;
	margin: 55px auto 0;
}
.form table th {
	width: 220px;
	height: 71px;
	vertical-align: middle;
}
.form table td {
	width: calc(100% - 220px);
}
.form table td input,
.form table td textarea,
.f-select select {
	background: #efefef;
	font-size: 1.3rem;
	width: 100%;
	margin: 15px 0;
	padding: 0.8em 1em;
}
.form table td input {
	height: 51px;
}
.form table td textarea {
	height: 232px;
}
.form table tr td input[type="tel"][name="郵便番号[][-]"] {
	width: 99px;
}
.form table tr td input[type="tel"][name="郵便番号[]"] {
	width: 133px;
}
.form table tr td input[type="email"][name="メールアドレス"],
.form table tr td input[type="tel"][name="電話番号"] {
	margin-bottom: 4px;
}
.form table tr td input[type="email"][name="メールアドレス(確認)"] {
	margin-top: 4px;
}
.form table td .ml,
.form table td .mtb,
.form table td .mt {
	font-size: 1.3rem;
}

.f-select {
	position: relative;
}
.f-select::before {
	content: "";
	background: url(../../recruit/img/select_arrow.png) no-repeat center / contain;
	position: absolute;
	width: 8px;
	height: 6px;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	z-index: 1;
}
.f-select select {
	height: 51px;
}
.f-select .select-year {
	width: 130px;
	padding: 0.8em 3.3em;
}
.f-select .select-month,
.f-select .select-day {
	width: 66px;
}
.select-text {
	font-weight: bold;
	margin: 10px;
}

@media screen and (max-width: 950px) {
	.form {
		width: 100%;
	}
	.form-wrapper {
		padding-bottom: 0;
	}
}

/* focus */
.form table td input:focus,
.form table td textarea:focus,
.f-select select:focus {
	-webkit-box-shadow: 0 0 6px 4px rgb(0, 140, 214, 0.1);
	box-shadow: 0 0 6px 4px rgb(0, 140, 214, 0.1);
	border: solid rgb(0, 140, 214, 0.6) 2px;
	outline: none;
}

/* policy */
.policy-check {
	font-weight: bold;
	margin-top: 20px;
}
.policy-check span {
	vertical-align: middle;
}
.policy-check a {
	display: inline-block;
	border-bottom: solid #171717 1px;
	line-height: 0.7;
	font-size: 1.7rem;
}

/* btn */
.form-wrapper .btn {
	margin-top: 36px;
	margin-bottom: 74px;
}

.btn-grad {
	margin-top: 40px;
}
.btn-grad a {
	background: linear-gradient(110deg, #767676, #323232);
	border: 1px solid #3e3e3e;
	color: #fff;
	font-weight: bold;
	padding: 25px 80px;
	letter-spacing: 0.1em;
	font-size: 2rem;
	display: inline-block;
}
.btn-grad a:hover {
	opacity: 0.8;
}

/* step */
.confirm-list {
	color: #bfbfbf;
	font-weight: bold;
	margin: 42px auto 0;
	width: 211px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.confirm-list::before {
	content: "";
	position: absolute;
	background: #bfbfbf;
	width: 190px;
	height: 2px;
	top: 25%;
	left: 5%;
}
.confirm-list .now {
	color: #73c7f3;
}
.step-circle {
	color: #fff;
	font-size: 2rem;
	display: block;
	position: relative;
	z-index: 0;
}
.step-circle::before {
	content: "";
	background: #bfbfbf;
	position: absolute;
	width: 32px;
	height: 32px;
	top: 0;
	left: 0;
	border-radius: 50%;
	z-index: -1;
}
.now .step-circle::before {
	background: #73c7f3;
}

/* ================
    form*確認画面
================ */

/* エラー時 */
#formWrap .lead {
	padding-top: 40px;
	text-align: center;
}

/* 確認項目 */
#formWrap form {
	margin: 0 auto;
	width: 73%;
	padding-top: 45px;
}
.formList {
	display: flex;
	border-bottom: var(--border);
	padding: 22px 1em;
}
.formList dt {
	font-weight: normal;
	color: #5b5b5b;
	width: 30%;
}
.formList dd {
	width: calc(100% - 30%);
}
.fButton {
	padding-bottom: 15px;
}
.fButton .btn {
	display: block;
	margin: 53px auto 59px;
}
.fButton .btn:hover {
	opacity: 0.7;
}
.fButton .btn-back {
	color: #5b5b5b;
	border-bottom: solid 1px #5b5b5b;
	line-height: 0.8;
}
.fButton .btn.btn-back::after {
	display: none;
}

/* ================
    form*送信完了
================ */
.thanks {
	padding-top: 70px;
}
