:root {
	--container-lg: 1200px;
	--container-md: 1073px;
	--gutter: 16px;

	--radius-lg: 40px;
	--radius-md: 10px;

	--space-1: 8px;
	--space-2: 12px;
	--space-3: 16px;
	--space-4: 24px;
	--space-5: 32px;

	--ink: #1c1c1c;
	--paper: #fff;
	--muted: rgba(17, 17, 17, 0.65);

	--brand: #8773d2; /* メイン */
	--brand-2: #8e7ad3; /* サブ */
}

/* =========================
   基本：文字サイズ切替（重要）
   - JSで html に is-font-lg を付与して切替
========================= */
html {
	font-size: 16px;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
	overflow-x: hidden;
}
html.is-font-lg {
	font-size: 112.5%;
}

body {
	margin: 0;
	font-family:
		'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
		Meiryo, sans-serif;
	line-height: 1.7;
	color: var(--ink);
	letter-spacing: 0.05em;
	overflow-x: hidden;
}

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

a {
	transition: all 0.3s;
}

a:hover {
	opacity: 0.7;
}

:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.container-lg {
	width: min(var(--container-lg), calc(100% - 32px));
	margin-inline: auto;
}

.container-md {
	width: min(var(--container-md), calc(100% - 32px));
	margin-inline: auto;
}

.c-skiplink {
	position: absolute;
	left: -9999px;
	top: 0;
}
.c-skiplink:focus {
	left: 16px;
	top: 16px;
	background: #fff;
	padding: 8px 12px;
}

.font-josefin {
	font-family: 'Josefin Sans', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.font-zalando {
	font-family: 'Zalando Sans SemiExpanded', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

.c-align__center {
	text-align: center;
}

.c-align__right {
	text-align: right;
}

.c-content__flex {
	display: flex;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.w-100 {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.w-100__innerMin {
	margin: 0 calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
	width: 100vw;
}

.list_num {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.sp-only {
	display: none;
}

/* =========================
MARK: 印刷対応
========================= */

@media print {
	.l-header {
		position: absolute;
	}
	#hamburgerNav {
		display: none;
	}
}

/* =========================
MARK: Header
========================= */
/* ヘッダー固定 */
.l-header {
	position: fixed;
	top: 0;
	background: rgba(255, 255, 255, 0.9);
	width: 100%;
	z-index: 50;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}

/* 上段は折りたたみ可能にしておく */
.l-header__top {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	max-height: 140px;
	overflow: hidden;
	opacity: 1;
	transform: translateY(0);
	transition:
		max-height 0.25s ease,
		opacity 0.2s ease,
		transform 0.25s ease;
}

/* 下段ロゴ（スクロール後用）は通常は非表示 */
.l-header__nav .site-logo__scrolled {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

/* スクロール後（簡易版）だけ表示 */
.l-header.is-compact .l-header__nav .site-logo__scrolled {
	opacity: 1;
	visibility: visible;
}

.l-header.is-compact .l-header__top {
	max-height: 0;
	opacity: 0;
	transform: translateY(-8px);
	padding-top: 0;
}

.l-header__bottom {
	position: relative;
}

.l-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 100px 25px 0;
}

.l-header__navInner {
	transition: all 0.3s;
}

/* ヘッダー全体も少しだけスライド */
.l-header__inner {
	transition: transform 0.25s ease;
}
.l-header.is-compact .l-header__inner {
	transform: translateY(0);
}

/* ハンバーガー（オフキャンバス） */
nav.hamburger {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90vh;
	transform: translateY(-100%);
	transition: transform 0.28s ease;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

/* 開いた */
html.is-nav-open nav.hamburger {
	transform: translateY(0%);
}

/* 背景オーバーレイ（実体は擬似要素） */
html.is-nav-open::before {
	content: '';
	position: fixed;
	inset: 0;
	background: none;
	z-index: 15;
}

html.is-nav-open,
html.is-nav-open body {
	overflow: hidden;
}

/* トグルボタンは常にクリックできるよう最前面へ */
.c-navToggle {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 70px;
	height: 22px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 11px;
	border: 0;
	background: transparent;
	z-index: 1100;
}

.u-visuallyHidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
	content: '';
	flex-shrink: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #1c1c1c;
	transition:
		transform 0.3s,
		opacity 0.3s;
}

.is-nav-open .menu-button .menu-button__line {
	opacity: 0;
}

.is-nav-open .menu-button::before {
	transform: translateY(12px) rotate(-20deg);
}

.is-nav-open .menu-button::after {
	transform: translateY(-12px) rotate(20deg);
}

.l-header__inner {
	width: 100%;
	padding-inline: min(5%, 30px);
}

.l-header__brand {
	display: flex;
	gap: 27px;
	align-items: center;
}
.c-partnerLogos {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.l-header__tools {
	display: flex;
	gap: 21px;
	align-items: center;
	justify-content: end;
	flex: 1;
}
.c-search {
	position: relative;
	font-size: 0.75rem;
	width: 21%;
}
.c-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.c-search__input {
	padding: 5px 15px;
	border: 1px solid #d5d5d5;
	background: #fff;
	border-radius: 999px;
	width: 100% !important;
	height: auto !important;
	background-position-y: 51% !important;
}
.c-search__btn {
	border: none;
	background: none;
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%);
}

.c-lang {
	width: 18%;
}
.c-lang__label {
	position: relative;
}
.toggle_lang .gt_selector {
	font-size: 0.85rem;
	opacity: 1;
	border: 1px solid #d5d5d5;
	background: #fff;
	padding: 3px 10px;
	width: 100%;
}
.toggle_lang .c-lang__label::after {
	content: '▼';
	position: absolute;
	display: inline-block;
	font-size: 0.7em;
	padding-left: 0;
	top: 50%;
	right: 17px;
	left: auto;
	bottom: auto;
	transform: translateY(-50%) translateZ(0);
	z-index: 0;
}

.c-fontsize {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-shrink: 0;
}
.c-fontsize__label {
	font-size: 0.75rem;
}
.c-fontsize__controls {
	display: inline-flex;
	border: 1px solid #2c2b2b;
	overflow: hidden;
}
.c-fontsize__btn {
	padding: 2px 10px;
	border: 0;
	background: #fff;
	cursor: pointer;
	font-size: 0.85rem;
	letter-spacing: 0.2rem;
}
.c-fontsize__btn.is-active {
	background: #1c1c1c;
	color: #fff;
}

.l-header__tools .c-btn.c-btn--primary {
	flex-shrink: 0;
}

.c-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 30px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	width: fit-content;
}
.c-btn--primary {
	background: var(--brand);
	color: #fff;
}
.c-btn--primary img {
	display: inline-block;
	padding-right: 8px;
}
.c-btn--dark {
	background: var(--ink);
	color: #fff;
}
.c-btn--light {
	background: #fff;
	border-color: #ddd;
	color: var(--ink);
}
.c-btn--outline {
	background: transparent;
	border-color: #ddd;
	color: var(--ink);
}
.c-btn--block {
	width: 100%;
	border-radius: 0;
	padding: 22px 1em;
	flex-direction: column;
	font-size: 1.125rem;
	font-weight: 600;
}
.c-btn--block span {
	font-size: 1rem;
	font-weight: 300;
}
.c-btn--lg {
	padding: 23px 160px 23px 60px;
	font-size: 1.1875rem;
	gap: 50px;
	border: 1px solid var(--ink);
	max-width: 322px;
}
.c-btn--lg::before {
	content: '';
	display: block;
	height: 1px;
	width: 66px;
	background: #fff;
	order: 2;
	position: absolute;
	top: 50%;
	right: 42px;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.c-btn--lg::after {
	content: '';
	display: block;
	border: 1px solid #fff;
	border-radius: 50%;
	background: var(--ink);
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 34%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.c-btn--lg:hover {
	background: #fff;
	color: var(--ink);
	opacity: 1;
}

.c-btn--lg:hover::before {
	background: var(--ink);
}

.c-btn--lg:hover::after {
	right: 10%;
	border-color: var(--ink);
	background-color: #fff;
}

.c-btn__external {
	width: 100%;
	font-size: 15px;
	padding-block: 15px;
}

.c-btn__external::after {
	content: '';
	display: inline-block;
	margin-left: 1.3em;
	width: 1.3em;
	height: 1.3em;
	background: url(../img/icon_external.svg) no-repeat;
	background-size: contain;
}
.l-header__top .c-btn--primary,
.hamburger .c-btn--primary {
	font-size: 0.85rem;
}

.c-gnav {
	display: flex;
	gap: min(3vw, 49px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.c-gnav li {
	display: flex;
	align-items: center;
}
.c-gnav a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #1c1c1c;
	font-size: clamp(0.75rem, calc(0.625rem + 0.5vw), 1rem);
	font-weight: 400;
}
.c-gnav a img {
	flex-shrink: 0;
}
.is-compact .c-gnav a {
	font-size: clamp(0.75rem, calc(0.625rem + 0.5vw), 1rem);
}

.c-btn--scrolled {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(135, 115, 210, 0.8);
}

.is-compact .c-btn--scrolled {
	visibility: visible;
	opacity: 1;
	top: calc(100% + 20px);
}

#hamburgerNav {
	padding-inline: min(2%, 30px);
}

.hamburger-top {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	overflow: hidden;
	opacity: 1;
	transform: translateY(0);
	transition:
		max-height 0.25s ease,
		opacity 0.2s ease,
		transform 0.25s ease;
}

#hamburgerNav .l-header__navInner {
	display: flex;
	align-items: center;
	justify-content: end;
	position: relative;
	margin-inline: 0;
	padding: 25px 0;
	height: 90%;
}

.l-header__navInner .hamburger_inner {
	display: flex;
	justify-content: end;
	align-items: end;
	gap: min(9%, 65px);
	padding-right: 5%;
	flex: 1;
}

#hamburgerNav .c-navToggle {
	position: absolute;
	top: 60px;
	right: 0;
	transform: translateY(0);
}

#hamburgerNav .c-gnav {
	flex-direction: column;
}

#hamburgerNav .c-gnav a {
	align-items: center;
	font-size: clamp(1rem, calc(0.75rem + 1vw), 1.5rem);
}

#hamburgerNav .c-gnav a span {
	display: inline-block;
	width: 2.3em;
}

