@charset "UTF-8";
/*--------------------------------------------------

カラー設定
メインカラー（グリーン）	#009990  #00A593
サブカラー（グレー）	#63666A
サブカラー（グレー） #DADADA
サブカラー（黄緑）	#97D700
サブカラー（黄緑）	#C3DD88

グラデーション
background: linear-gradient(to right, rgba(255,254,246,0.30), rgba(238,255,232,0.30));

タブレット（通常795px）
@media screen and (max-width: 970px) {

}

@media screen and (max-width: 420px) {

}


--------------------------------------------------*/


/*------------------------------------------
html
------------------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	/* 10pxが1remとなる様に調整*/
	background: #F3F3F3;/*#EFEFE9*/
	/*バックグラウンドカラー設定*/
	scroll-behavior: smooth;
	/*スムーズにスクロールする*/
	height: 100%;
}
body {
	/*フッターを常に最下部に表示させる用*/
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	
	font-size: 15px;
	/*デフォルトフォントサイズ16px*/
	font-size: 1.7rem;
	color: #363636;
	/*デフォルトフォントカラー#363636*/
	line-height: 1.5em;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
	color: #0015B9;
}

/*Googleカスタム検索*/
.gsc-control-cse {
	background-color: #EFEFE9!important;
	border: none!important;
}

/*外部リンクアイコン*/
.icon_link1 {
	width: 15px;
	filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7472%) hue-rotate(238deg) brightness(94%) contrast(118%);
}
.icon_link0 {
	filter: brightness(0) saturate(100%) invert(9%) sepia(70%) saturate(7472%) hue-rotate(238deg) brightness(94%) contrast(118%);
}
/*パソコン非表示*/
.pc_none {
	display: none;
}
@media screen and (max-width: 795px) {
	.pc_none {
		display: block;
	}
}
/*タブレット非表示*/
.tb_none {
	display: none;
}
@media screen and (max-width: 420px) {
	.tb_none {
		display: block;
	}
}
/*改行禁止*/
.nowrap {
	white-space: nowrap;
}

/*------------------------------------------------------------------------------------
ヘッダーブロック
------------------------------------------------------------------------------------*/
header {
	margin: 0;
	padding: 16px;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 100;
}
header .header_block {
	margin: 0 auto;
	max-width: 1080px;
	text-align: center;
}
header .header_block img {
	width: 80%;
	max-width: 80%;
	vertical-align: top;
}
@media screen and (max-width: 420px) {
	header {
		padding: 10px 4px;
	}
	header .header_block img {
		width: 80%;
		max-width: 80%;
		position: relative;
		left: -20px;
	}
}

/*SPメニュー用オーバーレイ*/
html.is-fixed, html.is-fixed body {
  /*height: 100%;*/
  overflow: hidden;
}


/*------------------------------------------------------------------------------------
コンテンツブロック
------------------------------------------------------------------------------------*/
.main_container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 20px;
}
.contents_wrapper {
	
}
.contents_wrapper .contents_container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	background-color: #F1F4FB;
}
.contents_wrapper .contents_container .side {
	display: block;
	width: 300px !important;
	height: 100%;
	margin: 0;
}
@media screen and (max-width: 795px) {
	.contents_wrapper .contents_container .side {
		display: none;
	}
}
.contents_wrapper .contents_container .main {
	display: block;
	flex: 1;
	width: 100%;
	padding-right: 10px;
}
@media screen and (max-width: 795px) {
	.contents_wrapper .contents_container .main {
		
	}
}
.main_backboad {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: #F6F7FB;/*#F1F4FB*/
}
.contents {
	margin-bottom: 40px;
	padding-left: 15px;
}
.item_wrapper {
	padding: 0 1em;
}
/*------------------------------------------------------------------------------------
フッターブロック
------------------------------------------------------------------------------------*/
footer {
	width: 100%;
	margin-top: auto;
}
.footer_info {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	padding: 20px;
	overflow: hidden;
	background-color: #EEEEEE;
	border-top: 1px solid #A3A3A3;
}
.footer_info .footer_wrapper {
	max-width: 1000px;
	margin: 0 auto;
	display: block;
	position: relative;
	left: 20px;
}
.footer_item {
	padding-left: 20px;
}
.footer_title {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #009990;
}
.footer_title p {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
	color: #009990;
}
.footer_inner {
	padding-left: 20px;
	border-left: 4px solid #A4A4A4;
}
.footer_name p {
	margin: 0;
	padding: 0;
	font-weight: 500;
}
.footer_address {
	margin-top: 10px;
}
.footer_address p {
	margin: 0 0 10px;
	padding: 0;
	font-size: 14px;
}

