/*--------------------------------------------------------------
MARK: common
--------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	background: #fff;
}

img {
	display: block;
	max-width: 100%;
}

a,
a:visited {
	color: #0d0d0d;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.8;
}

.wrapper {
	max-width: 1046px;
	margin: 0 auto;
	padding-inline: 20px;
}

.wrapper-inner {
	max-width: 790px;
	margin: 0 auto;
}

ul,
dd {
	margin: 0;
}

/* ------------------------- 
MARK: text
------------------------- */
.font-en {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-style: normal;
}

.title {
	margin-bottom: 3rem;
}

.title .font-en {
	position: relative;
	display: block;
	margin-bottom: 48px;
	font-size: 30px;
	letter-spacing: 0.15em;
	text-transform: capitalize;
}

.title .font-en span {
	font-size: 70%;
}

.title .font-en::after {
	content: '';
	position: absolute;
	display: block;
	bottom: -40px;
	left: 2rem;
	width: 1px;
	height: 35px;
	background-color: #0e0e2c;
}

.title .ja {
	display: block;
	font-size: 30px;
	letter-spacing: 0.25em;
	font-weight: 500;
}

.lead {
	line-height: 2.5em;
}

.center {
	text-align: center;
}

.btn {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 21px;
	letter-spacing: 2px;
	margin: 0 auto;
	padding: 40px;
	width: 100%;
	max-width: 396px;
	background-color: #e8e8e8;
	border: 2px solid #e8e8e8;
	border-radius: 5rem;
	transition: 0.4s;
}

