@charset "utf-8";


/*
// html
///////////////////////////////////////////////////////////////*/
html{
	font-size: 16px;
}
@media all and (min-width:0px) and (max-width:960px) {
	html{
		font-size: 3.8vw;
	}
}

/*
// body
///////////////////////////////////////////////////////////////*/
body{
	font-family: 'Roboto Condensed', 'Noto Sans JP',  sans-serif;
	color: var(--c-text);
	line-height: 1.7;
	background: var(--c-bg);
}
@media all and (min-width:0px) and (max-width:960px) {
}

/*
// wrap
///////////////////////////////////////////////////////////////*/
.wrap{
	width: 1080px;
	height: auto;
	margin: 0 auto;
}
@media all and (min-width:0px) and (max-width:960px) {
	.wrap{
		width: 100%;
		padding: 0 6vw;
	}
}
@media all and (min-width:961px) and (max-width:1120px) {
	.wrap{
		width: 92%;
		padding: 0 6vw;
	}
}



/*
// header
///////////////////////////////////////////////////////////////*/
header{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 5rem;
	line-height: 5rem;
	color: var(--c-text);
	background-color: var(--c-white);
	z-index: 1000;
}
header .wrap{
	width: 100%;
	padding: 0;
	text-align: center;
}
@media all and (min-width:0px) and (max-width:960px) {
	header{
		height: 4rem;
		line-height: 4rem;
	}
	header .wrap{
		text-align: left;
		padding-left: 1rem;
	}
}




/*
// main
///////////////////////////////////////////////////////////////*/
main{
	margin-top: 5rem;
	padding: 5rem 0;
}
@media all and (min-width:0px) and (max-width:960px) {
	main{
		margin-top: 4rem;
		padding: 3rem 0 0 0;
	}
}


/*
// nav
///////////////////////////////////////////////////////////////*/


/*
// searchform
///////////////////////////////////////////////////////////////*/
.searchButton{
	position: fixed;
	width: 5rem;
	right: 5rem;
	top: 0;
	z-index: 1300;
	text-align: center;
}
@media all and (min-width:0px) and (max-width:960px) {
	.searchButton{
		width: 4rem;
		right: 4rem;
	}
}

/* content */
.searchContent{
	position: fixed;
	width: 90vw;
	height: 90vh;
	overflow-y: auto;
	top: 5vh;
	left: 5vw;
	padding: 5vh 5vw;
	background-color: var(--c-main);
	color: #fff;
	text-align: left;
	z-index: 2500;
	line-height: 1.5;
}
.searchContent .searchButton-close{
	position: fixed;
	top: 6.5vh;
	right: 6.5vw;
	font-size: 3rem;
	line-height: 1;
}
.searchContent .col-country .col__item:first-child{
	font-size: 1rem;
	font-weight: 400;
}
.searchContent input[type=checkbox]{
	display: none;
}
.searchContent input + label{
	position: relative;
	border: 1px solid #fff;
	border-radius: 5000px;
	transition: 0.3s;
	padding: 0.1em 0.5em;
}
.searchContent input:checked + label{
	background-color: #fff;
	color: var(--c-main);
}
.searchContent input#s{
	background-color: #fff;
	width: 100%;
	padding: 1rem;
	color: var(--c-text);
}
.searchContent input[type=submit]{
	display: block;
	background-color: #fff;
	width: 15rem;
	margin: 3rem auto;
	padding: 1rem;
	color: var(--c-text);
    text-align: center;
    font-weight: 900;
    border-radius: 50px;
}
.searchBg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 2400;
}
@media all and (min-width:0px) and (max-width:960px) {
	.searchContent{
		height: 84vh;
		top: 8vh;
		padding: 6vw;
	}
	.searchContent .searchButton-close{
		top: 5vh;
		right: 10vw;
	}
	.searchContent .col-country .col__item:first-child{
		margin-bottom: 0.5rem;
	}
	.searchContent .col-country + .col-country .col__item:first-child{
		margin-top: 1rem;
	}
}



/*
// hbgButton
///////////////////////////////////////////////////////////////*/
.hbgButton{
	position: fixed;
	right: 0;
	top: 0;
	display: flex;
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	font-size: 2rem;
}
.hbgButton.is-open .hbgButton-open,
.hbgButton.is-close .hbgButton-close{
	display: none;
}
.hbgButton.is-open .hbgButton-close,
.hbgButton.is-close .hbgButton-open{
	display: block;
}
@media all and (min-width:0px) and (max-width:960px) {
	.hbgButton{
		position: fixed;
		right: 0;
		top: 0;
		display: flex;
		width: 4rem;
		height: 4rem;
		font-size: 1.5rem;
	}
}

