@charset "utf-8";




/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("slide.css");

h1 {
	font-size: 24px;
	font-weight: 500;
	margin-left: 18px
}

h2 {
	font-size: 20px;
	margin-left: 18;
}

.m39-font-400 {
	font-weight: 400;
}

.m39-font-500 {
	font-weight: 500;
}

.m39-font-700 {
	font-weight: 700;
}

.m39-fs-24 {
	font-size: 24px !important;
}

.m39-fs-20 {
	font-size: 20px !important;
}

.index-margin {
	margin-left: 16px;
	margin-right: 16px;
}

/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	height: 100%;
}

body {
	font-family: 'Zen Maru Gothic', serif;
	-webkit-text-size-adjust: none;
	background: #f4f4f4;
	/*背景色*/
	color: #333;
	/*全体の文字色*/
	line-height: 2;
	/*行間*/
}

/*リセット*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav {
	z-index: 500;
	background-color: white;
	border-radius: 20px;
	padding: 24px 24px;
	margin-left: 20px;
	box-shadow: 0px 0px 13px 0px rgba(182, 182, 182, 0.09);
}

/*table全般の設定*/
table {
	border-collapse: collapse;
}

/*画像全般の設定*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 20px;
}

/*videoタグ*/
video {
	max-width: 100%;
}

/*iframeタグ*/
iframe {
	width: 100%;
}

/*section全般の設定*/
section+section {
	padding-top: 24px;
	/*sectionの間に空けるスペース*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	/*文字色*/
	transition: 0.3s;
}

a:hover {
	/* opacity: 0.6;	マウスオン時に60%の透明度にする */
	color: #165E83;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: white;
	border-radius: 0.5rem;
	justify-content: center;
	font-family: 'Zen Maru Gothic', serif;
	-webkit-text-size-adjust: none;
}

a.btn-custom01 {
	margin-bottom: 0.5rem;
	padding: 0;
	border-radius: 0.75rem;
}

a.btn-custom01:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	width: 100%;
	height: 100%;

	content: "";
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: translate3d(0, 0.75rem, -1rem);
	transform: translate3d(0, 0.4rem, -0rem);

	border-radius: inherit;
	background: #6e3a38;
}

a.btn-custom01:after {
	font-family: "Font Awesome 5 Free";
	font-size: 1.5rem;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	top: calc(57% - 1rem);
	left: 1.5rem;
	margin: 0;
	padding: 0;
	content: "\f0e0";
}

.btn-custom01-front {
	position: relative;
	display: block;
	padding: 1rem 2rem 1rem 4rem;

	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: inherit;
	background: #165E83;
}

.fa-position-left {
	position: absolute;
	top: calc(50% - 0.5em);
	left: 0.5rem;
}

.fa-position-right {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1rem;
}

a.btn-custom01:hover {
	-webkit-transform: translate(0, 0.25rem);
	transform: translate(0, 0.25rem);
	background: #fff100;
}



a.btn-custom01:hover:after {
	content: "\f2b6";
}

a.btn-custom01:active {
	-webkit-transform: translate(0rem, 0.75rem);
	transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
	-webkit-transform: translate3d(0, 0, -1rem);
	transform: translate3d(0, 0, );

}

a.btn-custom01:active:after {
	content: "\f2b6";
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びにする*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header{
	z-index: 100;
}

header.for-pc {
	position: fixed;
	width: 100%;
	gap: 20px;
	display: flex;
	/*flexボックスを使う指定*/
	align-items: center;
	/*垂直揃えの指定。上下中央に配置されるように。*/
	padding: 12px 3rem;
	/*上下、左右へのヘッダー内の余白*/
	/* background: #fbfbfb; */
	color: #333333;
	/*文字色*/
	justify-content: space-between;
	background-color: white;
}

header.for-sp {
	display: none;
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #165E83;
}

.title {
	color: #333;
}

/*ロゴ画像*/
nav img {
	display: block;
	border-radius: 0px;
}

nav #logo {
	/*上、右、下、左へ空けるスペース*/
	/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	width: 12vh;
	/*画像の幅*/
	border-radius: 0px;
}

nav.banner {
	width: 16vh;
	/*画像の幅*/
}

.text1 {
	margin-top: -8px;
	width: 22vh;
	font-size: 14px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: end;
	position: relative;
	margin-bottom: 6px;
	line-height: 1.3em;
}

