@charset "utf-8";
/* ベーススタイル (モバイルファースト) */
body {
	margin: 0;
	background-color: var(--white);
	font-family: var(--font-family-gothic);
}
.container-center-horizontal {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
}
.main-page-wrapper { /* 旧 .desktop, .mobile, .index を統合 */
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	min-height: 100vh; /* 最小高さをビューポートの高さに設定 */
	overflow-x: hidden; /* 水平スクロールを抑制 */
	box-sizing: border-box; /* paddingとborderを幅に含める */
}
/* Header (Globals.cssに移動) */
/* このセクションのスタイルはglobals.cssに移動しました */
/* Global Navigation (Globals.cssに移動) */
/* このセクションのスタイルはglobals.cssに移動しました */
/* Mobile Menu Toggle Button (Globals.cssに移動) */
/* このセクションのスタイルはglobals.cssに移動しました */
/* Mobile Navigation Menu (Globals.cssに移動) */
/* このセクションのスタイルはglobals.cssに移動しました */
/* サブメニューのスタイル (Globals.cssに移動) */
/* このセクションのスタイルはglobals.cssに移動しました */

/* Main Image Section */
.main_img {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 300px; /* 最小高さを確保 */
	padding-top: 50px; /* テキストの配置を考慮 */
	box-sizing: border-box;
	overflow: hidden;
}
.mask-group {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.pagetitle { /* ページタイトル */
	color: var(--white);
	font-family: var(--font-family-zen_old_mincho);
	font-size: 24px; /* モバイルでのフォントサイズ調整 */
	font-weight: 500;
	text-align: center;
	text-shadow: 0px 0px 15px #0000008c;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	padding: 0 10px; /* 左右にパディング */
	box-sizing: border-box;
}
/* Breadcrumb */
#breadcrumb{
	font-size: 0.813em;
	color: #222222;
	padding: 1em 0;
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 2em;
}
#breadcrumb ol{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	justify-content: flex-end;
	width: 97%;
	margin: auto;
}
#breadcrumb ol li:after{
	content: ">";
	display: inline-block;
	vertical-align: middle;
	margin: 0 .5em;
	padding: 0;
	color: #999;
}
#breadcrumb ol li:last-child:after{
	content: "";
	margin-right: 0;
}
#breadcrumb ol li a{
	color: #222222;
	text-decoration: none;
}
/* Main Content Area (Side Nav + Main Content) */
.content-area {
	display: flex;
	flex-direction: column; /* モバイルでは縦積みに */
	width: 100%;
	max-width: 1280px;
	box-sizing: border-box;
	margin: auto;
}
/* Side Navigation */
.side-nav-block {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	border-radius: 0px 10px 0px 0px;
	width: 100%; /* モバイルでは全幅 */
	box-sizing: border-box;
	padding: 0 0 0 15px;
}
.side-nav_wrap {
	display: flex;
	flex-direction: column;
	border-top: 3px solid var(--fountain-blue);
	gap: 10px;
	width: 90%;
}
.title {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 0;
	border-bottom: 1px solid var(--alto);
}
.menus_ar{
	width: 24px;
	height: 24px;
}
.text-7 {
	color: #3c5178;
	font-family: var(--font-family-gothic);
	font-size: var(--font-size-m);
	font-weight: 700;
}
.side-nav_list-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#sideNavList li {
	position: relative;
	padding-left: 25px; /* アイコン分のスペース */
	min-height: 22px;
	vertical-align: middle;
}
#sideNavList li a{
	background: url("../img/ar_submenu.svg") no-repeat left .4em;
	padding: 0 0 0 20px;
	margin: 0 0 .4em;
	display: block;
}
.side-nav_list-wrap.news li{
	background: url("../img/ar_submenu.svg") no-repeat left .4em;
	padding: 0 0 0 20px;
	margin: 0 0 .4em;
	display: block;
	font-size: 14px;
}
#sideNavList.side-nav_list-wrap.news li a{
	background: none;
	padding: 0;
	margin: 0;
	color: #3F68B0;
}
#sideNavList.side-nav_list-wrap.news li span{
	color: #979797;;
}
.mdi-lightarrow-right {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
}
.text-1 {
	font-family: var(--font-family-gothic);
	font-size: var(--font-size-s);
	color: var(--black);
}
/* Main Content Body */
.main-content-body {
	width: 100%;
	box-sizing: border-box;
	font-family: var(--font-family-gothic);
}
.h1,
.h2{
	border-top: 1px solid var(--cararra);
	margin: 20px 0 2em;
	display: block;
	position: relative;
	padding: 1.2em 0 0 0;
}
.h1:before, .h2:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 5em;
	height: 3px;
	background: var(--fountain-blue);;
}
.h1 {
	font-size: var(--font-size-l);
	font-weight: 700;
	color: var(--black);
	background: #f5f5f5;
	padding: 1.2em 1em 1em;
}
.h2{
	font-size: 18px;
	font-weight: 700;
	color: var(--black);
}
.h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px 0 1.5em;
	font-size: var(--font-size-m);
	font-weight: 700;
	color: var(--black);
	background: url("../img/ar_blue_cr.svg") no-repeat left center;
	line-height: 30px;
	padding: 0 0 0 35px;
}
.h4 {
	font-size: var(--font-size-m);
	font-weight: 700;
	color: var(--fountain-blue);
	margin-top: 10px;
}
.mdi-lightarrow-right-1 {
	width: 16px;
	height: 16px;
}
.note {
	background: #f5f5f5;
	border: 1px solid var(--cloud);
	padding: 20px; /* モバイルでのパディング調整 */
	margin-top: 30px; /* モバイルでのマージン調整 */
	box-sizing: border-box;
}
.text-12 {
	font-family: var(--font-family-gothic);
	font-size: var(--font-size-m);
	color: var(--black);
}
.nav_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px; /* モバイルでのマージン調整 */
}
.nav_next, .nav_back {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	text-decoration: none;
}
.nav_next a, .nav_back a {
	text-decoration: none;
	color: var(--lochmara);
	font-family: var(--font-family-gothic);
	font-size: var(--font-size-s);
}
/* Footer */
.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--white);
	border-top: 1px solid var(--cararra);
	padding: 20px; /* モバイルでのパディング調整 */
	margin-top: 50px; /* レイアウト下部にスペース確保 */
	width: 100%;
	box-sizing: border-box;
	text-align: center; /* フッターテキストを中央寄せ */
}
.text_label {
	font-family: var(--font-family-gothic);
	font-size: var(--font-size-xxs); /* モバイルでのフォントサイズ調整 */
	line-height: 1.5;
	color: var(--black);
}
.text_label .zenkakugothicnew-bold-black-16px {
	font-weight: 700;
	font-size: var(--font-size-xs); /* モバイルでのフォントサイズ調整 */
}
.text_label .zenkakugothicnew-normal-black-16px {
	font-weight: 400;
	font-size: var(--font-size-xxs); /* モバイルでのフォントサイズ調整 */
}
.text_label .span2 {
	font-size: var(--font-size-xxxs);
}
/* Media Queries for Tablet (index) */
@media screen and (min-width: 800px) and (max-width: 1279px) {
	.main-page-wrapper {
		padding: 0;
	}

    /* --- Navigation styles moved to globals.css --- */
	
	.main_img {
		height: 230px;
	}
	.pagetitle {
		font-size: 28px;
	}
	.content-area {
		flex-direction: row; /* サイドナビとコンテンツを横並びに */
		gap: 30px;
		max-width: 800px;
		padding: 0;
	}
	.side-nav-block {
		width: 250px; /* サイドナビの幅を固定 */
		min-width: 218px; /* indexのmin-widthを使用 */
		flex-shrink: 0;
		position: relative;
		top: -100px;
	}
	.side-nav_wrap {
		width: 90%; /* 親要素の幅に合わせる */
	}
	.main-content-body {
		flex-grow: 1; /* 残りのスペースを埋める */
	}
	.h1-1 {
		font-size: var(--font-size-xl);
	}
	.note {
		padding: 30px;
	}
	.nav_btn {
		max-width: 278px; /* 元のindexのmin-widthを使用 */
	}
	.footer {
		padding: 30px;
	}
	.text_label {
		font-size: var(--font-size-xs);
	}
	.text_label .zenkakugothicnew-bold-black-16px {
		font-size: var(--font-size-m);
	}
	.text_label .zenkakugothicnew-normal-black-16px {
		font-size: var(--font-size-m);
	}
}
/* Media Queries for Desktop */
@media screen and (min-width: 1280px) {
	.main-page-wrapper {
		padding: 0;
	}

	/* --- Navigation styles moved to globals.css --- */
	#mobile-nav-menu {
		display: none !important; /* 強制的に非表示 */
	}

	.main_img {
		min-height: 300px; /* デスクトップでの最小高さを調整 */
	}
	.pagetitle {
		font-size: 32px;
	}
	.content-area {
		flex-direction: row; /* サイドナビとコンテンツを横並びに */
		max-width: 1280px;
	}
	.side-nav-block {
		width: 296px; /* デスクトップのサイドナビ幅に */
		min-width: 296px;
		position: relative; /* absoluteを解除 */
		top: -100px;
		left: auto;
	}
	.main-content-body {
		flex-grow: 1;
	}
	.h1-1 {
		font-size: var(--font-size-xl);
	}
	.note {
		padding: 30px;
	}
	.nav_btn {
		max-width: 278px;
	}
	.footer {
		padding: 45px 30px;
	}
	.text_label {
		font-size: var(--font-size-m);
	}
	.text_label .zenkakugothicnew-bold-black-16px {
		font-size: var(--font-size-m);
	}
	.text_label .zenkakugothicnew-normal-black-16px {
		font-size: var(--font-size-m);
	}
}
@media screen and (max-width: 800px){
	.main_img {
		height: 180px;
	}
	.side-nav-block {
		padding: 0;
		margin-bottom: 50px;
	}
	.side-nav_wrap{
		width: 100%;
	}
	.side-nav_wrap .title{
		padding-left: .5em;
		padding-right: .5em;
		background: #f5f5f5;
		cursor: pointer;
	}
	.side-nav_wrap .title:after{
		content: "を開く";
		color: #3c5178;
		font-family: var(--font-family-gothic);
		font-size: var(--font-size-m);
		font-weight: 700;
	}
	.side-nav_list-wrap{
		padding: 1em;
	}
	.main-content-body{
		width: 97%;
		margin: auto;
	}
}

/* デフォルトでは表示 */
.side-nav_list-wrap {
    display: block;
}

/* デバイス幅が800px以下の場合に非表示 */
@media (max-width: 800px) {
    .side-nav_list-wrap {
        display: none; /* 初期状態では非表示 */
    }

    /* JavaScriptで追加されるクラスで表示 */
    .side-nav_list-wrap.is-open {
        display: block;
    }
}

/* モバイルナビが開いているときにスクロールを禁止するためのbodyへのクラス追加 */
body.no-scroll {
    overflow: hidden;
}