/*
// hbgContent
///////////////////////////////////////////////////////////////*/
.hbgContent{
	position: fixed;
	width: 100%;
	top: 5rem;
	left: 0;
	padding: 4vw;
	background-color: var(--c-main);
	text-align: left;
	line-height: 1.5;
}
.hbgContent a{
	color: #fff;
}
.hbgContent .content.secondary{
	margin-top: 2rem;
}
@media all and (min-width:0px) and (max-width:960px) {
	.hbgContent{
		top: 4rem;
		padding: 6vw;
	}
}


/*
// section
///////////////////////////////////////////////////////////////*/
.section{
	position: relative;
}
article + section,
section.section + section{
	padding: 5rem 0;
}
@media all and (min-width:0px) and (max-width:960px) {
	main section.section:first-child{
		padding: 0 0 3rem 0;
	}
	section.section + section{
		padding: 3rem 0;
	}
}


/*
// #article
///////////////////////////////////////////////////////////////*/
article > .wrap{
	border-radius: 20px;
	background-color: #fff;
	padding:6vw;
}
@media all and (min-width:0px) and (max-width:960px) {
	article > .wrap{
		border-radius: 0;
		margin-top: -3rem;
		padding-top: 10vw;
		border-top: 1px solid var(--c-gray);
	}
}

/*
// #articleHead
///////////////////////////////////////////////////////////////*/
#articleHead .text-citedfrom{
	font-size: 0.75rem;
	margin-top: 0.5rem;
	color: var(--c-gray);
	text-align: right;
}

/*
// #articleContent
///////////////////////////////////////////////////////////////*/
#articleContent{
}

@media all and (min-width:0px) and (max-width:960px) {
	#articleContent{
		margin-top: -3rem;
	}
}

/*
// #breadcrumb
///////////////////////////////////////////////////////////////*/

#breadcrumb{
	padding-bottom: 0;

}
@media all and (min-width:0px) and (max-width:960px) {
}


/*
// footer
///////////////////////////////////////////////////////////////*/
footer {
	color: #fff;
	background-color: var(--c-main);
	padding-top: 5rem;
}
footer .section,
footer .section + .section{
	padding: 1rem 0;
}
footer .section a:hover{
	text-decoration: underline;
}
@media all and (min-width:0px) and (max-width:960px) {
	footer{
		padding-top: 3rem;
	}
}

/*
// footerHeader
///////////////////////////////////////////////////////////////*/

#footerHeader .wrap{
	display: flex;
	align-items: center;
}
#footerHeader .wrap .content{
	margin-left: 2rem;
}

@media all and (min-width:0px) and (max-width:960px) {
	#footerHeader .wrap{
		flex-direction: column;
	}
	#footerHeader .wrap .content{
		margin-left: 0;
		margin-top: 1rem;
	}
}

/*
// footerContent
///////////////////////////////////////////////////////////////*/
#footerContent{
	margin-bottom: 1.5rem;
}

/*
// footerFooter
///////////////////////////////////////////////////////////////*/
#footerFooter{
	font-size: 0.8rem;
	text-align: center;
	border-top: 1px solid #fff;
}
@media all and (max-width:960px){
}
@media all and (min-width:961px){
}


/*
// wp-XXX
///////////////////////////////////////////////////////////////*/
.wp-block-embed__wrapper > iframe,
.wp-block-embed__wrapper > iframe{
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}
.wp-block-embed__wrapper > .twitter-tweet{
	margin: auto;
}
.wp-block-embed,
.wp-block-image{
	margin: 2rem 0;
}
.wp-block-embed-twitter{
	border: 1px solid var(--c-border);
}

/*
// entry-content
///////////////////////////////////////////////////////////////*/
.entry-content{
	line-height: 2;
	font-size: 1.05rem;
}
.entry-content > *:first-child{
	margin-top: 0;
}

/* block */
.entry-content p,
.entry-content ul,
.entry-content .col,
.entry-content ol{
	margin: 2rem 0;
}

/* list */
.entry-content ul{
	margin-left: 2rem;
	list-style: disc;
}
.entry-content ol{
	background-color: var(--c-bg);
	padding: 1.5rem 1.5rem 1.5rem 3.5rem;
	list-style: decimal-leading-zero;
}
.entry-content ul li,
.entry-content ol li{
	padding-left: 0.5em;
}
.entry-content ol li::marker{
	font-weight: 900;
}


/* table */
.entry-content table{
	width: 100%;
	margin: 2rem auto;
}
.entry-content table tr{
	border-bottom: 1px solid var(--c-lightgray);
}
.entry-content table tr:first-of-type{
	border-top: 1px solid var(--c-lightgray);
}
.entry-content table tr th,
.entry-content table tr td{
	padding: 1rem;
	vertical-align: middle;
}
.entry-content table tr th{
	font-weight: 900;
	background: var(--c-grayL);
}
.entry-content table tr td{
	background: var(--c-white);
}

