@charset "UTF-8";

/* ==================================================

	common.css
	Version: 0.1
	
*/

/* ==================================================

	WEB FONT

*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");



/* ==================================================

	CONFIG

*/
:root {
	--color-standard: #0e62c5;
	--color-standard-dark: #072151;
	--color-red: #d1003f;
	--color-yellow: #f9e003;
	--color-gray: #70748c;
	--color-bg: #eff4f7;
	--font-size-h1: 100px;
}

/* ==================================================

	RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
h1, h2, h3, h4, h5 {
	font-weight: 700;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

::placeholder {
	color: #ccc;
}
::-ms-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}

/* ==================================================

	HTML

*/
html {
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 375px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: 2.66667vw;
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.2rem;
		line-height: 1.7;
	}
}
main {
	overflow: hidden;
	position: relative;
}

/* ==================================================

	VISIBLE

*/
@media only screen and (min-width: 981px) {
	.visible-tb {
		display: none;
	}
}
@media only screen and (min-width: 769px) {
	.visible-sp {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.visible-pc {
		display: none;
	}
}

/* ==================================================

	HIDDEN

*/
@media only screen and (max-width: 768px) {
	.hidden-sp {
		display: none;
	}
}
@media only screen and (min-width: 981px) {
	.hidden-tb {
		display: none;
	}
}
@media only screen and (min-width: 769px) {
	.hidden-pc {
		display: none;
	}
}

/* ==================================================

	HEADER

*/
.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
}
.header .content {
	position: relative;
	z-index: 200;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px;
	height: 80px;
}
.header .content::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #70748c;
}
.header .content .logo {
	width: 140px;
}
.header .content nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header .content nav > ul {
	display: flex;
}
.header .content .nav-content {
	padding-right: 10px;
}
.header .content .nav-content li {
	padding: 0 10px;
}
.header .content .nav-content a {
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-standard);
}
.header .content .nav-btn li {
	padding-left: 10px;
}
.header .content .nav-btn a {
	display: flex;
	align-items: center;
	padding: 0 1em 0.1em 1em;
	min-height: 36px;
	border: 1px solid #000;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}
.header .content .nav-btn .nav-btn-trial {
	border-color: var(--color-red);
	background-color: var(--color-red);
}
.header .content .nav-btn .nav-btn-contact {
	border-color: var(--color-standard-dark);
	background-color: var(--color-standard-dark);
}
.header .toggle {
	display: none;
	position: absolute;
	top: 20px;
	right: 50px;
	width: 40px;
	height: 40px;
}
.header .toggle::before,
.header .toggle::after {
	content: '';
}
.header .toggle::before,
.header .toggle::after,
.header .toggle i {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-standard);
	transition: transform 0.3s ease, margin-top 0.3s ease;
}
.header .toggle::before {
	margin-top: -8px;
}
.header .toggle::after {
	margin-top: 8px;
}
.header .toggle[aria-expanded=true]::before {
	margin-top: 0;
	transform: rotate(45deg);
}
.header .toggle[aria-expanded=true]::after {
	margin-top: 0;
	transform: rotate(-45deg);
}
.header .toggle[aria-expanded=true] i {
	opacity: 0;
}
.device-pc .header .content .nav-content a {
	transition: opacity 0.3s ease;
}
.device-pc .header .content .nav-content a:hover {
	opacity: 0.7;
}
.device-pc .header .content .nav-btn a {
	transition: background-color 0.3s ease, color 0.3s ease;
}
.device-pc .header .content .nav-btn .nav-btn-trial:hover {
	background-color: #fff;
	color: var(--color-red);
}
.device-pc .header .content .nav-btn .nav-btn-contact:hover {
	background-color: #fff;
	color: var(--color-standard-dark);
}
@media screen and (max-width: 1070px) {
	.header .content nav {
		display: none;
	}
	.header .toggle {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.header .content {
		padding: 0 20px;
		height: 60px;
	}
	.header .content .logo {
		width: 120px;
	}
	.header .toggle {
		top: 18px;
		right: 20px;
		width: 24px;
		height: 24px;
	}
}

/* ==================================================

	MEGAMENU

*/
.megamenu {
	display: none;
	position: fixed;
	z-index: 100;
	top: 80px;
	bottom: 0;
	right: 0;
	width: 0;
}
.megamenu[aria-hidden=false] {
	width: 100%;
}
.megamenu .megamenu-content {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 0;
	transition: width 0.6s ease;
}
.megamenu.megamenu-opened .megamenu-content {
	width: 400px;
}
.megamenu .megamenu-content::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #70748c;
}
.megamenu .nav {
	width: 400px;
	height: 100%;
	background-color: rgba(255,255,255,0.9);
	overflow: auto;
}
.megamenu nav {
	padding: 0 50px;
}
.ios .megamenu .nav {
	overscroll-behavior: none;
}
.ios .megamenu nav {
	min-height: calc(100% + 0.5px);
}
.megamenu .nav-content {
	padding: 30px 0 25px 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
}
.megamenu .nav-content li {
	padding: 20px 0;
}
.megamenu .nav-content li a {
	color: var(--color-standard);
}
.megamenu .nav-btn {
	padding-bottom: 50px;
}
.megamenu .nav-btn li {
	margin-bottom: 20px;
}
.megamenu .nav-btn li:last-child {
	margin-bottom: 0;
}
.megamenu .nav-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1em 0.1em 1em;
	min-height: 50px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
}
.megamenu .nav-btn .nav-btn-trial {
	background-color: var(--color-red);
}
.megamenu .nav-btn .nav-btn-contact {
	background-color: #000;
}
@media screen and (max-width: 1070px) {
	.megamenu {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.megamenu {
		top: 60px;
	}
	.megamenu.megamenu-opened .megamenu-content {
		width: 100%;
	}
	.megamenu .nav {
		width: 100vw;
	}
	.megamenu nav {
		padding: 0 25px;
	}
	.megamenu .nav-btn {
		padding-bottom: 40px;
	}
}

/* ==================================================

	FOOTER

*/
.footer {
	padding: 40px 0;
}
.footer nav {
	display: flex;
	justify-content: center;
}
.footer ul {
	position: relative;
	display: flex;
	justify-content: center;
	line-height: 1.5;
}
.footer li {
	position: relative;
	padding: 0 1em;
}
.footer li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.2em;
	bottom: 0.2em;
	left: 0;
	width: 1px;
	background-color: #333;
}
.footer ul:first-child li:first-child::before {
	content: none;
}
.device-pc .footer li a {
	transition: opacity 0.3s ease;
}
.device-pc .footer li a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 980px) {
	.footer nav {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footer ul::after {
		content: '';
		display: block;
		position: absolute;
		top: 0.2em;
		bottom: 0.2em;
		right: 0;
		width: 1px;
		background-color: #333;
	}
	.footer ul:first-child {
		margin-bottom: 1em;
	}
	.footer ul:first-child li:first-child::before {
		content: '';
	}
}


/* ==================================================

	FX

*/
.js-fx {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s linear 0.1s, transform 0.8s ease 0.1s;
}
.js-fx.inview {
	opacity: 1;
	transform: translateY(0);
}

/* ==================================================

	BREADCRUMBS

*/
.breadcrumbs {
	padding: 20px 0 0 0;
	font-weight: 500;
	font-size: 12px;
}
.breadcrumbs li {
	display: inline;
}
.breadcrumbs li::after {
	content: '　';
	display: inline-block;
	margin-left: 0.4em;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/common/arrow-breadcrumbs.svg);
	background-size: contain;
}
.breadcrumbs li:last-child::after {
	content: none;
}
.breadcrumbs a {
	color: var(--color-standard);
}

