@charset 'utf-8';

/*===============================================
 共通パーツ base.css
===============================================*/
/*=======================================================
 - ～414.9px	：スマートフォン縦画面 (iPhone XS Max)
 - 415px ～		：タブレット環境
 - 700px ～		：切り替えが必要な場合
 - 970px ～		：PC環境
 - ～1399.9px	：iPad Pro 12.9横幅基準
 - ～1579.9px	：横幅最大値

●基本割合
・2等分：width:48%
・3等分：width:30.6%;
・4等分：width:22%;
・2分割：width:30%＆66% or 38%＆58%
=======================================================*/
@media print, screen and (min-width: 415px) {
}
@media print, screen and (min-width: 700px) {
}
@media print, screen and (min-width: 970px) {
}
@media print, screen and (min-width: 1400px) {
}
@media print, screen and (min-width: 1580px) {
}



/*===============================================
 Noto Sans CJK JP
 https://firstlayout.net/use-noto-sans-japanese-fast/
===============================================*/
@font-face {
	font-family: 'Noto Sans CJK JP Subset';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans CJK JP'),
		local('NotoSansCJKjp-Regular'),
		local('NotoSansJP-Regular'),
		url(../../inc/font/NotoSansCJKjp-Regular.woff2) format('woff2'),
		url(../../inc/font/NotoSansCJKjp-Regular.woff) format('woff'),
		url(../../inc/font/NotoSansCJKjp-Regular.ttf) format('truetype');
}

@font-face {
	font-family: 'Noto Sans CJK JP Subset';
	font-style: normal;
	font-weight: 700;
	src: local('NotoSansCJKjp-Bold'),
		local('NotoSansJP-Bold'),
		url(../../inc/font/NotoSansCJKjp-Bold.woff2) format('woff2'),
		url(../../inc/font/NotoSansCJKjp-Bold.woff) format('woff'),
		url(../../inc/font/NotoSansCJKjp-Bold.ttf) format('truetype');
}



/*===============================================
 基本要素
===============================================*/
/* BODY */
* {
	box-sizing: border-box;
}

/* IE11用 */
.ie,
.edge {
	min-height: 100vh;
}
.ie *,
.edge * {
	min-height: 0%;
}

html {
	font-size: 62.5%; /* 基本フォントサイズ10px */
}

body {
	background: #fff;
	color: #000;
	counter-reset: counter;
	font-family: 'Noto Sans JP','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Arial,Verdana,sans-serif;
	/*font-family: 'Noto Sans','Noto Sans CJK JP','Noto Sans CJK JP Subset','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Arial,Verdana,sans-serif;*/
	font-size: 1.4rem;
	min-height: 100vh;
	line-height: 1.6;
	letter-spacing: .06em;
	overflow-x: hidden;
	max-width: 100vw;
	-webkit-text-size-adjust: 100%;
}

@media print, screen and (min-width: 700px) {
	body {
		font-size: 1.5rem;
	}
}

@media print, screen and (min-width: 970px) {
	body {
		font-size: 1.6rem;
	}
}

/* pタグ基本設定 */
p {
	letter-spacing: .1em;
}

p.right {
	text-align: right;
}

/* imgタグ基本設定 */
img {
	display: block;
	height: auto;
	max-height: 100%;
	width: auto;
	max-width: 100%;
	-ms-interpolation-mode: bicubic;
}

img.lazy {
	margin: 0 auto;
}

/* iframeタグ基本設定 */
iframe {
	pointer-events: none; /* ポインター無効化 */
}

/* input系 */
input[type='text'],
select {
	background: #fff;
	border: 1px solid #808080;
	padding: 5px;
	width: 100%;
}

input[type='text']:focus {
	outline: 0;
}

/* アンカー用 */
.anchor {
	display: block;
	margin-top: -60px;
	padding-top: 60px;
}

@media print, screen and (min-width: 970px) {
	.anchor {
		margin-top: -130px;
		padding-top: 130px;
	}
}



