@charset "utf-8";
:root {
	--c-primary: #3db7fc;
	--c-d-blue: #298cc4;
	--c-d-green: #2e95af;
	--c-navy: #066faa;
	--c-d-blue: #137eba;
	--c-yellow: #efe682;
	--c-light: #f5f5f5;
	--c-l-gray: #ccc;
	--c-m-gray: #707070;
	--c-d-gray: #666;
	--c-bk: #1d1d1d;
	--c-white: #fff;
	--c-text: #fff;
	--c-bg: #127eba;
	--fw-reg: 400;
	--fw-medium: 400;
	--fw-semibold: 400;
	--fw-bold: 400;
	--font-base: "Shippori Mincho B1", sans-serif;
	--font-garamond: "Shippori Mincho B1", sans-serif;
	--font-notosans: "Shippori Mincho B1", sans-serif;
	--font-all: "Shippori Mincho B1", sans-serif;
	--transition-base: all ease-in-out 0.33s;
	--transition-img: all ease-in-out 0.4s;
	--sticky-top: 70px;
	--collapsed: 50px;
	--expanded: 837px;
	--per-item-scroll: 837;
}
@media screen and (min-width: 1000px) and (max-height: 900px) {
	:root {
		--collapsed: 50px;
		--expanded: 690px;
		--per-item-scroll: 690;
	}
}
@media screen and (max-width: 768px) and (min-height: 668px) and (max-height: 780px) {
	:root {
		--collapsed: 50px;
		--expanded: 525px;
		--per-item-scroll: 525;
	}
}

@media screen and (max-width: 768px) and (min-height: 813px) and (max-height: 844px) {
	:root {
		--collapsed: 50px;
		--expanded: 725px;
		--per-item-scroll: 725;
	}
}

/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.6;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0.05em;
	font-weight: var(--fw-medium);
	scroll-behavior: smooth;
	background-color: var(--c-bg);
}

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

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: 0px;
	height: 0px;
}

::-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);
}

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

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

main {
	padding-bottom: 150px;
}
#front_page main {
	padding-bottom: 0px;
}
@media screen and (max-width: 999px) {
	main {
		padding-bottom: 0;
	}
}

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

.sec-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}

.sec-cont-flex {
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.btn-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.btn-box-right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.btn-box-center {
	width: 100%;
	display: flex;
	justify-content: center;
}
.btn-box-between {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 999px) {
	.sec-cont-flex {
		flex-flow: column;
		gap: 20px;
	}
}

/* ------------------------------------------------------------
fonts
---------------------------------------------------------------*/
.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
/* ------------------------------------------------------------
Bg
---------------------------------------------------------------*/
.bg-light {
	background-color: var(--c-light);
}
.bg-op-05::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url("../images/common/bg-op-05.webp");
	background-position: center;
	background-size: auto;
	background-repeat: repeat;
	mix-blend-mode: multiply;
}
.bg-op-10::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url("../images/common/bg-op-10.webp");
	background-position: center;
	background-size: auto;
	background-repeat: repeat;
	mix-blend-mode: multiply;
}
.bg-op-75::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url("../images/common/bg-op-75.webp");
	background-position: center;
	background-size: auto;
	background-repeat: repeat;
}

.lower_white {
	background-color: #fff;
}
.lower_white .lower-sec {
	padding: 50px 6.94%;
}
.lower_white main p,
.lower_white main ul,
.lower_white main ul li {
	color: #222;
}
.lower_white .pagenation {
	width: fit-content;
	margin: 80px auto 0;
	color: #888;
	display: flex;
	gap: 10px;
}
.lower_white .pagenation span,
.lower_white .pagenation a {
	font-size: 16px;
	/* line-height: calc(27 / 20); */
	padding: 7px 11px;
	color: #212a37;
}
.lower_white .pagenation span.current,
.lower_white .pagenation a:hover {
	background-color: #3db7fc;
	color: #fff;
}
.lower_white .pagenation a.prev,
.lower_white .pagenation a.next {
	position: relative;
	background-color: #f5f5f5;
	min-width: 80px;
	min-height: 40px;
	display: flex;
	align-items: center;
}
.lower_white .pagenation a.prev {
	justify-content: flex-end;
}
.lower_white .pagenation a.prev:hover,
.lower_white .pagenation a.next:hover {
	background-color: #3db7fc;
}
.lower_white .pagenation a.prev:before,
.lower_white .pagenation a.next:before {
	position: absolute;
	content: "";
	background: url("../images/projects/icon-arrow-black.svg");
	background-size: cover;
	width: 12px;
	height: 12px;
	left: 0;
	right: 0;
	top: 2px;
	bottom: 0;
	margin: auto;
}
.lower_white .pagenation a:hover.prev:before,
.lower_white .pagenation a:hover.next:before {
	background: url("../images/projects/icon-arrow-white2.svg");
	background-size: cover;
}
.lower_white .pagenation a.prev::after,
.lower_white .pagenation a.next::after {
	font-size: 16px;
	line-height: 1;
	color: #212a37;
}
.lower_white .pagenation a:hover.prev::after,
.lower_white .pagenation a:hover.next::after {
	color: #fff;
}
.lower_white .pagenation a.prev:before {
	transform: rotate(180deg);
	left: 11px;
	right: unset;
}
.lower_white .pagenation a.next:before {
	left: unset;
	right: 11px;
}
.lower_white .pagenation a.prev::after {
	content: "Prev";
}
.lower_white .pagenation a.next::after {
	content: "Next";
}
@media screen and (max-width: 999px) {
	.lower_white .pagenation {
		margin: 40px auto 0;
		flex-wrap: wrap;
		gap: 5px;
	}
	.lower_white .pagenation {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 768px) {
	.lower_white .pagenation {
		gap: 0;
	}
}
/* ------------------------------------------------------------
Button
---------------------------------------------------------------*/
/* common button */
.c-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: auto;
	min-width: 250px;
	height: 60px;
	background: var(--c-white);
	padding: 15px 20px;
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
	color: var(--c-primary);
	gap: 20px;
	border: 1px solid var(--c-white);
	cursor: pointer;
}
.c-btn.--border {
	border: 1px solid var(--c-primary);
}
.c-btn > p {
	width: 100%;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0;
	white-space: nowrap;
	padding-right: 20px;
	position: relative;
}
.c-btn > p::after {
	content: "";
	width: 1px;
	height: 40px;
	background: #eeeeee;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.c-btn-icon-area {
	width: 30px;
	height: auto;
	aspect-ratio: 1 /1;
	background: var(--c-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}
.c-btn-icon-area::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	z-index: 1;
	transform: scale(0);
	transition: all ease 0.4s;
	background: var(--c-white);
}
.c-btn-icon-area > i {
	width: 9px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	z-index: 10;
	flex-shrink: 0;
}

