:root {
	--header-color: rgba(0, 108, 183, 1);
	--header-color_over: rgba(0, 108, 183, 0.9);

	--blue-contents_out: rgba(0, 108, 183, 1);
	--blue-contents_over: rgba(0, 108, 183, 0.9);

	--pc-height: 80px;
	--sp-height: 68px;

	--font-gothic: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', arial, sans-serif;
	--font-mincho: 'Hiragino Mincho ProN', '游明朝', 'ＭＳ Ｐ明朝', serif;
}

* {
	margin: 0;
	padding: 0;
	line-height: 1;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', arial, sans-serif;
	color: #000;
	-webkit-text-size-adjust: 100%; /* for iPhone */
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx) {
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}

ul, ol { list-style: none; }
fieldset, img { border: none; }
table { border-collapse: collapse; }
a, a:focus, *:focus { outline: none; }

a:link {
	text-decoration: none;
	color: rgba(0, 104, 183, 1);
}

a:visited {
	text-decoration: none;
	color: rgba(0, 104, 183, 0.5);
}

a:hover, 
a:active {
	text-decoration: underline;
}

.clearfix:before {
	display: table;
	content: '';
}

.clearfix:after {
	display: table;
	content: '';
	clear: both;
}

#main {
	margin: var(--sp-height) 0 0;
	padding: 0;
}

@media (min-width: 1130px) {
	#main {
		margin: var(--pc-height) 0 0;
	}
}

/****************************
  header sp
****************************/

.header {
	position: fixed;
	z-index: 200;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: var(--sp-height);
	margin: 0;
	padding: 0;
	background-color: var(--header-color);
	transition: all 0.5s;
}

.header.hide {
	transform: translateY(-68px);
}

#logo {
	width: calc(100% - 68px);
	margin: 0;
	padding: 0 0 0 20px;
}

#logo > a {
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 16px;
	line-height: var(--sp-height);
	color: #fff;
	text-decoration: none;
}

@media (min-width: 400px) {
	#logo > a {
		padding: 0;
	}
}

#nav-toggle {
	display: flex;
	justify-content: center;
	position: absolute;
	z-index: 400;
	top: 0;
	right: 0;
	width: var(--sp-height);
	height: var(--sp-height);
	margin: 0 auto;
	padding: 0;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#nav-toggle > div {
	width: 20px;
	height: 14px;
	margin: 27px 0 0;
	padding: 0;
	position: relative;
}

#nav-toggle span {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #98A6B5;
	background-color: #fff;
	left: 0;
	transition: 0.2s;
}

#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 6px;
}
#nav-toggle span:nth-child(3) {
	top: 12px;
}
.open #nav-toggle span:nth-child(1) {
	top: 6px;
	transform: rotate(-45deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 6px;
	transform: rotate(45deg);
}

/****************************
  header pc
****************************/

@media (min-width: 1130px) {
	#nav-toggle {
		display: none;
	}

	.header {
		height: var(--pc-height);
		background-color: var(--header-color);
	}

	.header.hide {
		transform: translateY(-80px);
	}

	.header > div {
		display: table;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
	}

	#logo {
		display: table-cell;
		margin: 0;
		vertical-align: middle;
		text-align: left;
	}

	#logo > a {
		display: block;
		margin: 0;
		padding: 0;
		text-decoration: none;
	}
}
@media (min-width: 1200px) {
	.header > div {
		width: 100%;
	}
}

/****************************
  global_nav
****************************/