.text1::before,
.text1::after {
	content: "";
	width: 25px;
	height: 1px;
	background-color: #000;
	margin: 0px 4px 12px 0px;
}

.text1::before {
	transform: rotate(45deg);
}

.text1::after {
	transform: rotate(-45deg);
}

p.indent {
	text-indent: 1rem;
	text-align-last: justify;
}

/*header内の右側に並んでいるアイコン類。FontAwesomeを使用しています。
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック*/
/* #icon {
			表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。
	font-size: 24px;	アイコンのサイズ。文字サイズで指定します。
} */

/*１個あたりのアイコン設定*/
#icon1 i {
	padding: 8px;
	/*余白*/
	font-size: 20px;
}

#icon2 i {
	padding: 8px;
	/*余白*/
	font-size: 20px;
}


.menu {
	position: fixed;
	background: #fff;
	width: 100%;
	height: 89px;
	z-index: 101;
	display: flex;
	font-size: 20px;
}

.menu .title {
	text-align: justify;
	width: 90%;
	color: #333333;
	margin-top: 16px;
	font-weight: 500;
	font-size: 18px;
}

.menu .subtitle {
	font-weight: 400;
	margin-top: -16px;
	color: #A0A0A0;
	font-size: 16px;
}

.menu .menu-content {
	position: relative;
	top: 20px;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr,
#menubar_sp {
	position: relative;
	cursor: pointer;
	margin: 20px 18px;
	margin-bottom: 0;
	/*上からの配置場所指定*/
	padding: 10px 8px;
	/*ブロック内の余白*/
	width: 40px;
	/*幅（３本バーが出ている場合の幅になります）*/
	height: 40px;
	/*高さ*/
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	order: 0;
	/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	background: #165E83;
	/*背景色*/
	border-radius: 5px;
	z-index: 400;
}

/*バー１本あたりの設定*/
#menubar_hdr span,
#menubar_sp span {
	display: block;
	transition: 0.3s;
	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;
	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3),
#menubar_sp.ham span:nth-of-type(1),
#menubar_sp.ham span:nth-of-type(3) {
	transform-origin: center center;
	/*変形の起点。センターに。*/
	width: 26px;
	/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_sp.ham span:nth-of-type(1) {
	transform: rotate(45deg) translate(6px, 7px);
	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3),
#menubar_sp.ham span:nth-of-type(3) {
	transform: rotate(-45deg) translate(6px, -7px);
	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2),
#menubar_sp.ham span:nth-of-type(2) {
	display: none;
	/*２本目は使わないので非表示にする*/
}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar {
	height: 0px;
	overflow: hidden;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 12px;
}


/*小さな端末用の開閉ブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar.db {
	position: fixed;
	overflow: auto;
	z-index: 200;
	left: 0px;
	top: 0px;
	width: 296px;
	/*メニューブロックの幅*/
	height: 100vh;
	background-color: #165E83;
	/*上、左右、下へのブロック内の余白*/
	/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;
	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
#menubar.db a {
	color: #333333;
	/*文字色*/
}

#menubar.db a.active {
	color: #165E83;
	/*文字色*/
}

/*現在表示中のメニュー設定（current）*/
/* #menubar.db li.current a {
color: #96514d;
} */


/*メインメニュー（小さな端末、大きな端末共通設定）
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	/*下に空けるスペース。メニュー同士の上下間の余白です。*/
	font-size: 1em;
	/*文字サイズを80%に。*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くとる設定*/
}

#menubar.pc #menubar_sp {
	display: none;
}

#menubar a {
	text-decoration: none;
	color: #333333;
	/*テキストを中央に*/
}

#menubar a.active {
	color: #165E83;
}

/* ADD: header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding-left: 20px;
	background-color: white;
}

.header-content {
	display: flex;
}

.header * {
	margin: 0;
}

.header .titles,
.header .links {
	width: 50%;
}

.header .titles {
	/* (100-48-40+16)/2 */
	margin: 14px 0;
}

.header .links {
	height: 100px;
}

/* FIXME: first */
.header .links a {
	float: right;
}

.header .title,
.header .subtitle {
	display: flex;
}

.header .title {
	font-size: 20px;
}