.c-btn:hover {
	color: var(--c-white);
	background: var(--c-primary);
}

.c-btn:hover .c-btn-icon-area::after {
	transform: scale(1.5);
}
.c-btn:hover .c-btn-icon-area > i {
	background-image: url("../images/common/icon-arrow-right-bl.svg");
}

@media screen and (max-width: 768px) {
	.c-btn {
		gap: 15px;
		height: 50px;
		padding: 15px;
	}
	.c-btn > p {
		padding-right: 15px;
	}
}

/* more button */
.btn-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 60px;
	background: transparent;
	border: 1px solid var(--c-primary);
	border-radius: 999px;
	padding: 20px;
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
}

.btn-more.btn-more-white {
	border: 1px solid var(--c-white);
}
.btn-more:hover {
	border: 1px solid var(--c-primary);
	background: var(--c-primary);
}
.btn-more .btn-txt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	color: var(--c-primary);
	position: relative;
	z-index: 10;
}
.btn-more.btn-more-white .btn-txt {
	color: var(--c-white);
}
.btn-more:hover .btn-txt {
	color: var(--c-white);
}
.btn-more .btn-txt::after {
	content: "";
	position: relative;
	width: 10px;
	height: auto;
	display: flex;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-up-right-bl.svg");
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 10;
}
.btn-more.btn-more-white .btn-txt::after {
	background-image: url("../images/common/icon-arrow-up-right-wh.svg");
}
.btn-more:hover .btn-txt::after {
	background-image: url("../images/common/icon-arrow-up-right-wh.svg");
}

/* ------------------------------------------------------------
title heading
---------------------------------------------------------------*/
.ttb-flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.ttl-box {
	display: flex;
	gap: 20px;
	position: relative;
}
.ttl-box.ttb-column {
	flex-flow: column;
}
.ttl-box.ttb-center {
	align-items: center;
}
.ttl-box.ttb-baseline {
	align-items: baseline;
}
.ttl-box.ttb-primary {
	color: var(--c-primary);
}
.ttl-box.ttb-white {
	color: var(--c-white);
}

.ttl-box.ttb-underline {
	padding-bottom: 30px;
}
.ttl-box.ttb-underline::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--c-primary);
	position: absolute;
	bottom: 0;
	left: 0;
}

.ttl-box > .--en {
	font-family: var(--font-garamond);
	font-weight: var(--fw-medium);
	letter-spacing: -0.05em;
}

.ttl-box h2 {
	font-size: 40px;
	line-height: 1.8;
}
.ttl-box h2.--en {
	font-size: 60px;
	line-height: 1;
	font-weight: var(--fw-reg);
}
.sec-lower-heading .ttl-box h2.--en {
	font-size: 80px;
}

.ttl-box h3 {
	font-size: 30px;
}

.ttl-box h4 {
	font-size: 24px;
}
.ttl-box h5 {
	font-size: 18px;
}
.ttl-box h6 {
	font-size: 16px;
}
.ttl-box > span {
	font-size: 16px;
	line-height: 1;
}
.sec-lower-heading .ttl-box > span {
	color: var(--c-text);
	font-size: 18px;
	font-weight: var(--fw-semibold);
}

.ttl-box > span.sub-ttl-dot {
	position: relative;
	padding-left: 22px;
	font-size: 18px;
}
.ttl-box > span.sub-ttl-dot::before {
	content: "";
	width: 12px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-text);
	border-radius: 999px;
	position: absolute;
	left: 0;
	top: 4px;
}
.ttl-box.ttb-primary > span.sub-ttl-dot::before {
	background: var(--c-primary);
}

.txt-underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media screen and (max-width: 1300px) {
	.ttl-box h2.--en {
		font-size: 40px;
	}
}

@media screen and (max-width: 999px) {
	.ttl-box h2 {
		font-size: 30px;
	}
	#front_page .ttl-box h2.--en {
		font-size: 30px;
	}
	.sec-lower-heading .ttl-box h2.--en {
		font-size: 50px;
	}
	.sec-lower-heading .ttl-box > span {
		font-size: 14px;
	}
	.ttl-box.ttb-underline {
		padding-bottom: 20px;
	}
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/
.c-txt {
	font-size: 18px;
	line-height: 2.27;
	font-weight: var(--fw-semibold);
	letter-spacing: 0;
}
.c-txt-sm {
	font-size: 16px;
	line-height: 1.8;
	font-weight: var(--fw-semibold);
	letter-spacing: 0;
}

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

@media screen and (max-width: 768px) {
	.c-txt {
		font-size: 15px;
		line-height: 1.8;
	}
}
/* ------------------------------------------------------------
animation
---------------------------------------------------------------*/
.anim-fade {
	opacity: 0;
	transition: all 0.6s ease-in-out;
}