@media (max-width: 1129px) {
	#global_nav {
		position: fixed;
		z-index: 200;
		transform: translateY(-100%);
		top: 0;
		right: 0;
		display: block;
		width: 100%;
		background-color: var(--header-color);
		margin: 0;
		padding: 10px 30px 30px;
		text-align: left;
	}

	#global_nav > ul {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	#global_nav > ul > li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 1);
		text-align: left;
		font-weight: normal;
		font-style: normal;
		font-size: 16px;
		line-height: 1;
	}

	#global_nav > ul > li.border_none {
		border-bottom: 1px solid transparent;
	}

	#global_nav > ul > li > a {
		display: block;
		margin: 0;
		padding: 18px 0;
		text-align: left;
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 1;
		color: #fff;
		text-decoration: none;
		transition: all 0.3s;
	}

	#global_nav > ul > li:last-child, 
	#global_nav > ul > li:last-child > a {
		border-bottom: none;
	}

	#global_nav > ul > li > a:hover, 
	#global_nav > ul > li > a.active {
		text-decoration: none;
	}

	.open #global_nav {
		overflow-y: auto;
		bottom: 0;
		top: var(--sp-height);
		transform: translateY(0);
	}

	#global_nav > ul > li ul {
		margin: 0;
		padding: 0 0 20px;
	}

	#global_nav > ul > li ul > li > a {
		display: block;
		margin: 0;
		padding: 15px 0 15px 16px;
		text-align: left;
		font-weight: normal;
		font-size: 15px;
		line-height: 1;
		color: #fff;
		text-decoration: none;
	}
}
@media (min-width: 1130px) {
	#global_nav {
		display: table-cell;
		position: static;
		transform: none;
		width: initial;
		height: 100%;
		margin: 0;
		padding: 0 20px 0 0;
		vertical-align: middle;
		text-align: right;
	}

	#global_nav > ul {
		width: initial;
		margin: 0;
		padding: 0;
	}

	#global_nav > ul > li {
		display: inline-block;
		margin: 0;
		padding: 0;
		vertical-align: middle;
		text-align: center;
		font-weight: normal;
		font-style: normal;
		line-height: 1;
		position: relative;
	}

	#global_nav > ul > li, 
	#global_nav > ul > li ul > li > a {
		font-size: 14px;
	}

	#global_nav > ul > li > a {
		display: block;
		margin: 0;
		padding: 0 8px;
		line-height: var(--pc-height);
		color: rgba(255, 255, 255, 1);
		text-decoration: none;
	}

	#global_nav > ul > li > a:hover, 
	#global_nav > ul > li > a.active {
		color: rgba(179, 225, 201, 1);
		text-decoration: none;
	}

	#global_nav > ul > li ul {
		position: absolute;
		z-index: 1;
		top: 60px;
		right: 50%;
		transform: translateX(50%);
		width: initial;
		text-align: center;
		white-space: nowrap;
		transition: all 0.2s ease;
		visibility: hidden;
		opacity: 0;
	}

	#global_nav > ul > li:hover ul {
		top: 80px;
		visibility: visible;
		opacity: 1;
	}

	#global_nav > ul > li ul > li {
		text-align: center;
	}

	#global_nav > ul > li ul > li > a {
		display: block;
		padding: 0 15px;
		background-color: var(--header-color);
		line-height: 40px;
		color: #fff;
		text-decoration: none;
	}

	#global_nav > ul > li ul > li > a:hover {
		background-color: var(--header-color_over);
		color: #fff;
		color: rgba(179, 225, 201, 1);
		text-decoration: none;
	}
}
@media (min-width: 1300px) {
	#global_nav > ul > li > a {
		padding-right: 15px;
		padding-left:  15px;
	}
}
@media (min-width: 1400px) {
	#global_nav > ul > li > a {
		padding-right: 20px;
		padding-left:  20px;
	}
}

@media (max-width: 1129px) {
	#global_nav > ul .view_pc {
		display: none;
	}
}
@media (min-width: 1130px) {
	#global_nav > ul > li.view_sp {
		display: none;
	}
}

/****************************
  footer
****************************/

#footer {
	width: 100%;
	margin: 0 auto;
	padding: 30px 15px;
	background-color: var(--header-color);
	text-align: center;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
}

#footer a {
	color: #fff;
}

#now_year {
	padding-right: 5px;
}

/****************************
  fix footer
****************************/

body, 
#wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#footer {
	margin-top: auto;
}

/****************************
  toTop
****************************/

a#toTop {
	display: none;
	position: fixed;
	z-index: 150;
	right: 15px;
	bottom: 100px;
	width: 58px;
	height: 68px;
	margin: 0;
	padding: 0;
	background-position: left top;
	background-size: 58px 68px;
	background-repeat: no-repeat;
	background-image: url(../images/icon_totop.svg);
	text-decoration: none;
}

@media (min-width: 600px) {
	a#toTop {
		right: 15px;
		bottom: 100px;
	}
}

/****************************
  effect
****************************/

