@charset "UTF-8";


/* CSS Document */
/* --------------------------------------------------

reset

-------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, base-table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
}

html {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

strong {
	font-weight: bold;
}

base-table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}

img, a {
	vertical-align: top;
}

a img {
	border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

*, *:before, *:after {
	box-sizing: border-box;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
}



/* --------------------------------------------------

clearfix

-------------------------------------------------- */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* --------------------------------------------------

html

-------------------------------------------------- */
html {
	font-size: 62.5%;
	height: 100%;
}



@media screen and (max-width: 1180px) {
	html {
		font-size: 58.12%;
		/* 1.4rem */
	}
}



/* --------------------------------------------------

body

-------------------------------------------------- */
body {
	font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "Noto Sans JP", Meiryo, Osaka, sans-serif;
	font-size: 1.5rem;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	height: 100%;
	color: #222;
	box-sizing: border-box;
	background: #F6F6F6;
}


/* --------------------------------------------------

link

-------------------------------------------------- */
a:link {
	color: #222;
	text-decoration: none;
}

a:visited {
	color: #222;
	text-decoration: none;
}

a:hover {
	color: #222;
	text-decoration: none;
	/*	opacity: 0.8;
*/
}

a:active {
	color: #222;
	text-decoration: none;
}

* a {
	transition-duration: 0.3s;
	transition-property: opacity, background, color, background-image, transform;
	transition-timing-function: ease-in-out;
}

/* ---------------------------------------------

sp-only  pc-only

----------------------------------------------- */
@media screen and (min-width: 1081px) {
	.sp-only {
		display: none;
	}
}

@media screen and (max-width: 1080px) {
	.pc-only {
		display: none;
	}
}



/* ---------------------------------------------

header

----------------------------------------------- */

#header {
	width: 100%;
	position: relative;
	z-index: 100;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(0,0,0, .16);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 1180px) {
	#header {
		height: 60px;
	}
}



/* ---- header-logo ---- */

.header-logo {
	width: 358px;
	margin-left: 1em;
	padding: .5em 0;
}
.header-btn{
	display: flex;
}
.btn-regist a span,
.btn-change-pass a,
.btn-logout a{
	display: block;
	padding: .5em 1em;
	border-radius: 10px;
	position: relative;
	transition: .3s;
}
.btn-regist a span{
	background: #E55E22;
	color: #fff;
}
.btn-regist a span:before{
	content: "\f055";
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
	font-size: 1.4rem;
	color: #fff;
	margin-right: .5em;
}
.btn-regist a:hover{
	opacity: .7;
}


@media screen and (max-width: 1180px) {
	.header-logo {
		top: 0;
		z-index: 102;
	}
}

@media screen and (max-width: 600px) {
	.header-logo {
		max-width: 220px;
	}
}


/* ---- header-btn ---- */

.header-btn .user-area{
	display: flex;
	align-items: center;
	margin: 0 1em 0 2em;
	position: relative;
}
.header-btn .user-area:before{
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	background: #757575;
	left: -1em;
	top: 50%;
	transform: translateY(-50%);
}

.user-name{
	position: relative;
	padding-left: 3em;
}
.user-name:before{
	content: "\f007";
	font-family: 'Font Awesome 5 Free';
	font-weight:400;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.8rem;
	line-height: 1.8;
	color: #fff;
	background: #E4E4E4;
	width: 32px;
	height: 32px;
	text-align: center;
	border-radius: 50%;
}


.user-name span{
	margin-left: 1em;
	font-weight: bold;
	font-size: 1.7rem;
}

.user-area .btn-change-pass{
	margin: 0 1em;
}
.user-area .btn-change-pass a{
	background: #000;
	color: #fff;
	padding: .5em 1em;
}
.user-area .btn-change-pass a:hover{
	opacity: .7;
}


.user-area .btn-logout a{
	border: 1px solid #000;
	position: relative;
	transition: .3s;
}
.user-area .btn-logout a:before{
	content: "\f2f5";
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
	font-size: 1.4rem;
	color: #000;
	transition: .3s;
	margin-right: .5em;
}
.user-area .btn-logout a:hover{
	background: #000;
	color: #fff;
}
.user-area .btn-logout a:hover:before{
	color: #fff;
}


@media screen and (max-width: 1180px) {
	.header-btn{
		display: none;
	}
	
	.user-name:before{
		line-height: 2.5;
	}
}

/* ---- sp-nav ---- */
#sp-nav {
	display: none;
}

@media screen and (max-width: 1180px) {
	#sp-nav {
		position: relative;
		margin-right: 10px;
		display: block;
	}
	

	.btn-menu {
		display: block;
		border: none;
		width: 50px;
		height: 50px;
		overflow: hidden;
		cursor: pointer;
		z-index: 100;
		text-align: center;
		outline: none;
		background: none;
	}

	.btn-menu .drawer-bar {
		display: block;
		height: 2px;
		margin: 10px 0;
		transition: all 0.2s;
		transform-origin: 0 0;
		background-color: #000;
	}

	.btn-menu.open .drawer-bar {
		width: 40px;
		margin: 12px 0;
	}
	.btn-menu.open .drawer-bar1 {
		transform: rotate(45deg);
	}
	.btn-menu.open .drawer-bar2 {
		opacity: 0;
	}
	.btn-menu.open .drawer-bar3 {
		transform: rotate(-45deg);
	}
}


/* ---------------------------------------------

all-wrap

----------------------------------------------- */

.all-wrap {
	display: flex;
}
.sp-wrap{
	max-width: 250px;
	background: #0073BC;
	color: #fff;
	justify-content: flex-end;
	display: flex;
	width: 100%;
}

.header-nav {
	width: 100%;
}

@media screen and (max-width: 1180px) {
	.all-wrap {
		display: block;
	}

	.sp-wrap {
		position: fixed;
		width: 100%;
		height: 100%;
		min-height: 100%;
		top: 0;
		left: 0;
		background: rgba(0, 98, 174, 0.9);
		z-index: 0;
		text-align: center;
		overflow: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		display: none;
	}

	.sp-wrap.on {
		display: block;
		max-width: none;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 10;
	}

	.sp-wrap.off{
		display: none;
	}
	.sp-wrap.on .gnav li.this-page a:after,
	.sp-wrap.on .gnav li a:hover:after{
		content: none;
	}

	.header-nav {
		display: block;
		line-height: 36px;
		font-size: 120%;
		position: absolute;
		top: 60px;;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 100%;
		height: 100%;
	}

	.header-nav li {
		width: 100%;
	}

	.header-nav a {
		justify-content: center;
		white-space: nowrap;
	}

}