.anim-fade.--up {
	transform: translateY(30px);
}
.anim-fade.--down {
	transform: translateY(-30px);
}
.anim-fade.--l2r {
	transform: translateX(-50px);
}
.anim-fade.--r2l {
	transform: translateX(50px);
}

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

.value-desc-anim-12 {
	opacity: 0;
	transition: opacity 0.3s;
}
.value-desc-anim-12.is-visible {
	opacity: 1;
}

.float {
	display: inline-block;
	animation: floatY infinite alternate ease-in-out;
	animation-play-state: paused;
}

@keyframes floatY {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(calc(var(--float-distance, 5px) * -1));
	}
}

.anim-fade-sv {
	opacity: 0;
	transition: all 0.6s ease-in-out;
	transform: translateX(-100px);
}

@media screen and (max-width: 999px) {
	.anim-fade-sv {
		transition: all 0.4s ease-in-out;
		transform: translateX(-30px);
	}
}

.is-active .anim-fade-sv {
	opacity: 1;
	transform: translate(0, 0);
}

.mask-circle {
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	animation: reveal 5s linear forwards;
}

@keyframes reveal {
	to {
		stroke-dashoffset: 0;
	}
}

.value-desc-anim-10-wrapper {
	display: block;
	margin: 0 auto;
	opacity: 0;
	animation: fadeIn 0.3s forwards;
	animation-delay: 1s;
}

.value-desc-anim-10-wrapper .mask-circle {
	animation: reveal 1s linear forwards;
	animation-delay: 1s;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

/* ------------------------------------------------------------
breadcrumbs
---------------------------------------------------------------*/
.breadcrumbs-box {
	display: flex;
	justify-content: flex-end;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	position: relative;
	gap: 20px;
}
.breadcrumbs > * {
	font-size: 14px;
	padding-right: 15px;
	position: relative;
	font-weight: var(--fw-semibold);
}
.breadcrumbs > *::after {
	content: "";
	width: 1px;
	height: auto;
	aspect-ratio: 1 / 20;
	background: var(--c-white);
	border-radius: 999px;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.breadcrumbs > *:last-child {
	padding-right: 0;
}
.breadcrumbs > *:last-child::after {
	content: none;
}

@media screen and (max-width: 768px) {
	.breadcrumbs {
		gap: 10px;
	}
	.breadcrumbs > * {
		font-size: 10px;
		padding-right: 10px;
	}
}
/* ------------------------------------------------------------
header
---------------------------------------------------------------*/

header {
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease-out 0.4s;
}

.header-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	height: auto;
	z-index: 10;
	transition: all ease-out 0.4s;
	position: relative;
	z-index: 100;
}

.header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 281px;
	aspect-ratio: 281 / 70;
	flex-shrink: 0;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--c-white);
	z-index: 10;
}
.header-logo > img {
	width: 100%;
	height: auto;
	aspect-ratio: 215 / 37;
	max-width: 215px;
	transition: all ease 0.33s;
}
.header-logo:hover img {
	opacity: 0.6;
}

@media screen and (max-width: 999px) {
	header {
		padding: 0 20px;
		background: var(--c-white);
	}

	.header-contents {
		height: 70px;
	}

	.header-logo {
		width: 203px;
		aspect-ratio: 203 / 35;
		position: relative;
		top: auto;
		left: auto;
		background: transparent;
	}
}

/* ------------------------------------------------------------
PC MENU
---------------------------------------------------------------*/
.pc-menu-area {
	position: fixed;
	top: 0;
	right: 0;
	/*	width: 216px;*/
	width: 196px;
	height: auto;
	z-index: 10;
	display: flex;
	flex-flow: column;
	align-items: flex-end;
}

.btn-pc-menu {
	/*	width: 160px;*/
	width: 100%;
	height: 60px;
	display: flex;
	background: var(--c-white);
	/*	justify-content: flex-end;*/
	justify-content: center;
	align-items: center;
	padding-inline: 40px;
	cursor: pointer;
	transition: all ease 1s;
	/* transition: width 2.34s ease-in-out, all 2.34s ease-in-out; */
	gap: 5px;
}
.is-active .btn-pc-menu {
	width: 100%;
	transition: width 1s ease-in-out, all 1s ease-in-out;
}
.btn-pc-menu > span {
	font-size: 14px;
	color: var(--c-bk);
	line-height: 1;
	letter-spacing: 0.05em;
}