.c-subnav {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.c-subnav a {
	position: relative;
	font-size: clamp(0.875rem, calc(0.75rem + 0.5vw), 1.125rem);
	display: flex;
	align-items: center;
	gap: 18px;
}

.c-subnav a::before {
	content: '';
	display: block;
	border-radius: 50%;
	background: var(--brand);
	width: 0.3em;
	height: 0.3em;
}

/* =========================
MARK: Hero
========================= */
.p-hero {
	position: relative;
	overflow: hidden;
}

.p-hero .splide__slide img {
	max-width: unset;
	width: 100%;
}

.main-mv .splide__pagination {
	gap: 38px;
	flex-wrap: nowrap;
	justify-content: end;
	bottom: 3%;
	left: unset;
	position: absolute;
	right: 0;
	z-index: 1;
	width: 100%;
	padding-right: 4%;
}

.main-mv .splide__pagination li {
	width: 9%;
}

.main-mv .splide__pagination__page {
	background: #fff;
	border: 0;
	border-radius: 0;
	display: inline-block;
	height: 2px;
	margin: 0;
	opacity: 0.2;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 100%;
}

.main-mv .splide__pagination__page.is-active {
	transform: scale(1);
	opacity: 1;
}

.p-hero .mv-wordmark {
	display: flex;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 9%;
}

.mv-wordmark .infinite__list {
	animation: scroll-left 14s infinite linear 0.5s both;
	display: flex;
	flex: 1;
	width: 100%;
}

.infinite__item {
	width: calc(100vw / 0.8);
}

.infinite__item img {
	display: block;
	width: 100%;
}

@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

/* =========================
MARK: Updates
========================= */
.p-updates {
	background: #fff;
	padding: 28px 0;
}
/* .p-updates__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr 1fr;
} */
.p-updates__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 38px;
}
.p-updates__title {
	margin: 0;
	line-height: 1.5;
	font-size: clamp(1.5rem, calc(1.3125rem + 0.75vw), 1.875rem);
	border-bottom: 1px solid #1c1c1c;
	font-weight: 300;
}
.p-updates__more {
	display: flex;
	align-items: center;
	gap: 18px;
	text-decoration: none;
	font-weight: 500;
}
.c-postList__item {
	border-bottom: 0.5px solid #b9b9b9;
	padding-block: 20px;
}
.c-postList__item:last-child {
	border: none;
}
.postList__meta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.c-postList__date {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 0.9375rem;
	color: var(--brand-2);
	font-weight: 700;
	line-height: 1;
}
.c-postList__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6875rem;
	font-weight: 300;
	color: var(--brand-2);
	background: #fff;
	border: 0.5px solid var(--brand-2);
	border-radius: 50em;
	padding: 4px 5px;
	line-height: 1;
	min-width: 5.5em;
}
.c-postList__tag.new-arrival {
	background: var(--brand-2);
	color: #fff;
}
.c-postList__link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	margin-top: 10px;
}
.c-postList__link:hover {
	text-decoration: underline;
}

/* ========================
MARK: About / Logos
========================= */
.p-about {
	position: relative;
	overflow: clip;
	background-color: #f6f6f6;
	padding: 125px 0 120px;
}

.p-about__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.p-about__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* iOS Safari: background-size: cover の再サンプリング回避狙い */
	transform: translateZ(0);
}

.p-about__grid {
	position: relative;
	display: grid;
	gap: 20px;
	grid-template-columns: 1.1fr 1.4fr;
	align-items: start;
	z-index: 1;
}

.p-about__title {
	margin: 0 0 16px;
	font-size: clamp(1.0625rem, calc(0.78125rem + 1.125vw), 1.625rem);
	line-height: 2.2;
	font-weight: 600;
}

.p-about__title,
.p-about__left .c-btn,
.p-about__right p {
	opacity: 0;
	/* transform: translateY(16px); */
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	will-change: opacity, transform;
}

.p-about__title.is-visible,
.p-about__left .c-btn.is-visible,
.p-about__right p.is-visible {
	opacity: 1;
	/* transform: translateY(0); */
}

.p-about__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.p-about__left .c-btn {
	font-size: 1rem;
	padding-inline: 60px;
	max-width: unset;
	transition: all 0.3s;
}
.p-about__left .c-btn::after,
.p-about__left .c-btn::before {
	content: none;
}

.p-about__right {
	font-size: 1.125rem;
}

.p-about__right > p {
	line-height: 2;
	margin-bottom: 1.8em;
	letter-spacing: 0.05em;
}
.p-about__right .p-about__link {
	margin-bottom: 0;
	padding-top: 10px;
}
.p-about__right a {
	display: flex;
	align-items: center;
	color: #003bff;
	font-size: 1rem;
	font-weight: 700;
}
.p-about__right a span {
	text-decoration: underline;
}
.p-logo__wrap {
	position: relative;
	background: #fff;
	padding-block: 50px 30px;
	margin-top: 110px;
	z-index: 1;
}
.p-logo__wrap h2 {
	position: relative;
	font-size: clamp(1.5rem, calc(1.3125rem + 0.75vw), 1.875rem);
	margin-bottom: 30px;
}
.p-logo__wrap h2 span {
	position: relative;
	display: inline-block;
	background: #fff;
	padding-inline: 0.7em;
}
.p-logo__wrap h2::before {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	background: #707070;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 0;
}