.header .subtitle {
	color: #A0A0A0;
	/* -webkit-text-stroke: 1px #000; */
	margin-top: -16px;
	font-size: 16px;
}

.header .links .link {
	width: 200px;
	margin: 20px 20px 20px 0;
	height: 60px;
	background: #165E83;
	color: #fff;
	font-size: 16px;
	font-family: "Zen Maru Gothic";
	font-weight: 400;
	letter-spacing: 0.12em;
	border-width: 0;
	border-radius: 10px;
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	padding-top: 50px;
	padding-bottom: 50px;
	flex: 1;
	margin-top: 0px;
	/*ボックスの外側へ空けるスペース*/
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0;
	margin-bottom: 8px;
	margin-top: 16px;
	font-weight: normal;
	border-bottom: 4px solid #fff;
	/*下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
}

/*mainブロック内のh2タグに下線を引くための指定。*/
main h2 span.uline {
	display: inline-block;
	position: relative;
	border-bottom: 4px solid #165E83;
	/*下線の幅、線種、色。アクセントカラーです。上のmain h2と数字を合わせておく。*/
	bottom: -4px;
	/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 20px;
	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}

/*mainブロック内のh3タグ*/
main h3 {
	text-decoration: none;
	margin: 0;
	margin-bottom: 0px;
	font-weight: normal;
	/* background: #fff; */
	/*背景色*/
	padding: 3px 0px;
	/*ボックス内の余白*/
	border-radius: 3px;
	color: #165E83;
	font-size: 18px;
	/*角丸のサイズ*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 8px 0px;
	/*上、左右、下へ空けるスペース*/
}

main p.non-indent {
	margin-right: 0;
	margin-left: 0;
}


/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;
	/*flexボックスを使う指定*/
	flex-wrap: wrap;
	/*折り返す指定*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
}

/*１個あたりのボックス設定*/
.list {
	width: 48%;
	/*幅。２列になります。*/
	margin-bottom: 30px;
	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;
	/*ボックス内の余白*/
	background: #fff;
	/*背景色*/
	color: #777;
	/*文字色*/
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4タグ*/
.list h4 {
	margin: 10px 0;
	/*上下、左右への余白*/
	color: #666;
	/*文字色*/
}

.list h4 a {
	color: #666;
	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.8em;
	/*文字サイズを80%に*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {
	font-size: 100%;
}

.footer {
	margin-top: auto;
	padding: 0.5rem;
	font-size: 15px;
	color: #999;
	background: #fff;
	border-top: 1px solid #e5e7eb;
	bottom: 0;
	position:abs;
	width: 100%;
}

.footer a:hover {
	color: #000;
}

@media (min-width: 768px) {
	.footer {
		display: flex;
		justify-content: space-between;
	}

	.md-flex {
		display: flex;
	}

	.md-flex li+li {
		margin-left: 16px;
	}
}


/*リンクテキスト*/
footer a {
	color: #fff;
	text-decoration: none;
}

/*リンクテキストのマウスオン時*/
footer a:hover {
	color: #fff;
}

/*著作部分*/
footer .pr {
	display: block;
}

/*「プログラム」ブロック
---------------------------------------------------------------------------*/

.program01_list {
  list-style:none;
	padding: 0;
	background-color: white;
	padding: 16px;
	border-radius: 16px;
	z-index: 0;

}

.program01_list_item {
	align-items: center;

}

.program01_list_item a {
 position: relative;
 display: flex;
}

.program01_list_date {
  font-size: 16px;
  display: flex;
	gap: 24px;
}

.program02{
padding-left: 16px;
}

.program_p{
	padding-bottom: 8px;
}
.program-session{
	padding: 16px;
	background-color: #ebebeb;
	/* border:solid #ffffff 1px; */
	border-radius: 16px;
	margin-top: 8px;
}

#session01,#session02,#session03,#project01,#project01,#poster,#product{
	padding-top:60px;
  margin-top:-60px;
}

/*---------------------------------------------------------------------------*/

.greeting{
	display: flex;
	gap: 16px;
	flex-flow: column;
}


.plan_item{
	list-style:none;
	padding: 0;
	background-color: white;
	padding: 16px;
	border-radius: 16px;
	z-index: 0;
	display: flex;
	flex-flow: column;
	flex-grow: 1;
	
}
.plan{
	display: flex;
	flex-flow: column;
	gap: 8px;
}
/*注意喚起
---------------------------------------------------------------------------*/
.red-text{
	color: red;
}

.red-background{
	background-color: rgb(255, 209, 209);
	padding: 36px;
	width: 100%;
	margin-bottom: 24px;
	border:solid
#ff0000 2px;
}

---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;
	/*flexボックスを使う指定*/
	flex-wrap: wrap;
	/*折り返す指定*/
	padding: 0 20px;
	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;
	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;
	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;
	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);
	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}