.copyright {
	display: inline-block;
	width: 100%;
	height: auto;
	min-height: 50px;
	background-color: #009990;
	color: white;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	overflow: hidden;
}
.copyright p {
	padding: 0 10px;
}
.footer_box1 {
	margin: 10px;
	width: 320px;
}
.info_midashi {
	margin-bottom: 10px;
	font-size: 1.7rem;
	font-weight: bold;
	color: white;
	padding: 5px 10px;
	max-width: 100%;
	background-color: #D10043;
}
.info_name {
	max-width: 100%;
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: 1px solid #D10043;
}
/*------------------------------------------------------------------------------------
タイトル見出し
------------------------------------------------------------------------------------*/
.h1_container {
	margin-bottom: 20px;
	height: 100px;
	position: relative;
	background-color: #F3F3F3;
	border-top: 1px solid #A3A3A3;
	border-bottom: 1px solid #A3A3A3;
}
.h1_item {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	align-items: center;
}
.h1_item::before {
	position: absolute;
	content: "";
	width: 60px;
	height: 4px;
	background-color: #009990;
	left: 20px;
	bottom: -4px;
}
.h1_item h1 {
	margin: 0;
	/*font-family: "Noto Serif JP", serif;*/
	font-size: 28px;
	color: #003B5A;
	line-height: 1.2em;
}

h2 {
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding: 16px 10px 16px 30px;
	background-color: #DBDBDB;
	color: #00304A;
	/*font-family: "Noto serif", serif;*/
}
h2::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 46px;
	background-color: #9BA09C;
	top: 0;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}
h2::after {
	position: absolute;
	content: "";
	width: 27px;
	height: 40px;
	background-color: #757575;
	top: 0;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}
h3 {
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding: 8px 0 8px 20px;
	/*font-family: "Noto serif", serif;*/
}
h3::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #E3E3E3;
	left: 0;
	bottom: 0px;
}
h3::after {
	position: absolute;
	content: "";
	width: 120px;
	height: 2px;
	background-color: #757575;/*#97D700*/
	left: 0;
	bottom: 0px;
}
h4 {
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding-left: 10px;
	border-left: 3px solid #97D700;
	/*font-family: "Noto serif", serif;*/
	font-size: 16px;
		
}
h4::before {

}

/*------------------------------------------------------------------------------------
段落
------------------------------------------------------------------------------------*/
.article1 {
	padding-left: 10px;
}
/*------------------------------------------------------------------------------------
ブロック
------------------------------------------------------------------------------------*/
.box1 {
	background: linear-gradient(to right, rgba(248,250,255,1.00), rgba(247,248,255,1.00));
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
.box2 {
	background: linear-gradient(to right, rgba(232,227,227,1.00), rgba(247,248,255,1.00));
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}
/*------------------------------------------------------------------------------------
余白（margin,paddingなど）
------------------------------------------------------------------------------------*/
.space1 {
	margin: 0 0 20px 0;
	padding: 10px;
	width: 100%;
}
.space2 {
	margin: 0 0 20px 0;
	padding: 20px;
	width: 100%;
}
/*------------------------------------------------------------------------------------
ナビゲーションブロック
------------------------------------------------------------------------------------*/
.navi_block {
	z-index: 100;
	display: block;
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0;
	background-color: #009990;
}
@media screen and (max-width: 970px) {
	.navi_block {
		display: none;
	}
}
.navi_wrap {
	display: flex;
	justify-content: center;
}
.navi_lists {
	display: flex;
	margin: 0;
	padding: 0;
}
.navi_list {
	position: relative;
	height: 50px;
	padding: 0 20px;
	list-style: none;
	background-color: #009990;
}
.navi_list:hover {
	background-color: #007366;
}
.navi_list a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;/*15px*/
	font-weight: 600;
    transition: all .3s;
}
@media screen and (max-width: 1100px) {
	.navi_list a {
		font-size: 12px;
	}
}
/*ドロップダウン*/
.dropdown_lists {
    /*display: none;*/
	transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
	transition: all .3s;/*表示の変化を0.3秒に指定*/
    position: absolute;
    top: 50px;
    left: 0;
    padding: 0;
    width: max-content;   /* ← 追加 */
    min-width: 100%;      /* ← 親より狭くならない保険 */
}
.navi_list:hover .dropdown_lists {
    /*display: block;       /* inline はやめる */
	transform: scaleY(1); /*ナビメニューにホバーしたら表示*/
}
.dropdown_list {
    background-color: #2FB6A7;
    height: 50px;
    transition: all .3s;
    position: relative;
	list-style: none;
	border-top: 1px solid #78C2BA;
}
.dropdown_list:hover {
    background-color: #198276;
}
.dropdown_list a {
    display: flex;
	padding: 0 40px 0 20px;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown_list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}