.btn::after {
	display: inline-block;
	content: '';
	width: 33px;
	height: 17px;
	background-image: url(../images/btn_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

.btn:hover,
.btn:focus {
	background-color: #fff;
}

.btn.btn02 {
	background-color: #fff;
	border: 2px solid #fff;
}

.btn.btn02:hover,
.btn.btn02:focus {
	background-color: #e8e8e8;
}

.backbtn {
	display: inline-block;
	margin-top: 80px;
	padding: 0.5em 1.5em;
	border: 1px solid #0e0e2c;
	text-align: center;
	cursor: pointer;
	font-size: 12px;
	transition: 0.4s;
}

.backbtn:hover,
.backbtn:focus {
	background-color: #aab7c3;
	border: 1px solid #aab7c3;
	color: #fff;
}

.table {
	border-collapse: collapse;
	margin: 2em 0 5em;
	width: 100%;
}

.table th,
.table td {
	padding-bottom: 1.5em;
	font-size: 14px;
	text-align: left;
}

.table th {
	min-width: 7rem;
	vertical-align: top;
	border-right: 1px solid #aab7c3;
}

.table td {
	padding-left: 2em;
}

.vertical-text {
	writing-mode: vertical-rl;
}

/*--------------------------------------------------------------
MARK: header
--------------------------------------------------------------*/

.site-header {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-inline: 25px;
	padding-top: 25px;
	z-index: 100;
}

/* ------------------------- 
MARK: nav
------------------------- */

.burger-wrap {
	position: fixed;
	top: 38px;
	right: 44px;
	z-index: 150;
	mix-blend-mode: exclusion;
}

.burger {
	position: relative;
	width: 54px;
	height: 16px;
	border: none;
	background: none;
	cursor: pointer;
	transition: transform 0.3s ease, top 0.3s ease;
}

.burger .line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: transform 0.3s ease, top 0.3s ease;
}

.line1 {
	top: 0;
}

.line2 {
	top: 14px;
}

/* PCホバーでちょっと広がる */
@media (min-width: 768px) {
	.burger:hover {
		transform: scale(1.1);
	}
}

.global-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	background: #c3c3c3;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	z-index: 120;
	padding: 0 110px 0px 100px;
	background-color: rgba(195, 195, 195, 0.95);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.global-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.global-menu li {
	margin: 1em 0 0 0.7em;
}

.global-menu li.ex-link {
	margin: 60px 0 0 0;
}

.global-menu .ex-link img {
	width: 135px;
}

.global-menu a,
.footer-nav-item a {
	display: flex;
}

.global-menu .font-en,
.footer-nav-item .font-en {
	font-size: 40px;
	color: #fff;
	letter-spacing: 1.5px;
}

.global-menu .nav-ja {
	font-size: 13px;
	color: #2c2b2b;
	margin: 15px 0 0 15px;
}

/* ------------------------- 
MARK: footer 
------------------------- */
.site-footer {
	background-color: #000;
	color: #909090;
}

.breadcrumbs,
.footer-address,
.site-copyright {
	font-size: 15px;
}

.breadcrumbs {
	font-size: 14px;
	padding-top: 60px;
}

.breadcrumbs a {
	color: #ffffff;
}

.footer-nav-wrap {
	margin: 70px auto 100px;
}

.footer-nav {
	list-style: none;
}

.footer-nav-item:not(:last-child) {
	border-bottom: 1px solid #4e4d4d;
}

.footer-nav-item a {
	justify-content: space-between;
	align-items: center;
	margin: 10px auto;
	max-width: 788px;
}

.footer-nav-item.current a span {
	color: #4e4d4d;
}

.footer-nav-item .font-en {
	font-weight: 400;
}

.footer-nav-item .nav-ja {
	color: #adadad;
	font-size: 16px;
}

.company-name {
	display: flex;
	gap: 1em;
}

.company-address a {
	position: relative;
	display: inline-block;
	color: #909090;
}

.company-address a .icon {
	position: absolute;
	bottom: 5px;
	right: -2em;
}

.to-contact {
	display: flex;
	gap: 1em;
	margin-top: 5px;
}

.site-copyright {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 55px;
}

.copyright {
	font-size: 14px;
}

.to-top {
	position: relative;
}

.to-top svg {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 140px;
	height: auto;
	z-index: 0;
}

.to-top a {
	position: relative;
	color: #fff;
	font-size: 20px;
	margin-right: 15px;
	z-index: 1;
}

/* ------------------------- 
MARK: アニメーション関係
---------------------------- */

.loading {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 9999;
	transition: opacity 0.6s ease;
}

.loading.hide {
	opacity: 0;
	pointer-events: none;
}

.mask {
	display: inline-block;
	overflow: hidden;
	line-height: 1;
}

.mask .char {
	display: inline-block;
}

.mv-marquee {
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

svg .footer-top {
	stroke-dashoffset: 213.1591796875px;
	stroke-dasharray: 213.1591796875px;
	-webkit-transition: stroke-dashoffset 0.4s ease-in-out 0s;
	transition: stroke-dashoffset 0.4s ease-in-out 0s;
	transition-delay: 0.6s;
}

/* jsで.activeクラス付与で発火 */
svg.active .footer-top {
	stroke-dashoffset: 0;
}

/*--------------------------------------------------------------
MARK: top
--------------------------------------------------------------*/
.main.top {
	margin-top: -45px;
}

.top-mv {
	position: relative;
}

.mv-slide {
	position: relative;
	z-index: 0;
}

.mv-slide .splide__slide {
	position: relative;
}

.mv-illust {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.mv-illust img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mv-copy img {
	position: absolute;
}

#splide01-slide01 .mv-illust img {
	height: 160%;
}

#splide01-slide01 .mv-copy img {
	top: 12%;
	right: 22%;
	width: 5.2%;
}

#splide01-slide02 .mv-illust img {
	height: 152%;
	top: 40%;
}

#splide01-slide02 .mv-copy img {
	top: 12%;
	right: 22%;
	width: 5.2%;
}

#splide01-slide03 .mv-illust img {
	height: 152%;
	top: 60%;
	left: 47%;
}

#splide01-slide03 .mv-copy img {
	top: 12%;
	right: 20%;
	width: 5.2%;
}

#splide01-slide03 .mv-copy.copy02 img {
	top: 12%;
	right: 75%;
	width: 5.2%;
}

#splide01-slide04 .mv-copy img {
	top: 12%;
	right: 20%;
	width: 1.5%;
}

.mv-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	will-change: opacity, filter;
}

.mv-marquee span {
	display: block;
	color: #ccc;
	font-size: 13.5vw;
	line-height: 1;
}

.mv-bnr {
	position: absolute;
	bottom: 15vw;
	left: 0;
	width: min(20vw, 170px);
}

.mv-bnr img {
	display: block;
	width: 100%;
}

.lead-section {
	margin-top: 130px;
}

.lead-section .wrapper {
	position: relative;
}

.lead-section .inner {
	padding-left: min(5vw, 63px);
}