/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;
	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;
	text-decoration: none;
	border: none;
	border-radius: 3px;
	/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 40px;
	/*上下、左右への余白。*/
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	font-size: 1rem;
	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #165E83;
	/*背景色*/
	letter-spacing: 0.1em;
	/*文字間隔を少し広くする指定*/
	color: #fff;
	/*文字色*/
	transition: 0.3s;
}

/*ボタンのマウスオン時（inputタグ使用時）*/
.btn input:hover {
	cursor: pointer;
	opacity: 0.6;
	/*冒頭のリンクテキストのhoverと合わせました*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #9cd3db;
	/*背景色*/
	color: #fff;
	/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #fff;
	/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #fff;
	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;
	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	/*幅*/
	text-align: left;
	/*左よせにする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
	display: block;
}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	position: fixed;
	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;
	/*右からの配置場所指定*/
	bottom: 20px;
	/*下からの配置場所指定*/
	color: #fff;
	/*文字色*/
	font-size: 1.5rem;
	/*文字サイズ*/
	background: #165E83;
	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 2em;
	/*幅*/
	line-height: 2em;
	/*高さ*/
	border-radius: 99%;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0, 0, 0, 0.8);
	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-theme,
.color-theme a {
	color: #560ea0 !important;
}

.color-check,
.color-check a {
	color: #ff5151 !important;
}

.c {
	text-align: center !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb30 {
	margin-bottom: 30px !important;
}

.look {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 5px;
	margin: 5px 0;
}

.ofx {
	overflow-x: hidden;
}

/* add */
.fix-main {
	/* margin-top: -50px; */
	margin-left: 270px;
}

.bg-white {
	background: white;
}

.m39-title::before {
	content: "❚";
	font-weight: 900;
	padding-right: 24px;
	color: #165E83;
}

.text-content {
	padding: 30px;
	display: none;
}

.text-content.active {
	display: block;
}

.text-content img {
	border-radius: 0;
}

.text-content .sub {
	width: 100%;
	overflow-x: scroll;
}

.text-content .sub img {
	max-width: none;
}

#toggle-buttons button {
	font-size: 18px;
	width: 264px;
	height: 66px;
	background: #E9E9E9;
	border: none;
	color: #A0A0A0;
	padding: 1px 0;
	font-family: 'Zen Maru Gothic', serif;
}

#toggle-buttons button:first-child {
	border-top-left-radius: 5px;
}

#toggle-buttons button:last-child {
	border-top-right-radius: 5px;
}

#toggle-buttons button.active {
	font-size: 18px;
	width: 264px;
	height: 66px;
	background: white;
	border: none;
	color: #165E83;
	border-top: 3px #165E83 solid;
}

.join-page-btn {
	background: #165E83;
	color: #fff;
	font-size: 16px;
	padding: 8px 24px;
	border-radius: 5px;
}

.join-page-btn .icon {
	fill: #fff;
	margin-left: 10px;
}

.mis-clr-main {
	color: #007EF2;
}

.twitter-btn {
	color: #fff;
	background: #165E83;
	font-size: 16px;
	padding: 5px 8px;
	line-height: 23px;
	border-radius: 5px;
	border-width: 0;
	width: 140px;
}

.new-line {
	display: none;
}

.pc .new-line {
	display: inline;
}

.form-button{
	background-color: #165E83;
	width: 240px;
	color: #ffffff;
	border-radius: 999px;
	padding: 8px;
}
.form-button a{
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	
}

/*---------------------------------------------------------------------------
images
---------------------------------------------------------------------------*/