/* ==================================================

	CONTAINER

*/
.container {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1180px;
}
.container .container {
	padding: 0;
}
@media screen and (max-width: 980px) {
	.container {
		margin: 0 auto;
		padding: 0 50px;
		max-width: 780px;
	}
}
@media screen and (max-width: 768px) {
	.container {
		padding: 0 15px;
		max-width: initial;
	}
}

/* ==================================================

	CONTENT

*/
.content-base {
	position: absolute;
	top: 220px;
	bottom: 0;
	left: 0;
	width: 100%;
}
.content-base::before,
.content-base::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
}
.content-base::before {
	top: 0;
	left: 0;
	height: 456px;
	background: linear-gradient(0deg, rgba(239,244,247,1) 0%, rgba(14,98,197,1) 100%);
	clip-path: ellipse(80% 100% at 75% 100%);
}
.content-base::after {
	top: 456px;
	bottom: 0;
	background-color: #eff4f7;
}
.content-base span {
	display: block;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 300px;
	background-position: 0 0;
	background-image: url(../img/common/bg-line.png);
	background-size: 100% 100%;
	opacity: 0.5;
	pointer-events: none;
	mix-blend-mode: multiply;
}
.content-body {
	position: relative;
	padding: 80px 0 0 0;
}
.content-header {
	position: relative;
	padding: 50px 0 80px 0;
}
.content-header h2 {
	font-size: 42px;
	line-height: 1.5;
}
.content-frame {
	position: relative;
	background-color: #fff;
	border-radius: 10px;
}
@media screen and (max-width: 1280px) {
	.content-base::before,
	.content-base::after {
		width: 1280px;
	}
	.content-base span {
		width: 1280px;
		background-size: 1280px 100%;
	}
}
@media screen and (max-width: 980px) {
	.content-base::before {
		width: 980px;
		height: 340px;
	}
	.content-base::after {
		width: 980px;
		top: 340px;
	}
	.content-base span {
		width: 980px;
		height: 260px;
		background-size: 980px 100%;
	}
}
@media screen and (max-width: 768px) {
	.content-base {
		top: 130px;
	}
	.content-base::before {
		width: 768px;
		height: 200px;
	}
	.content-base::after {
		width: 768px;
		top: 200px;
	}
	.content-base span {
		width: 500px;
		height: 120px;
		background-size: 500px 100%;
	}
	.content-body {
		padding: 60px 0 0 0;
	}
	.content-header {
		padding: 20px 0 40px 0;
	}
	.content-header h2 {
		font-size: 2.8rem;
	}
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1em 0.1em 1em;
	min-width: 300px;
	min-height: 60px;
	border: 1px solid #000;
	border-radius: 999px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	color: #fff;
}
.c-btn-standard {
	border-color: var(--color-standard);
	background-color: var(--color-standard);
}
.c-btn-red {
	border-color: var(--color-red);
	background-color: var(--color-red);
}
.c-btn-prev {
	border-color: var(--color-gray);
	background-color: var(--color-gray);
}
.device-pc .c-btn {
	transition: background-color 0.3s ease, color 0.3s ease;
}
.device-pc .c-btn-standard:hover {
	background-color: #fff;
	color: var(--color-standard);
}
.device-pc .c-btn-red:hover {
	background-color: #fff;
	color: var(--color-red);
}
.device-pc .c-btn-prev:hover {
	background-color: #fff;
	color: var(--color-gray);
}
@media screen and (max-width: 768px) {
	.c-btn {
		padding: 0 1em 0.1em 1em;
		min-width: 30rem;
		font-size: 1.8rem;
	}
}