.lead-section .btn-wrap a {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 5;
}

.lead-section .heading {
	font-size: clamp(2rem, calc(1.6666666666666665rem + 1.3333333333333335vw), 2.5rem);
	font-weight: 500;
	margin-bottom: 1.4em;
}

.lead-section .heading .mask {
	line-height: 1.7;
}

.lead-section p {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 1.8em;
}

.bg-movie {
	position: relative;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	z-index: -1;
	margin-top: 30px;
}

.bg-movie video {
	width: 200%;
	position: absolute;
	top: 50%;
	right: 20%;
	transform: translateY(-50%);
}

.top-works {
	background: #e2e2e2;
	padding-block: 155px;
}

.section-heading {
	margin-bottom: 80px;
	font-size: clamp(4rem, calc(3.333333333333333rem + 2.666666666666667vw), 5rem);
}

.top-works .section-heading {
	margin-bottom: 100px;
}

.section-heading span {
	display: block;
}

.section-heading .ttl-ja {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 400;
	padding-left: 8px;
	letter-spacing: 0.1em;
	margin-top: 5px;
}

.section-heading .ttl-ja::before {
	content: '';
	display: block;
	background: #cccccc;
	width: 13px;
	height: 13px;
	border-radius: 50%;
}

.work-list {
	list-style: none;
}

.work-section {
	margin-right: calc(50% - 50vw);
}

.work-slide__web {
	margin-block: 110px;
	margin-left: -30px;
}

.work-list__title {
	font-size: 1rem;
	font-weight: 400;
	color: #2c2b2b;
}

.work-list__body {
	margin-top: 17px;
}

.work-list__summary {
	list-style: none;
	font-size: 14px;
	color: #5a5a5a;
	font-weight: 300;
	margin-top: 5px;
}

.work-slide__web .work-list__body {
	margin-inline: 35px;
	margin-top: 10px;
}

.work-slide__gmp .work-list__thumb {
	aspect-ratio: 1;
	background: #fff;
}

.work-list__thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.top-news {
	margin-block: 110px 130px;
}

.news-list {
	list-style: none;
}

.news-item {
	padding-bottom: 60px;
}

.news-item::before {
	display: block;
	content: '';
	border-top: 0.5px solid #656564;
	border-left: 0.5px solid #656564;
	height: 34px;
	border-radius: 50em 0 0 0;
}

.news-item a {
	display: block;
	margin-inline: auto;
	max-width: 790px;
	font-size: 18px;
}

.top-recruit {
	background: #e2e2e2;
	padding-block: 110px 130px;
}

.top-recruit p {
	font-size: 18px;
	max-width: 624px;
	margin-inline: auto;
	line-height: 1.7;
}

.top-recruit .btn-wrap {
	margin-top: 80px;
}

.top-footer-bg {
	padding-top: 22vh;
	position: relative;
}

.bg-clip {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 22vh;
	clip-path: inset(0);
	z-index: -1;
}
.bg-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/parallax.png);
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: center;
}

.top-contact {
	padding-block: 110px 190px;
}

.top-contact h2 {
	color: #fff;
}

.top-contact .lead {
	color: #fff;
	max-width: 624px;
	margin-inline: auto;
	margin-block: 117px 60px;
	font-size: 18px;
	line-height: 1.7;
}

.top-contact .wpcf7 {
	max-width: 624px;
	margin-inline: auto;
}

.top-contact .contact_table th {
	color: #fff;
}

/*--------------------------------------------------------------
MARK: inner
--------------------------------------------------------------*/

.l_main.inner {
	padding-top: 200px;
}

/* ------------------------- 
MARK: page
------------------------- */
.page-ttl {
	margin-top: 50px;
}

.page-ttl .ttl-2 {
	position: relative;
	padding: 190px 0 0;
}

.page-ttl .ttl-2 span.vertical-text {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 4px;
}

.page-ttl .ttl-2 span.font-en {
	display: block;
	font-size: 120px;
	font-weight: 500;
	letter-spacing: 5px;
	padding-bottom: 40px;
}

.page-ttl .ttl-2::after {
	display: block;
	content: '';
	border-top: 0.5px solid #656564;
	border-left: 0.5px solid #656564;
	height: 34px;
	border-radius: 34px 0 0 0;
}