/* ---- header-btn-sp ---- */

.header-btn-sp {
	display: none;
}

@media screen and (max-width: 1080px) {

	.header-btn-sp {
		display: block;
	}
	.header-btn-sp .btn-regist a span,
	.header-btn-sp .btn-change-pass a,
	.header-btn-sp .btn-logout a{
		border-radius: 0;
	}
	.header-btn-sp .user-area{
		display: flex;
		flex-wrap: wrap;
		background: #fff;
		justify-content: center;
		align-items: center;
	}
	.header-btn-sp .user-area p{
		width: 50%;
		margin: 0;
	}
	.header-btn-sp p.user-name{
		padding: .5em 0 .5em 4em;
		color: #000;
		width: 100%;
		text-align: left;
		font-size: 1.6rem;
	}
	.header-btn-sp p.btn-change-pass,
	.header-btn-sp p.btn-logout {
		padding: 2rem;

	}
	.header-btn-sp p.btn-change-pass a,
	.header-btn-sp p.btn-logout a{
		font-size: 1.6rem;
		border-radius: 10px;
		padding: 0;
		text-align: center;
	}


}






/* ---- gnav ---- */

.gnav {
	postion: -webkit-sticky;
	position: sticky;
	top: 0;
}

.gnav li {
	letter-spacing: .1rem;
	font-size: 1.6rem;
}

.gnav li a {
	color: #fff;
	display: block;
	padding: 1em 1em 1em 3em;
	border-bottom: 1px solid #267CCF;
}

.gnav li a:after {
	transition: .3s;
}
.gnav li.this-page a,
.gnav li a:hover {
	background: #004D88;
	position: relative;
}
.gnav li a span{
	position: relative;
}
.gnav li a span:before{
	content: "";
	position: absolute;
	left: -1.5em;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.2rem;
	color: #619DCD;
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
}
.gnav li:first-child a span:before{
	background-image: url(../img/common/nav_icon001.png);
}
.gnav li:nth-child(2) a span:before{
	background-image: url(../img/common/nav_icon002.png);
}
.gnav li:nth-child(3) a span:before{
	background-image: url(../img/common/nav_icon003.png);
}
.gnav li:nth-child(4) a span:before{
	background-image: url(../img/common/nav_icon004.png);
}
.gnav li:nth-child(5) a span:before{
	background-image: url(../img/common/nav_icon005.png);
}
.gnav li:nth-child(6) a span:before{
	background-image: url(../img/common/nav_icon006.png);
}
/* .gnav li:nth-child(7) a span:before{
	background-image: url(../img/common/nav_icon007.png);
} */
.gnav li:nth-child(7) a span:before{
	background-image: url(../img/common/nav_icon002.png);
}
.gnav li:nth-child(8) a span:before{
	background-image: url(../img/common/nav_icon009.png);
}
.gnav li:nth-child(9) a span:before{
	background-image: url(../img/common/nav_icon010.png);
}
.gnav li.this-page a:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	border-top: 15px solid transparent;
	border-right: 15px solid #F6F6F6;
	border-bottom: 15px solid transparent;
}





@media screen and (max-width: 1080px) {



	.gnav {
		display: block;
		padding-bottom: 0;
	}

	.gnav li {
		margin: 0;
	}
	.gnav li a {
		display: block;
		padding: 13px 30px;
		text-align: left;
	}

	.gnav li a:hover {
		color: #FFF;
		background: #004D88;
	}

	.gnav li a:after {
		display: none;
	}
	.gnav li a span{
		padding-left: 2.4em;
	}
	.gnav li a span:before{
		left: 0;
	}

}

/* --------------------------------------------------

	footer

-------------------------------------------------- */

#pagetop {
	position: fixed;
	right: 3rem;
	bottom: 6rem;
	z-index: 5;
}

#pagetop a {
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1;
	background: #000;
	color: #FFF;
	border-radius: 50%;
}

#pagetop a:hover {
	background: #FFF;
	color: #000;
	border: 1px solid #000;
}



@media screen and (max-width: 1080px) {

}






/* --------------------------------------------------

	footer

-------------------------------------------------- */
#footer {
	background: #000;
	color: #FFF;
	position: relative;
}


.copy {
	text-align: center;
	padding: 1em 0;
	font-size: 1.2rem;
}

@media screen and (max-width: 1080px) {
	
	.copy {
		padding: .5em 0;
	}

}




/* -----------------------------------------------

contents

---------------------------------------------- */
.contents {
	width: 100%;
	margin: 0 auto 5rem;
	overflow: hidden;
	padding: 5rem;
	min-height: 82.5vh;
}

.inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.bgwh{
	background: #fff;
	padding: 5rem;
	box-shadow: 0px 3px 6px rgba(0,0,0, .16);
}

.bgwhline{
	background: #fff;
	border: 1px solid #A4A4A4;
	padding: 3rem;
}


@media screen and (max-width: 1080px) {
	
	.contents {
		padding: 2rem;
	}
	
	.inner {
		margin: 0 auto;
	}
	.bgwh,
	.bgwhline{
		padding: 2rem;
	}
}

/* list-ranking */
.list-ranking li{
	display: flex;
	align-items: flex-start;
	margin-bottom: 1em;
}
.list-ranking li:last-child{
	margin-bottom: 0;
}
.list-ranking li span{
	color: #fff;
	font-weight: bold;
	background: #0062AE;
	padding: .1em .5em;
	margin-right: 1em;
	min-width: 33px;
	text-align: center;
}
.list-ranking li a{
	color: #0062AE;
	cursor: pointer;
}
.list-ranking li .txt-point{
	margin-left: 1em;
}

/* modal */
.modal__container{
	width: 100%;
}

/* -----------------------------------------------

	breadCrumbs

---------------------------------------------- */


.breadCrumbs {
	width: 100%;
	padding-bottom: 2rem;
	margin-top: -1em;
	bottom: 0;
	left: 0;
}