.logo-slider .splide__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.logo-slider__lr {
	margin-top: 40px;
}

/* =========================
MARK: 4 tiles
========================= */
.p-tiles {
	background: #fff;
}
.c-tileGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.c-tile {
	display: grid;
	place-items: center;
	text-decoration: none;
	color: #1c1c1c;
	padding: 13% 20px 8%;
	position: relative;
	overflow: hidden;
}
.c-tile .c-tile__bg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: all 0.3s;
}
.c-tile:hover .c-tile__bg {
	transform: scale(1.1);
}
.c-tile.c-tile--a .c-tile__bg {
	background-image: url(../img/top_menu01.png);
}
.c-tile.c-tile--b .c-tile__bg {
	background-image: url(../img/top_menu02.png);
}
.c-tile.c-tile--c .c-tile__bg {
	background-image: url(../img/top_menu03.png);
}
.c-tile.c-tile--d .c-tile__bg {
	background-image: url(../img/top_menu04.png);
}

.c-tile__icon {
	position: relative;
	z-index: 1;
}
.c-tile__title {
	position: relative;
	font-weight: 500;
	text-align: center;
	padding: 20px 0 10px 0;
	font-size: clamp(1.125rem, calc(0.9375rem + 0.75vw), 1.5rem);
	z-index: 1;
}
.c-tile__comingsoon {
	position: relative;
	z-index: 1;
	font-weight: 700;
}

/* =========================
MARK: Map
========================= */
.p-map {
	position: relative;
	padding: 60px 0px 80px;
	background: #e2e7ff;
}
.p-map::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background: #ffffff;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(226, 231, 255, 1) 50%);
	z-index: 1;
}

.p-mapStage {
	position: relative;
	/* 地図の比率を確保：SVG viewBoxと一致させる */
	aspect-ratio: 1000 / 670;
	width: 100%;
}

.p-mapStage::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 13%;
	background: #ffffff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(226, 231, 255, 1) 50%);
	z-index: 1;
}

.p-mapStage__map {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* 右ボックス：地図上に配置 */
.p-mapStage__panel {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 10%;
	width: 47.5%;
	pointer-events: auto; /* panel内は操作したい */
}

.p-map__head {
	margin-right: max(1rem, 6vw);
	container-type: inline-size;
}

.p-map__kicker {
	font-size: clamp(10px, 2.5vw, 1.75rem);
}
.p-map__title {
	font-size: clamp(2rem, 7.5vw, 6.25rem);
	line-height: 1;
}
.p-map__desc {
	line-height: 2.3;
	margin-top: 1em;
	letter-spacing: 0;
	font-size: max(10px, 2.8cqw);
}
.p-map__desc span {
	font-weight: 500;
}
.p-mapStage__map {
	pointer-events: auto;
	position: absolute;
	inset: 0;
	height: 100%;
	z-index: 0;
}

.c-mapArea {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: var(--w);
	height: var(--h);
	border-radius: 50%;
	border: 0;
	background: transparent;
	color: #111;
	font-weight: 400;
	font-size: 1.25rem;
	font-family: 'Roboto', sans-serif;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 1;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	transition: all 0.3s;
}

.c-mapArea:hover {
	background: rgba(139, 120, 214, 0.7);
	transform: scale(1.05);
	color: #fff;
}

.c-mapArea::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 2px dashed rgba(139, 120, 214, 1);
	pointer-events: none;
}

.c-mapArea.hidden-item {
	display: none;
}

.c-mapArea.is-active {
	background: rgba(139, 120, 214, 0.7);
	color: #fff;
}

.c-mapArea.is-active:hover {
	transform: scale(1);
}

.c-mapArea.is-active::after {
	border-color: transparent;
}

.p-mapStage__ttl {
	position: absolute;
	z-index: 1;
	top: 10%;
	left: 7%;
}
.p-map__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1.1fr 1fr;
	align-items: start;
}
.p-map__panel {
	position: relative;
	background: var(--brand);
	color: #fff;
	border-radius: 40px 0 0 40px;
	padding: 40px 0 40px 40px;
	padding-right: max(1rem, 6vw);
	margin-top: 25px;
}
.p-map__panelTop {
	position: absolute;
	top: 30px;
	right: max(1rem, 6vw);
}
.p-map__arrows {
	display: flex;
	justify-content: space-between;
	gap: 33px;
	align-items: center;
}
.c-iconBtn {
	border: 0;
	border-radius: 50em;
	padding: 22px 25px;
	cursor: pointer;
	background: var(--ink);
}
.p-map__areaTitle {
	font-weight: 500;
	font-size: clamp(0.875rem, calc(0.5625rem + 1.25vw), 1.5rem);
}
.p-map__code {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 5px;
}
.p-map__pane:nth-child(6) .p-map__code {
	opacity: 0;
	visibility: hidden;
}
.p-map__wrapper {
	border-radius: 10px;
	padding: 20px 10px 20px 25px;
	margin-top: 25px;
	background: #fff;
}

.p-map__list {
	height: min(calc(100vw * 0.15), 195px);
	color: #1c1c1c;
	overflow: auto;
}
.p-map__list::-webkit-scrollbar {
	width: 9px;
}
.p-map__list::-webkit-scrollbar-thumb {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(50%, rgba(142, 122, 211, 0.5)),
		to(rgba(142, 122, 211, 0.5))
	);
	background: linear-gradient(to bottom, rgba(142, 122, 211, 0.5) 50%, rgba(142, 122, 211, 0.5));
	border-radius: 5px;
}
.p-map__list::-webkit-scrollbar-track {
	background: #fff;
}
.p-map__list li {
	text-indent: -2em;
	padding-left: 2em;
	margin-bottom: 0.8em;
}
.p-map__list li::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url(../img/map_place.svg) no-repeat;
	vertical-align: middle;
	margin-bottom: 4px;
	margin-right: 0.7em;
}

.p-map__list li .p-map__item {
	text-decoration: underline;
}

.p-map__list li a,
.c-modal__body li a {
	color: var(--brand);
}