.page-read {
	font-size: 18px;
	letter-spacing: 1.5px;
	line-height: 1.75;
	margin-top: 60px;
}

/*--------------------------------------------------------------
MARK: about
--------------------------------------------------------------*/
.about .page-ttl .btn {
	margin-top: 70px;
}

.overview {
	margin: 130px 0 230px;
}

.overview .wrapper {
	position: relative;
}

.overview .about-illust {
	position: absolute;
	top: 150px;
	right: 0;
}

.overview dl::before {
	display: inline-block;
	content: '';
	width: 110px;
	border-top: 0.5px solid #777877;
}

.overview dl div {
	margin: 30px 0;
	letter-spacing: 1px;
}

.overview dt {
	color: #777877;
	font-weight: 300;
	margin-bottom: 10px;
}

.overview .securitypolicy {
	display: block;
	text-align: center;
	background-color: #f0f0f0;
	margin-top: 60px;
	padding: 30px 0;
}

.brand {
	position: relative;
	padding: 230px 0 110px;
}

.brand-movie-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.brand-movie-bg .bg-clip {
	height: 100%;
}

.brand-movie-bg .bg-fixed {
	background: none;
}

.brand-movie-bg .bg-fixed video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.brand .wrapper-inner {
	position: relative;
}

.brand .well-balance {
	position: absolute;
	bottom: 150px;
	right: 0;
}

.since {
	margin: 230px 0 0;
}

.brand dl,
.since dl {
	max-width: 700px;
	margin-left: auto;
}

.brand dt,
.since dt {
	font-size: 90px;
	font-weight: 400;
	margin-bottom: 100px;
}

.brand dd,
.since dd {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2.2;
	margin-bottom: 40px;
}

.since dd span {
	color: #a2a2a2;
}

.since-vl {
	position: relative;
	margin-bottom: 86px;
}

.since-bg img {
	width: 100%;
}

.since-vl .wrapper {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 100%;
}

.since-vl .wrapper-inner {
	position: relative;
	height: 100%;
}

.since-vl p {
	position: absolute;
	bottom: 9%;
	left: 0;
	display: flex;
	flex-direction: column;
	font-size: 2.5vw;
	font-weight: 400;
}

.since-vl p span {
	font-size: 55%;
}

/*--------------------------------------------------------------
MARK: work
--------------------------------------------------------------*/

.work {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 150px;
}

.work_item {
	width: 45%;
	max-width: 384px;
	margin-bottom: 120px;
	flex-shrink: 0;
}

.category_list {
	margin-top: 1rem;
}

.category_list a {
	display: inline-block;
	margin-right: 0.75em;
	color: #a0afbe;
	font-size: 18px;
	font-family: 'roboto', sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
}

.work_item .thum {
	display: block;
	overflow: hidden;
	aspect-ratio: 1/1;
	margin-bottom: 20px;
}

.work_item .thum img {
	display: block;
	aspect-ratio: 1/1;
	transition: 0.4s;
	transform: scale(1);
	object-fit: contain;
}

.work_item .thum:hover img {
	transform: scale(0.9);
}

.work_item .name h2 {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: #3c3c48;
}

.work_item .category {
	margin-top: 0.3em;
	line-height: 1.2;
}

.work_item .category a {
	display: inline-block;
	margin-right: 1em;
	color: #a0afbe;
	font-size: 12px;
	font-family: 'roboto', sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
}

.work_item .category a::before {
	content: '#';
}

/* ------------------------- work single ------------------------- */

.single-work .l_container img {
	display: block;
	max-width: 600px;
	margin: 0 auto 1em;
}

.work_graphic_image,
.work_web_image {
	margin-top: 5em;
}

.postid-102 .work_graphic_image img,
.postid-389 .work_graphic_image img,
.postid-486 .work_graphic_image img,
.postid-208 .work_graphic_image:nth-child(7) img,
.postid-323 .work_graphic_image img,
.postid-323 .work_web_image:nth-last-child(4) img,
.postid-413 .work_graphic_image:nth-child(7) img,
.postid-355 .work_graphic_image img,
.postid-402 .work_graphic_image:nth-child(7) img,
.postid-402 .work_graphic_image:nth-child(11) img,
.postid-402 .work_graphic_image:nth-child(13) img {
	border: 1px solid #d1d1d1;
}