.breadCrumbs ul {
	max-width: 1520px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	font-size: 90%;
	justify-content: flex-start;
}

.breadCrumbs li {
	display: inline;
	margin-right: 1em;
	vertical-align: top;
}

.breadCrumbs li a {
	text-decoration: underline;
	position: relative;
	display: inline-block;
}

.breadCrumbs li a:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
	display: inline-block;
	margin-left: 1em;
}

.breadCrumbs li a:hover {
	opacity: .6;
}



.breadCrumbs li:last-of-type::after {
	content: none;
	margin-right: none;
}

@media screen and (max-width: 1080px) {
	
	.breadCrumbs li:last-child {
		margin-right: 0;
	}
}
@media screen and (max-width: 800px){
	.breadCrumbs{
		margin-top: 0;
	}
}




/* -----------------------------------------------

	conditions

---------------------------------------------- */


.conditions{
	position: relative;
    overflow: hidden;
    padding: 10px 0;
    margin-bottom: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.conditions dl {
    width: 80%;
}
.conditions dt {
    display: block;
    vertical-align: middle;
    margin-right: 1rem;
}
.conditions dd {
    display: block;
}
.conditions dd a {
    border: #D0D0D0 solid 1px;
    background: #fff;
    display: inline-block;
    line-height: 1;
    padding: .5em 2em .5em 1em;
    border-radius: 10px;
    cursor: pointer;
    margin: .4em .4em .4em 0;
    vertical-align: middle;
    color: #272727;
	position: relative;
}
.conditions dd a:after {
    content: "";
	display: block;
	position: absolute;
	background: url(../img/common/icon_close.svg) no-repeat;
	width: 14px;
	height: 14px;
	top: 50%;
	transform: translateY(-50%);
	right: .5em;
	color: #000;
    margin-left: .5rem;
}
.conditions .btn-delete {
    float: right;

}
.btn-delete a {
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #FFF;
    padding: 5px 15px;
    border-radius: 25px;
    background: #333;
    transition: all .5s ease-out;
}
.btn-delete a:before {
    content: "\f00d";
    font-family: 'Font Awesome 5 Free';
	font-weight:900;
    margin-right: 1rem;
}
@media screen and (max-width: 1080px){
	
	.conditions{
		display: block;
	}
	
	.conditions dl {
	    width: 100%;
		margin-bottom: 10px;
	}
}


/* -----------------------------------------------

	paging

---------------------------------------------- */


.paging-wrap{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 4rem 0;
}
.paging {
	max-width: 1080px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	margin-left: auto;
}

.paging-result {
	margin: 1rem 0;
}

.paging-result strong {
	font-weight: 500;
	margin: 0 .5rem;
}

.paging span {
}
.paging span a{
	line-height: 1;
	letter-spacing: normal;
	display: block;
	padding: 1rem 1.4rem;
	text-decoration: none;
	border: 1px solid #AAA;
	margin: .25em;
	display: block;
	background: #FFF;
}

.paging span a:hover{
	background: #F0F0F0;
}
.paging .current {
	line-height: 1;
	letter-spacing: normal;
	display: inline-block;
	padding: 1rem 1.4rem;
	text-decoration: none;
	background: #333333;
	color: #FFF;
}

.paging .prev a:before {
	display: inline-block;
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
	margin-right: .5em;
}
.paging .next a:after {
	display: inline-block;
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
	margin-left: .5em;
}

.paging-sort {
	display: flex;
	align-items: center;
}

.paging-sort dl {
	display: flex;
	margin-left: 10px;
}

.paging-sort dt {
	padding: 7px 5px;
	border-radius: 3px;
}

.paging-sort dd a {
	padding: 5px 15px;
	background: #FFF;
	color: #222;
	border: 2px solid #298640;
	margin-left: 10px;
	display: block;
	border-radius: 35px;
}

.paging-sort dd a.active {
	background: #298640;
	color: #FFF;
}

.paging-sort dd a:hover {
	background: #C0C0BC;
}


/* -----------------------------------------------

ttl

---------------------------------------------- */

.ttl{
	background: #0062AE;
	color: #fff;
	font-size: 2.2rem;
	padding: 1em 1em 1em 2.6em;
	position: relative;
}
.ttl:before{
	content: "";
    position: absolute;
    left: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: #619DCD;
    width: 18px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width: 800px){
	.ttl{
		font-size: 2rem;
	}
}
.sttl{
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 0.8em;
}
@media screen and (max-width: 800px){
	.sttl{
		font-size: 1.8rem;
	}
}

.ssttl{
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 1em;
	position: relative;
	padding-left: .8em;
}
.ssttl:before{
	content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
	background-color: #0062AE;
}
@media screen and (max-width: 800px){
	.ssttl{
		font-size: 1.8rem;
	}
}
/* -----------------------------------------------

base-table

---------------------------------------------- */
/* base-table */
.base-table {
	margin-bottom: 6rem;
}
.base-table table{
	border-collapse: collapse;
}
.base-table table,
.table-group table,
.detail-table table{
	border: 1px solid #A4A4A4;
	width: 100%;
}
.base-table tr{
	width: 100%;
	border-bottom: 1px solid #A4A4A4;
}
.base-table tr tbody:last-child{
	border-bottom: none;
}
.base-table th{
	font-weight: bold;
}
.base-table th.center,
.base-table td.center{
	text-align: center;
}
.base-table th,
.base-table td,
.table-group td{
	margin: 0;
	padding: 1em;
	border-right: 1px dashed #D8D8D8;
}
.base-table th:last-child,
.base-table td:last-child,
.table-group td:last-child{
	border-right: none;
}

.base-table th,
.table-group .line-order td{
	background: #F2F9FC;
	padding: .5em;
}
.base-table td{
	background: #fff;
}
.base-table a,
.table-group a{
	font-weight: bold;
	color: #0062AE;
}
.base-table a:hover{
	opacity: .7;
}
@media screen and (max-width: 800px){
	.base-table th,
	.base-table td{
		display: block;
		width: 100%;
	}
	.base-table td{
		text-align: left;
		padding: .5em .5em 0 .5em;
	}
	.base-table td:last-child{
		padding: .5em;
	}
	.base-table td:not(:first-child){
		font-size: 1.2rem;
	}
	.base-table th,
	.base-table td,
	.table-group td{
		border-right: none;
	}
}
.line-order th,
.line-order td{
	text-align: center;
}
.line-order a{
	display: block;
	color: #000;
}
.line-order a span{
	position: relative;
}
.line-order .down a span:before,
.line-order .up a span:before {
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
    position: absolute;
    right: -1em;
    top: 53%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #0062AE;
    transition: .3s;
}
.line-order .down a span:before{
	content: "\f107";
}
.line-order .up a span:before{
	content: "\f106";
}
/* table-group */
.table-group table{
	border-bottom: none;
}
.table-group table:nth-of-type(2n){
	background: #F6F6F6;
}
.table-group table:last-child{
	border-bottom: 1px solid #A4A4A4;
}
.table-group tr:last-child{
	border-bottom: none;
}
.table-group td{
	border-bottom: 1px dashed #A4A4A4;
}
.table-group tr:last-child td{
	border-bottom: none;
}
/* detail-table */
.detail-table tr{
	border-bottom: 1px solid #A4A4A4;
}
.detail-table th,
.detail-table td{
	padding: 1em;
}
.detail-table th{
	width: 16%;
	background: #F2F9FC;
	text-align: center;
}

/* -----------------------------------------------

point-table

---------------------------------------------- */
.base-table.point-table tr th{
	text-align: center;
	width: 22%;
}
.base-table.point-table tr td{
	width: 100%;
	text-align: left;
}
.modal__close {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 800px){
	.micromodal-slide .modal__container{
		margin-top: 100px;
		max-height: 85vh;
	}
	.base-table{
		margin: 1em auto;
	}
	.base-table.point-table tr th,
	.base-table.point-table tr td{
		width: 100%;
		display: block;
	}
	.base-table.point-table tr th{
		border-right: none;
	}
}






/* .ico-new,
.ico-important */

.ico-new,
.ico-important{
	font-size: 1.2rem;
	font-weight: bold;
	padding: 0.2em 1em 0 1em;
	margin-right: 1em;
}
/* safari ハック */
_::-webkit-full-page-media, _:future, :root .ico-new ,
	_::-webkit-full-page-media, _:future, :root .ico-important {
	padding: 0.2em 1em;
}
.ico-new{
	color: #B12814;
	border: 1px solid #B12814;
	margin-left: .6em;
}
.ico-important{
	color: #fff;
	padding: 0.2em 1.5em 0 1.5em;
	/* font-size: 1.4rem; */
	border: 1px solid #B12814;
	background:#B12814;
	margin-right: .6em;
}

@media screen and (max-width: 1080px) {
	/* .scroll-table {
		display: block;
		overflow-x: scroll;
		width: 100%;
	}
	.scroll-table table{
		border-collapse: collapse;
		border-spacing: 0;
		width:100%;
		width: 1080px;
	} */
}
/* -----------------------------------------------

day-wrap

---------------------------------------------- */
.day-wrap{
	display: flex;
	margin-bottom: 1em;
	flex-wrap: wrap;
}
.day-wrap p{
	margin-right: 1.4em;
	margin-bottom: .5em;
}
.day-wrap p span{
	background: #E3E3E3;
	padding: 0 .5em;
	margin-right: .2em;
}
/* -----------------------------------------------

form

---------------------------------------------- */

.form-list fieldset,
.date-group{
	display: flex;
}
.form-list fieldset{
	flex-wrap: wrap;
}
.date-group{
	align-items: center;
	justify-content: space-between;
}

.form-list li{
	margin-right: 1.4em;
}
.form-list li:last-child{
	margin-right: 0;
}
.form dl dt{
	font-weight: bold;
}
.form dl dd{
	margin-bottom: 1em;
}
select,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea{
	vertical-align: middle;
    border: none;
    border: 1px solid #D0D0D0;
	background: #F2F2F2;
	border-radius: 10px;
    padding: 5px 10px;
    line-height: 1.8;
    box-sizing: border-box;
	width: 100%;
	font-size: 1.8rem;
}
@media only screen and (max-width: 768px){
	input::placeholder {
		font-size: 1.4rem;
	}
}


/* ------  check-area  ------ */

.check-area {
	margin:.5em 2em .5em 0;
	display: inline-block;
}

.check-area label {
	display: flex;
	align-items: center;
	/* font-size: 1.8rem; */
	word-break: keep-all;
}

.check-area label span {
	display: inline-block;
	line-height: 1;
	word-break: break-all;
}

.check-area input[type="checkbox"] {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}
.check-area input[type="checkbox"] + label .check-icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.5em;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	border-radius: 4px;
	border: 1px solid #D0D0D0;
	background: #F2F2F2;
}
.check-area input[type="checkbox"] + label .check-icon:after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.check-area input[type="checkbox"]:checked + label .check-icon:after {
	position: absolute;
	content: "";
	top: 5px;
	left: 8px;
	width: 6px;
	height: 9px;
	background: transparent;
	box-shadow: none;
}