.navi_checked {
	background: #007366;
}
.navi_def {
	background: none;
}

/*ナビボタンキャプション*/
.nav_caption {
	display: inline;
	padding: 0 2px;
	font-size: 11px;
	color: white;
	background-color: #363636;
	
}


/*------------------------------------------------------------------------------------
スマホ・タブレットのナビゲーションボタン
------------------------------------------------------------------------------------*/
nav.globalMenuSp {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	background: #F2F2F2;
	transform: translateX(100%);
	transition: all 0.6s;
	height: 100%;
	width: 100%;
	max-width: 400px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
nav.globalMenuSp ul {
	background: #007366;
	/*background: linear-gradient(125deg, #00041B, #00086F);*/
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.globalMenuSp ul .navi_list_sp {
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul .navi_list_sp:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
nav.globalMenuSp ul .navi_list_sp a {
	display: block;
	color: white;
	text-align: left;
	padding: 0.8em 10px;
	text-decoration: none;
}
nav.globalMenuSp ul .navi_list_sp a:hover {
	color: white;
}
/*第2階層*/
.dropdown_list_sp {
	background-color: #009990;
	border-top: 1px solid #ffffff;
	padding: 0 10px 0 20px;
}
.dropdown_list_sp a {
	display: block;
	color: white;
	text-align: left;
	
}
.dropdown_list_sp:active {
	background-color: #209084;
}

/*英語ボタン*/
.english_pc {
	background-color: #3CB8AB;
}

.english_pc a {
	display: flex;
	width: 100%;
	height: 100%;
}

/*タブレット英語ボタン*/
.english_sp {
	padding: 10px;
	background-color: #3CB8AB;
	
}
.english_sp a {
	display: block;
	width: 100%;
	color: white;
}


.mnav_def {
	background-color: none;
}
.mnav_checked {
	background: #007366;
	/*background: linear-gradient(125deg, #00041B, #D10043);*/
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateX(0%);
}


/*------------------------------------------------------------------------------------
ハンバーガーボタン（SP）
------------------------------------------------------------------------------------*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 200;
	right: 11px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	background-color: #97D700;
	opacity: 0.6;
	border-radius: 8px;
	border: 1px solid #1B1B1B;
}
@media screen and (min-width: 970px) {
	.hamburger {
		display: none;
	}
}
.hamburger span {
	display: block;
	position: absolute;
	width: 50%;
	height: 2px;
	left: 25%;
	background: #1B1B1B;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 15px;
}
.hamburger span:nth-child(3) {
	top: 20px;
}
.hamburger span:nth-child(4) {
	top: 18px;
	background: none;
	width: 100%;
	left: 0;
}
.hamburger span:nth-child(4)::after {
	content: "MENU";
	/*4つ目の要素のafterにMenu表示を指定*/
	color: #1B1B1B;
	font-size: 1rem;
	text-transform: uppercase;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
	/*ナビが開いている時のボタン*/
	top: 7px;
	left: 12px;
	transform: translateY(8px) rotate(-45deg);
	width: 40%;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	top: 21px;
	left: 12px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}
.hamburger.active span:nth-child(4)::after {
	content: "CLOSE";
	/*3つ目の要素のafterにCLOSE表示を指定*/
	color: #1B1B1B;
}

/*------------------------------------------------------------------------------------
 SNSメニュー
------------------------------------------------------------------------------------*/
.sns_menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	position: fixed;
	top: 300px;
	right: 0px;
	width: 60px;
	height: auto;
	padding: 16px 28px 16px 8px;
	background-color: #BDD2D0;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
@media screen and (max-width: 970px) {
	.sns_menu {
		display: none;
	}
}
.sns_icon {
	width: 30px;
}
.sns_icon img {
	vertical-align: top;
	width: 100%;
}

/*SNSメニューSP*/
.sns_menu_sp {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: center;
	padding: 10px 0;
	background-color: #DDDDDD;
}

/*------------------------------------------------------------------------------------
ページトップボタン
------------------------------------------------------------------------------------*/
.page-top {
	/* buttonタグのリセットCSS */
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	/* ボタンの装飾 */
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background-color: #97D700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.page-top::before {
	content: "";
	width: 12px;
	height: 12px;
	margin-bottom: -6px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(-45deg);
}
.page-top:hover {
	transform: scale(1.1);
}
#page-top {
	opacity: 0.0;
	transition: ease .5s opacity;
}
#page-top.view {
	opacity: 1.0;
}
/*------------------------------------------------------------------------------------
ボタン
------------------------------------------------------------------------------------*/
.btn_block1 {
	margin: 20px auto;
}
.btn_block2 {
	margin: 30px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}
