@charset "UTF-8";
/* CSS Document */

@import url('reset.css');

/*
英語版のスタイルは :lang(en) で上書き。
または、div.bodyWrap に "page_lang-e" クラス併記。<あまり使わない？
*/

/*================================
フォント
================================*/
/*Noto Snas CDN*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
/*Montserrat CDN*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/*--以下設定 (importの後に書くこと)*/
body {
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	font-feature-settings: "plat" 1;/*文字詰め有効な場合 plat|pwid|pkna*/
	letter-spacing: 0;
}
.font-montserrat {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}


/*================================
初期設定
================================*/
/*narrow -show -hide (.vw-narrowはjsにて付加、グローバルナビなどと連動)*/
.narrow-show {display: none!important;}/*PC標準*/
.vw-narrow .narrow-show{display: inherit!important;}/*narrow幅*/
.narrow-hide {display: inherit!important;}/*PC標準*/
.vw-narrow .narrow-hide {display: none!important;}/*narrow幅*/
/*narrow-sp -show -hide（スマホ時）*/
@media screen and (max-width:480px){
	.narrow-sp-show {display: inherit;}
	.narrow-sp-hide {display: none!important;}
	.narrow-sp-alignLeft {text-align: left;text-align: justify;}
}
/**/
main a:hover,
main button:hover,
main input:hover {
	opacity: 0.7;
}
main a {
	color:var(--theme-color);
	text-decoration: underline;
}
main ul {/*クラス無しのリスト、マージン調整*/
	margin-top: 0;
	padding-left: 1.5em;
}

/*================================
カスタムプロパティ　変数
適用例 .class{color:var(--color);}
================================*/
:root {
	--theme-color: #6f94cd;
	/*--theme-grade: linear-gradient(90deg, rgba(172, 192, 255, 1) 15%, rgba(59, 243, 215, 1) 85%);
	--header-height: 118px;*/
}
/*クラス化*/
.theme-color {
	/*color:var(--theme-color);*/
}

/*================================
汎用クラス
================================*/
.bold {font-weight: bold;}
small,.small {font-weight: normal;font-size: 75%;}
/*マージン*/
.mgb0 {margin-bottom: 0!important;}
.mgb1em {margin-bottom: 1em!important;}
.mgb2em {margin-bottom: 2em!important;}
.mgb3em {margin-bottom: 3em!important;}
.mgb5em {margin-bottom: 5em!important;}
.mgt10px{margin-top: 10px!important;}
.mgt0d5em{margin-top: 0.5em!important;}
.mgt2em {margin-top: 2em!important;}
.mgt4em {margin-top: 4em!important;}
.mgr1em {margin-right: 1em!important;}
.mgr0d5em {margin-right: 0.5em!important;}
.pdl-r-2em {padding-left:2em!important;padding-right: 2em!important;}
/*フォントサイズ*/
.font-size150pct {font-size: 150%;}
.font-size135pct {font-size: 135%;}
.font-size75pct  {font-size: 75%; vertical-align: middle; margin-left: 0.1em; margin-right: 0.1em;}
.font-size50pct  {font-size: 50%; vertical-align: middle; margin-left: 0.1em; margin-right: 0.1em;}
/*配置*/
.float-right {float: right;margin:0 0 1em 1em;}
.float-left {float: left;margin:0 1em 1em 0;}
.align-right {text-align: right;}
.align-left {text-align: left;}
.align-center{text-align: center;margin-left:auto;margin-right:auto;}

/*改行するならここ指定 適用例：<span class="ibr">なるべく改行しないブロック</span>*/
.ibr{display: inline-block;}
/*プレーンなブロック*/
.block {display: block;}
.inline-block {display: inline-block;}


/*================================
構造
================================*/
html {
	scroll-behavior: smooth;
	/*アンカー位置調整*/
	scroll-padding-top: 0px;
}
html:has(.vw-narrow) {
	/*アンカー位置調整*/
	scroll-padding-top: 65px;
}
/*アンカー位置調整用(margin分の高さが無視されるのを回避、空ブロックを作って先頭に置く)*/
.bl_anker {display: flow-root;}
body {
	/*overflow-x: hidden; /*scroll-behavior:smooth;を阻害するかも*/
}
.bodyWrap {
	overflow-x: hidden;
}
/*画面幅より要素はみ出し部分チェック用*/
* {
  /*outline: 1px solid red !important;*/
}

