@charset "utf-8";
:root {
	--c-primary: #f66633;
	--c-dark: #222222;
	--c-bk: #000;
	--c-white: #fff;
	--c-white-30: rgb(255 255 255 / 30%);
	--c-white-50: rgb(255 255 255 / 50%);
	--c-text: #fff;
	--c-bg: #001f51;
	--font-base: "Noto Sans JP", sans-serif;
	--font-sora: "Sora", sans-serif;
	--font-all: "Sora", "Noto Sans JP", sans-serif;
	--transition-base: all ease-in-out 0.33s;
	--transition-img: all ease-in-out 0.4s;
}
/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.5;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0;
	font-weight: 400;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	line-height: inherit;
}

body::before {
	content: "";
	position: fixed;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 110%;
	height: 110vh;
	background-image: url(../images/common/site-bg.png);
	background-color: var(--c-bg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
label {
	user-select: none;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

th,
td {
	width: 41%;
	text-align: left;
	font-weight: inherit;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: var(--c-dark);
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: var(--c-dark);
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}
[x-cloak] {
	display: none !important;
}
.not-scroll {
	touch-action: none;
	overflow: hidden;
}
.no-scroll-bar::-webkit-scrollbar {
	display: none;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/

.sec-inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.sec-flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: flex-start;
}

@media screen and (max-width: 768px) {
	.sec-flex {
		justify-content: flex-start;
		flex-flow: column;
	}
}

.sec-col {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 50px;
}
.page-lower .sec-col {
	gap: 30px;
}

main {
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

/* ------------------------------------------------------------
animation
---------------------------------------------------------------*/
.anim-fade {
	opacity: 0;
	transition: all 0.6s ease-in-out;
}

.anim-fade.--up {
	transform: translateY(30px);
}

.anim-fade.is-visible {
	opacity: 1;
}
.anim-fade.--up.is-visible,
.anim-fade.--left.is-visible {
	transform: translate(0, 0);
}

/* ------------------------------------------------------------
heading
---------------------------------------------------------------*/
.h2-box {
	flex-shrink: 0;
}
.c-h2 {
	font-size: 60px;
	line-height: 1.3;
	font-weight: 400;
	font-family: var(--font-sora);
}
.c-h2.--center {
	text-align: center;
}
.c-h2 > span {
	color: var(--c-primary);
}
@media screen and (max-width: 1200px) {
	.c-h2 {
		font-size: 40px;
	}
}
@media screen and (max-width: 999px) {
	.c-h2 {
		font-size: 30px;
	}
}

.h3-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
}
.h3-box.--center {
	align-items: center;
	text-align: center;
}
.h3-box.--row {
	flex-flow: row;
	align-items: baseline;
	gap: 20px;
}

.h3-box > span {
	width: 100%;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	font-family: var(--font-all);
}
.h3-box > h3 {
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
.h3-box.--row > h3 {
	width: auto;
	flex-shrink: 0;
}
.h3-box.--row > span {
	width: auto;
}
@media screen and (max-width: 999px) {
	.h3-box > h3 {
		font-size: 16px;
	}
}

@media screen and (max-width: 500px) {
	.h3-box.--row {
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
	}
}

.sub-ttl {
	font-size: 18px;
	font-family: var(--font-all);
}
.sub-ttl > span {
	color: var(--c-primary);
}

.small-ttl {
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.9;
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/

.c-txt {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 3;
	text-align: left;
	word-break: break-all;
}
.c-txt-sm {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-align: left;
	word-break: break-all;
}

@media screen and (max-width: 999px) {
	.c-txt {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
Button
---------------------------------------------------------------*/
.btn-box {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-box.--left {
	justify-content: flex-start;
}
.btn-box.--right {
	justify-content: flex-end;
}

.btn-more {
	width: 180px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 999px;
	padding: 16px;
	border: 1px solid var(--c-white-30);
	transition: var(--transition-base);
}
.btn-more:hover {
	background: var(--c-white);
	color: var(--c-bg);
}
.btn-more > span {
	font-size: 16px;
	font-family: var(--font-sora);
	line-height: 1;
	font-weight: 600;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.btn-more {
		width: 150px;
		padding: 11px;
	}
	.btn-more > span {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
Table
---------------------------------------------------------------*/

.c-tbl-wrapper {
	width: 100%;
}
.c-tbl {
	width: 100%;
	display: flex;
	flex-flow: column;
	border-top: 1px solid var(--c-white-30);
}
.c-tbl > dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--c-white-30);
}
.c-tbl > dl > dt {
	width: 170px;
	display: flex;
	padding: 30px;
	align-items: flex-start;
	flex-shrink: 0;
	font-weight: bold;
}
.c-tbl > dl > dt > p {
	font-weight: bold;
}
.c-tbl > dl > dd {
	width: 100%;
	display: flex;
	padding: 30px;
	align-items: flex-start;
}

@media screen and (max-width: 999px) {
	.c-tbl > dl {
		flex-flow: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
		padding: 20px;
	}
	.c-tbl > dl > dt {
		width: 100%;
		padding: 0;
	}
	.c-tbl > dl > dd {
		padding: 0;
	}
}
@media screen and (max-width: 400px) {
	.c-tbl > dl {
		padding: 20px 10px;
	}
}

/* ------------------------------------------------------------
list
---------------------------------------------------------------*/

ul.list {
	list-style-type: disc;
	margin-left: 20px;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
ul.list > li {
	width: 100%;
}
.list-item-group {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 5px;
}
.list-item-group > p {
	font-weight: 700;
}

/* ------------------------------------------------------------
card
---------------------------------------------------------------*/

/* Card usecase */
.card-usecase {
	width: 100%;
	height: auto;
	aspect-ratio: 300 / 250;
	max-height: 250px;
	border: 1px solid var(--c-white-30);
	padding: 30px;
	border-radius: 10px;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px;
	overflow: hidden;
	position: relative;
}
.card-usecase .h3-box {
	gap: 10px;
}

/* ------------------------------------------------------------
header
---------------------------------------------------------------*/

header {
	width: 100%;
	position: fixed;
	top: 50px;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease-out 0.4s;
	padding: 0 6.94%;
}
.header-inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	background: rgb(0 0 0 / 5%);
	overflow: hidden;
	backdrop-filter: brightness(0.8) blur(30px);
	-webkit-backdrop-filter: brightness(0.8) blur(30px);
	height: 80px;
	padding: 30px 50px;
	position: relative;
	z-index: 10;
	border-radius: 10px;
}
.header-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 149px;
	aspect-ratio: 149 / 25;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.header-logo:hover {
	opacity: 0.6;
}
.header-logo > a {
	width: 100%;
	height: 100%;
}
.header-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-nav-area {
	width: auto;
	display: flex;
	justify-content: flex-end;
}
.g-nav {
	width: auto;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: flex-end;
}
.g-nav > a {
	font-size: 16px;
	line-height: 1;
	transition: var(--transition-base);
	font-family: var(--font-sora);
}
.g-nav > a:hover {
	color: var(--c-primary);
}

@media screen and (max-width: 999px) {
	header {
		top: 20px;
		padding: 0 20px;
	}
	.header-inner {
		height: 60px;
		padding: 20px;
		border-radius: 5px;
	}
	.nav-is-open .header-inner {
		height: calc(100vh - 40px);
		overflow: hidden;
	}
	.nav-is-open .header-contents {
		height: auto;
	}
	.header-logo {
		max-width: 119px;
		aspect-ratio: 119 / 20;
	}
	.g-nav {
		display: none;
	}
}

/* ------------------------------------------------------------
SP Nav
---------------------------------------------------------------*/

.btn-menu {
	display: none;
}
.sp-menu {
	display: none;
}

@media screen and (max-width: 999px) {
	.btn-menu {
		position: relative;
		z-index: 9999;
		display: flex;
		width: 30px;
		height: 10px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}

	.btn-menu-wrapper {
		display: flex;
		width: 100%;
		height: 100%;
		flex-flow: column;
		align-items: center;
	}

	.toggle-box {
		position: relative;
		height: 100%;
		width: 100%;
		opacity: 0.7;
	}

	.toggle-bar {
		position: absolute;
		right: 0px;
		display: block;
		height: 2px;
		width: 100%;
		background: var(--c-white);
		transition: all ease 0.33s;
		border-radius: 999px;
	}

	.toggle-bar-01 {
		top: 0px;
	}

	.toggle-bar-02 {
		bottom: 0;
	}

	.toggle-bar.toggle-bar-01-active {
		top: 50%;
		transform: translateY(-50%) rotate(30deg);
		background: var(--c-white);
	}

	.toggle-bar.toggle-bar-02-active {
		width: 100%;
		transform: translateY(-50%) rotate(-30deg);
		top: 50%;
		background: var(--c-white);
	}

	.sp-menu {
		pointer-events: none;
		position: relative;
		z-index: 60;
		display: flex;
		height: calc(100% - 20px);
		width: 100%;
		justify-content: center;
		overflow-x: hidden;
		opacity: 0;
		transition-property: all;
		transition-duration: 500ms;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	}

	.sp-menu.is-active {
		pointer-events: auto;
		opacity: 1;
	}
	.sp-menu-inner {
		width: 100%;
		height: 100%;
		max-width: 430px;
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 20px;
		padding-top: 80px;
		gap: 30px;
		position: relative;
		z-index: 10;
		overflow-y: auto;
		transition: var(--transition-base);
	}
	.sp-g-nav {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 40px;
	}

	.sp-g-nav > a {
		width: 100%;
		text-align: center;
		font-size: 24px;
		font-family: var(--font-sora);
	}
}

/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/

footer {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
	background: var(--c-bk);
}
.footer-contact-bnr {
	width: 100%;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--c-dark);
	gap: 30px;
	padding: 0 20px;
}
.footer-contact-bnr > div {
	display: flex;
	align-items: center;
	position: relative;
	gap: 50px;
}
.footer-contact-bnr > i {
	content: "";
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--c-white-30);
	border-radius: 999px;
	flex-shrink: 0;
	transition: var(--transition-img);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.footer-contact-bnr > i::before {
	content: "";
	background-image: url("../images/common/icon-chevron-right-wh.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 6px;
	height: auto;
	aspect-ratio: 1 / 2;
	position: relative;
	z-index: 10;
	transition: all ease 0.2s 0.1s;
}
.footer-contact-bnr > i::after {
	content: "";
	background: var(--c-white);
	position: absolute;
	z-index: 0;
	width: 60px;
	height: auto;
	aspect-ratio: 1 / 1;
	transition: all ease-out 0.4s;
	transform: scale(0);
	transform-origin: center;
	border-radius: 999px;
}
.footer-contact-bnr:hover > i::before {
	background-image: url("../images/common/icon-chevron-right-bk.svg");
}
.footer-contact-bnr:hover > i::after {
	transform: scale(1.2);
}

.footer-contact-bnr > div > p {
	font-size: 24px;
	font-family: var(--font-sora);
}
.footer-contact-bnr > div > span {
	font-size: 14px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
.footer-contact-bnr > div > span > br {
	display: none;
}

.footer-contents {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	padding: 50px 100px;
	max-width: 1440px;
	margin: 0 auto;
	gap: 100px;
	overflow: hidden;
}
.footer-flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: flex-start;
	gap: 50px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 149px;
	aspect-ratio: 149 / 25;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-g-nav {
	width: auto;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: flex-end;
}
.footer-g-nav > a {
	font-size: 16px;
	line-height: 1;
	transition: var(--transition-base);
	font-family: var(--font-sora);
}
.footer-g-nav > a:hover {
	color: var(--c-primary);
}

.footer-copy {
	width: 100%;
	font-size: 10px;
	font-family: var(--font-sora);
	color: var(--c-text);
	text-align: center;
}

@media screen and (max-width: 999px) {
	.footer-contact-bnr {
		height: 145px;
		padding: 0 30px;
	}
	.footer-contact-bnr > div {
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
	}
	.footer-contents {
		padding: 30px;
		padding-top: 50px;
		gap: 50px;
	}
	.footer-flex {
		flex-flow: column;
		gap: 30px;
		align-items: center;
	}
	.footer-g-nav {
		width: 100%;
		justify-content: center;
	}
	.footer-copy {
		font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.footer-contact-bnr {
		gap: 17px;
	}
	.footer-contact-bnr > div > span > br {
		display: inline;
	}
	.footer-g-nav {
		width: 100%;
		justify-content: unset;
		gap: 15px 56px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: unset;
	}
	.footer-flex {
		align-items: flex-start;
	}
}

/* ------------------------------------------------------------
breadcrumbs
---------------------------------------------------------------*/
.breadcrumbs-box {
	display: flex;
	justify-content: flex-end;
	width: auto;
	flex-shrink: 0;
}
.breadcrumbs {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: flex-end;
}
.breadcrumbs > * {
	display: flex;
	position: relative;
	align-items: center;
	gap: 15px;
	font-size: 13px;
	font-family: var(--font-sora);
}
.breadcrumbs > *::after {
	content: "";
	display: block;
	background: var(--c-white-50);
	width: 5px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	position: relative;
}
.breadcrumbs > *:last-child::after {
	content: none;
}
.breadcrumbs > a {
	transition: all ease 0.33s;
}
.breadcrumbs > a:hover {
	color: var(--c-primary);
}

@media screen and (max-width: 999px) {
	.breadcrumbs-box {
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
	.breadcrumbs-box {
		overflow-x: auto;
		overflow-y: hidden;
	}
	.breadcrumbs {
		width: 100%;
	}
	.breadcrumbs > a,
	.breadcrumbs > span {
		text-wrap: nowrap;
	}
}

#recaptcha-dl {
	display: none;
}