.btn-pc-menu-icon {
	display: flex;
	width: 20px;
	height: auto;
	aspect-ratio: 20 / 13;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all ease 0.33s;
	background-image: url("../images/common/icon-menu-sm.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}
.is-active .btn-pc-menu-icon {
	background-image: url("../images/common/icon-close-sm.svg");
}

.pc-menu {
	width: 100%;
	position: relative;
	z-index: -1;
	background: var(--c-white);
	opacity: 1;
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	/*	transform: translate(5px, -5px) scale(0.95);*/
	transform-origin: top right;
	transition: all ease 0.5s;
	transition: max-height 1.16s ease-in-out, transform 1.16s ease-in-out;
}
.is-active .pc-menu {
	opacity: 1;
	pointer-events: all;
	z-index: 10;
	max-height: 1000px;
	transform: translate(0, 0) scale(1);
	overflow: visible;
}
.pc-menu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.pc-menu > ul > li {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0;
	width: 100%;
	height: 45px;
	z-index: 10;
	background: var(--c-white);
}
.pc-menu > ul > li > a {
	width: 100%;
	height: 100%;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/*	padding: 0 30px;*/
	padding: 0 20px;
	z-index: 10;
	background: var(--c-white);
	color: var(--c-bk);
	gap: 7px;
	border-bottom: 1px dashed #137eba;
}
.pc-menu > ul > li:last-child > a {
	border-bottom: none;
}
.pc-menu > ul > li:first-of-type a {
	border-top: 1px dashed #137eba;
}
.pc-menu > ul > li:first-of-type {
	height: 60px;
}
.pc-menu > ul > li:last-of-type {
	height: 60px;
}
/*
.pc-menu > ul > li:last-of-type a {
	border-bottom: none;
	padding-bottom: 15px;
}
*/

.has-sub {
	position: relative;
}

.sub-menu-parent::after {
	content: "";
	width: 9px;
	height: auto;
	aspect-ratio: 2 / 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-chevron-down-bk.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
	flex-shrink: 0;
}
.has-sub:hover .sub-menu-parent::after {
	transform: rotate(90deg);
}

.sub-menu-ext::after {
	content: "";
	width: 9px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-extlink-bk.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
	flex-shrink: 0;
}

.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	position: absolute;
	top: 0;
	width: 183px;
	background: var(--c-light);
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.8s ease;
	pointer-events: none;
	z-index: -1;
	transition-duration: 1.25s;
}

.sub-menu::before {
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 20px;
	height: 100%;
}

.has-sub:hover .sub-menu {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.sub-menu > li {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0;
	width: 100%;
	height: 45px;
	z-index: 10;
	background: var(--c-white);
}
.sub-menu > li > a {
	width: 100%;
	height: 100%;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 20px;
	z-index: 10;
	background: var(--c-light);
	color: var(--c-bk);
	border-bottom: 1px dashed #137eba;
}
.sub-menu > li:last-of-type a {
	border-bottom: none;
}
.pc-menu-area.no-transition {
	transition: none !important;
	-webkit-transition: none !important;
	animation: none !important;
	-webkit-animation: none !important;
}
.pc-menu-area .pc-menu > ul > .has-sub {
	position: relative;
	overflow: visible;
	z-index: 100;
	display: block;
}
.pc-menu-area .pc-menu > ul > .has-sub:hover::before {
	content: "";
	position: absolute;
	top: 100%;
	height: 1000px;
	width: 20px;
	margin-left: -20px;
	background-color: transparent;
	z-index: 10;
}
.pc-menu-area .pc-menu .sub-menu {
	position: absolute;
	right: 100%;
	top: 0;
	width: 200px;
	z-index: 200;
}
.pc-menu-area .pc-menu > ul > .has-sub:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 999px) {
	.pc-menu-area {
		display: none;
	}
}

/* ------------------------------------------------------------
header nav menu
---------------------------------------------------------------*/

.btn-menu {
	display: none;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 19px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.swap-icon {
	display: flex;
	width: 30px;
	height: auto;
	aspect-ratio: 30 / 19;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all ease 0.33s;
}
.swap-icon > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

@media screen and (max-width: 999px) {
	.btn-menu {
		display: flex;
	}

	.sp-menu-wrapper {
		position: absolute;
		opacity: 0;
		height: 0;
		overflow: hidden;
		pointer-events: none;
		z-index: -1;
		transition: all ease-in-out 0.5s;
		display: flex;
	}
	header.nav-is-open .sp-menu-wrapper {
		position: fixed;
		top: 69px;
		left: 0;
		right: 0;
		margin: 0 auto;
		opacity: 1;
		pointer-events: all;
		z-index: 10;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		display: flex;
		align-items: flex-start;
	}
	header.nav-is-open .sp-menu-wrapper::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 50%);
	}
	.sp-menu {
		width: 100%;
		display: flex;
		flex-flow: column;
		opacity: 0;
		height: 0;
		background: var(--c-white);
		padding-top: 30px;
		padding-bottom: 50px;
		position: relative;
		z-index: 10;
	}
	header.nav-is-open .sp-menu {
		opacity: 1;
		height: auto;
	}
	.sp-menu > nav {
		display: flex;
		flex-flow: column;
		width: 100%;
		padding: 0 20px;
	}
	.sp-menu > nav > *:first-child {
		border-top: 1px solid var(--c-l-gray);
	}

	.sp-menu > nav > .nav-item {
		color: var(--c-bk);
		border-bottom: 1px solid var(--c-l-gray);
		padding: 15px;
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
	}
	.sp-menu > nav > .nav-item:last-of-type {
		border-bottom: none;
	}

	.sp-menu > nav > .nav-item a {
		font-size: 16px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 7px;
		letter-spacing: -0.05em;
	}
	.sp-menu > nav > .nav-item a.link-ext::after {
		content: "";
		width: 9px;
		height: auto;
		aspect-ratio: 1 / 1;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		background-image: url(../images/common/icon-extlink-bk.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		transition: all ease 0.33s;
		flex-shrink: 0;
	}

	.nav-item-links {
		width: 100%;
		padding-left: 15px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 30px;
	}
	.nav-item-links.none-pl {
		padding-left: 0;
	}
}

/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/
footer {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0 50px;
	background: var(--c-d-gray);
	z-index: 30;
}
footer::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url("../images/common/bg-op-10.webp");
	background-position: center;
	background-size: auto;
	background-repeat: repeat;
	mix-blend-mode: multiply;
}