.p-mapAcces {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6%;
	width: min(var(--container-lg), calc(100% - 32px));
	border: 1px solid var(--brand-2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 30px 15px;
	margin-inline: auto;
}

.p-mapAcces__left,
.p-mapAcces__right {
	display: flex;
	gap: 20px;
}

.p-mapAcces__station {
	display: flex;
	gap: 5px;
}

.station {
	background: #a8a8a8;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	padding: 3px;
}

.goal-station {
	background: #154fad;
}

.dashed {
	width: 37px;
	background: url(../img/border_dashed.png);
	background-repeat: repeat-x;
	background-position: 0 center;
}

.p-mapAcces__time .way {
	font-size: 0.8125rem;
	font-weight: 500;
}

.p-mapAcces__time .way-duration {
	font-size: 1.125rem;
	font-weight: 600;
}

.time-marker {
	background-image: linear-gradient(0deg, #8e7ad366 0.35em, transparent 0.35em);
}

.time-marker span {
	font-size: 1.5625rem;
	line-height: 1;
}

/*
MARK: モーダル
*/
/* dialogの見た目 */
.c-modal {
	opacity: 0;
	transform: translateY(6px) scale(0.98);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.c-modal[open] {
	opacity: 0;
	transform: translateY(6px) scale(0.98);
}

/* 表示用クラスが付いたらフェードイン */
.c-modal[open].is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* backdropもフェード（対応してるブラウザだけ） */
.c-modal::backdrop {
	background: rgba(0, 0, 0, 0);
	transition: background 0.18s ease;
}
.c-modal[open]::backdrop {
	background: rgba(0, 0, 0, 0.5);
}

/* 閉じ中 */
.c-modal.is-closing {
	opacity: 0;
	transform: translateY(6px) scale(0.98);
}
.c-modal.is-closing::backdrop {
	background: rgba(0, 0, 0, 0);
}

.c-modal {
	border: 0;
	padding: 0;
	width: min(1200px, calc(100% - 32px));
	background: transparent;
}

.c-modal::backdrop {
	background: rgba(0, 0, 0, 0.5);
}

.c-modal__inner {
	position: relative;
	background: #fff;
	border: 2px solid var(--brand-2);
	border-radius: 18px;
	overflow: hidden;
	color: var(--ink);
	padding: 8% 6%;
}

.c-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 1.5rem;
	font-weight: 600;
}

.c-modal__body {
	max-height: min(60vh, 520px);
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	margin-top: 3.5em;
}

.c-modal__body ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 15px;
	font-size: 1.125rem;
}

.c-modal__body ul li {
	padding-right: 1em;
}

.c-modal__close {
	position: absolute;
	top: 30px;
	right: 35px;
	border: 0;
	background: transparent;
	line-height: 1;
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.c-modal__close span {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--ink);
	transition:
		transform 0.3s,
		opacity 0.3s;
}

.c-modal__close span:nth-child(1) {
	transform: rotate(-45deg);
}
.c-modal__close span:nth-child(2) {
	transform: rotate(45deg);
}

html.is-scroll-locked,
body.is-scroll-locked {
	overflow: hidden;
}

/* ===== SPでは縦積み ===== */
@media (max-width: 900px) {
	.p-mapStage {
		aspect-ratio: auto;
	}

	.p-mapStage__map {
		position: relative;
		inset: auto;
	}

	.p-mapStage__panel {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		margin-top: 16px;
	}

	.p-map__head.sp-only {
		display: block;
		position: relative;
		z-index: 1;
		margin-bottom: 25px;
	}
	.p-map__panelWrap .p-map__head {
		display: none;
	}

	.c-mapArea {
		left: var(--x-sp);
		top: var(--y-sp);
		width: var(--w-sp);
		height: var(--h-sp);
	}

	.p-mapStage::after {
		content: none;
	}

	.p-mapAcces {
		margin-top: 30px;
		flex-direction: column;
		gap: 25px;
	}
}

/* =========================
MARK: NanoTerasu
========================= */
.p-nanoterasu {
	position: relative;
	padding-block: 95px 115px;
	background:
		linear-gradient(
			90deg,
			rgba(199, 228, 235, 1) 30%,
			rgba(198, 227, 234, 0.99) 40%,
			rgba(198, 227, 234, 0.96) 50%,
			rgba(106, 104, 182, 0) 70%
		),
		url(../img/top_nanoterasu.jpg);
	background-repeat: no-repeat no-repeat;
	background-size: 100%, cover;
	background-position: center;
}
.p-nanoterasu__box {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.p-nanoterasu__title {
	display: flex;
	gap: 20px;
	font-size: clamp(1.25rem, calc(0.96875rem + 1.125vw), 1.8125rem);
	font-weight: 400;
}

.p-nanoterasu__title span {
	width: 1.25em;
}

.p-nanoterasu__desc {
	margin-block: 2em 2.5em;
}

/* =========================
MARK: Interview
========================= */
.p-interview {
	padding: 52px 0;
	background: #c9b9ff;
}
.c-cardGrid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
}
.c-card {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 18px;
	overflow: hidden;
}
.c-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.c-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	margin: 0;
}
.c-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-badge {
	position: absolute;
	right: 10px;
	top: 10px;
	background: #ff2d2d;
	color: #fff;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.8rem;
}
.c-card__body {
	padding: 12px 14px;
}

/* =========================
MARK: Related
========================= */
.p-related {
	padding-block: 70px 100px;
	background: var(--brand);
	color: #fff;
}

.p-related__title {
	font-size: clamp(1.625rem, calc(1.375rem + 1vw), 2.125rem);
}
.p-related__title span {
	display: block;
	font-size: 70%;
}

.p-related__buttons {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
	margin-top: 40px;
	margin-inline: auto;
	max-width: 600px;
}
.c-ext {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}

/* ========================
MARK: Footer / ToTop
========================= */
.l-bnr {
	position: relative;
	padding-block: 80px;
	background: #fff;
	z-index: 1;
}

.p-related__logos {
	max-width: 860px;
	margin-inline: auto;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 70px;
	grid-row-gap: 0px;
}

.p-related__logos li {
	width: 240px;
}

.l-footer {
	position: relative;
	background: var(--ink);
	color: #fff;
	padding-block: 55px 35px;
	z-index: 1;
}

.l-footer__title {
	font-size: 1.125rem;
	margin-bottom: 0.6em;
}

.l-footer__address {
	font-weight: 300;
}

.l-footer__grid {
	margin-block: 2em 3em;
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 1fr;
	max-width: 868px;
	margin-inline: auto;
}

.l-footer__col {
	border: 1px solid #707070;
}

.l-footer__col .l-footer__title {
	font-size: 1.0625rem;
	border-bottom: 1px solid #707070;
	padding: 7px 0.5em;
	margin-bottom: 0;
}

.l-footer__text {
	font-size: 0.875rem;
	font-weight: 300;
	padding: 15px 0.5em;
}

.l-footer__copyright {
	font-size: 0.8125rem;
	font-weight: 300;
	letter-spacing: 0.2em;
}

.l-footer__tel {
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.c-toTop {
	position: absolute;
	top: -50px;
	right: 16px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(135, 115, 210, 0.73);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	color: #fff;
	text-decoration: none;
}

/* =========================
MARK: 下層ページ
========================= */
.entry-header {
	height: clamp(360px, 75vh, 530px);
	background-color: rgba(226, 231, 255, 0.92);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 19%;
	padding-bottom: 35px;
	position: relative;
}

.entry-header.no-anchor {
	padding-bottom: 150px;
}

.entry-header.entry-header__min {
	height: 360px;
	gap: 5%;
}

.entry-header .entry-title {
	font-size: clamp(1.375rem, calc(0.75rem + 2.5vw), 2.625rem);
	font-weight: 500;
}

.p-anchorNav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6em;
	justify-content: end;
}

.p-anchorNav__list .p-anchorNav__link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
}

.p-anchorNav__list .p-anchorNav__link::after {
	content: '';
	display: block;
	width: 26px;
	height: 18px;
	background: url(../img/icon_anchor.svg) no-repeat;
	background-size: cover;
}

.entry-content {
	background-color: rgba(226, 231, 255, 0.29);
	padding-block: 85px 120px;
	position: relative;
}

.entry-content .container-lg,
.entry-content .container-md {
	position: relative;
}

.c-coming-soon h2 {
	font-size: 200%;
	font-weight: 600;
	color: var(--brand-2);
}

