/*--------------------------------------------------------------
# Imaginear Theme Foundation
--------------------------------------------------------------*/
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-text: #333333;
	--color-muted: #999999;
	--color-border: #dddddd;
	--color-bg-light: #f8f8f8;
	--font-jp: "Inter", "Noto Sans JP", sans-serif;
	--font-en: "Inter", sans-serif;
	--font-exlight: 200;
	--font-light: 300;
	--font-regular: 300;
	--font-medium: 400;
	--font-bold: 600;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	color: var(--color-text);
	font-family: var(--font-jp);
	font-weight: var(--font-regular);
	font-feature-settings: "palt";
	margin: 0;
}
body.is-drawer-open {
	overflow: hidden;
}
.page {
	min-width: 320px;
	margin: 0;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
a,
a:hover,
a:visited {
	color: var(--color-black);
	text-decoration: none;
	transition: 0.3s;
}
button {
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: var(--font-bold);
	line-height: 1.5;
	margin: 0;
}
dl, dt, dd {
	font-weight: var(--font-regular);
	margin: 0;
}
p {
	margin: 0 0 1rem 0;
}
strong {
	font-weight: var(--font-bold);
}
.site {
	min-width: 320px;
}
.en {
	font-family: var(--font-en);
	letter-spacing: 0.02em;
}
.container {
	width: 100%;
	padding: 0 50px;
	margin: 0 auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.sp-only {
		display: none;
	}
}
@media (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.container {
		padding: 0 20px;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.site-header__inner {
	align-items: center;
	display: flex;
	height: 140px;
	justify-content: space-between;
	padding: 0 0 0 50px;
	width: 100%;
}
.site-header__logo {
	display: block;
	flex: 0 0 auto;
	font-size: 28px;
	font-weight: var(--font-medium);
}
.site-header__nav {
	align-items: center;
	display: flex;
	margin-left: auto;
	padding-right: 100px;
}
.site-header__nav-list {
	align-items: center;
	display: flex;
	gap: 35px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-header__nav-list a {
	align-items: center;
	color: var(--color-primary-dark);
	display: inline-flex;
	font-size: 14px;
	font-weight: var(--font-medium);
	line-height: 1.4;
}
.site-header__nav-list a.site-header__cta {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-black);
	color: var(--color-white);
	min-width: 150px;
	min-height: 40px;
	border-radius: 40px;
	font-weight: var(--font-medium);
}

@media (min-width: 768px) {
	.site-header__logo:hover,
	.site-header__nav-list a:hover {
		transform: translateY(-1px);
	}
}
@media (max-width: 1199px) {
	.site-header__nav {
		display: none;
	}
}
@media (max-width: 767px) {
	.site-header__inner {
		height: 100px;
		padding: 0 0 0 20px;
	}
	.site-header__logo {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# ハンバーガー
--------------------------------------------------------------*/

.site-header__menu-button {
	position: fixed;
	top: 50px;
	right: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* border: 1px solid var(--color-border); */
	gap: 8px;
	width: 40px;
	height: 40px;
	z-index: 1002;
}
.site-header.is-drawer-open .site-header__menu-button {
	background-color: rgba(0,0,0,0);
}
.site-header__menu-line {
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--color-black);
	display: block;
	height: 1px;
	width: 30px;
	transition: 0.3s;
}
.site-header__menu-line:nth-of-type(2) {
	transform: translate(-50%, -5px);
}
.site-header__menu-line:nth-of-type(3) {
	transform: translate(-50%, 5px);
}
.site-header.is-drawer-open .site-header__menu-line {
	background: var(--color-white);
}
.site-header.is-drawer-open .site-header__menu-line:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(25deg);
}
.site-header.is-drawer-open .site-header__menu-line:nth-of-type(3) {
	transform: translate(-50%, -50%) rotate(-25deg);
}
@media (max-width: 767px) {
	.site-header__menu-button {
		top: 30px;
		right: 15px;
	}
}

.drawer-navigation {
	display: block;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	visibility: hidden;
	z-index: 1001;
}

.site-header.is-drawer-open .drawer-navigation {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.drawer-navigation__backdrop {
	background: rgba(0, 0, 0, 0.75);
	inset: 0;
	position: absolute;
}

.drawer-navigation__panel {
	background: var(--color-primary);
	color: var(--color-white);
	margin-left: auto;
	padding: 120px 40px 40px;
	position: relative;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	width: 280px;
	height: 100dvh;
	max-height: 100dvh;
	overflow: auto;
}

.site-header.is-drawer-open .drawer-navigation__panel {
	transform: translateX(0);
}

.drawer-navigation__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-navigation__list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.drawer-navigation__list li:last-child {
	border: none;
}
.drawer-navigation__list a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: var(--font-medium);
	line-height: 1.4;
	justify-content: space-between;
	min-height: 55px;
	color: var(--color-white); 
}

.drawer-navigation__list a::after {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e5e1";
	font-weight: 100;
	color: var(--color-white);
	transition: 0.3s;
}

a.drawer-navigation__cta,
a.drawer-navigation__cta:visited {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-white);
	color: var(--color-black);
	border-radius: 400px;
	font-size: 14px;
	font-weight: var(--font-medium);
	line-height: 1.4;
	height: 45px;
	width: 100%;
	margin-top: 35px;
}
a.drawer-navigation__cta::after {
	content: none;
}
@media (min-width: 768px) {
	.drawer-navigation__list a:hover::after {
		right: 0;
	}
	.drawer-navigation__cta:hover {
		transform: translateY(-1px);
	}
}
@media (max-width: 767px) {
	.drawer-navigation__panel {
		padding-top: 100px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
	background-color: var(--color-black);
	color: var(--color-white);
	font-size: 14px;
	line-height: 1.8;
	padding: 150px 0 50px 0;
}
.footer .row {
	justify-content: space-between;
}
.footer .row > * {
	width: 48%;
}
a.footer__logo {
	display: block;
	color: var(--color-white);
	font-size: 200%;
	line-height: 1;
	margin-bottom: 40px;
}
.footer__nav ul li {
	display: inline-block;
	margin: 0 1em 0.5em 0;
}
.footer__nav ul li a {
	display: inline-block;
	color: var(--color-white);
}
.footer .company_name {
	font-size: 130%;
	margin: 0 0 10px 0;
}
.footer a.btn {
	background-color: var(--color-white);
	color: var(--color-black);
	margin-top: 20px;
}
.footer__copyright {
	font-size: 12px;
	margin-top: 50px;
}
@media (min-width: 768px) {
	.footer__nav ul li a:hover {
		transform: translateY(-1px);
	}
}
@media (max-width: 575px) {
	.footer {
		font-size: 13px;
		line-height: 1.8;
		padding: 100px 0 50px 0;
	}
	.footer .row > * {
		width: 100%;
	}
	.footer .row > * + * {
		margin-top: 30px;
	}
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.btn,
.btn:visited {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background-color: var(--color-black);
	color: var(--color-white);
	font-size: 14px;
	font-weight: var(--font-medium);
	line-height: 1.4;
	min-width: 160px;
	min-height: 40px;
	padding: 5px 20px;
}
.btn_wrap {
	margin-top: 40px;
}
@media (min-width: 768px) {
	.btn:hover,
	.btn:focus-visible {
		transform: translateY(-1px);
		color: var(--color-white);
	}
}

ul.none, ol.none {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.circle {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.circle li {
	position: relative;
	padding-left: 1.2em;
}
ul.circle li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "\25CF";
	color: var(--color-primary);
}
.img_cover {
	position: relative;
	display: block;
	overflow: hidden;
}
.img_cover img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
.img_cover::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--color-black);
	opacity: 0.02;
}

/*--------------------------------------------------------------
.section
--------------------------------------------------------------*/

.section {
	position: relative;
	font-size: 16px;
	line-height: 2;
	padding: 100px 0;
}
.section:last-child {
	padding-bottom: 150px;
}
.section::before {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	content: "";
	width: calc(100% - 100px);
	height: 1px;
	background-color: var(--color-border);
}
.section_title .en {
	font-size: 56px;
	font-weight: var(--font-light);
	line-height: 1.1;
}
.section_title .ja {
	font-size: 20px;
	font-weight: var(--font-bold);
	margin: 10px 0 0 0;
}
.section .h2 {
	font-size: 180%;
	margin: 100px 0 40px 0;
}
.section .h3 {
	font-size: 140%;
	margin: 60px 0 20px 0;
}
.section .h3_temple {
	font-size: 170%;
}
.section .h3_temple .small {
	display: block;
	font-size: 55%;
	font-weight: var(--font-medium);
	margin-bottom: 0.5em;
}
.section .col .h3 {
	margin-top: 0;
}
.section .col_right .row + .btn_wrap {
	margin-top: 80px;
}
.section .row_layout .col_right > *:first-child,
.section .row_layout .col > *:first-child {
	margin-top: 0;
}
.section .row_layout .col_right > *:last-child,
.section .row_layout .col > *:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	
}
@media (max-width: 991px) {
	.section_title {
		position: relative;
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	.section_title::after {
		position: absolute;
		left: 0;
		bottom: 0;
		content: "";
		width: 20px;
		height: 1px;
		background-color: var(--color-black);
	}
}
@media (max-width: 767px) {
	.section {
		font-size: 16px;
	}
	.section::before {
		width: calc(100% - 40px);
	}
	.section_title .en {
		font-size: min(15vw, 56px);
	}
	.section_title .ja {
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
基本レイアウト
--------------------------------------------------------------*/

.section .row_layout {
	justify-content: space-between;
}
.section .row_layout .col_left {
	width: 30%;
}
.section .row_layout .col_right {
	width: 65%;
}
.section .row_layout .col_right .row {
	margin: 0 -20px;
}
.section .row_layout .col_right .col {
	width: 50%;
	padding: 0 20px;
	margin-top: 80px;
}
.section .row_layout .col_right > .row:first-child {
	margin-top: -80px;
}
@media (max-width: 991px) {
	.section .row_layout .col_left,
	.section .row_layout .col_right {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.section .row_layout .col_right .col {
		width: 100%;
	}
}

/* ------------------------------ */
/* .swiper リセット */
/* ------------------------------ */

/* 1. ページネーション全体の配置リセット（必要に応じて） */
.swiper-pagination {
	position: relative !important;
	/* スライダーの下に置く場合 */
	bottom: 0 !important;
	margin: 0;
}

/* 2. ドット（数字）自体のリセットとスタイル設定 */
.swiper-pagination-bullet {
	all: unset;
	/* 標準の丸いスタイルをすべて解除 */
	cursor: pointer;
	display: inline-block;
	margin: 0 10px !important;
	/* 数字同士の間隔 */

	/* 数字の見た目 */
	font-size: 16px;
	font-family: sans-serif;
	color: #999;
	/* 通常時の色 */
	transition: color 0.3s;
}

/* Swiperが強制付与する不透明度をリセット */
.swiper-pagination-bullet {
	opacity: 1 !important;
}

/* 1. 本体（枠、背景、配置など）のリセット */
.swiper-button-prev,
.swiper-button-next {
	all: unset;
	/* 標準のスタイル（ボタンの枠線など）を解除 */
	position: static;
	/* デフォルトの absolute を解除（自由に配置可能に） */
	margin: 0;
	/* デフォルトの margin-top を解除 */
	width: auto;
	/* デフォルトの width (27px等) を解除 */
	height: auto;
	/* デフォルトの height (44px等) を解除 */
	cursor: pointer;
	/* divタグに変更したため、クリックできるカーソルを明示 */
	display: inline-block;
	/* 横並びにするなど、扱いやすいdisplayに変更 */
}
.swiper-button-prev svg,
.swiper-button-next svg {
	display: none !important;
}
/* 2. Swiper標準の「青い矢印アイコン」を消去（最重要） */
.swiper-button-prev::after,
.swiper-button-next::after {
	content: none;
	/* アイコンを完全に非表示にする */
}
/* 3. 無効時（最初/最後のスライド到達時）のスタイルリセット */
.swiper-button-disabled {
	opacity: 0.3;
	/* デフォルトで薄くなるのを好みに変更可能（不要なら 1 に） */
	cursor: default;
	/* クリックできないカーソルにする */
	pointer-events: none;
	/* クリックイベントを無効化 */
}


/* ------------------------------ */
/* .swiper__imaginear */
/* ------------------------------ */

/* カスタマイズ */
.swiper-nav .swiper-pagination {
	position: relative;
	display: flex;
}
.swiper-nav .swiper-pagination::after {
	display: none;
}
.swiper-nav .swiper-pagination-bullet {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d8d9d9;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	font-size: 0;
	line-height: 1;
	margin: 0 8px !important;
	z-index: 1;
}
.swiper-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #9d9fa1;
}


/* カスタマイズ */
.swiper-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 50px auto 0 auto;
}
.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
	position: relative;
	background-color: var(--color-white);
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: 0.3s;
}
.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: "Material Symbols Sharp";
	content: "\ef7d";
	color: var(--color-primary);
	font-size: 24px;
	font-weight: var(--font-exlight);
}
.swiper-nav .swiper-button-next::after {
	content: "\e941";
}
.swiper-nav .swiper-pagination {
	flex: 1;
	padding: 0 30px;
}
@media (min-width: 768px) {
	.swiper-nav .swiper-button-prev:hover,
	.swiper-nav .swiper-button-next:hover {
		background-color: var(--color-primary);
	}
	.swiper-nav .swiper-button-prev:hover::after,
	.swiper-nav .swiper-button-next:hover::after {
		color: var(--color-white);
	}
}

/* ------------------------------ */
/* お知らせ一覧 */
/* ------------------------------ */

.news_article_list {
	line-height: 1.4;
	margin: 0 -20px;
}
.news_article_list > * {
	width: 50%;
	padding: 0 20px;
}
.news_article_list .date {
	font-size: 85%;
}
.news_article_list .title {
	font-size: 18px;
	line-height: 1.6;
	margin: 5px 0;
}
.news_article_list a {
	display: inline-block;
}
.news_article_list .entry-categories ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 85%;
}
.news_article_list .entry-categories ul li {
	display: inline-block;
	margin: 0 1em 0.5em 0;
}
@media (min-width: 768px) {
	.news_article_list a:hover {
		transform: translateY(-1px);
	}
}
@media (max-width: 767px) {
	
}

/* ------------------------------ */
/* コラム一覧 */
/* ------------------------------ */

.column_article_list dl dt {
	margin-bottom: 15px;
}
.column_article_list dl dt a {
	display: block;
}
@media (min-width: 768px) {
	.column_article_list a img {
		transition: 0.3s;
	}
	.column_article_list a:hover img {
		scale: 1.1;
	}
}

/* ------------------------------ */
/* 実績一覧 */
/* ------------------------------ */

.works_info_wrap {
	border-top: 1px solid var(--color-border);
	line-height: 1.8;
	margin-top: 20px;
}
.works_info_wrap p {
	margin: 0;
}
.works_info_wrap dl {
	display: flex;
	border-bottom: 1px solid var(--color-border);
	padding: 12px 0;
}
.works_info_wrap dl dt {
	font-weight: var(--font-bold);
	width: 80px;
	margin: 0;
}
.works_info_wrap dl dd {
	flex: 1;
}
@media (min-width: 768px) {
	.works_info_wrap {
		font-size: 15px;
	}
}