.check-area input[type="checkbox"]:focus +label .check-icon:after {
	box-shadow: none;
}
.check-area input[type="checkbox"]:disabled + label .check-icon:after {
	background: #ccc;
}

.check-area input[type="checkbox"]:checked + label .check-icon{
	background: #0062AE;
}

.check-area li{
	margin: 1em 0;
	position: relative;
}

/* ------  radio-area  ------ */

.radio-area {
	margin:.5em 1em .5em 0;
	display: inline-block;
}

.radio-area label {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	word-break: keep-all;
}

.radio-area label span {
	display: inline-block;
	line-height: 1;
}

.radio-area input[type="radio"] {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}
.radio-area input[type="radio"] + label .check-icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.25em;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	border-radius: 50%;
	border: 1px solid #D0D0D0;
	background: #FFF;
}
.radio-area input[type="radio"] + label .check-icon:after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.radio-area input[type="radio"]:checked + label .check-icon:after {
	position: absolute;
	content: "";
	top: 5px;
	left: 8px;
	width: 6px;
	height: 9px;
	background: transparent;
	box-shadow: none;
}
.radio-area input[type="radio"]:focus +label .check-icon:after {
	box-shadow: none;
}

.radio-area input[type="radio"]:disabled + label .check-icon:after {
	background: #ccc;
}