.btn_1, .btn_2 {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 46px;
	border-radius: 4px;
	background-color: #009990;
	color: white;
	font-size: 15px;
	text-align: center;
	box-shadow: 0px 2px 0px rgba(73,96,86,0.30);
	top: 0px;
	transition: ease 0.3s;
}
.btn_1::after, .btn_2::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid white;
	border-right: 1px solid white;
	transform: rotate(45deg);
	top: calc(50% -4px);
	right: 16px;
}
@media (hover: hover) and (pointer: fine) {
	.btn_1:hover, .btn_2:hover {
		background-color: #008375;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media (hover: none) {
	.btn_1:active, .btn_2:active {
		background-color: #009990;
		box-shadow: 0px 0px 0px rgba(73,96,86,0.30);
		top: 2px;
	}
}
@media screen and (max-width: 420px) {
	.btn_1, .btn_2 {
		font-size: 14px;
	}
}
.btn_1 a, .btn_2 a {
	display: block;
	width: 100%;
	color: white;
}
.btn_1 {
	width: 100%;
}
.btn_2 {
	width: 100%;
	max-width: 320px;
}

/*--------------------------------
アコーディオン
----------------------------------*/
/*アコーディオンボタン*/
.purport_button {
	position: absolute;
	display: inline-block;
	padding: 2px 20px 2px 8px;
	background-color: #009990;
	color: white;
	font-size: 13px;
	border-radius: 4px;
	cursor: pointer;
	right: 0;
}
.purport_button::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 12px;
	background-color: white;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	top: 8px;
	right: 6px;
	transform: rotate(0);
	transition: transform 0.3s ease;
}
/*アコーディオン本体*/
.acd-plus {
	
}
.acd-check{
    display: none;
}
.acd-label{

}
.acd-label::after{

}
.acd-item {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding-right: 80px;
}
.acd-item p {
	margin: 0;
	font-weight: 500;
}
.acd-content{
    display: block;
    height: 0;
	max-height: 0;
	margin: 0 10px 0 0;
	padding: 0 10px;
    opacity: 0;
	border-top: 1px dashed #838383;
    visibility: hidden;
	font-weight: 400;
	line-height: 1.5em;
	text-align: justify;
	transition: all 0.3s;
	/*
	transition-property: height, opacity;
    transition-duration: 0.5;
    transition-delay: 0.3s, 0.1s;
	transition-timing-function: ease-in;/*アニメーションがゆっくり開始される*/
	
}
.acd-check:checked + .acd-label .purport_button::after {
	transform: rotate(90deg);
	/*ransform-origin:25%;*/
}


.acd-check:checked ~ .acd-content {
	height: auto;
	max-height: 100vh;
    opacity: 1;
	margin: 10px 10px 10px 0;
    padding: 10px 10px;
    visibility: visible;
}



/*------------------------------------------------------------------------------------
枠
------------------------------------------------------------------------------------*/
.attention1 {
	width: 100%;
	background-color: #F7F7F7;
	border: 1px solid #EBEBEB;
	padding: 10px;
	text-align: justify;
}
/*------------------------------------------------------------------------------------
テーブル
------------------------------------------------------------------------------------*/
.table_container {
	margin: 10px 0 40px;
}
.tabel_title {
	color: #009990;
	font-weight: 600;
}