.logo-footer-side {
	position: absolute;
	bottom: 114px;
	left: 0;
	z-index: 5;
	width: 99px;
	height: auto;
	aspect-ratio: 99 / 342;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.logo-footer-side img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-contact {
	position: absolute;
	top: -150px;
	background: var(--c-primary);
	width: 93.05%;
	z-index: 20;
	height: 300px;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1780px;
	min-width: 1340px;
	padding: 80px 50px;
	padding-left: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6.7%;
}

.footer-contact .ttl-box {
	flex-shrink: 0;
}
.footer-contact .ttl-box h2.--en {
	font-size: 70px;
}

.footer-contact-btn-area {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1000px;
}

.footer-contact-tel-btn {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	padding-left: 10px;
}
.footer-contact-tel-btn > span {
	width: 100%;
	line-height: 1;
	font-size: 14px;
	font-weight: var(--fw-bold);
}
.footer-contact-tel-btn > div {
	width: 100%;
	display: flex;
	align-items: baseline;
	gap: 5px;
}
.footer-contact-tel-btn > div > p {
	font-size: 38px;
	line-height: 1;
	font-weight: var(--fw-medium);
	letter-spacing: 0;
	flex-shrink: 0;
}
.footer-contact-tel-btn > div > span {
	line-height: 1;
	font-size: 14px;
	font-weight: var(--fw-bold);
	white-space: nowrap;
}

.footer-contents {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	padding: 200px 0 50px;
	gap: 30px;
	margin: 0 auto;
	max-width: 1780px;
	overflow: hidden;
	position: relative;
	z-index: 10;
}
.footer-flex {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0 7.5%;
}

.footer-logo-group {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	width: 100%;
	gap: 30px;
	padding: 50px 0;
}
.footer-company-name {
	width: 100%;
	font-size: 18px;
	font-weight: var(--fw-bold);
	letter-spacing: 0;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 261px;
	aspect-ratio: 261 / 52;
	flex-shrink: 0;
	transition: var(--transition-base);
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-address {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 12px;
	font-weight: var(--fw-bold);
	line-height: 1;
	font-size: 14px;
}
.footer-address > a {
	text-decoration: underline;
}

.footer-logo-group > a {
	font-weight: var(--fw-bold);
	line-height: 1;
	font-size: 14px;
}

.footer-sns-box {
	width: auto;
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-sns-box > p {
	line-height: 1;
	font-weight: var(--fw-reg);
	font-family: var(--font-garamond);
	letter-spacing: -0.05em;
	font-size: 24px;
	flex-shrink: 0;
}
.footer-sns-box > div {
	flex-shrink: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.sns-btn {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	border-radius: 999px;
}

.sns-btn::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	z-index: 1;
	transform: scale(0);
	transition: all ease 0.4s;
	background: var(--c-white);
}
.sns-btn > i {
	width: auto;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	z-index: 10;
	flex-shrink: 0;
}
.sns-btn.--fb > i {
	aspect-ratio: 10 / 18;
	background-image: url("../images/common/icon-fb-wh.svg");
}
.sns-btn.--insta > i {
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-insta-wh.svg");
}

.sns-btn:hover {
	color: var(--c-white);
	background: var(--c-primary);
}
.sns-btn:hover::after {
	transform: scale(1.05);
}
.sns-btn.--fb:hover > i {
	background-image: url("../images/common/icon-fb-bl.svg");
}
.sns-btn.--insta:hover > i {
	background-image: url("../images/common/icon-insta-bl.svg");
}

.footer-nav-flex {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 30px;
	padding: 50px 0;
	padding-left: 8.8%;
	border-left: 1px solid #888;
}
.footer-nav-main {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8.8%;
}
.footer-nav-main > div {
	position: relative;
	width: auto;
	max-width: 150px;
	flex-shrink: 0;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
}
.footer-nav-main > div a,
.footer-nav-main > div span {
	width: 100%;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 7px;
	transition: var(--transition-base);
}
.footer-nav-main > div a.ext-link::after {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-extlink-wh.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
	flex-shrink: 0;
}
.footer-nav-main > div a:hover {
	opacity: 0.6;
}
.footer-nav-main-children {
	width: 100%;
	gap: 15px;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.footer-nav-main-children > div {
	width: 100%;
	gap: 15px;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 15px;
}

.footer-nav-main-sp-2col > div {
	width: 100%;
	gap: 15px;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer-contents .logo-box {
	display: flex;
	justify-content: center;
	gap: 20px;
	background: rgba(29, 29, 29, 0.2);
	padding: 50px;
}
.footer-contents .logo-box a {
	max-width: 450px;
	width: 100%;
}
.footer-contents .logo-box a:hover {
	opacity: 0.6;
	transition: var(--transition-img);
}

.footer-copy {
	width: 100%;
	font-size: 14px;
	font-weight: var(--fw-medium);
	text-align: left;
}
.footer-copy.fc-sp {
	display: none;
}

@media screen and (max-width: 1340px) {
	.footer-contact {
		padding-left: 50px;
		min-width: 0;
	}
	.footer-contact .ttl-box h2.--en {
		font-size: 80px;
	}
}
@media screen and (max-width: 1200px) {
	.footer-contact {
		width: 100%;
		gap: 30px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.footer-contact .ttl-box h2.--en {
		font-size: 70px;
	}
}
@media screen and (max-width: 999px) {
	footer {
		padding: 0;
	}
	.logo-footer-side {
		display: none;
	}
	.footer-contact {
		gap: 20px;
		padding: 50px 20px;
		flex-flow: column;
		align-items: flex-start;
		height: auto;
		position: relative;
		top: auto;
		width: 100%;
	}
	.footer-contents {
		padding: 50px 20px 30px;
	}
	.footer-flex {
		padding: 0;
	}
	.footer-logo-group {
		padding: 30px 0;
	}
	.footer-nav-flex {
		padding: 30px 0;
		padding-left: 8.8%;
	}
	.footer-nav-main {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		justify-content: unset;
		align-items: unset;
	}
	.footer-nav-main > div {
		width: 100%;
		max-width: none;
	}
	.footer-nav-main > div.footer-nav-main-sp-2col {
		grid-column: span 2;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.footer-copy.fc-pc {
		display: none;
	}
	.footer-copy.fc-sp {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.footer-contents .logo-box {
		background: transparent;
		padding: 0;
	}
	.footer-contact .ttl-box {
		flex-shrink: 0;
		width: 100%;
		max-width: 430px;
		margin: 0 auto;
	}
	.footer-contact-btn-area {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
		max-width: 430px;
		margin: 0 auto;
	}
	.footer-contact-tel-btn {
		align-items: center;
		padding-left: 0;
		padding-top: 10px;
	}
	.footer-contact-tel-btn > span {
		text-align: center;
	}
	.footer-contact-tel-btn > div {
		flex-flow: column;
		align-items: center;
		text-align: center;
		gap: 15px;
	}
	.footer-flex {
		padding: 0;
		display: flex;
		flex-flow: column-reverse;
		align-items: center;
		grid-template-columns: unset;
		gap: 30px;
	}
	.footer-logo-group {
		padding: 0;
		max-width: 430px;
		margin: 0 auto;
	}
	.footer-nav-flex {
		padding: 0;
		padding-left: 0;
		padding-bottom: 30px;
		border-left: none;
		border-bottom: 1px solid #888;
		max-width: 430px;
		margin: 0 auto;
	}
	.footer-copy.fc-sp {
		max-width: 430px;
		margin: 0 auto;
	}
	.footer-contact .ttl-box h2.--en {
		font-size: 30px;
	}
	.footer-nav-main-children > div {
		gap: 10px;
	}
	.footer-nav-main-sp-2col > div {
		gap: 10px;
	}
}
footer .top-link {
	position: fixed;
	bottom: 30px;
	right: 5%;
	z-index: 100;
}
footer .top-link a {
	position: relative;
	border: solid 1px #3db7fc;
	color: #3db7fc;
	background-color: #fff;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .top-link a:after {
	position: absolute;
	content: "";
	background-image: url("../images/common/icon-arrow-right-bl.svg");
	width: 13px;
	height: 13px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	transform: rotate(270deg);
	background-size: cover;
}
@media screen and (max-width: 768px) {
	footer .top-link {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
	}
	footer .top-link.is-show {
		opacity: 1;
		visibility: visible;
	}
}
/* ------------------------------------------------------------
lower common
---------------------------------------------------------------*/

.lower-sec {
	width: 100%;
	position: relative;
	padding: 0 6.94%;
	z-index: 10;
}

.lower-sec .ttl-box h3.--en {
	font-size: 60px;
	line-height: 1;
}

@media screen and (max-width: 999px) {
	.lower-sec {
		padding: 0 30px;
	}
}

@media screen and (max-width: 768px) {
	.lower-sec .ttl-box h3.--en {
		font-size: 40px;
	}
}

/* lower heading */
.sec-lower-heading {
	width: 100%;
	margin: 0 auto;
	padding: 0 3.472%;
	padding-top: 100px;
	padding-bottom: 50px;
	position: relative;
	min-height: 200px;
	background-image: url("../images/common/bg-lower-header.webp");
	background-position: center;
	background-size: contain;
	background-repeat: repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
}
.sec-lower-heading .sec-inner {
	height: 100%;
}
.lower-heading-flex {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0;
	padding-right: 266px;
}

@media screen and (max-width: 999px) {
	.sec-lower-heading {
		padding: 0 30px;
		padding-top: 100px;
		padding-bottom: 40px;
		min-height: 200px;
	}
	.lower-heading-flex {
		padding: 0;
		gap: 30px;
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

/* ------------------------------------------------------------
Our Service (TOP & Lower)
---------------------------------------------------------------*/
.sec-our-service {
	background: #fff;
	padding-bottom: 150px;
}
.sec-our-service .sec-inner {
	max-width: 100%;
}
.sec-our-service .sec-inner .os-bg-group-wh {
	margin: auto;
	max-width: 1780px;
}
.sec-c-ourservice {
	width: 100%;
	position: relative;
	background: var(--c-white);
	padding: 50px;
	padding-left: 6.94%;
	padding-right: 0;
	z-index: 1;
}
.c-ourservice-flex {
	width: 100%;
	display: flex;
	gap: 2.8%;
	justify-content: space-between;
	align-items: flex-start;
}

.sec-c-ourservice .ttl-box {
	width: 100%;
	max-width: 320px;
	flex-shrink: 0;
	gap: 57px;
}
.sec-c-ourservice .ttl-box h3.--en {
	font-size: 70px;
	line-height: 1;
}

.c-ourservice-ttl-txt {
	width: 100%;
}
.c-ourservice-ttl-txt > p {
	width: 100%;
	color: var(--c-white);
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background-color: var(--c-primary);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.c-ourservice-contents {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.coc-item {
	width: 100%;
	padding: 40px;
	border-left: 1px solid var(--c-primary);
	border-top: 1px solid var(--c-primary);
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 26px;
	position: relative;
}
.coc-item:nth-of-type(1),
.coc-item:nth-of-type(2) {
	border-top: none;
}
.coc-item > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 420 / 236;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.coc-item > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
}

.coc-item > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 20px;
}
.coc-item-head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: flex-start;
}
.coc-item-head > span {
	font-size: 40px;
	line-height: 1;
	letter-spacing: -0.05em;
	font-weight: var(--fw-medium);
	color: var(--c-primary);
}
.coc-item-head > p {
	font-size: 18px;
	line-height: 1;
	font-weight: var(--fw-semibold);
	letter-spacing: 0;
	color: var(--c-primary);
}
.coc-item > div > p {
	width: 100%;
	font-size: 30px;
	line-height: 1.5;
	font-weight: var(--fw-semibold);
	letter-spacing: -0.05em;
	color: var(--c-primary);
}

.coc-item-icon-area {
	width: 30px;
	height: auto;
	aspect-ratio: 1 /1;
	background: var(--c-primary);
	border: 1px solid var(--c-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	position: absolute;
	bottom: 40px;
	right: 40px;
}
.coc-item-icon-area::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	z-index: 1;
	transform: scale(0);
	transition: all ease 0.4s;
	background: var(--c-white);
}
.coc-item-icon-area > i {
	width: 9px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	z-index: 10;
	flex-shrink: 0;
}

.coc-item:hover figure img {
	transform: scale(1.03);
}

.coc-item:hover .coc-item-icon-area::after {
	transform: scale(1.7);
}
.coc-item:hover .coc-item-icon-area > i {
	background-image: url("../images/common/icon-arrow-right-bl.svg");
}

@media screen and (max-width: 1300px) {
	.coc-item > div > p {
		font-size: 24px;
	}
	.coc-item {
		padding: 20px;
	}
	.coc-item-icon-area {
		bottom: 20px;
		right: 20px;
	}
}
@media screen and (max-width: 1100px) {
	.sec-c-ourservice .ttl-box {
		max-width: 260px;
	}
	.sec-c-ourservice .ttl-box h3.--en {
		font-size: 70px;
	}
	.coc-item-head > span {
		font-size: 30px;
	}
	.c-ourservice-ttl-txt > p {
		font-size: 14px;
	}
	.coc-item {
		padding: 15px;
	}
	.coc-item-icon-area {
		bottom: 15px;
		right: 15px;
	}
}

@media screen and (max-width: 999px) {
	.sec-c-ourservice {
		padding: 65px 0 50px;
		padding-left: 0px;
	}
	.c-ourservice-flex {
		gap: 0;
		flex-flow: column;
		justify-content: flex-start;
	}
	.sec-c-ourservice .ttl-box {
		max-width: none;
		padding: 0 30px;
	}
	.c-ourservice-ttl-txt > p {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	.c-ourservice-contents {
		grid-template-columns: repeat(1, 1fr);
	}
	.coc-item {
		border-left: none;
		gap: 10px;
		padding: 30px;
	}
	.coc-item > div {
		gap: 10px;
	}
	.coc-item-icon-area {
		bottom: 30px;
		right: 30px;
	}
	.coc-item-head {
		gap: 10px;
	}
	.coc-item-head > span {
		font-size: 20px;
	}
	.coc-item-head > p {
		font-size: 15px;
	}
	.coc-item > div > p {
		font-size: 20px;
		white-space: nowrap;
	}
	.coc-item:nth-of-type(2) {
		border-top: 1px solid var(--c-primary);
	}
	.sec-c-ourservice {
		padding: 50px 0;
	}
	.sec-c-ourservice .ttl-box {
		gap: 30px;
	}
	.sec-c-ourservice .ttl-box h3.--en {
		font-size: 50px;
	}
	.sec-our-service {
		padding-bottom: 50px;
	}
}

/* ------------------------------------------------------------
Projects (TOP & Lower)
---------------------------------------------------------------*/
section.sec-c-projects {
	width: 100%;
	position: relative;
	padding-top: 70px;
	padding-bottom: 50px;
	padding-right: 0;
	background-color: var(--c-bg);
}
#front_page .sec-c-projects {
	background-color: var(--c-primary);
}

.c-projects-flex {
	width: 100%;
	padding-left: 6.94%;
	padding-right: 3.47%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.sec-c-projects .ttl-box h3.--en {
	font-size: 70px;
	line-height: 1;
}

.c-projects-txt-box {
	width: 52%;
	max-width: 680px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 20px;
}

.c-projects-txt-box > h4 {
	font-size: 24px;
	letter-spacing: 0;
	font-weight: var(--fw-semibold);
}

.c-projects-txt-box > p {
	font-size: 16px;
	line-height: 1.8;
	font-weight: var(--fw-semibold);
}

.c-projects-slider-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 600px;
	padding-left: 6.94%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	z-index: 0;
}

.c-projects-slider {
	width: 550px;
	height: 600px;
	overflow: visible;
	margin: 0;
}
.swiper-wrapper {
	align-items: flex-end;
}

.c-projects-slider-area {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.c-projects-slider-controlls {
	position: absolute;
	top: 0;
	right: 3.47%;
	width: 47.2%;
	max-width: 680px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 20px;
	z-index: 10;
}
.c-projects-slider-area .slide-btn-box {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.c-projects-slider-area .slide-btn-box > label {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: var(--c-white);
	border: 1px solid var(--c-primary);
	transition: all ease 0.33s;
	cursor: pointer;
	position: relative;
}
.c-projects-slider-area .slide-btn-box > label:hover {
	opacity: 0.6;
}
.c-projects-slider-area .slide-btn-box > label > i {
	width: 13px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
}
.c-projects-slider-area .slide-btn-box > .btn-slider-prev > i {
	background-image: url("../images/common/icon-arrow-prev-bl.svg");
}
.c-projects-slider-area .slide-btn-box > .btn-slider-next > i {
	background-image: url("../images/common/icon-arrow-next-bl.svg");
}

.c-projects-slider .swiper-slide {
	width: 100%;
	height: auto;
	aspect-ratio: 550 / 600;
	opacity: 0.75;
	margin: 0;
	transition: all ease 0.4s;
	transform: scale(0.75);
	transform-origin: bottom;
}

.c-projects-slider .swiper-slide-active {
	opacity: 1;
	transform: scale(1);
}

.c-projects-slider .swiper-slide:not(.swiper-slide-active) .pjc-item-bottom {
	opacity: 0;
}
.pjc-item {
	width: 100%;
	height: auto;
	aspect-ratio: 550 / 600;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	flex-flow: column;
}
.pjc-item-img-area {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.pjc-item-img-area > figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.pjc-item-img-area > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
}
.pjc-item:hover .pjc-item-img-area > figure > img {
	transform: scale(1.03);
}

.pjc-item-cont {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
	opacity: 1;
	transition: all ease-in-out 0.2s;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	padding: 30px;
}
.pjc-item-cont::after {
	content: "";
	width: 100%;
	height: 16.666%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 0;
	background: linear-gradient(0deg, rgb(0 0 0 / 51%), transparent);
}

.c-projects-slider .pjc-item-cont {
	opacity: 0;
}

.c-projects-slider .swiper-slide-active .pjc-item-cont {
	opacity: 1;
}

.pjc-item-ttl {
	width: 100%;
	position: relative;
	z-index: 10;
}
.pjc-item-ttl > p {
	width: 100%;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline;
	background-color: #fff;
	color: var(--c-primary);
	font-size: 26px;
	line-height: 1.8;
}
.pjc-item-bottom {
	width: 100%;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0 0;
	flex-shrink: 0;
}
.pjc-ttls {
	width: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.pjc-ttls > p,
.pjc-ttls > span {
	font-size: 13px;
	font-family: var(--font-base);
	font-weight: var(--fw-semibold);
	padding-right: 10px;
	position: relative;
	line-height: 1.15;
}
/*
.pjc-ttls > p {
	border-right: 1px solid var(--c-white);
}
*/

.pjc-tags {
	width: auto;
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}
.pjc-tags > span {
	font-size: 11px;
	font-family: var(--font-base);
	font-weight: var(--fw-semibold);
	position: relative;
	border: 1px solid var(--c-white);
	line-height: 1;
	border-radius: 999px;
	padding: 8px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-project-grid-sp-area {
	display: none;
}

@media screen and (max-width: 1340px) {
	.c-projects-txt-box {
		max-width: 560px;
	}
	.c-projects-slider-controlls {
		max-width: 560px;
	}
}
@media screen and (max-width: 1260px) {
	.c-projects-slider-controlls {
		max-width: 520px;
	}
	.c-projects-txt-box > h4 {
		font-size: 20px;
	}
}
@media screen and (max-width: 1200px) {
	.c-projects-slider-controlls {
		max-width: 400px;
	}
}
@media screen and (max-width: 1100px) {
	.c-projects-slider-controlls {
		max-width: 280px;
	}
}
@media screen and (max-width: 999px) {
	section.sec-c-projects {
		padding-top: 70px;
		padding-bottom: 100px;
	}
	.c-projects-slider-area {
		display: none;
	}
	.c-projects-flex {
		flex-flow: column;
		gap: 50px;
		padding: 0 30px;
		justify-content: flex-start;
	}
	.sec-c-projects .ttl-box h3.--en {
		font-size: 70px;
	}
	.c-projects-txt-box {
		max-width: none;
		width: 100%;
	}
	.c-project-grid-sp-area {
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 30px;
		padding: 0 30px;
	}
	.c-project-grid-sp {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.c-project-grid-sp .pjc-item {
		aspect-ratio: 768 / 400;
	}
}

@media screen and (max-width: 768px) {
	.c-project-grid-sp .pjc-item {
		aspect-ratio: 550 / 600;
	}
	.pjc-item-cont {
		padding: 20px;
	}
	.pjc-item-ttl > p {
		font-size: 20px;
		white-space: nowrap;
	}
	.sec-c-projects .ttl-box h3.--en {
		font-size: 50px;
	}
	.c-projects-txt-box > p {
		font-size: 15px;
	}
	.c-projects-flex {
		gap: 30px;
	}
	section.sec-c-projects {
		padding-top: 50px;
	}
}

/* -- Page Mpre -----------------------------------------------*/
#page-more.sec-page-more {
	background: #f5f5f5;
	color: #3db7fc;
	font-size: 18px;
	padding: 0;
}
#page-more.sec-page-more .wrapper {
	display: flex;
	flex-flow: row;
	max-width: 1140px;
	margin: 0 auto;
	padding: 80px 0 250px;
	gap: 20px;
}
#page-more.sec-page-more .wrapper p {
	color: var(--c-primary);
}
#page-more.sec-page-more .wrapper .c-btn:hover p {
	color: var(--c-white);
}
#page-more.sec-page-more .page-box {
	width: calc(100% / 4);
}
#page-more.sec-page-more .page-box a {
	height: auto;
	padding: 0;
	background: none;
	border: none;
	display: block;
}
#page-more.sec-page-more .page-box a img {
	transition: var(--transition-base);
}
#page-more.sec-page-more .page-box a > div {
	display: flex;
	justify-content: space-between;
	padding: 15px 10px;
}
#page-more.sec-page-more .page-box a:hover {
	opacity: 1 !important;
}
#page-more.sec-page-more .page-box a:hover img {
	opacity: 0.7;
}
#page-more.sec-page-more .page-box a:hover .c-btn-icon-area {
	border: 1px solid var(--c-primary);
}
#page-more.sec-page-more .page-box a:hover p {
	color: var(--c-primary) !important;
}

@media screen and (max-width: 999px) {
	#page-more.sec-page-more .wrapper {
		flex-flow: column;
		padding: 50px 30px;
	}
	#page-more.sec-page-more .page-box {
		width: 100%;
	}
	.pjc-item-bottom {
		margin: 0;
	}
}

@media screen and (max-width: 768px) {
	#page-more.sec-page-more .page-box a > div {
		padding: 10px;
	}
	#page-more.sec-page-more .wrapper {
		gap: 15px;
	}
}

.grecaptcha-badge {
 display: none !important;
}