/* =========================
MARK: 仙台リサーチコンプレックスとは
========================= */
.slug-about .entry-title {
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.slug-about .entry-title::before {
	content: '';
	display: inline-block;
	margin-right: 0.5em;
	height: 1.3em;
	width: 1.3em;
	background: url(../img/icon_about.svg) no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
}

.slug-about .bg-circle {
	position: absolute;
	z-index: 0;
}

.slug-about .bg-circle.bg-circle01 {
	top: 13%;
	right: -25%;
}

.slug-about .bg-circle.bg-circle02 {
	top: 1.5%;
	right: 6%;
}

.slug-about .bg-circle.bg-circle03 {
	top: -1%;
	left: -2%;
}

.slug-about .c-heading__underline {
	width: 42%;
}

.slug-about .section-lead {
	margin-block: 0;
	flex: 1;
}

.slug-about .section-lead p {
	margin-bottom: 1.5em;
}

.greeting {
	border-top: 1px solid #b9b9b9;
	padding-top: 110px;
}

.greeting .c-content__colLeft {
	max-width: 325px;
	margin-right: 70px;
}

.greeting .c-content__colRight {
	flex: 1;
}

.greeting h3 {
	font-size: clamp(1.25rem, calc(1.125rem + 0.5vw), 1.5rem);
	font-weight: 500;
}

.greeting p {
	margin-top: 1.5em;
}

.greeting .signature {
	display: flex;
	gap: 27px;
	align-items: end;
	justify-content: end;
	font-weight: 500;
	line-height: 1;
}

.greeting .signature span {
	display: block;
	font-size: 14px;
}

.greeting .signature p {
	margin-top: 0;
	font-size: 26px;
}

.power {
	padding-block: 110px 95px;
}

.power .main-heading {
	font-size: clamp(1.25rem, calc(0.71875rem + 2.125vw), 2.3125rem);
	font-weight: 500;
	margin-bottom: 70px;
}

.power .main-heading span {
	display: block;
	margin-top: 0.7em;
}

.power .item {
	margin-bottom: 60px;
}

.power .item:last-of-type {
	margin-bottom: 0;
}

.power .item .heading {
	position: relative;
	color: var(--brand);
	font-size: 15px;
	font-weight: 500;
}

.power .item .heading::after {
	content: '';
	display: block;
	background: var(--brand);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 0;
}

.power .item .heading span {
	position: relative;
	display: inline-block;
	background-color: #f7f8ff;
	padding-inline: 0 0.7em;
	z-index: 1;
}

.power .item .c-content__colLeft {
	flex: 1;
	padding-left: 65px;
}

.power .item h3 {
	font-size: clamp(1rem, calc(0.8125rem + 0.75vw), 1.375rem);
	font-weight: 500;
	line-height: 1.5;
	margin-block: 30px;
}

.power .item h3 + p {
	margin-bottom: 10px;
}

.power .item ul {
	list-style: disc;
}

.power .item ul li {
	margin-left: 1.5em;
}

.power .item ul li::marker {
	color: var(--brand);
}

.power .item .c-content__colRight {
	max-width: 240px;
	margin-top: 30px;
}

.power .item .c-content__colRight p {
	font-size: 14px;
	margin-top: 3px;
}

.slug-about .main-detail {
	position: relative;
	background: #fff;
	padding-top: 100px;
}

.slug-about #section-01,
.slug-about #section-02 {
	position: relative;
}

.slug-about #section-02 {
	margin-top: 200px;
}

.slug-about .section-heading h2 {
	color: var(--brand);
	font-size: clamp(3rem, calc(2rem + 4vw), 5rem);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 50px;
}

.slug-about .section-heading h2 .ja {
	font-weight: 400;
	font-size: 14px;
	margin-top: 11px;
}

html[lang='en'] .slug-about .section-heading h2 .ja {
	display: none;
}

.slug-about .section-heading .separator {
	display: block;
	width: 100%;
	height: 1px;
	background: #e4ddff;
}

.flow {
	margin-bottom: 80px;
	gap: 80px;
}

.flow .flow-heading {
	display: flex;
	font-size: clamp(1.25rem, calc(0.875rem + 1.5vw), 2rem);
	align-items: end;
	gap: 30px;
	margin-bottom: 30px;
}

.flow-heading .flow-num {
	font-size: 250%;
	line-height: 1;
}

.flow-heading h3 {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: end;
}

.flow-heading h3 span {
	display: block;
	font-weight: 500;
}

.flow-heading h3 .font-zalando {
	color: #a8a8a8;
	font-size: max(12px, 44%);
	font-weight: 400;
	line-height: 1;
}

.flow-summary {
	max-width: 510px;
}

.flow.flow02 {
	justify-content: end;
}

.flow.flow02 .flow-heading {
	justify-content: end;
	text-align: right;
}

.cycle-summary {
	justify-content: end;
}

.cycle-summary p {
	max-width: 590px;
}

.cycle-img {
	position: relative;
	margin-top: 65px;
	padding-bottom: 30px;
}

.bg-02 {
	background: #e4ddff;
	padding-block: 35px 110px;
	transform: translateY(-1px);
}