.img-column {
  display: flex;
	width: 100%;
	gap: 16px;
	margin-top: 16px;
}
.img-column-img {
  width: 200px;
}
.img-column-img img {
  width: 100%;
}
.img-column-texts {
  box-sizing: border-box;
  width: 60%;
	flex-grow: 1;
}
.img-column-texts-title {
  margin: 0;
  font-size: 18px;
}
.img-column-texts-p {
  margin: 0;
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.6;
	text-align: justify;
	width: 100%;
}
.img-column-texts-link {
  padding-top: 16px;
}
.img-column-texts-link a {
  border: 1px solid #000;
  padding-top: 12px;
  padding-right: 40px;
  padding-bottom: 12px;
  padding-left: 40px;
  font-size: 20px;
  text-decoration: none;
  color: #000;
}

.plan-img{
	display: flex;
	flex-direction:column;
	padding-top: 0;
}

.plan-human{
	padding-top: 16px;
	margin-top: 16px;
	border-top: solid 1px #ffffff;
}

.column02{
	display: flex;
	justify-content: space-around;
	gap: 16px;
}

/*---------------------------------------------------------------------------
ここから下は画面幅530px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:530px) {
	.fix-main {
		overflow-y: hidden;
	}

	header.for-sp {
		display: block;
		z-index: 200;
	}

	header.for-pc {
		display: none;
	}

	


	/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
	/*ロゴ画像*/
	header #logo {
		margin-left: 40px;
		/*左に空けるスペース*/
		width: 100px;
		/*画像の幅*/
	}


	/*mainブロック設定
---------------------------------------------------------------------------*/
	/*mainブロックの設定*/
	/* main {
		margin: 40px 10px;
	} */

	#banner {
		display: flex;
		flex-flow: column;
		align-items: center;
		text-align: center;
		justify-content: center;
	}

	.twitter-btn {
		background: #fff;
		color: #165E83;
		font-size: 16px;
		padding: 8px 24px;
		border-radius: 5px;
		border-width: 0;
		width: 256px;
	}

	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}


@media screen and (max-width:900px) {
	.header {
		display: none;
	}

	.fix-main {
		padding-top: 89px;
		margin-left: 0;
	}

	.text-container h1 {
		margin: 18px 24px;
	}

	.text-content {
		padding: 28px 20px;
	}

	.text-content h1,
	.text-content p {
		margin: 0;
	}

	.text-content p {
		margin-bottom: 24px;
	}

	.text-content h2 {
		margin-bottom: 4px;
	}

	#toggle-buttons {
		width: 100%;
		display: flex;
	}

	#toggle-buttons>* {
		font-size: 16px !important;
	}

	#toggle-buttons>*:first-child {
		border-right: 1px #d9d9d9 solid;
	}

	#toggle-buttons>*:last-child {
		border-left: 1px #d9d9d9 solid;
	}

	#menubar nav {
		border: 1px #d9d9d9 solid;
		border-left: 0;
		margin-left: 0;
		background: #165E83;
		border-radius: 0;
		height: 100vh;
		padding-top: 0;
		border-top-color: #165E83;
	}

	#menubar nav img {
		color: #fff;
	}

	#menubar nav li {
		text-align: left;
		width: 256px;
		height: 47px;
		border-bottom: 1px #FFFFFF solid;
	}

	#menubar.db a {
		color: #fff;
		line-height: 23px;
	}
}