/*==========
header
==========*/
.ly_header {
	display: block;
	position:relative;
	text-align: center;
	border-bottom: solid var(--theme-color) 5px;
	box-sizing: border-box;
	height: 148px;
	width: 100%;
	z-index: 50;
}
.ly_header > .inner {
	display: block;
	position: relative;
	width: 100%;
	max-width: 1280px;
	height: 100%;
	margin: auto;
}
/*englishボタン*/
.ly_header .btn_en {
	display: block;
	position: absolute;
	top:16px;right:16px;
	border: solid #8c8c8c 1px;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.1em;
}
.ly_header .btn_en a {
	display: block;
	text-decoration: none;
	color:#000;
	padding: 0.5em 0.8em 0.5em 1em;
}
.ly_header .btn_en a:hover {
	background-color: var(--theme-color);
	color:#FFF;
}
/*ロゴ*/
.ly_header h1 {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 107px;
}
.ly_header h1 img {
	width: 264px;
	height: auto;
}
/*ナビ*/
.ly_header nav {
	bottom:0px;
}
.ly_header nav ul {
	display: flex;
	justify-content:center;
	list-style: none;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 0.9rem;
	margin: 0 auto 12px auto;
	padding: 0;
}
.ly_header nav ul li {
	white-space: nowrap;
	margin: 0 1.8vw;
}
.ly_header nav ul li a {
	text-decoration: none;
	color:#000;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.05em;
}

/*vw-narrow時のスタイルはgnavi.cssにて*/


/*==========
main
==========*/
.ly_main {
	background-color:#FFF;
	padding-bottom: 5.5em;
}
.ly_main p {
	margin-bottom: 2em;
}
.ly_main .section_spacer {
	clear: both;
	display: block;
	height: 70px;
}
/*子ページヘッダタイトル*/
.bl_pageTitle {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio:5.8 / 1;
	max-height: 219px;
	/*background-color: #ccc;*/
	background-size: cover;
	/*画像はhtml内に直書き
	例：style="background-image: url('images/meeting/head_bg.jpg')"*/
}
.bl_pageTitle .bl_textBox {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
	margin-top: 0.2em;
	color: #FFF;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width:670px){
	.bl_pageTitle .bl_textBox {
		font-size: min(5vw,32px);
	}
}
/*デフォルトコンテンツボックス*/
.bl_default_contentsBox {
	display: block;
	max-width: 1050px;
	margin: 120px auto 30px;
	padding: 0 25px;
	overflow: hidden;
}
/*左右のマージンのみのボックス*/
.bl_default_inner {
	display: block;
	margin-left: 25px;
	margin-right: 25px;
}
/*タイトル*/
.el_title {
	display: block;
	text-align: center;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: 0.25em;
	margin-bottom: 64px;
}
/*-- lang en --*/
:lang(en) .el_title {
	letter-spacing: 0.15em;
}
.el_title::after {
	content: "";
	display: block;
	margin: 20px auto 0;
	height: 3px;
	width: 82px;
	background-color: var(--theme-color);
}
@media screen and (max-width:480px){
	.el_title {
		font-size:20px;
		letter-spacing: 0.1em;
	}
}
/*タイトル小*/
.el_title_s {
	display: block;
	text-align: center;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 1.375rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	margin-bottom: 2em;
}
.el_title_s::after {
	content: "";
	display: block;
	margin: 20px auto 0;
	height: 3px;
	width: 70px;
	background-color: var(--theme-color);
}
/*リード*/
.bl_lead {
	font-size: 1.125rem;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 1.4em;
}
@media screen and (max-width:480px){
	.bl_lead {
		font-size: 1rem;
	}
	.bl_lead br {
		display: none;
	}
}
/*本文*/
.bl_text {
	font-size: 0.875rem;
	line-height: 2em;
}
@media screen and (max-width:480px){
	.bl_text {
		text-align: justify;
	}
}
/*左右フロートボックス --幅はインライン or 固有cssにて設定*/
.bl_float_left {
	display: block;
	float: left;
}
.bl_float_right {
	display: block;
	float: right;
}


/*==========
footer
==========*/

.ly_footer {
	display: block;
	background-color: var(--theme-color);
	color:#FFF;
	text-align: center;
	overflow: hidden;
}
.ly_footer .inner {
	margin: 140px auto 150px;
}
.ly_footer .inner .logo img {
	display: block;
	width:min(80%,300px);
	margin: 0 auto 30px;
}
@media screen and (max-width:480px){
	.ly_footer .inner .logo img {
		width:min(80%,260px);
	}
}
.ly_footer .inner address {
	font-style:normal;
	font-size: 12px;
}


/*================================
ページ固有
================================*/

/*各CSSに分岐*/