@media (max-width: 820px) {
	.effect .effect_each, 
	.effect_scroll .effect_scroll_each {
		opacity: 1;
		transition: none 0 ease 0;
	}

	.effect_slide_left, 
	.effect_slide_right, 
	.effect_slide_top, 
	.effect_slide_bottom {
		transform: translate(0, 0);
	}
	.effect_view {
		transform: translate(0, 0);
	}

	.effect .effect_each.delay1, 
	.effect_scroll .effect_scroll_each.delay1, 
	.effect .effect_each.delay2, 
	.effect_scroll .effect_scroll_each.delay2, 
	.effect .effect_each.delay3, 
	.effect_scroll .effect_scroll_each.delay3, 
	.effect .effect_each.delay4, 
	.effect_scroll .effect_scroll_each.delay4, 
	.effect .effect_each.delay5, 
	.effect_scroll .effect_scroll_each.delay5, 
	.effect .effect_each.delay6, 
	.effect_scroll .effect_scroll_each.delay6, 
	.effect .effect_each.delay7, 
	.effect_scroll .effect_scroll_each.delay7 {
		transition-delay: 0;
	}
}
@media (min-width: 821px) {
	.effect .effect_each, 
	.effect_scroll .effect_scroll_each {
		opacity: 0;
		transition: all 1.5s ease 0s;
	}

	.effect_slide_left {
		transform: translate(20px, 0);
	}

	.effect_slide_right {
		transform: translate(-20px, 0);
	}

	.effect_slide_top {
		transform: translate(0, 20px);
	}

	.effect_slide_bottom {
		transform: translate(0, -20px);
	}

	.effect_view {
		transform: translate(0, 0);
	}

	.effect .effect_each.delay1, 
	.effect_scroll .effect_scroll_each.delay1 {
		transition-delay: 0.4s;
	}

	.effect .effect_each.delay2, 
	.effect_scroll .effect_scroll_each.delay2 {
		transition-delay: 0.6s;
	}

	.effect .effect_each.delay3, 
	.effect_scroll .effect_scroll_each.delay3 {
		transition-delay: 0.8s;
	}

	.effect .effect_each.delay4, 
	.effect_scroll .effect_scroll_each.delay4 {
		transition-delay: 1.0s;
	}

	.effect .effect_each.delay5, 
	.effect_scroll .effect_scroll_each.delay5 {
		transition-delay: 1.2s;
	}

	.effect .effect_each.delay6, 
	.effect_scroll .effect_scroll_each.delay6 {
		transition-delay: 1.4s;
	}

	.effect .effect_each.delay7, 
	.effect_scroll .effect_scroll_each.delay7 {
		transition-delay: 1.6s;
	}
}

/**/

.effect_matrix .effect_matrix_each {
	display: block;
	overflow: hidden;
}

.effect_matrix .effect_matrix_each .inn {
	display: block;
	opacity: 0;
	transform: matrix(1, 0, 0, 1, 0, 100);
	transition: 1.2s ease 0s;
}

.effect_matrix.is-animated .effect_matrix_each .inn {
	opacity: 1;
	transform: matrix(1, 0, 0, 1, 0, 0);
}

.effect_matrix .effect_matrix_each .inn.delay1 {
	transition-delay: 0.4s;
}

.effect_matrix .effect_matrix_each .inn.delay2 {
	transition-delay: 0.8s;
}

.effect_matrix .effect_matrix_each .inn.delay3 {
	transition-delay: 1.2s;
}

.effect_matrix .effect_matrix_each .inn.delay4 {
	transition-delay: 1.6s;
}

.effect_matrix .effect_matrix_each .inn.delay5 {
	transition-delay: 2s;
}

.effect_matrix .effect_matrix_each .inn.delay6 {
	transition-delay: 2.4s;
}

.effect_matrix .effect_matrix_each .inn.delay7 {
	transition-delay: 2.8s;
}

/****************************
  pagination
****************************/

.pagination {
	width: 100%;
	margin: 0px auto 30px;
	padding: 0;
	text-align: center;
}

.pagination a, 
.pagination span {
	display: inline-block;
	min-width: 28px;
	height: 28px;
	line-height: 28px;
	margin: 0 2px;
	padding: 0 2px;
	text-align: center;
	font-weight: normal;
	font-size: 14px;
}

.pagination a:link, 
.pagination a:visited {
	background-color: #f6f6f6;
	background-color: transparent;
	color: #000;
	text-decoration: none;
}

.pagination a:hover, 
.pagination a:active, 
.pagination a.active, 
.pagination span {
	background-color: var(--blue-contents_out);
	color: #fff;
	text-decoration: none;
}

.pagination a.active {
	pointer-events : none;
}

.pagination span.disabled {
	background-color: transparent;
	color: #aaa;
}

.icon_angle {
	font-size: 14px;
}

.pagination a.nav_page {
	background-color: transparent;
	color: #000;
}

@media (max-width: 768px) {
	.pagination {
		text-align: left;
	}
}

/****************************
  misc
****************************/

a.readmore {
	display: inline-block;
	width: 180px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--header-color);
	background-color: #fff;
	vertical-align: top;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 42px;
	color: var(--header-color);
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	transition: all 0.3s;
}

a.readmore:hover {
	background-color: var(--header-color);
	color: #fff;
}

.responsive {
	width: 100%;
	height: initial;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

.lang_select_nav {
	margin: 0;
	padding: 0 0 0 34px;
	background-position: left center;
	background-size: 22px 22px;
	background-repeat: no-repeat;
	background-image: url(../images/icon_earth_black.svg);
}

#global_nav .lang_select_nav {
	background-image: url(../images/icon_earth_white.svg);
}

.lang_select_nav select {
	display: inline-block;
	margin: 0;
	padding: 5px 2px;
	border: none;
	text-align: left;
	font-weight: normal;
	font-size: 13px;
	line-height: 1;
	color: #6e6e6e;
	outline: none;
}

h1 {
	margin: 0;
	padding: 30px 15px;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
}