.work_graphic_text,
.work_web_name,
.work_movie_name {
	font-size: 12px;
	line-height: 1.5;
}

.work_web_link {
	color: #21b973;
	font-size: 12px;
}

.work_movie_url {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 5em auto 0;
	aspect-ratio: 16/9;
}

.work_movie_url iframe {
	width: 100%;
	height: 100%;
}

.work_movie_name {
	padding-top: 1em;
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# recruit
--------------------------------------------------------------*/
.app {
	margin: 50px 0 150px;
}

.app .wrapper-inner::before {
	display: inline-block;
	content: '';
	width: 110px;
	border-top: 0.5px solid #777877;
}

.app h2 {
	font-weight: 500;
	letter-spacing: 1px;
	margin-top: 50px;
}

.app dl {
	line-height: 1.7;
}

.app dl div {
	margin: 30px 0;
	letter-spacing: 1px;
}

.app dt {
	color: #777877;
	font-weight: 300;
}

.job {
	padding: 50px 0;
	margin: 0;
	background-color: #f5f5f5;
}

.job:nth-child(even) {
	background-color: #fff;
}

.job .wrapper-inner::before {
	border: 0;
}

.job h2 {
	font-size: 21px;
	margin: 0;
}

.job ul {
	margin-left: 1em;
}

.job li::marker {
	content: '■';
	color: #c3c3c3;
}

.howto {
	margin: 90px 0 110px;
}

.howto h2 {
	font-weight: 500;
}

.howto p {
	margin: 20px 0 50px;
	line-height: 1.7;
}

.howto .btn a::after {
	display: none;
}

/*--------------------------------------------------------------
# entry
--------------------------------------------------------------*/

.entry_form {
	margin-top: 5em;
}

.contact_table {
	margin: 0;
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 40px;
}

.contact_table th {
	min-width: 12rem;
	text-align: left;
	font-weight: 400;
	font-size: 15px;
}

.contact_table input[type='text'],
.contact_table input[type='tel'],
.contact_table input[type='email'],
.contact_table select,
.contact_table textarea {
	width: 100%;
	min-height: 2rem;
	padding: 1.1em 1em;
	background-color: #fffffd;
	border: 1px solid #a0afbe;
	border-radius: 2px;
	font-size: 13px;
	border-radius: 5px;
}

.top-contact .contact_table input[type='text'],
.top-contact .contact_table input[type='tel'],
.top-contact .contact_table input[type='email'],
.top-contact .contact_table select,
.top-contact .contact_table textarea {
	border: none;
}

.contact_table + hr {
	border: none;
	background: #707070;
	height: 1px;
	width: 100%;
	display: block;
}

.required {
	color: #ff8154;
}

.privacy_content {
	margin: 0 auto 2em;
	padding: 2em 2em;
	font-size: 12px;
	border: 1px solid #a0afbe;
	border-radius: 0.5em;
	margin-top: 45px;
}

.top-contact .privacy_content {
	border: none;
	background: #fff;
	color: #2c2b2b;
}

.privacy_content .item {
	height: 200px;
	padding-right: 2rem;
	text-align: justify;
	overflow-y: scroll;
	scrollbar-color: #c3c3c3 #fff;
}

.privacy_content .item h2 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0.7em;
}

.privacy_content .item h3 {
	font-size: 12px;
	margin-block: 1.5em 5px;
}

.top-contact .privacy_content h2 {
	color: #2c2b2b;
}

.privacy_content .item::-webkit-scrollbar {
	width: 6px;
	background-color: #fff;
	border-radius: 2rem;
}

.privacy_content .item::-webkit-scrollbar-thumb {
	width: 6px;
	background-color: #fff;
	border-radius: 2rem;
}

.privacy_content ul {
	margin-left: 2em;
}

span.wpcf7-spinner {
	display: none;
}

.wpcf7-form-control-wrap[data-name='agree'] {
	font-size: 15px;
}

.wpcf7-form-control-wrap[data-name='agree'] input {
	display: none;
}

.wpcf7-form-control-wrap[data-name='agree'] .wpcf7-list-item-label {
	cursor: pointer;
}

.top-contact .wpcf7-form-control-wrap[data-name='agree'] {
	color: #fff;
}

/*--------------------------------------------------------------
# sitepolicy
--------------------------------------------------------------*/