.bg-grad {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 12%;
	width: 100%;
	background: #e4ddff;
	background: linear-gradient(0deg, rgba(228, 221, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.cycle-detail {
	background-color: #fff;
	border-radius: 40px;
	padding: 63px 63px 50px 63px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 60px;
	grid-row-gap: 44px;
}

.cycle-item h4 {
	font-size: clamp(1rem, calc(0.875rem + 0.5vw), 1.25rem);
	background: var(--brand);
	color: #fff;
	padding: 4px 10px 5px 1em;
}

.cycle-item .inner-item {
	display: flex;
	gap: 15px;
}

.cycle-item .inner-item p {
	font-size: 14px;
	margin-top: 12px;
}

.cycle-item:nth-child(1) .inner-item p,
.cycle-item:nth-child(3) .inner-item p {
	max-width: 279px;
}
.cycle-item:nth-child(2) .inner-item p,
.cycle-item:nth-child(4) .inner-item p {
	max-width: 300px;
}

.cycle-item:nth-child(1) .inner-item .inner-img {
	margin-top: -10px;
}

.cycle-item:nth-child(2) .inner-item .inner-img {
	margin-top: -16px;
}

.cycle-item:nth-child(3) .inner-item .inner-img {
	padding-top: 8px;
}

.cycle-item:nth-child(4) .inner-item .inner-img {
	margin-top: -5px;
}

.cycle-link {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 6%;
	grid-row-gap: 30px;
	margin-top: 110px;
}

.cycle-link .link-item {
	padding: 50px 30px 50px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	margin-top: 0;
}

.link-item h4 {
	font-weight: 600;
	margin-bottom: 40px;
}

.link-item p {
	font-size: 14px;
}

.slug-about #section-03 {
	padding-block: 75px;
	background: #f4f6ff;
	margin-bottom: -120px;
}

.slug-about #section-03 .section-heading h2 {
	color: var(--ink);
	font-size: clamp(3rem, calc(1.375rem + 6.5vw), 6.25rem);
	font-weight: 400;
	margin-bottom: 70px;
}

.access-img {
	max-width: 960px;
	margin-inline: auto;
}

/* =========================
MARK: NanoTerasuとは
========================= */
.slug-nanoterasu .entry-title {
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.slug-nanoterasu .entry-title::before {
	content: '';
	display: inline-block;
	margin-right: 0.5em;
	height: 1.3em;
	width: 1.3em;
	background: url(../img/icon_nano.svg) no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
}

/* =========================
MARK: 仙台で研究開発をはじめる・ひろげる
========================= */
.slug-research-development .entry-title {
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.slug-research-development .entry-title::before {
	content: '';
	display: inline-block;
	margin-right: 0.5em;
	height: 1.3em;
	width: 1.3em;
	background: url(../img/icon_research.svg) no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
}

.slug-research-development .entry-content {
	background-color: #f1eefa;
}

.c-page__heading {
	padding-bottom: 30px;
}

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

.c-content__box {
	margin-top: 50px;
	padding: 40px;
	border-radius: 20px;
	background: #fff;
}

.c-content__heading {
	border-bottom: 1px solid #b9b9b9;
	padding-bottom: 20px;
}

.c-content__heading .font-zalando {
	color: var(--brand-2);
	font-size: 15px;
	font-weight: 500;
}

.c-content__heading h3 {
	font-size: clamp(1.125rem, calc(0.96875rem + 0.625vw), 1.4375rem);
	font-weight: 500;
	margin-bottom: 10px;
}

.c-content__inner {
	margin-top: 30px;
}

.c-content__inner > .c-content__flex {
	gap: 25px;
}

.c-content__h4 {
	font-size: 19px;
	font-weight: 500;
}
.c-content__h4::before {
	content: '';
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	background: var(--brand);
	border-radius: 50%;
	margin-right: 5px;
}

.c-content__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	margin-top: 25px;
}

.link-content__item {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #f4f6ff;
	color: #130f22;
	min-height: 82px;
}

.link-content__item.no-img {
	text-align: center;
}

.link-content__item.no-img .c-content__linkTitle span {
	display: block;
	font-weight: 400;
	font-size: 13px;
}

.link-content__item .img-wrap {
	width: 44%;
	height: 100%;
}

.link-content__item .img-wrap figure {
	height: 100%;
}

.link-content__item .img-wrap figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.link-content__item .link-txt {
	flex: 1;
	padding: 10px 30px 10px 0;
}

.c-content__linkTitle {
	display: inline-block;
	position: relative;
	font-weight: 500;
	line-height: 1.6;
	padding-block: 8px;
}

.c-content__linkTitle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(100% + 9px);
	transform: translateY(-50%);
	width: 1.3em;
	height: 1.3em;
	background: url(../img/icon_external02.svg) no-repeat;
	background-size: contain;
}

.c-content__linkDesc {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.slug-research-development .c-content__inner.c-content__flex {
	display: flex;
	gap: 40px;
}

.slug-research-development .c-content__colLeft,
.slug-research-development .c-content__colRight {
	flex: 1;
}

.slug-research-development .c-content__flex .line {
	width: 1px;
	background: #b9b9b9;
}

.target-company {
	background: #f4f6ff;
	border-left: 2px solid var(--brand);
	padding: 10px 10px 10px 15px;
	font-weight: 400;
	margin-top: 17px;
}

.target-company span {
	display: block;
	color: var(--brand);
	font-size: 14px;
	font-weight: 500;
}

.subsidy-detail {
	display: flex;
	align-items: stretch;
	border: 1.5px solid #e4ddff;
	border-radius: 1rem;
	margin-block: 20px;
	overflow: hidden;
}

.subsidy-head {
	display: flex;
	align-items: center;
	color: #130f22;
	background-color: #e4ddff;
	padding: 4px 15px;
	border-radius: 0 1rem 1rem 0;
}

.subsidy-main {
	flex: 1;
	color: #db0000;
	font-weight: 400;
	line-height: 1.3;
	padding: 5px 15px;
}

.subsidy-main span {
	color: var(--ink);
	font-size: 13px;
}

.attention {
	font-size: 13px;
	font-weight: 400;
	padding-left: 1em;
	text-indent: -1em;
}

.c-content__inner .btn-wrap {
	margin-top: 20px;
}

.sub-link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-top: 10px;
}

.sub-link.disabled {
	color: #707070;
}

.sub-link a {
	display: flex;
	gap: 8px;
	color: var(--brand);
}

.sub-link a span {
	text-decoration: underline;
}

.btn-flex {
	display: flex;
	gap: 40px;
	margin-top: 30px;
}

.slug-research-development .bg-circle {
	position: absolute;
	z-index: 0;
}

.slug-research-development .bg-circle01 {
	width: calc(100vw * 0.5);
	height: calc(100vw * 0.5);
	top: -1%;
	left: 77%;
}

.slug-research-development .bg-circle02 {
	width: calc(100vw * 0.25);
	height: calc(100vw * 0.25);
	top: 40%;
	left: -23%;
}

.slug-research-development .bg-circle03 {
	width: calc(100vw * 1.3);
	bottom: -120px;
	left: 15%;
}

.c-page__heading,
.c-content__box {
	position: relative;
	z-index: 1;
}

/* =========================
MARK: 協業・交流先をみつける
========================= */
.slug-collaboration .entry-title {
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.slug-collaboration .entry-title::before {
	content: '';
	display: inline-block;
	margin-right: 0.5em;
	height: 1.3em;
	width: 1.3em;
	background: url(../img/icon_connect.svg) no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
}

/* =========================
MARK: 不動産オーナーのみなさまへ
========================= */
.slug-estate .entry-title {
	text-indent: -1.8em;
	padding-left: 1.8em;
}
.slug-estate .entry-title::before {
	content: '';
	display: inline-block;
	margin-right: 0.5em;
	height: 1.3em;
	width: 1.3em;
	background: url(../img/icon_estate.svg) no-repeat;
	background-size: contain;
	vertical-align: text-bottom;
}

/* =========================
MARK: お問い合わせ
========================= */
h2.c-heading__underline {
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-thickness: 1px;
	font-weight: 500;
	font-size: clamp(1.25rem, calc(1.0625rem + 0.75vw), 1.625rem);
	line-height: 2;
	color: #000;
}

.slug-contact .c-list__check {
	margin-top: 55px;
	font-size: clamp(1rem, calc(0.90625rem + 0.375vw), 1.1875rem);
	color: #130f22;
}

.c-list__check {
	line-height: 1.9;
	font-weight: 400;
}

.c-list__check li {
	position: relative;
	padding-left: 1.5em;
}

.c-list__check li::before {
	content: '';
	position: absolute;
	top: 0.4em;
	left: 0;
	display: block;
	width: 1.2em;
	height: 1.2em;
	background: url(../img/icon_check.png) no-repeat;
	background-size: contain;
}

.form-wrap {
	margin-top: 85px;
}

.contact-form .smf-form {
	border-radius: min(5%, 40px);
	margin-top: 1em;
	background-color: #fff;
	padding: min(5%, 50px);
	font-size: 0.9375rem;
	font-weight: 400;
}

.contact-form .smf-item {
	margin-top: 40px;
}

.contact-form .smf-item:first-child {
	margin-top: 10px;
}

.smf-item__label__text {
	display: inline-block;
	position: relative;
	color: #130f22;
	margin-bottom: 0.5em;
}

.smf-item:has([data-validations~='required']) .smf-item__label__text::after {
	position: absolute;
	top: 50%;
	left: 110%;
	transform: translateY(-50%);
	content: '必須';
	font-size: 0.75rem;
	color: #fff;
	background: var(--brand);
	border-radius: 2px;
	width: 2.8em;
	text-align: center;
}

.contact-form input.smf-checkbox-control__control {
	border-radius: 0;
	border-color: #b9b9b9;
	height: 1.3em;
	width: 1.3em;
}

.contact-form input.smf-text-control__control {
	border-color: #b9b9b9;
	border-radius: 0;
	width: 100%;
}

.contact-form input.smf-text-control__control::placeholder {
	color: rgba(96, 96, 96, 0.6);
}

.contact-form .smf-action {
	margin-top: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 25px;
}

.contact-form button.smf-button-control__control[data-action='confirm'] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--ink);
	white-space: nowrap;
	width: fit-content;
	padding: 23px 160px 23px 60px;
	font-size: 1.1875rem;
	gap: 50px;
	background: var(--ink);
	color: #fff;
	max-width: 322px;
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='confirm']::before {
	content: '';
	display: block;
	height: 1px;
	width: 66px;
	background: #fff;
	order: 2;
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.contact-form button.smf-button-control__control[data-action='confirm']::after {
	content: '';
	display: block;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: var(--ink);
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 34%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='confirm']:hover {
	background: #fff;
	color: var(--ink);
	opacity: 1;
}

.contact-form button.smf-button-control__control[data-action='confirm']:hover::before {
	background: var(--ink);
}

.contact-form button.smf-button-control__control[data-action='confirm']:hover::after {
	right: 8%;
	border-color: var(--ink);
	background-color: #fff;
}

/* 確認画面 */
.snow-monkey-form[data-screen='confirm'] .smf-placeholder {
	background: #efefef;
	padding: 8px 10px;
	color: #555;
}

.contact-form button.smf-button-control__control[data-action='back'] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--ink);
	white-space: nowrap;
	width: fit-content;
	padding: 23px 160px 23px 60px;
	font-size: 1.1875rem;
	gap: 50px;
	background: var(--ink);
	color: #fff;
	max-width: 322px;
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='back']::before {
	content: '';
	display: block;
	height: 1px;
	width: 66px;
	background: #fff;
	order: 2;
	position: absolute;
	top: 50%;
	right: 42px;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.contact-form button.smf-button-control__control[data-action='back']::after {
	content: '';
	display: block;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: var(--ink);
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 42%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='back']:hover {
	background: #fff;
	color: var(--ink);
	opacity: 1;
}

.contact-form button.smf-button-control__control[data-action='back']:hover::before {
	background: var(--ink);
}

.contact-form button.smf-button-control__control[data-action='back']:hover::after {
	right: 12%;
	border-color: var(--ink);
	background-color: #fff;
}

.contact-form button.smf-button-control__control[data-action='complete'] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--brand);
	white-space: nowrap;
	width: fit-content;
	padding: 23px 160px 23px 60px;
	font-size: 1.1875rem;
	gap: 50px;
	background: var(--brand);
	color: #fff;
	max-width: 322px;
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='complete']::before {
	content: '';
	display: block;
	height: 1px;
	width: 66px;
	background: #fff;
	order: 2;
	position: absolute;
	top: 50%;
	right: 42px;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.contact-form button.smf-button-control__control[data-action='complete']::after {
	content: '';
	display: block;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: var(--brand);
	width: 11px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 36%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.contact-form button.smf-button-control__control[data-action='complete']:hover {
	background: #fff;
	color: var(--brand);
	opacity: 1;
}

.contact-form button.smf-button-control__control[data-action='complete']:hover::before {
	background: var(--brand);
}

.contact-form button.smf-button-control__control[data-action='complete']:hover::after {
	right: 11%;
	border-color: var(--brand);
	background-color: #fff;
}

.snow-monkey-forms-turnstile {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 完了画面 */

.smf-complete-content h2 {
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-thickness: 1px;
	font-weight: 500;
	font-size: clamp(1.25rem, calc(1.0625rem + 0.75vw), 1.625rem);
	line-height: 2;
	color: #000;
	text-align: center;
	margin-bottom: 1em;
}

/* =========================
MARK: 404
========================= */
.content-404 .btn-wrap {
	margin-top: 40px;
}

/* =========================
MARK: お知らせ一覧
========================= */
.c-pagination {
	margin-top: 80px;
	display: flex;
	justify-content: center;
	gap: 15px;
	font-family: 'Zalando Sans SemiExpanded', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

.c-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 42px;
	height: 42px;
	border-radius: 50em;
	background: #fff;
}

.c-pagination .page-numbers.current {
	background: var(--ink);
	color: #fff;
}

/* =========================
MARK: お知らせ詳細
========================= */
.c-postDetail__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: end;
}

/* シングルスタイル */
body.single .entry-content h2 {
	font-weight: 500;
	font-size: clamp(1.25rem, calc(1.0625rem + 0.75vw), 1.625rem);
}
body.single .entry-content h3 {
	font-weight: 500;
	font-size: clamp(1.125rem, calc(0.9375rem + 0.75vw), 1.5rem);
}
body.single .entry-content h4 {
	font-weight: 500;
	font-size: clamp(1rem, calc(0.875rem + 0.5vw), 1.25rem);
}

body.single .entry-content ul {
	list-style: disc;
}
body.single .entry-content ul ul {
	list-style: circle;
}

body.single .entry-content ol {
	list-style: decimal;
}
body.single .entry-content ol ol {
	list-style: lower-roman;
}

body.single .entry-content ul li,
body.single .entry-content ol li {
	margin-left: 1.5em;
}

body.single .entry-content a:not(.c-btn) {
	color: var(--brand);
	text-decoration: underline;
}

body.single .entry-content .btn-wrap {
	display: flex;
	justify-self: center;
	margin-top: 80px;
}
body.single .entry-content .btn-wrap .c-btn--dark {
	text-decoration: none;
}

/* =========================
MARK: 多言語
========================= */
html[lang='en'] .c-gnav a {
	font-size: 80%;
}

/* =========================
MARK: Responsive
========================= */
@media (max-width: 1190px) {
	.l-header__inner {
		padding-block: 15px;
	}
	.l-header__top {
		padding-block: 0;
	}
	.l-header__brand {
		gap: 17px;
	}
	.c-logo {
		width: 113px;
	}
	.c-partnerLogos li {
		width: 100px;
	}
	.l-header__top .l-header__tools {
		display: none;
	}
	.l-header__navInner {
		display: none;
	}

	.l-header__tools {
		width: 100%;
	}
	.l-header__bottom {
		position: unset;
		padding: 0;
	}
	.l-header__nav {
		padding: 0;
		max-height: 0;
		transition: all 0.25s;
	}
	.is-compact .l-header__nav {
		margin-top: 0;
		max-height: 100px;
	}

	.c-navToggle {
		right: 20px;
	}

	.hamburger-top {
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}
}
@media (max-width: 900px) {
	.p-updates__grid {
		grid-template-columns: 1fr;
	}
	.p-about__grid {
		grid-template-columns: 1fr;
	}
	.p-map__grid {
		grid-template-columns: 1fr;
	}
	.c-logoGrid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 720px) {
	.c-btn--lg {
		font-size: 1rem;
	}
	.c-btn--block {
		font-size: 14px;
	}
	.c-btn--block span {
		font-size: 12px;
	}
	.c-btn__external {
		width: 100%;
		font-size: 14px;
		padding-block: 15px;
	}
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}

	.hamburger .c-search {
		width: 50%;
	}

	.hamburger .c-lang {
		width: 40%;
		position: relative;
	}
	.toggle_lang .c-lang__label::after {
		content: none;
	}

	.hamburger-top .l-header__tools .c-btn.c-btn--primary {
		width: 100%;
		padding: 8px 15px;
	}
	.hamburger-top .l-header__tools .c-btn.c-btn--primary img {
		margin-right: 0.5em;
	}

	.c-navToggle {
		width: 57px;
		right: 20px;
	}
	nav.hamburger {
		height: 100vh;
	}
	#hamburgerNav {
		padding-inline: min(5%, 30px);
	}
	.hamburger-top {
		position: relative;
		flex-wrap: wrap;
		max-height: unset;
	}
	.hamburger-top .l-header__tools {
		flex-wrap: wrap;
		position: relative;
	}
	#hamburgerNav .l-header__navInner {
		display: block;
		position: unset;
		align-items: start;
		padding: 45px 0 130px;
		height: 110%;
	}
	#hamburgerNav .c-navToggle {
		top: 30px;
		right: 20px;
	}
	.l-header__navInner .hamburger_inner {
		flex-direction: column;
		align-items: start;
		gap: 45px;
	}
	#hamburgerNav .c-gnav {
		gap: 20px;
	}
	#hamburgerNav .c-gnav a {
		font-size: 0.875rem;
	}
	#hamburgerNav .c-gnav a span {
		width: 2em;
	}
	.c-btn--scrolled {
		opacity: 1;
		visibility: visible;
		top: calc(100% + 20px);
		right: 20px;
		padding: 12px 23px;
	}
	.c-btn--primary img {
		padding-right: 0;
		width: 23px;
	}
	.c-btn--scrolled span {
		display: none;
	}
	.p-hero .mv-wordmark {
		bottom: 11%;
	}
	.main-mv .splide__pagination {
		gap: 22px;
		padding-right: 8%;
	}
	.main-mv .splide__pagination li {
		width: 24%;
	}
	.main-mv .splide__pagination__page {
		height: 1px;
	}
	.infinite__item {
		width: calc(100vw / 0.5);
	}
	.p-updates {
		padding: 0;
	}
	.p-updates__col {
		display: flex;
		gap: 30px;
	}
	.p-updates__head {
		margin-top: 18px;
		margin-bottom: 0;
	}
	.p-updates__title {
		font-size: 15px;
	}
	.p-updates__more {
		display: none;
	}
	.c-postList {
		flex: 1;
	}
	.c-postList__date {
		font-size: 12px;
	}
	.c-postList__tag {
		font-size: 9px;
	}
	.c-postList__link {
		font-size: 13px;
	}
	.p-about {
		padding: 90px 0 90px;
	}
	.p-about__left {
		display: contents;
		height: auto;
	}
	.p-about__title {
		order: 1;
	}
	.p-about__left .c-btn {
		order: 3;
		font-size: 13px;
		padding-inline: 45px;
		width: 100%;
		margin-top: 30px;
	}
	.p-about__right {
		order: 2;
	}
	.p-about__right > p {
		font-size: 15px;
	}
	.p-about__right a {
		font-size: 13px;
	}
	.c-tile__icon {
		display: flex;
		max-height: 48px;
	}
	.c-tile__title {
		font-size: 13px;
	}
	.p-map {
		padding: 40px 0px 30px;
	}
	.p-map::before {
		top: 14%;
		height: 10%;
	}
	.c-mapArea::after {
		border: 1.5px dashed rgba(139, 120, 214, 1);
	}
	.p-mapStage__ttl {
		width: 50%;
		top: 4%;
	}
	.p-mapStage__panel {
		margin-top: 0;
	}
	.p-map__panel {
		border-radius: 0;
		padding: 25px 20px;
		margin-top: 0;
	}
	.p-map__code {
		font-size: 35px;
	}
	.p-map__areaTitle {
		font-size: 17px;
	}
	.p-map__list {
		height: 160px;
		font-size: 13px;
	}
	.p-map__kicker {
		font-size: 18px;
	}
	.p-map__title {
		font-size: 48px;
	}
	.p-map__desc {
		font-size: 14px;
		line-height: 2;
		margin-top: 0.8em;
	}
	.p-map__desc span {
		font-size: 12px;
	}
	.p-map__arrows {
		gap: 27px;
	}
	.c-iconBtn {
		padding: 15px 17px;
	}
	.p-mapAcces__station {
		flex: 1;
	}
	.station {
		font-size: 12px;
	}
	.p-mapAcces__time {
		display: flex;
		flex-direction: column;
		width: 35%;
	}
	.p-mapAcces__time .way-duration {
		font-size: 1rem;
	}
	.time-marker span {
		font-size: 1.25rem;
	}
	.c-modal__close {
		top: 15px;
		right: 15px;
	}
	.c-modal__head {
		padding-top: 30px;
	}
	.c-modal__body {
		margin-top: 2.5em;
	}
	.c-modal__body ul {
		display: block;
		font-size: 1rem;
	}
	.p-nanoterasu {
		padding-block: 75px 50%;
		background:
			linear-gradient(
				180deg,
				rgba(199, 228, 235, 1) 30%,
				rgba(198, 227, 234, 0.99) 40%,
				rgba(198, 227, 234, 0.96) 50%,
				rgba(106, 104, 182, 0) 70%
			),
			url(../img/top_nanoterasu_sp.jpg);
		background-size: 100%, cover;
		background-position: bottom;
	}
	.p-nanoterasu__desc {
		font-size: 14px;
	}
	.p-related {
		padding-block: 40px 60px;
	}

	.l-bnr {
		padding-block: 45px;
	}
	.p-related__logos {
		grid-template-columns: auto;
		grid-row-gap: 25px;
	}
	.p-related__logos li {
		margin-inline: auto;
	}

	.l-footer__address {
		font-size: 12px;
	}
	.l-footer__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.l-footer__copyright {
		text-align: left;
	}
	.c-toTop {
		top: 85%;
		width: 40px;
		height: 40px;
	}
	.c-toTop img {
		width: 25%;
	}

	/* =========================
	MARK: 下層ページ
	========================= */
	.entry-header {
		padding-top: 150px;
		height: auto;
		gap: 30px;
	}
	.entry-header.entry-header__min {
		height: auto;
	}
	.entry-header.no-anchor {
		padding-bottom: 40px;
	}

	.c-page__heading {
		padding-bottom: 10px;
	}
	.section-lead {
		margin-top: 35px;
	}
	.c-content__box {
		margin-top: 40px;
		padding: 20px;
	}

	.c-content__grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.c-content__linkDesc {
		font-size: 12px;
	}
	.c-content__linkTitle::after {
		width: 1em;
		height: 1em;
	}

	.c-content__inner.c-content__flex {
		flex-direction: column;
	}
	.c-content__flex .line {
		width: 100%;
		height: 1px;
	}
	.btn-flex {
		flex-direction: column;
	}

	/* =========================
	MARK: 仙台リサーチコンプレックスとは
	========================= */
	.slug-about .c-page__heading {
		flex-direction: column;
	}

	.slug-about .c-heading__underline {
		width: 100%;
	}
	.slug-about .section-lead {
		margin-top: 35px;
	}

	.greeting {
		padding-top: 70px;
	}

	.greeting .c-content__flex {
		flex-direction: column;
	}

	.greeting .c-content__colLeft {
		margin-inline: auto;
		max-width: 210px;
		order: 5;
		margin-top: 40px;
	}

	.greeting .c-content__colRight {
		display: contents;
	}
	.greeting h3 {
		order: 1;
	}

	.greeting p {
		order: 2;
	}

	.greeting .signature {
		order: 6;
		margin-top: 15px;
		flex-direction: column;
		gap: 10px;
		align-items: center;
		justify-content: end;
	}

	.power {
		padding-block: 110px 55px;
	}

	.power .item .c-content__colLeft {
		padding-left: 0;
	}

	.power .item .c-content__flex {
		flex-direction: column;
	}

	.power .item .c-content__colRight {
		margin-inline: auto;
	}

	.flow {
		flex-direction: column;
		gap: 30px;
	}

	.flow .flow-summary {
		order: 1;
	}

	.flow .flow-symbol {
		order: 2;
	}

	.flow .flow-symbol img {
		max-width: 160px;
		max-height: 120px;
		margin-inline: auto;
	}

	.slug-about #section-02 {
		margin-top: 150px;
	}

	.cycle-detail {
		border-radius: 20px;
		padding: 20px;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: auto;
		grid-row-gap: 44px;
	}

	.cycle-item .inner-item {
		display: block;
	}

	.cycle-link {
		grid-template-columns: repeat(1, 1fr);
		grid-column-gap: 6%;
		grid-row-gap: 30px;
	}

	.cycle-item:nth-child(1) .inner-item p,
	.cycle-item:nth-child(2) .inner-item p,
	.cycle-item:nth-child(3) .inner-item p,
	.cycle-item:nth-child(4) .inner-item p {
		max-width: unset;
	}

	.cycle-item .inner-item .inner-img {
		padding-inline: 30%;
		margin-top: 20px !important;
	}

	.access-img img {
		margin-inline: auto;
	}

	/* =========================
	MARK: 仙台で研究開発をはじめる・ひろげる
	========================= */

	.c-content__inner > .c-content__flex {
		flex-direction: column;
	}

	/* =========================
	MARK: お問い合わせ
	========================= */
	.smf-action .smf-button-control + .smf-button-control {
		margin-left: 0;
	}
}