.radio-area input[type="radio"]:checked + label .check-icon{
	background: #000;
}
.radio-area li{
	margin: 1em 0;
	position: relative;
}




.select-block {
	position: relative;
}

.select-block select{
	width: 100%;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 5px 30px 5px 10px;
}

.select-block::after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    margin: auto;
    top: 50%;
    right: 1em;
    left: auto;
    z-index: 1;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(135deg);
    pointer-events: none;
}


legend.hidden,
label.hidden {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}

.date-group div{
	flex-grow: 1;
}
.date-group span{
	padding: 0 1em;
}

.date-group input{
	width: 100%;
}
.form-block{
	margin-bottom: 1em;
}
.form-block.col2,
.form-block.col3{
	display: flex;
	flex-wrap: wrap;
	margin-right: -2%;
}
.form-block.col3 {

}
.form-block.col2 .form-item{
	width: 48%;
	margin-right: 2%;
}
.form-block.col3 .form-item{
	width: 31%;
	margin-right: 2%;
	margin-bottom: 1em;
}
.form-ttl{
	margin-bottom: .2em;
}
.form .error-message{
	color: #FF290B;
	border: 1px solid #FF290B;
	background-color: #FFE3DF;
	font-weight: bold;
	padding: .2em .5em .1em .5em;
	margin: 0 0 .5em 0;
}
.form .essential{
	background: #B12814;
	padding: 0 1.4em;
	color: #fff;
	font-size: 76%;
	margin: 0 0 0 1em;
	padding: 0.2em 1em;
	word-break: keep-all;
}
.form .choice-caut{
	color: #B12814;
	margin: 0 0 0 1em;
}
@media screen and (max-width: 1080px){
	.form-block.col2 .form-item{
		display: block;
	}
	.form-block.col2 .form-item{
		width: 100%;
		margin-bottom: 1em;
	}
}


/* -----------------------------------------------

btn

---------------------------------------------- */


.btn-area{
	display: flex;
	justify-content: center;
}
.btn-area p{
	margin: 0 1em;
}
.btn-base a{
	display: block;
	padding: .5em 1em;
	border-radius: 34px;
	max-width: 200px;
	width: 100%;
	text-align: center;
	transition: .3s;
	background: #0062AE;
	color: #fff;
	margin: 0 auto;
}
.btn-base a:hover{
	background: #004D88;
}
.btn-clear a,
.btn-search a{
	display: block;
	padding: .5em 4em;
	border-radius: 34px;
	min-width: 200px;
	width: 100%;
	text-align: center;
	transition: .3s;
}
.btn-clear a{
	border: 2px solid #000;
}
.btn-clear a:hover{
	background: #000;
	color: #fff;
}
.btn-search a{
	border: 2px solid #0062AE;
	background: #0062AE;
	color: #fff;
}
.btn-search a:hover{
	background: #004173;
	border: 2px solid #0062AE;
}
.btn-back a{
	display: block;
	padding: .5em .4em;
	border-radius: 34px;
	max-width: 200px;
	width: 100%;
	text-align: center;
	transition: .3s;
	background: #000;
	color: #fff;
	margin: 0 auto;
	border: 2px solid #000;
}
.btn-back a:hover{
	background: #373737;
	border: 2px solid #373737;
}
.btn-download a{
    color: #fff;
    background: #0062AE;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    padding: .5em 1em;
    margin: 0 auto;
    transition: .3s;
}
.btn-download a::before{
    content: "\f56d";
    font-family: 'Font Awesome 5 Free';
    font-weight:900;
    margin-right: .5em;
    width: 1em;
    display: inline-block;
}
.btn-download a:hover{
    background: #004173;
}
@media screen and (max-width: 1080px){

	.btn-area p{
		width: 48%;
		margin: 0 1%;
	}
	.btn-clear a,
	.btn-search a{
		min-width:inherit;
		padding: .5em;
	}
}


/* --------------------------------------------------
search-ttl
-------------------------------------------------- */


.accordion-block {
	border-bottom: 1px solid #D0D0D0;
	margin-bottom: 2em;
}

