﻿@charset "utf-8";
/* CSS Document */

body {
	margin: 0 ;				/* スペース */
	padding: 0 ;			/* 余白 */
	font-size: 16px ;		/* 文字サイズ */
	line-height: 1.618 ;	/* 行の高さ */
	background-color: #FCFCFC;	/* 背景色 */
}

.header {
	display: block;
	margin-top: 20px;
}

.wrapper {

    font-family:'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}

.copyright {
	text-align: center;
    padding-top: 20px;
    padding-bottom: 0px;
    color: #000;
    border-top-width: 2px;
}

.mt20 {
	margin-top: 20px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}


.bottom_b01 {
    position: relative;
    margin-bottom: 1rem;
	padding-bottom: 0.5rem;
    font-weight: normal;
    text-align: start;
    background-color: #FCFCFC;
	border-bottom: 5px solid #003b83;
	line-height: 1.2em;
}

.bottom_b02 {
    position: relative;
    margin-bottom: 1rem;
	padding-bottom: 0.5rem;
    font-weight: normal;
    text-align: start;
    background-color: #FCFCFC;
	border-bottom: 3px solid #003b83;
	line-height: 1.2em;
}


a {
    color: #003b83;
	text-decoration: none;
}

a:hover {
	color: #b0c4de
}


/*アコーディオン用 参考：https://palette33.jp/archives/3115　*/
.accordion {
	margin-top: 1em;
	max-width: 100vw;
}
.toggle {
	display: none; /*チェックボックスを隠す*/
}
.option {
	position: relative;
	margin-bottom: 1em;
}
.title,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	padding-left: 1em;
}

.none_title {	 
	padding: 1em;
	display: block;
	background-color: #808080;
	color: #FFFFFF;
	font-size: 1.3em;
    line-height:1.08;
	font-weight: bold;
	padding-right: 2rem;
    font-family:"Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",serif;
}

.title {
	cursor: pointer;	 
	padding: 1em;
	display: block;
	background-color: #003b83;
	color: #FFFFFF;
	font-size: 1.3em;
    line-height:1.08;
	font-weight: bold;
	padding-right: 2rem;
    font-family:"Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",serif;
}
.title::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 2%;
	top: 0;
	bottom: 15%;
	margin: auto;
}

.toggle:checked + .title::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
	right: 2%;
	top: 7%;
	bottom: 0;
	margin: auto;
}

/*開いたときに表示される部分*/
.content { 
	max-height: 0;
	overflow: hidden;
	padding: 0 1.5rem 0 1.5rem;
	border-right: 1px solid #dce1e9;
    border-bottom: 1px solid #dce1e9;
    border-left: 1px solid #dce1e9;
}
.content p {
	margin: 0;
	padding: 1em 0 0.5em 0;
	line-height: 1.5;
	list-style: disc;
}

.content ul {
	font-size: 0.9em;
	list-style:  none;
	padding: 0.5em 1em 1em;
}

ul.list-arrow li {
    display: block;
    padding-top: 5px;
    padding-bottom: 1px;
    padding-left: 1.5em;
    margin-right: 2em;
    background-image: url(https://www.zkai.co.jp/wp-content/themes/zkai/images/icon-link.png);
    background-repeat: no-repeat;
    background-position: 0 8px;
    background-size: 15px;
}


/*展開時の最大の高さ、展開する速度を指定
※内容量が多い場合、はみ出た分は表示されない*/
.toggle:checked + .title + .content {
	max-height: 5000px;
	transition: all 1.5s;
}

/* PC用 */	
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/

h1, h2, h3, h4, h5, h6{
	padding: 30px;
	margin: 30px;
    font-family:'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN',serif;
}

.container{
	width: 1000px;
	/*display: flex;*/
	flex-wrap: wrap;
	max-width:100%;
	margin: 0 auto;
}

	
.sp_none {
	display:none; /*非表示*/
}

}

/* スマホ用 */	
@media screen and (max-width: 480px) { /*ウィンドウ幅が最大480pxまでの場合に適用*/

h1, h2, h3, h4, h5, h6{
	padding: 5px;
	margin: 5px;
    font-family:'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN',serif;
}
	
.container {
	flex-direction: column;
}

.title::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 5%;
	top: 0;
	bottom: 15%;
	margin: auto;
}

.toggle:checked + .title::after {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
	right: 5%;
	top: 7%;
	bottom: 0;
	margin: auto;
}

}