/* ==================================================

	[ LAYOUT ] CTA APPLY

*/
.l-cta-apply .frame {
	position: relative;
	padding: 35px 45px 30px 45px;
	border-top: 1px solid rgba(255,255,255,0.6);
	border-left: 1px solid rgba(255,255,255,0.6);
	background: linear-gradient(74deg, rgba(211,175,55,1) 0%, rgba(184,134,11,1) 100%);
	border-radius: 10px;
	text-align: center;
	color: #fff;
	box-shadow: 0 10px 10px rgba(0,0,0,0.25);
}
.l-cta-apply .pict {
	position: absolute;
	bottom: -16px;
	left: -40px;
	width: 160px;
}
.l-cta-apply h2 {
	font-size: 38px;
	line-height: 1.5;
	text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.l-cta-apply h3 {
	margin-top: 5px;
	font-size: 24px;
	line-height: 1.5;
	text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.l-cta-apply .btn {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}
.l-cta-apply .btn .c-btn {
	font-size: 24px;
}
@media screen and (max-width: 1190px) {
	.l-cta-apply .pict {
		bottom: 0;
		left: 0;
	}
	.l-cta-apply h2 span {
		display: block;
	}
}
@media screen and (max-width: 980px) {
	.l-cta-apply .pict {
		bottom: 40px;
		left: 10px;
	}
	.l-cta-apply h2 {
		padding-left: 140px;
		text-align: left;
	}
	.l-cta-apply h3 {
		padding-left: 140px;
		text-align: left;
	}
}
@media screen and (max-width: 768px) {
	.l-cta-apply .frame {
		padding: 2.5rem 1rem 3rem 1rem;
	}
	.l-cta-apply .pict {
		bottom: auto;
		top: -2rem;
		left: 1.5rem;
		width: 9.2rem;
	}
	.l-cta-apply h2 {
		padding-left: 9.4rem;
		text-align: left;
		font-size: 2.4rem;
	}
	.l-cta-apply h3 {
		margin-top: 3rem;
		padding: 0;
		text-align: center;
		font-size: 1.8rem;
	}
	.l-cta-apply .btn {
		margin-top: 1.5rem;
	}
	.l-cta-apply .btn .c-btn {
		font-size: 1.8rem;
	}
}

/* ==================================================

	[ LAYOUT ] CONTACT

*/
.l-contact {
	position: relative;
	padding: 45px 0 50px 0;
	background-color: var(--color-standard);
}
.l-contact h2 {
	margin-bottom: 40px;
	text-align: center;
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
}
.l-contact .wrap {
	display: flex;
	margin: 0 -15px;
}
.l-contact .wrap > div {
	position: relative;
	padding: 0 15px;
	flex-basis: 50%;
}
.l-contact .frame {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 0 0 135px;
	min-height: 150px;
	background-color: #fff;
	border-radius: 10px;
}
.l-contact .pict {
	position: absolute;
	top: 50%;
	left: 25px;
	width: 90px;
	transform: translateY(-50%);
}
.l-contact h3 {
	font-size: 20px;
	line-height: 1.5;
	color: var(--color-standard);
}
.l-contact .btn {
	display: flex;
	margin-top: 10px;
}
.l-contact .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 0.08em 20px;
	min-height: 40px;
	background-color: var(--color-standard);
	border: 1px solid var(--color-standard);
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.l-contact .number {
	font-weight: 700;
	font-size: 36px;
	line-height: 1;
}
.l-contact .note {
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.5;
}
.device-pc .l-contact .btn a {
	transition: background-color 0.3s ease, color 0.3s ease;
}
.device-pc .l-contact .btn a:hover {
	background-color: #fff;
	color: var(--color-standard);
}
@media screen and (max-width: 1070px) {
	.l-contact .wrap {
		display: block;
		margin: 0 auto;
		max-width: 480px;
	}
	.l-contact .wrap > div {
		padding: 0 0 30px 0;
	}
	.l-contact .wrap > div:last-child {
		padding: 0;
	}
}
@media screen and (max-width: 768px) {
	.l-contact {
		padding: 2rem 0 3rem 0;
	}
	.l-contact .container {
		max-width: 460px;
	}
	.l-contact h2 {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}
	.l-contact .wrap > div {
		padding: 0 0 1rem 0;
	}
	.l-contact .frame {
		padding: 0 0 0 10rem;
		min-height: 12rem;
	}
	.l-contact .pict {
		left: 1.2rem;
		width: 7.6rem;
	}
	.l-contact h3 {
		font-size: 1.8rem;
	}
	.l-contact .btn {
		display: block;
		margin-top: 1rem;
	}
	.l-contact .btn a {
		padding: 0 0.6em 0.06em 0.6em;
		min-height: 4rem;
		font-size: 1.34rem;
	}
	.l-contact .number {
		font-size: 2.8rem;
	}
	.l-contact .note {
		margin-top: 0.5rem;
		font-size: 1.2rem;
	}
}

/* ==================================================

	[ 404 ]

*/
.p-404 .content-frame {
	margin-bottom: 100px;
	padding: 80px 100px 60px 100px;
}
.p-404 .content-frame h3 {
	margin: 0 auto;
	max-width: 900px;
}
.p-404 .content-frame p {
	margin-top: 50px;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
}
.p-404 .content-frame .l-btn {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
@media screen and (max-width: 980px) {
	.p-404 .content-frame {
		padding: 80px 50px 60px 50px;
	}
}
@media screen and (max-width: 768px) {
	.p-404 .content-frame {
		margin-bottom: 40px;
		padding: 30px 15px 30px 15px;
	}
	.p-404 .content-frame p {
		margin-top: 3rem;
		font-size: 1.6rem;
	}
	.p-404 .content-frame .l-btn {
		margin-top: 3rem;
	}
}