.accordion-block .acc-content{
	padding-bottom: 3em;
	
}
.search-ttl{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-ttl .btn-close{
	margin-bottom: 1em;
}
.search-ttl .btn-close a{
	text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #FFF;
    padding: 5px 15px;
    border-radius: 25px;
    background: #333;
    transition: all .5s ease-out;
	font-size: 1.4rem;
	width: 7em;
	
}
.search-ttl .btn-close a:before {
    content: "\f00d";
	font-family: 'Font Awesome 5 Free';
	font-weight:900;
    margin-right: .5em;
	width: 1em;
	display: inline-block;
}
.search-ttl .btn-close.open a:before{
    content: "\f067";
}
.btn-close.active .acc-content{
	border-bottom: none;
}
.form{
	margin-bottom: 2em;
}
.base-table{
	margin: 1em 0 4em;
}


/* iframe-area */
.iframe-area {
	position: relative;
	width: 100%;
	padding-top: 56%;
	margin: 5% 0;
  }
  @media only screen and (max-width: 800px) {
	.iframe-area {
	  padding-top: 60%;
	}
  }
  
  .iframe-area iframe {
	filter: saturate(1.2);
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
  }
  
/* --------------------------------------------------

post-content　ウィジウィグ

-------------------------------------------------- */
/* post-ttl */
.post-ttl {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1em;
	position: relative;
}
.post-ttl .ico-important{
	text-align: center;
	display: block;
	width: 6em;
}

@media only screen and (max-width: 768px) {
	.post-ttl {
	font-size: 2.4rem;
	}
}


/* icon-post-block */
.icon-post-block {
	font-size: 1.6rem;
	margin: 1em 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.icon-post-block .list-icon {
	margin: 0 5px 0.5em 0;
}
.icon-post-block .list-category {
	margin: 0 5px 0.5em 0;
}
@media only screen and (max-width: 768px) {
	.icon-post-block {
	font-size: 1.4rem;
	}
}
/* post-date */
.post-date {
	margin: 1em 0 2em auto;
	display: block;
	text-align: left;
}
.post-date  span {
    background: #E3E3E3;
    padding: 0 0.5em;
    margin-right: 0.2em;
}

/* post-sttl-large */
.post-sttl-large {
	color: #333;
	border-bottom: 5px solid #F0F0F0;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.2em;
	padding: 0.5em 0;
	margin-bottom: 1em;
	position: relative;
}
.post-sttl-large::after {
	content: "";
	background: #0062AE;
	display: block;
	width: 5em;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: -5px;
}
@media only screen and (max-width: 800px) {
	.post-sttl-large {
	font-size: 2.2rem;
	}
}
  
/* post-sttl-small */
.post-sttl-small {
	color: #333;
	font-size: 2.4rem;
	font-weight: 600;
	border-left: 6px solid #0062AE;;
	padding: 0 0 0 1em;
	margin: 1.5em 0;
	}
	@media only screen and (max-width: 800px) {
	.post-sttl-small {
		font-size: 2rem;
	}
}



/* post-pht */
.post-pht {
	margin-top: 3em;
	margin-bottom: 5em;
  }
  
  .post-pht div {
	width: 100%;
	height: auto;
	max-height: 600px;
	text-align: center;
  }
  
  .post-pht img {
	height: auto;
	max-height: 600px;
	max-width: 100%;
	width: auto;
  }
  
  .post-pht figcaption {
	display: block;
	font-size: 1.6rem;
	padding: 5px;
	line-height: 1.2;
	text-align: center;
  }
  
  /* two-post-pht */
  .two-post-pht {
	display: flex;
	justify-content: space-between;
  }
  
  .two-post-pht .post-pht {
	width: 48%;
	font-size: 1.6rem;
	vertical-align: top;
  }
  
  @media only screen and (max-width: 420px) {
	.post-pht div {
	  max-height: 300px;
	}
  
	.post-pht img {
	  max-height: 300px;
	}
  }
  /* photLsentence */
  .photLsentence,
  .photRsentence {
	margin-top: 3em;
	margin-bottom: 5em;
  }
  
  .photLsentence:after,
  .photRsentence:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
  }
  
  .photLsentence img,
  .photRsentence img {
	width: 100%;
	height: auto;
  }
  
  .photLsentence .photoL,
  .photRsentence .photoR {
	width: 48%;
  }
  
  .photoL {
	float: left;
	width: auto;
	margin-right: 2%;
  }
  
  .photoR {
	float: right;
	width: auto;
	margin-left: 2%;
  }
  
  /* iframe-area */
  .iframe-area {
	position: relative;
	width: 100%;
	padding-top: 56%;
	margin: 5% 0;
  }
  @media only screen and (max-width: 768px) {
	.iframe-area {
	  padding-top: 60%;
	}
  }
  
  .iframe-area iframe {
	filter: saturate(1.2);
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
  }
  
/* -----------------------------------------------

wysiwyg

---------------------------------------------- */
.wysiwyg {
	word-wrap: break-word;
	overflow-wrap: break-word;
	margin-bottom: 4%;
  }
  
  /* h1 */
  .wysiwyg h1 {
	color: #333;
	border-bottom: 5px solid #F0F0F0;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.2em;
	padding: 0.5em 0;
	margin-bottom: 1.5em;
	position: relative;
  }
  .wysiwyg h1::after {
	content: "";
	background: #707070;
	display: block;
	width: 5em;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: -5px;
  }
  @media only screen and (max-width: 800px) {
	.wysiwyg h1 {
	  font-size: 2.4rem;
	}
  }
  
  .wysiwyg h1:first-child {
	margin-top: 0;
  }
  
  .wysiwyg p + h1,
  .wysiwyg ul + h1,
  .wysiwyg ol + h1,
  .wysiwyg table + h1,
  .wysiwyg dl + h1 {
	margin-top: 1em;
  }
  
  /* h2 */
  .wysiwyg h2 {
	color: #333;
	border-bottom: 5px solid #F0F0F0;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.2em;
	padding: 0.5em 0;
	margin-bottom: 1em;
	position: relative;
  }
  .wysiwyg h2::after {
	content: "";
	background: #0062AE;
	display: block;
	width: 5em;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: -5px;
  }
  @media only screen and (max-width: 800px) {
	.wysiwyg h2 {
	  font-size: 2.2rem;
	}
  }
  
  /* h3 */
  .wysiwyg h3 {
	color: #333;
	font-size: 2.4rem;
	font-weight: 600;
	border-left: 6px solid #0062AE;;
	padding: 0 0 0 1em;
	margin: 1.5em 0;
  }
  @media only screen and (max-width: 800px) {
	.wysiwyg h3 {
	  font-size: 2rem;
	}
  }
  
  /* h4 */
  .wysiwyg h4 {
	font-size: 2.2rem;
	font-weight: 600;
	margin: 1.5em 0;
	padding: 0.5em 1em;
	background: #F0F0F0;
  }
  @media only screen and (max-width: 800px) {
	.wysiwyg h4 {
	  font-size: 1.8rem;
	}
  }
  
  /* h5 */
  .wysiwyg h5 {
	font-size: 2rem;
	color: #333;
	font-weight: 700;
	border-bottom: 1px solid #333;
	padding: 0.5em 0;
	margin: 1.5em 0;
  }
  
  @media only screen and (max-width: 800px) {
	.wysiwyg h5 {
	  font-size: 1.6rem;
	}
  }
  /* h6 */
  .wysiwyg h6 {
	font-size: 1.8rem;
	color: #333;
	font-weight: 700;
	margin: 1.5em 0;
  }
  
  @media only screen and (max-width: 800px) {
	.wysiwyg h6 {
	  font-size: 1.4rem;
	}
  }
  /* 段落 <p> */
  /* 段落 <p> */
  .wysiwyg p {
	margin: 1em 0;
  }
  
  /* 太字赤文字 <strong> */
  .wysiwyg strong {
	font-weight: bold;
	color: #F00;
  }
  
  /* 太字 <em> */
  .wysiwyg em {
	font-weight: bold;
  }
  
  /* 斜体 <i> */
  .wysiwyg i {
	font-style: italic;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  
  /* 下線 <u> */
  .wysiwyg .underline {
	text-decoration: underline;
  }
  
  /* 打ち消し線 <s> */
  .wysiwyg .strike {
	text-decoration: line-through;
  }
  
  /* 下付き <sub> */
  .wysiwyg sub {
	font-size: 0.8rem;
	vertical-align: bottom;
  }
  
  /* 上付き <sup> */
  .wysiwyg sup {
	font-size: 0.8rem;
	vertical-align: top;
  }
  
  /* 順序のないリスト <ol> */
  .wysiwyg ol {
	margin: 0.5em 0 1em;
	list-style-position: inside;
	list-style-type: decimal;
  }
  
  .wysiwyg ol > li {
	text-indent: -1em;
	padding-left: 1em;
  }
  
  /*順序のないリスト <ul> */
  .wysiwyg ul {
	margin: 0.5em 0 1em;
	list-style-position: inside;
	list-style-type: disc;
  }
  
  .wysiwyg ul > li {
	text-indent: -1em;
	padding-left: 1em;
  }
  
  .wysiwyg ul > li ul {
	list-style-type: circle;
  }
  
  /*横並びリスト <ol><ul> */
  .wysiwyg ol.horizontal-list,
  .wysiwyg ul.horizontal-list {
	display: flex;
  }
  
  .wysiwyg .horizontal-list li {
	margin-right: 1.5em;
  }
  
  /*定義リスト <dl> */
  .wysiwyg dl {
	margin: 0.5em 0 1em;
  }
  
  .wysiwyg dl dt {
	font-weight: 700;
	background: #EEE;
	display: inline-block;
	padding: 0 0.5em;
  }
  
  .wysiwyg dl dd {
	margin-bottom: 0.5em;
  }
  
  /*横並び定義リスト <dl> */
  .wysiwyg dl.horizontal-list dt {
	float: left;
	margin-right: 0.5em;
  }
  
  /* インデント <p class="txt-indent"> */
  .wysiwyg .txt-indent {
	text-indent: 1em;
  }
  
  /* ブロック引用文 <blockquote> */
  .wysiwyg blockquote {
	padding: 1em 2em;
	box-sizing: border-box;
	font-style: italic;
	background: #EEE;
	margin: 2em;
  }
  
  #contents .wysiwyg blockquote p {
	margin: 0;
  }
  
  /* 中央揃え <p class="txt-center"> */
  .wysiwyg .txt-center {
	text-align: center;
  }
  
  /* 右揃え <p class="txt-right"> */
  .wysiwyg .txt-right {
	text-align: right;
  }
  
  /* 両端揃え <p class="txt-justify"> */
  .wysiwyg .txt-justify {
	text-align: justify;
  }
  
  /* ハイパーリンク <a href=""> */
  /*.wysiwyg a[href] {
	  text-decoration:underline;
	  color:#03F;
  }*/
  /* アンカー挿入 <a id="" name=""> */
  /*.wysiwyg a {
	  text-decoration:none;
	  color: inherit;
  }*/
  /* テーブル <table> */
  .wysiwyg table {
	width: auto;
	/*max-width: 100%;*/
	margin: 1em 0 3em;
	border-collapse: collapse;
	border: 1px solid #DDD;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", sans-serif;
  }
  
  .wysiwyg table caption {
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
  }
  
  .wysiwyg table tr th {
	color: #333;
	font-weight: bold;
	background: #F2F9FC;
	padding: 0.5em;
	border: 1px solid #b2b2b2;
  }
  
  .wysiwyg table tr td {
	background: #FFFFFF;
	padding: 0.5em;
	border: 1px solid #b2b2b2;
  }
  
  .wysiwyg table .txt-justify {
	text-align-last: justify;
  }
  
  .wysiwyg .table-right {
	margin-left: auto;
  }
  
  .wysiwyg .table-left {
	margin-right: auto;
  }
  
  .wysiwyg .table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 1em 0 2em;
	max-width: none;
  }
  
  .wysiwyg .table-scroll::-webkit-scrollbar {
	height: 5px;
  }
  
  .wysiwyg .table-scroll::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #eee;
  }
  
  .wysiwyg .table-scroll::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #CCC;
  }
  
  .wysiwyg .table-scroll table {
	margin: 0;
	max-width: none;
  }
  
  .wysiwyg .table-scroll table caption {
	text-align: left;
  }
  
  @media only screen and (max-width: 420px) {
	.wysiwyg .table-scroll table {
	  min-width: 100%;
	}
  }
  /* フォントサイズ小 <span class="font-size-small"> */
  .wysiwyg .font-size-small {
	font-size: 0.6em;
  }
  
  /* フォントサイズ大 <span class="font-size-large"> */
  .wysiwyg .font-size-large {
	font-size: 1.75em;
  }
  
  /* 文字の間隔0.5em <span class="font-space-small"> */
  .wysiwyg .font-space-small {
	letter-spacing: 0.5em;
	margin-left: 0.5em;
  }
  
  /* 文字の間隔1.0em <span class="font-space-medium"> */
  .wysiwyg .font-space-medium {
	letter-spacing: 1em;
	margin-left: 1em;
  }
  
  /* 文字の間隔1.5em <span class="font-space-large"> */
  .wysiwyg .font-space-large {
	letter-spacing: 1.5em;
	margin-left: 1.5em;
  }
  
  /* 文字の間隔2.0em <span class="font-space-xlarge"> */
  .wysiwyg .font-space-xlarge {
	letter-spacing: 2em;
	margin-left: 2em;
  }
  
  /* アドレス */
  .wysiwyg address {
	padding: 1em 2em;
	box-sizing: border-box;
	font-style: italic;
	background: #EEE;
	margin: 0.5em 1em 2em;
  }
  
  /* 短い引用 */
  .wysiwyg q:before {
	content: '"';
	display: inline-block;
  }
  
  .wysiwyg q:after {
	content: '"';
	display: inline-block;
  }
  
  .wysiwyg q q:before {
	content: "'";
	display: inline-block;
  }
  
  .wysiwyg q q:after {
	content: "'";
	display: inline-block;
  }
  
  .wysiwyg q:lang(ja):before {
	content: "『";
	display: inline-block;
  }
  
  .wysiwyg q:lang(ja):after {
	content: "』";
	display: inline-block;
  }
  
  .wysiwyg q q:lang(ja):before {
	content: "「";
	display: inline-block;
  }
  
  .wysiwyg q q:lang(ja):after {
	content: "」";
	display: inline-block;
  }
  
  /* 出典 */
  .wysiwyg cite {
	font-style: italic;
	font-family: Times New Roman, "ＭＳ Ｐゴシック";
  }
  
  /* post-pht-txt */
  .post-pht-txt:after {
	content: "";
	display: block;
	clear: both;
  }
  
  .post-pht-txt .post-pht {
	float: right;
	width: 48%;
	margin: 0 0 2% 2%;
	z-index: 10;
	position: relative;
  }
  
  .post-pht-txt .wysiwyg {
	margin-bottom: 5em;
	word-wrap: break-word;
	overflow-wrap: break-word;
  }
  
  .post-pht-txt .wysiwyg h1,
  .post-pht-txt .wysiwyg h2,
  .post-pht-txt .wysiwyg h3,
  .post-pht-txt .wysiwyg h4,
  .post-pht-txt .wysiwyg h5,
  .post-pht-txt .wysiwyg h6,
  .post-pht-txt blockquote {
	display: flex;
  }
  
  /* related-file */
  .related-file {
	margin: 1em 0;
  }
  .related-file a {
	color: #333;
	padding: 1em 4em;
	display: block;
	border: 1px solid #707070;
	border-radius: 3em;
	position: relative;
  }
  .related-file a:before {
	content:'\f15c';
	margin: 0 1em 0 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 2em;
	transform: translateY(-50%);
  }
  .related-file a:hover {
	opacity: 0.7;
  }
  
  /* related-link */
  .related-link {
	margin: 1em 0;
  }
  .related-link a {
	color: #333;
	padding: 1em 4em;
	display: block;
	border: 1px solid #707070;
	border-radius: 3em;
	position: relative;
  }
  .related-link a:before {
	content: "\f0c1";
	margin: 0 1em 0 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 2em;
	transform: translateY(-50%);
  }
  .related-link a:hover {
	opacity: 0.7;
  }
  
  /* related-youtube-link */
  .related-youtube-link a {
	font-size: 1.8rem;
	border: 2px solid #1BA1E6;
	padding: 1em;
	margin: 0 0 1.5em;
	display: block;
	border-radius: 0.5em;
  }
  
  .related-youtube-link a:before {
	color: #023F9A;
	content: "\f167";
	font-weight: 900;
	font-family: "Font Awesome 5 brands";
	margin-right: 1em;
  }
  
  .btn-postback {
	margin: 3em 0 0;
	text-align: center;
  }
  @media only screen and (max-width: 800px) {
	.btn-postback {
	  margin-bottom: 3em;
	}
  }
  .btn-postback a {
	color: #333;
	background: #F0F0F0;
	display: inline-block;
	font-size: 1.8rem;
	text-align: left;
	letter-spacing: 0.1em;
	border-radius: 35px;
	box-sizing: border-box;
	padding: 1em 4em;
	position: relative;
  }
  .btn-postback a:before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-bottom: 2px solid #333;
	border-left: 2px solid #333;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	left: 1.5em;
	transform: translateY(-50%) rotateZ(45deg);
  }
  .btn-postback a:hover {
	opacity: 0.7;
  }
  
  @media only screen and (max-width: 800px) {
	#contents .post-content h2.post-sttl-small {
	  margin: 0 0 1em;
	  border-top: none;
	  text-align: left;
	}
  
	.post-pht {
	  margin-bottom: 3em;
	}
  
	.iframe-area {
	  margin: 1em 0 3em;
	}
  
	/* post-date */
	.btn-postback a {
	  font-size: 1.6rem;
	}
  }