/* heading */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6{
	margin-top: 4rem;
	line-height: 1.15;
	font-weight: 900;
	position: relative;
}
.entry-content h1,
.entry-content h2{
	margin-top: 5rem;
}
.entry-content h5,
.entry-content h6{
	margin-top: 2.5rem;
}
.entry-content h2 + *,
.entry-content h3 + *,
.entry-content h4 + *,
.entry-content h5 + *{
	margin-top: 2.5rem;
}
.entry-content h6 + *{
	margin-top: 0.75rem;
}
.entry-content h2 + h3,
.entry-content h3 + h4,
.entry-content h4 + h5,
.entry-content h5 + h6{
	margin-top: 1.5rem;
}
.entry-content h1 + *{
	margin-top: 3rem;
}
.entry-content h1{
	font-size: 2.5rem;
	color: var(--c-main);
}
.entry-content h2{
	font-size: 2rem;
    padding: 1.5rem 6vw;
	background-color: var(--c-main);
	color : #fff;
	margin-left: -6vw;
	margin-right: -6vw;
}
.entry-content h3{
	font-size: 1.5rem;
	padding-bottom: 2rem;
}
.entry-content h3::after{
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background-color: var(--c-main);
	position: absolute;
	bottom: 1rem;
}
.entry-content h4{
	font-size: 1.25rem;
}
.entry-content h5{
	font-size: 1.05rem;
}
.entry-content h6{
	font-size: 1rem;
	font-weight: inherit;
}
/* blockquote */
.entry-content blockquote{
	background: #eee;
	padding: 1.5rem;
}
.entry-content blockquote *:first-child{
	margin-top: 0;
}
.entry-content blockquote *:last-child{
	margin-bottom: 0;
}
.entry-content blockquote cite{
	font-size: 0.75rem;
	color: var(--c-main);
}
.entry-content .has-text-align-center{
	text-align: center;
}
.entry-content .has-text-align-right{
	text-align: right;
}
.entry-content label{
	display: block;
}
.entry-content label + label{
	margin-top: 1.5rem;
}

/* a */
.entry-content a{
	text-decoration: underline;
	color: var(--c-accent);
}
.entry-content .link a{
	text-decoration: none;
	color: var(--c-main);
}
.entry-content .link a:hover{
	color: #fff;
}

/* image */
.entry-content figure figcaption{
	font-size: 0.8rem;
	margin-top: 1rem;
}

/* test */
.entry-content em{
	color: var(--c-darkgray);
}
.entry-content figcaption{
	color: var(--c-darkgray);
}

.entry-content textarea,
.entry-content input[type=text],
.entry-content input[type=password],
.entry-content input[type=email],
.entry-content input[type=submit] {
	display: block;
	border: none;
	outline: none;
	height: 3rem;
	margin: 0;
}
.entry-content textarea,
.entry-content input[type=text],
.entry-content input[type=email],
.entry-content input[type=password]{
	border-radius: 5px;
	padding: 1rem;
	width: 100%;
	background: var(--c-bg);
}
.entry-content textarea{
	height: 7rem;
}
.entry-content input[type=checkbox],
.entry-content input[type=radio]{
	margin-right: 0.5em;
}
.entry-content input[type=submit]{
	border-radius: 5px;
	padding: 1rem;
	height: 4rem;
	text-align: center;
	width: 50%;
	margin: 1.5rem auto;
	background: var(--c-text);
	color: #fff;
}
.entry-content input[type=submit]:hover{
	opacity: 0.8;
	cursor: pointer;
}
.entry-content form .addition{
	color: var(--c-gray);
	margin-left: 1rem;
}
.entry-content form .need{
	color: var(--c-main);
	margin-left: 1rem;
}

/* box */
.entry-content .additionalBox{
	border: 1px solid var(--c-border);
	padding: 1.5rem;
	font-size: 0.95em;
}
.entry-content .additionalBox span{
	display: block;
	padding: 0.5rem 1.5rem;
	margin: -1.5rem -1.5rem 1rem -1.5rem;
	background-color: var(--c-main-light);
}

@media all and (min-width:0px) and (max-width:960px) {
	.entry-content{
		font-size: 0.9rem;
	}
	.entry-content h1{
		font-size: 2rem;
	}
	.entry-content h2{
		font-size: 1.4rem;
	}
	.entry-content h3{
		font-size: 1.25rem;
		font-weight: 700;
	}
	.entry-content h4{
		font-size: 1.25rem;
		font-weight: 700;
	}
}