/*===============================================
 全体枠
===============================================*/
.container {
	display: flex;
	flex-direction : column;
	min-height: 100vh;
	padding: 44px 0 0;
	position: relative;
	width: 100%;
	max-width: 100vw;
}

@media print, screen and (min-width: 970px) {
	.container {
		padding: 80px 0 0;
	}
}

/* タブレット等はみ出し防止 */
.iphone .container,
.ipad .container,
.an .container {
	overflow-x: hidden;
	max-width: 100%;
}

.iphone .container {
	height: 100%;
}



/*===============================================
 ヘッダー
===============================================*/
.header {
	background: #fff;
	height: 44px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 100vw;
	z-index: 100;
}

@media print, screen and (min-width: 970px) {
	.header {
		height: 80px;
	}
}

.header_inner {
	position: relative;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_inner {
		margin: 0 auto;
		width: 100%;
		max-width: 1400px;
	}
}

@media print, screen and (min-width: 1100px) {
	.header_inner {
		width: 95%;
	}
}


/*
 ヘッダー タイトル
===============================================*/
.header_title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 44px;
	padding: 0 50px 0 10px;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title {
		height: 80px;
		padding: 0;
		width: 45%;
		max-width: 450px;
	}
}

.header_title h1 {
	height: 100%;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title h1 {
		padding: 15px 0;
	}
}

.header_title h1 a {
	align-items: center;
	display: flex !important;
	height: 100%;
	width: 100%;
}

.header_title h1 img {
	max-height: 44px;
	width: auto;
	max-width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_title h1 img {
		height: auto;
		max-height: 100px;
	}
}

.ie .header_title h1 img {
	width: 100%
}

.header_title h1 span {
	display: block;
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 0;
}


/*
 ヘッダー ナビ
===============================================*/
.header_navi {
	background: #fff;
	width: 100%;
}

@media print, screen and (max-width: 969.9px) {
	.header_navi {
		display: none;
		max-height: calc(100vh - 44px - 80px);
		overflow-y: scroll;
		position: fixed;
		top: 44px;
		z-index: 100;
	}
}

@media print, screen and (min-width: 970px) {
	.header_navi {
		height: 80px;
		width: 53%;
		min-width: calc(100% - 500px);
	}
}

.header_menu_wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