/* --------------------------------------------------

Q&A

-------------------------------------------------- */
.list-qa .col-qa {
	border: 1px solid #A4A4A4;
	margin-bottom: 2em;
  }
  .list-qa .col-qa > .col-qa-ttl {
	color: #0062AE;
	font-weight: bold;
	background: none;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	background: #F2F9FC;
	display: block;
	width: 100%;
	padding: 1em 4em 1em 3.5em;
	text-indent: -2.5em;
  }
  .list-qa .col-qa > .col-qa-ttl span {
	color: #fff;
	padding: 0.2em .5em;
	margin-right: 0.5em;
	position: relative;
	z-index: 5;
  }
  .list-qa .col-qa > .col-qa-ttl span:before{
	  content: "";
	  display: block;
	  position: absolute;
	  width: 30px;
	  height: 30px;
	  background: #0062AE;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	  z-index: -1;
	  border-radius: 50%;
  }
  .list-qa .col-qa > .ac-c{
	  display: flex;
	  align-items: flex-start;
  }
  .list-qa .col-qa > .ac-c span{
	color: #0062AE;
	background: #CCE3F5;
	font-weight: bold;
	border-radius: 50%;
    padding: 0.2em 0.5em;
    width: 2em;
    min-width: 2em;
    margin-right: 0.5em;
    text-align: center;
  }
  @media only screen and (max-width: 800px) {
	.list-qa .col-qa > .col-qa-ttl span {
	  width: 4em;
	  min-width: 4em;
	}
  }
  .list-qa .col-qa > .col-qa-ttl:after {
	content: "";
	background: url(../img/common/ico-faq-open.png) no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
	display: block;
	position: absolute;
	top: 50%;
	right: 2%;
	transform: translateY(-50%);
  }
  .list-qa .col-qa > .col-qa-ttl.active:after {
	background: url(../img/common/ico-faq-close.png) no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
  }
  .list-qa .col-qa > div {
	padding: 1em;
  }

  @media only screen and (max-width: 800px) {
	.list-qa .col-qa > div span {
	  width: 4em;
	  min-width: 4em;
	}
  }
  /* .list-qa .col-qa > div > div {
	width: calc(100% - 7.5em);
  } */
  @media only screen and (max-width: 800px) {
	.list-qa .col-qa > div > div {
	  width: calc(100% - 4.5em);
	}
  }
  

/* -----------------------------------------------

other
---------------------------------------------- */

.scroll-description {
	margin-bottom: 1em;
}

/* txt-notfound */
.txt-notfound{
	font-size: 2rem;
	margin-bottom: 4rem;
}
@media only screen and (max-width: 800px){
	.txt-notfound{
		font-size: 1.6rem;
		margin-bottom: 3rem;
	}
}

/* point-right */
.base-table td.point-right span{
	width: 5em;
	text-align: right;
	display: block;
}