/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {

	/*全体の設定
---------------------------------------------------------------------------*/
	html,
	body {
		font-size: 16px;
		/*基準となるフォントサイズの上書き*/
		font-weight: 600;
	}
	body,
	#wrapper {
		display: flex;
		flex-direction: column;
		min-height: 120vh;
	}
	/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
	header #logo {
		margin: 0;
	}

	.menu {
		display: none;
	}


	/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
	/*ハンバーガーメニューを非表示にする*/
	#menubar_hdr {
		display: none;
	}


	/*menubarブロック設定
---------------------------------------------------------------------------*/
	#menubar {
		width: 200px;
		/*メニューブロックの幅*/
		left: 0px;
		top: 116px;
		/*左から、上からの配置場所指定*/
		height: calc(100% - 116px);
		/*メニューブロックの高さ。上の行のtopの数値(116px)を引いた高さになります。*/
		position: fixed;
		/*スクロールしても固定表示させる設定*/
	}

	/*マウスオン時*/
	#menubar:hover {
		overflow: auto;
		/*高さ以上のコンテンツ量の場合に自動でスクロールバーを出します*/
	}

	/*現在表示中のメニュー設定（current）*/
	#menubar li.current a {
		/* background: #96514d; */
		color: #165E83;
		/*文字色*/
		border-radius: 20px;
	}


	/*mainブロック設定
---------------------------------------------------------------------------*/
	/*mainブロックの設定*/
	main {
		margin: 80px 50px 100px 240px;
		/*上、右、下、左へのブロックの外にとるスペース*/
	}


	/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
	/*日付(dt)設定*/
	#new dt {
		width: auto;
		padding-right: 24px;
		/*幅。14文字(em)分。*/
		display: flex;
		/*flexボックスを使う指定*/
		justify-content: space-between;
		/*日付とアイコンをそれぞれ端に寄せる*/
	}

	/*日付の横のマーク（共通設定）*/
	#new dt span {
		display: inline-block;
		/*表示させる*/
		width: 6em;
		/*幅。6文字(em)分。*/
		background: #777;
		/*背景色*/
		color: #fff;
		/*文字色*/
		font-size: 0.9em;
		/*文字サイズを90%に。*/
		text-align: center;
		/*文字をセンタリング*/
		border-radius: 3px;
		/*角を少しだけ丸くする*/
		margin-right: 1.2em;
		/*アイコンの右側に空けるスペース*/
		align-self: flex-start;
		/*高さを間延びさせない指定*/
		line-height: 1.5;
		/*行間を少し狭く*/
		position: relative;
		top: 0.4em;
		/*上下の配置バランスの微調整*/
	}

	/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
	#new dt span.icon-bg1 {
		background: #165E83;
		/*背景色*/
	}

	/*記事(dd)設定*/
	#new dd {
		width: calc(100% - 14em);
		/*「14em」は上の「#new dt」のwidthの値です。*/
	}


	/*テーブル
---------------------------------------------------------------------------*/
	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {
		padding: 5px 15px;
		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）、td（右側）の共通設定*/
	.ta1 th,
	.ta1 td {
		padding: 20px 15px;
		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）のみの設定*/
	.ta1 th {
		width: 20%;
		/*幅*/
	}


	/*その他
---------------------------------------------------------------------------*/
	.ws {
		width: 48%;
		display: inline;
	}


	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/


}
@media screen and (max-width: 520px) {
	.img-column {
    flex-direction: column;
  }
  .img-column--reserve {
    flex-direction: column-reverse;
  }
  .img-column-img {
    width: 100%;
  }
  .img-column-texts {
    width: 100%;
  }
  .img-column-texts-title {
    font-size: 18px;
  }
  .img-column-texts-p {
    font-size: 16px;
  }
  .img-column-texts-link a {
    font-size: 16px;
  }
	.column02 {
    flex-direction: column;
  }
  .column02 {
    flex-direction: column-reverse;
  }
  .column02 {
    width: 100%;
  }
  .column02{
    width: 100%;
  }
  .column02 {
    font-size: 18px;
  }
  .column02{
    font-size: 16px;
  }
  .column02 a {
    font-size: 16px;
  }
}



/*---------------------------------------------------------------------------
ここから下は画面幅1200px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1200px) {


	/*listブロック
---------------------------------------------------------------------------*/
	/*１個あたりのボックス設定*/
	.list {
		width: 24%;
		/*幅。４列になります。*/
	}


	/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

/* Frame 9 */

.frame-9 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 14.68px;
	position: relative;
	width: 1144px;
	height: 273.15px;
}

.frame-9 img {
	max-width: 100%;
	max-height: 100%;
}

/* Frame scrollable-image */

.container {
	display: flex;
	flex-direction: column;
}

.text-container {
	width: 100%;
	margin-bottom: 20px;
}

.image-container {
	overflow-x: auto;
	width: 100%;
	/* 画面幅いっぱいに広がる */
}

.scrollable-image {
	width: auto;
	/* 画像のサイズは自動で調整 */
	height: auto;
	max-width: none;
	/* 幅の制限を解除 */
	max-height: 100%;
	/* 高さが画面幅いっぱいになるように */
}

@media screen and (min-width: 600px) {

	/* スマートフォン以外の場合のスタイル */
	.container {
		flex-direction: row;
	}

	.text-container {
		width: 100%;
		padding-right: 10px;
		/* テキストと画像の間隔を調整 */
	}

	.image-container {
		width: 50%;
	}

}