/*テーブル1*/
.table_1 {
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_1 th {
	background-color: #C3DD88;/*C3DD88*/
	padding: 10px;
	font-weight: normal;
	color: #363636;
}
.table_1 td {
	background-color: #E4E4E4;
	padding: 10px;
}

/*テーブル2*/
.table_2 {
	max-width: 515px;
	width: 100%;
	display: table;
	table-layout: fixed;
}
.table_2 th {
	background-color: #C3DD88;/*C3DD88*/
	padding: 10px;
	font-weight: normal;
	color: #363636;
}
.table_2 td {
	background-color: #E4E4E4;
	padding: 10px;
	font-weight: 500;
}


/*------------------------------------------------------------------------------------
リスト
------------------------------------------------------------------------------------*/
/*ディスク*/
.list_1 {
	list-style-type: disc;
	padding-left: 1.6em;
}
.list_1 li {
	padding: .6em .3em .6em 0;
}
.list_1 li::marker {
    color: #363636;/*#97D700*/
    font-size: 1.1em;
}

/*丸数字*/
.list_2 {
	counter-reset: li;
	padding-left: 0;
}
.list_2 li {
	display: flex;
    align-items: center;
    padding: .6em .3em .6em 0;
}
.list_2 li::before {
	position: relative;
    display: inline-block;
    min-width: 1.7em;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #97D700;
    color: #fff;
    font-weight: 500;
    font-size: 0.9em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}

/*丸数字　下部に罫線付き*/
.list_3 {
	counter-reset: li;
	padding-left: 0;
}
.list_3 li {
	display: flex;
    align-items: center;
    padding: .8em .3em .8em 0;
	border-bottom: 1px solid #C1C1C1;
}
.list_3 li::before {
	position: relative;
    display: inline-block;
    min-width: 1.7em;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #97D700;
    color: #fff;
    font-weight: 500;
    font-size: 0.9em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}

/*------------------------------------------------------------------------------------
インデント
------------------------------------------------------------------------------------*/
.hanging_indent {
	padding-left: 1em;
	text-indent: -1em;
}

/*------------------------------------------------------------------------------------
フォント
------------------------------------------------------------------------------------*/
.font_size_11 {
	font-size: 11px;
}
.font_size_12 {
	font-size: 12px;
}
.font_size_13 {
	font-size: 13px;
}
.font_size_14 {
	font-size: 14px;
}
.font_size_15 {
	font-size: 15px;
}
.font_size_16 {
	font-size: 16px;
}
.font_size_17 {
	font-size: 17px;
}
.font_size_18 {
	font-size: 18px;
}
.font_size_19 {
	font-size: 19px;
}
.font_size_20 {
	font-size: 20px;
}
.font_size_21 {
	font-size: 21px;
}
.font_size_22 {
	font-size: 22px;
}
.font_size_23 {
	font-size: 23px;
}
.font_size_240 {
	font-size: 24px;
}
.font_weight_300 {
	font-weight: 300;
}
.font_weight_400 {
	font-weight: 400;
}
.font_weight_500 {
	font-weight: 500;
}
.font_weight_600 {
	font-weight: 600;
}
.font_weight_700 {
	font-weight: 700;
}
.font_weight_800 {
	font-weight: 800;
}
/*------------------------------------------------------------------------------------
フォント色
------------------------------------------------------------------------------------*/
.fc_red {
	color: red;
}
/*------------------------------------------------------------------------------------
フォント装飾
------------------------------------------------------------------------------------*/
.underline {
	text-decoration: underline;
}
/*------------------------------------------------------------------------------------
揃え
------------------------------------------------------------------------------------*/
.text_align_left {
	text-align: left;
}
.text_align_right {
	text-align: right;
}
.text_align_center {
	text-align: center;
}
.text_align_justify {
	text-align: justify;
}
/*------------------------------------------------------------------------------------
マージン
------------------------------------------------------------------------------------*/
.margin_top_10 {
	margin-top: 10px;
}
.margin_top_20 {
	margin-top: 20px;
}
.margin_top_30 {
	margin-top: 30px;
}
.margin_top_40 {
	margin-top: 40px;
}
.margin_top_50 {
	margin-top: 50px;
}
.margin_top_60 {
	margin-top: 60px;
}
.margin_bottom_10 {
	margin-bottom: 10px;
}
.margin_bottom_20 {
	margin-bottom: 20px;
}
.margin_bottom_30 {
	margin-bottom: 30px;
}
.margin_bottom_40 {
	margin-bottom: 40px;
}
.margin_bottom_50 {
	margin-bottom: 50px;
}
.margin_bottom_60 {
	margin-bottom: 60px;
}
/*------------------------------------------------------------------------------------
幅
------------------------------------------------------------------------------------*/
.width_500px {
	max-width: 500px;
	width: 100%;
}
.width_850px {
	max-width: 850px;
	width: 100%;
}