@media print, screen and (max-width: 969.9px) {
	.header_menu_wrap {
		flex-direction : column;
		margin: 0 0 20px;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_wrap {
		height: 80px;
		width: 100%;
	}
}

/* 大リンク */
.header_menu {
	position: relative;
}

@media print, screen and (max-width: 969.9px) {
	.header_menu {
		line-height: 40px;
		width: 100%;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu {
		flex-grow: 1;
		height: 100%;
		line-height: 80px;
	}
}

/* 大リンク本体 */
.header_menu_link {
	cursor: pointer;
	display: block;
	font-weight: bold;
	position: relative;
	width: 100%;
}

@media print, screen and (max-width: 969.9px) {
	.header_menu_link {
		border-bottom: 1px solid #474240;
		margin: 0 auto;
		padding: 0 15px;
		width: 90%;
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_link {
		font-size: 1.4rem;
		text-align: center;
	}
}

@media print, screen and (max-width: 969.9px) {
	.header_menu_link:before {
		bottom: 0;
		content: '→';
		display: block;
		height: 100%;
		right: 0;
		position: absolute;
	}

	.header_menu_parent .header_menu_link:before {
		content: '＋';
	}

	.header_menu_parent .header_menu_link.open:before {
		content: '－';
	}
}

@media print, screen and (min-width: 970px) {
	.header_menu_link:before {
		background: #fc9c15;
		bottom: 10px;
		content: '';
		display: block;
		height: 2px;
		left: 50%;
		position: absolute;
		transform: translate(-50%,0) scale(0,1);
		transition: transform .2s;
		width: 70%;
		z-index: 102;
	}

	.pointhover .header_menu_link:before,
	.active .header_menu_link:before,
	.hover .header_menu_link:before {
		transform: translate(-50%,0) scale(1,1);
	}
}

.header_menu_link span {
	position: relative;
	z-index: 102;
}

.header_menu_link.external:after {
	margin: 0;
}

.header_menu_link.external.hover:after {
	background-image: url(../../images/common/external_black.png);
}

/* サブリンク */
.header_menu_sublist {
	display: none;
	margin: 0 auto;
	width: 90%;
}

@media print, screen and (min-width: 970px) {
	.header_menu_sublist {
		background: #fff;
		border-bottom: 1px solid #ccc;
		line-height: 2.1;
		margin: 0 0 -1px;
		padding: 0;
		overflow: hidden;
		position: absolute;
		top: 80px;
		width: 300px;
		z-index: 101;
	}

	.header_menu_sublist {
		border: 1px solid #ccc;
		border-bottom: none;
	}

	.header_menu_sublist.right {
		right: 0;
	}
}

.header_menu_sublist dd {
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.header_menu_sublist dd {
		border-bottom: 1px solid #ccc;
		float: left;
		height: 61px;
	}
}

.header_sublink {
	display: block;
	height: 100%;
	line-height: 40px;
	padding: 10px;
	width: 100%;
}

@media print, screen and (max-width: 969.9px) {
	.header_sublink {
		border-bottom: 1px solid #474240;
		margin: 0 auto;
		padding: 0 0 0 10%;
	}
}

.header_sublink.hover {
	background: #fc9c15;
	color: #fff;
}


/*
 ヘッダー 開閉ボタン
===============================================*/
.sp_open {
	align-items: center;
	background: #333;
	display: flex;
	flex-direction : column;
	height: 44px;
	line-height: 1.3;
	position: fixed;
	right: 0;
	text-align: center;
	text-decoration: none;
	top: 0;
	width: 44px;
	z-index: 101;
}

.sp_open_symbol {
	background: #fff;
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 20px;
}

.sp_open_symbol:before,
.sp_open_symbol:after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

.sp_open_symbol:before{
	margin-top: -8px;
}

.sp_open_symbol:after{
	margin-top: 8px;
}

.open .sp_open_symbol {
	height: 0;
	left: 15px;
}

.open .sp_open_symbol:before,
.open .sp_open_symbol:after {
	margin: 0;
	width: 20px;
	left: 40%;
}

.open .sp_open_symbol:before{
	transform: rotate(-45deg);
	transform-origin: center center;
}

.open .sp_open_symbol:after{
	transform: rotate(-135deg);
}

.sp_close {
	align-items: center;
	background: #5b5654;
	color: #fff;
	display: flex;
	justify-content: center;
	line-height: 50px;
	width: 100%;
}

.sp_close_symbol {
	display: inline-block;
	height: 15px;
	margin: 0 0 0 5px;
	position: relative;
	width: 15px;
}

.sp_close_symbol:before,
.sp_close_symbol:after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	width: 15px;
}

.sp_close_symbol:before{
	transform: rotate(-45deg);
}

.sp_close_symbol:after{
	transform: rotate(-135deg);
}

@media print, screen and (min-width: 970px) {
	.sp_open,
	.sp_close {
		display: none;
	}
}



/*===============================================
 フッター
===============================================*/
.footer {
	background: #4a4a4a;
	color: #fff;
	padding: 25px 0;
	position: relative;
	width: 100%;
	max-width: 100vw;
	z-index: 2;
}

.footer_inner {
	font-size: 1.2rem;
	margin: 0 auto;
	position: relative;
	width: 90%;
}

@media print, screen and (min-width: 970px) {
	.footer_inner {
		font-size: 1.3rem;
		max-width: 1400px;
	}
}


/*
 フッター ロゴ
===============================================*/
.footer_logo {
	margin: 0 auto 20px;
	width: 100%;
	max-width: 450px;
}


/*
 フッター インフォ
===============================================*/
.footer_info {
	margin: 0 auto;
	width: 100%;
}

/* フッター リンク */
.footer_link {
	margin: 0 auto 20px;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.footer_link {
		margin: 0;
		max-width: 48%;
	}
}

.footer_link a {
	color: #fff;
	display: block;
	margin: 0 0 10px;
	width: 100%;
}

.footer_link a:last-child {
	margin: 0;
}

@media print, screen and (min-width: 970px) {
	.footer_link a {
		margin: 0;
		width: auto;
	}

	.footer_link a:last-child {
		margin: 0 0 0 20px;
	}
}

.footer_link a.hover {
	text-decoration: underline;
}

/* フッター コピーライト */
.footer_copyright {
	margin: 0 auto;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.footer_copyright {
		max-width: 48%;
	}
}



/*===============================================
 コンテンツ大枠
===============================================*/
.wrap {
	align-items: center;
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	height: auto;
	position: relative;
	width: 100%;
}



/*===============================================
 コンテンツ
===============================================*/
.contents {
	flex: 1 0 auto;
	margin: 0 0 120px;
	width: 100%;
}



/*===============================================
 汎用 コンテンツブロック
===============================================*/
.content_wrap {
	padding: 50px 0 0;
	width: 100%;
}

@media print, screen and (min-width: 970px) {
	.content_wrap {
		padding: 120px 0 0;
	}
}

/* .block→h3 .sblock→h4 */
.block {
	margin: 0 0 60px;
	position: relative;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.block {
		margin-bottom: 90px;
	}
}

/* ブロック内ブロック */
.sblock {
	margin: 0 auto 30px;
	position: relative;
	width: 90%;
	max-width: 1400px;
}

@media print, screen and (min-width: 700px) {
	.sblock {
		margin-bottom: 90px;
	}
}

.block:nth-last-of-type(1),
.sblock:nth-last-of-type(1) {
	margin-bottom: 0;
}


/*
 汎用 要素均等整列用
===============================================*/
.box_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.box_wrap.start {
	justify-content: flex-start;
}

.box_wrap.center {
	justify-content: center;
}

.box_wrap.end {
	justify-content: flex-end;
}


/*
 可視要素表示用
===============================================*/
/* 大要素 */
.elem_fadein {
	opacity: 0;
	transform: translate(0,100px);
	transition: opacity .4s, transform .3s;
}

/* 小要素 */
.elem_fadein_mini {
	opacity: 0;
	transform: translate(0,50px);
	transition: opacity .2s, transform .4s;
}

/* 表示 */
.elem_fadein.scrollin,
.elem_fadein_mini.scrollin {
	opacity: 1;
	transform: translate(0,0);
}



/*===============================================
 各種タイトル
===============================================*/
/*
 ページトップタイトル枠
===============================================*/
.title_wrap {
	background: #fff no-repeat center center;
	background-size: cover;
	height: 260px;
	overflow: hidden;
	position: relative;
}


/*
 パンくず(ページトップタイトル内パーツ)
===============================================*/
.breadcrumb {
	background: rgba(0,0,0,.2);
	bottom: 0;
	font-size: 1.2rem;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top: 0;
	width: 100%;
}

@media print, screen and (max-width: 414.9px) {
	.breadcrumb {
		display: none;
	}
}

.breadcrumb ul {
	color: #fff;
	min-height: 100%;
	margin: 0 auto;
	width: 90%;
	max-width: 1400px;
}

.breadcrumb li:not(:last-child):after {
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	content: '';
	display: inline-block;
	height: .5em;
	margin: 0 13px 0 9px;
	position: relative;
	top: -.1em;
	transform: rotate(45deg);
	width: .5em;
}

.breadcrumb a {
	color: #fff;
	text-decoration: underline;
}

.breadcrumb a.hover {
	text-decoration: none;
}


/*
 ページトップタイトル
===============================================*/
.title_wrap_inner {
	background: #fc9c15;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 45%;
	max-width: 410px;
}

@media print, screen and (min-width: 415px) {
	.title_wrap_inner {
		height: calc(100% - 40px);
		top: 40px;
	}
}

@media print, screen and (min-width: 970px) {
	.title_wrap_inner {
		height: 235px;
		left: 5%;
		top: 0;
		width: 40%;
	}
}

@media print, screen and (min-width: 1580px) {
	.title_wrap_inner {
		left: calc((100% - 1400px) / 2);
	}
}

.title-h2 {
	color: #fff;
	font-size: 2.2rem;
	left: 50%;
	letter-spacing: .2rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
}

@media print, screen and (min-width: 700px) {
	.title-h2 {
		font-size: 3rem;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
	}
}

.title-h2 span {
	display: block;
	width: 100%;
}

@media print, screen and (min-width: 415px) {
	.title-h2 span {
		width: auto;
	}
}

@media print, screen and (min-width: 700px) {
	.title-h2 span {
		padding: 0 50px;
	}
}

.title-h2 .title {
	letter-spacing: .07em;
	margin: 0 0 10px;
}

.title-h2 .title_a {
	font-family: 'Barlow Condensed';
	font-size: 1.4rem;
}

@media print, screen and (min-width: 700px) {
	.title-h2 .title_a {
		font-size: 1.8rem;
	}
}


/*
 汎用ページ タイトル
===============================================*/
/* 大タイトル(block) */
.title-h3 {
	color: #333;
	font-size: 2.3rem;
	font-weight: bold;
	letter-spacing: .2rem;
	line-height: 1;
	margin: 0 0 40px;
	padding: 25px 0 0;
	position: relative;
	text-align: center;
	width: 100%;
}

@media print, screen and (min-width: 415px) {
	.title-h3 {
		font-size: 2.1rem;
		margin: 0 0 60px;
		padding: 40px 0 0;
	}
}

@media print, screen and (min-width: 700px) {
	.title-h3 {
		font-size: 2.9rem;
	}
}

.title-h3:before,
.title-h3:after {
	background: #f25f5c;
	content: '';
	height: 5px;
	left: calc(50% - 20px);
	position: absolute;
	top: 0;
	transform: translate(-50%,0);
	width: 40px;
}

.title-h3:after {
	background: #ffbd30;
	left: calc(50% + 20px);
}

@media print, screen and (min-width: 415px) {
	.title-h3:before,
	.title-h3:after {
		left: calc(50% - 35px);
		width: 70px;
	}

	.title-h3:after {
		left: calc(50% + 35px);
	}
}

/* 中タイトル(sblock) */
.title-h4 {
	border-top: 1px solid #dbdce2;
	display: flex;
	flex-wrap: wrap;
	font-size: 2rem;
	font-weight: bold;
	justify-content: space-between;
	line-height: 1;
	margin: 0 0 25px;
	padding: 25px 0 0;
	position: relative;
	width: 100%;
}

.title-h4.small {
	padding: 25px 0 0;
	font-size: 2rem;
}

.title-h4.middle {
	padding: 20px 0 0;
	font-size: 2rem;
}

.title-h4 .title {
	line-height: 1.2;
	margin: 0 0 10px;
	width: 100%;
}

.title-h4 .date {
	font-size: 1.5rem;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h4 {
		font-size: 2.6rem;
		margin: 0 0 40px;
		padding: 35px 0 0;
	}

	.title-h4.middle {
		font-size: 2.4rem;
		padding: 30px 0 0;
	}

	.title-h4 .title {
		margin: 0;
		max-width: 80%;
	}

	.title-h4 .date {
		font-size: 2rem;
		text-align: right;
		max-width: 18%;
	}
}

.title-h4:before {
	background: #ffbd30;
	content: '';
	height: 5px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 25%;
}

/* タイトル毎リンク */
.title-h4 a.titlelink {
	display: block;
	position: relative;
	width: 100%;
}

.title-h4 a.titlelink:after {
	background: url(../../images/common/arrow_black.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	height: 1em;
	position: absolute;
	right: 5px;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	top: 0;
	width: 1em;
}

.title-h4 a.titlelink.hover:after {
	transform: translate(5px,0);
}

/* タイトル下カテゴリ */
.title-h4 + .under_category {
	margin: -20px 0 20px;
	text-align: right;
	width: 100%;
}

/* 小タイトル(blog等) */
.title-h5 {
	align-items: center;
	background: #f3f3f5;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: bold;
	justify-content: space-between;
	min-height: 50px;
	margin: 0 0 10px;
	padding: 0 0 0 50px;
	position: relative;
	width: 100%;
}

.ie .title-h5 {
	height: 68px;
}

.title-h5 .title {
	line-height: 1.2;
	width: 100%;
}

.title-h5 .date {
	display: none;
	font-size: 1.4rem;
	width: 100%;
}

@media print, screen and (min-width: 700px) {
	.title-h5 {
		font-size: 2rem;
		min-height: 68px;
		margin: 0 0 20px;
	}

	.title-h5 .title {
		max-width: 50%;
	}

	.title-h5 .date {
		display: block;
		padding: 0 10px 0 0;
		text-align: right;
		max-width: 50%;
	}
}

.title-h5:before,
.title-h5:after {
	background: #f25f5c;
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 15px;
}

.title-h5:after {
	background: #ffbd30;
	left: 15px;
}

/* タイトル下カテゴリ */
.title-h5 + .category_wrap {
	margin: 0 0 20px;
	width: 100%;
}

.title-h5 + .category_wrap .category {
	color: #666;
	font-size: 1rem;
}

.title-h5 + .category_wrap .date {
	font-size: 1.1rem;
}

@media print, screen and (min-width: 700px) {
	.title-h5 + .category_wrap {
		flex-flow: row-reverse;
	}

	.title-h5 + .category_wrap .category {
		font-size: 1.4rem;
	}

	.title-h5 + .category_wrap .date {
		display: none;
	}
}



/*===============================================
 ページトップリンク
===============================================*/
.pagetop {
	align-items: center;
	background: rgba(252,156,21,.8);
	bottom: 0;
	height: 40px;
	position: fixed;
	right: 0;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 40px;
	z-index: 98;
}

@media print, screen and (min-width: 700px) {
	.pagetop {
		height: 50px;
		width: 50px;
	}
}

@media print, screen and (min-width: 700px) {
	.pagetop {
		bottom: 0;
	}
}

@media print, screen and (min-width: 1580px) {
	.pagetop {
		right: 50%;
		transform: translate(790px,0);
	}
}

.pagetop:before {
	background: url(../images/common/pagetop.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	height: 50%;
	left: calc(50% + 2px);
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 40%;
}

@media print, screen and (min-width: 700px) {
	.pagetop:before {
		left: calc(50% + 3px);
	}
}

.pagetop.hover:before {
	transform: translate(-50%,calc(-50% - 5px));
}

.ie .pagetop.hover:before {
	transform: translate(-50%,-60%);
}

.pagetop span {
	display: block;
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 0;
}



/*===============================================
 ページ注釈文
===============================================*/
.page_explanation {
	align-items: center;
	bottom: 0;
	color: #000;
	font-size: 1.1rem;
	line-height: 40px;
	height: 40px;
	position: absolute;
	right: 40px;
	z-index: 98;
}

@media print, screen and (min-width: 700px) {
	.page_explanation {
		bottom: 0;
		height: 50px;
		line-height: 50px;
		padding: 0 15px;
		right: 50px;
	}
}

@media print, screen and (min-width: 1580px) {
	.page_explanation {
		right: 50%;
		transform: translate(740px,0);
	}
}

.page_explanation span {
	display: block;
}



/*===============================================
 大要素以外のリンク関連
===============================================*/
/*
 基本設定
===============================================*/
a {
	color: #2b2b2b;
	text-decoration: none;
	transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/*
 アンダーバー
===============================================*/
a.textlink,
a .textlink {
	text-decoration: underline;
}

a.textlink.hover,
a.hover .textlink {
	text-decoration: none;
}


/*
 hover後にアンダーバー
===============================================*/
a.atextlink,
a .atextlink {
	text-decoration: none;
}

a.atextlink.hover,
a.hover .atextlink {
	text-decoration: underline;
}


/*
 透明度
===============================================*/
a.opacity:not(.box_wrap) {
	display: block;
}

.opacity {
	transition: all .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.opacity.hover,
span.opacity.hover,
a.hover .opacity {
	opacity: .7;
}


/*
 外部リンク
===============================================*/
a.external:after {
	background: url(../../images/common/external_black.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: inline-block;
	height: 1em;
	margin: 0 0 0 .5em;
	width: 1em;
}

a.external.white:after {
	background-image: url(../../images/common/external_white.png);
}

a.external.hover:after {
	background-image: url(../../images/common/external_white.png);
}

a.external.textlink.hover:after {
	background-image: url(../../images/common/external_black.png);
}



/*===============================================
 リスト類
===============================================*/
/*
 ポチありリスト(タイトル有りはdl)
===============================================*/
.list_dl dt {
	font-weight: bold;
	letter-spacing: .1em;
}

.list_dl dd,
.list_ul li {
	letter-spacing: .1em;
	line-height: 1.6;
	padding: 0 0 0 1.2em;
	position: relative;
}

.list_dl dd:before,
.list_ul li:before {
	background: #000;
	border-radius: 50%;
	content: '';
	height: .35em;
	left: 0;
	position: absolute;
	top: .675em;
	width: .35em;
}


/*
 ※ありリスト
===============================================*/
.notes_ul li {
	letter-spacing: .1em;
	line-height: 1.6;
	padding: 0 0 0 1em;
	position: relative;
}

.notes_ul li:before {
	content: '\203B';
	left: 0;
	position: absolute;
}


/*
 数字リスト
===============================================*/
.ol_number_counter {
	counter-reset: counter;
}

.ol_number_counter li {
	line-height: 1.6;
	padding: 0 0 0 1.5em;
	position: relative;
}

.ol_number_counter li:not(:last-child) {
	margin: 0 0 5px;
}

.ol_number_counter li:before {
	content: counter(counter)'.';
	counter-increment: counter;
	left: 0;
	position: absolute;
}

/* 数字リスト 0つき数字. */
.ol_number_counter.ecimal-leading-zero li:before {
	content: counter(counter, decimal-leading-zero)'.';
}

/* 数字リスト ローマ数字(小文字). */
.ol_number_counter.lower-roman li:before {
	content: counter(counter, lower-roman)'.';
}

/* 数字リスト ローマ数字(大文字). */
.ol_number_counter.upper-roman li:before {
	content: counter(counter, upper-roman)'.';
}

/* アルファベット 小文字. */
.ol_number_counter.lower-alpha li:before {
	content: counter(counter, lower-alpha)'.';
}

/* アルファベット 大文字. */
.ol_number_counter.upper-alpha li:before {
	content: counter(counter, upper-alpha)'.';
}

/* アルファベット 漢数字、 */
.ol_number_counter.cjk-ideographic li:before {
	content: counter(counter, cjk-ideographic)'、';
}

/* ひらがな、 */
.ol_number_counter.hiragana li:before {
	content: counter(counter, hiragana)'、';
}

/* カタカナ、 */
.ol_number_counter.katakana li:before {
	content: counter(counter, katakana)'、';
}

/* いろは、 */
.ol_number_counter.hiragana-iroha li:before {
	content: counter(counter, hiragana-iroha)'、';
}

/* イロハ、 */
.ol_number_counter.katakana-iroha li:before {
	content: counter(counter, katakana-iroha)'、';
}



/*===============================================
 テーブル基本設定
===============================================*/
.page_table {
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	letter-spacing: .1rem;
	margin: 0 auto;
	table-layout: fixed;
	width: 100%;
	max-width: 1000px;
}

.page_table th,
.page_table td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 5px 15px;
}

@media print, screen and (min-width: 700px) {
	.page_table th,
	.page_table td {
		font-size: 1.4rem;
	}
}

@media print, screen and (min-width: 970px) {
	.page_table th,
	.page_table td {
		font-size: 1.6rem;
		padding: 10px 25px;
	}
}

.page_table th {
	background: #eee;
	font-weight: bold;
}

@media print, screen and (max-width: 699.9px) {
	.page_table:not(.multiple) th,
	.page_table:not(.multiple) td {
		display: block;
		width: 100%;
	}
}

/* 先頭行colspan時の幅指定用tr */
.page_table .collapse {
	height: 0 !important;
	visibility: collapse !important;
}

.page_table .collapse th,
.page_table .collapse td {
	height: 0 !important;
	padding: 0 !important;
	border-bottom: none !important;
}

.page_table .collapse + tr th {}

/* 複数列設定 各ページで設定 以下基本設定 */
@media print, screen and (max-width: 699.9px) {
	.page_table.multiple tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.page_table.multiple th,
	.page_table.multiple td {
		display: flex;
		width: 50%;
	}
 }

.page_table caption {
	font-size: 1.7rem;
	font-weight: bold;
	margin: 0 0 20px;
}

@media print, screen and (min-width: 415px) {
	.page_table caption {
		font-size: 2.1rem;
	}
}



/*===============================================
 ページ使用パーツ類
===============================================*/
/*
 矢印ボタン装飾
===============================================*/
.arrow {
	background: #4d4d4d;
	border-radius: 16px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 32px;
	padding: 0 .9em;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

@media print, screen and (min-width: 700px) {
	.arrow {
		font-size: 1.3rem;
	}
}

@media print, screen and (min-width: 970px) {
	.arrow {
		border-radius: 18px;
		font-size: 1.4rem;
		line-height: 36px;
		padding: 0 1.2em;
	}
}

.arrow.red { background-color: #f25f5c;}
.arrow.orange { background-color: #f1a020;}
.arrow.green { background-color: #62baab;}

html:not(.edge):not(.ie) .arrow:after {
	background: url(../../images/common/arrow_white.png) no-repeat center center;
	background-size: contain;
	content: '';
	display: block;
	margin: 0 0 0 .5em;
	transition: transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 1em;
}

.ie .arrow,
.edge .arrow {
	background-image: url(../../images/common/arrow_white.png);
	background-repeat: no-repeat;
	background-position: 90% 50%;
	background-size: 1em;
}

/* もっと見る */
.ie .arrow.more,
.edge .arrow.more {
	padding: 0 2em 0 .5em;
	width: 9em;
}

/* リンク時 */
a .arrow {
	transition: opacity .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.arrow.hover,
a.hover .arrow {
	opacity: .7;
}

html:not(.edge):not(.ie) a.arrow.hover:after,
html:not(.edge):not(.ie) a.hover .arrow:after {
	transform: translate(5px,0);
}

.ie a.arrow.hover,
.ie a.hover .arrow,
.edge a.arrow.hover,
.edge a.hover .arrow {
	background-position: 92% 50%;
}



/*
 要素共通Shadow
===============================================*/
.boxshadow {
	box-shadow: 0 0 10px rgba(34,34,34,.1);
}



/*===============================================
 印刷用
===============================================*/
@media print {
	.header {
		height: 53px !important;
		position: absolute !important;
	}

	.header_title {
		height: 100% !important;
	}

	.header_title h1 {
		height: 100% !important;
		width: 300px !important;
		max-width: calc(100% - 100px - 5px) !important;
		min-width: 0 !important;
	}

	.header_title a {
		height: 100% !important;
	}

	.header_title a img {
		margin: 6px 0 0 !important;
	}

	.header_navi,
	.header_entry_wrap,
	.sp_open {
		display: none !important;
	}

	.container {
		padding: 53px 0 0 !important;
	}
}