@font-face {
	font-family: 'NotoSansJP-Regular';
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'NotoSansJP-Bold';
	src: url(../fonts/Noto_Sans_JP/NotoSansJP-SemiBold.ttf) format('truetype');
}

:root {
	--pc-height: 100px;
	--sp-height: 68px;
	--blue-bg_out: rgba(92, 187, 238, 1);
	--blue-text:          rgba(0, 141, 215, 1);
	--blue-contents_out:  rgba(0, 141, 215, 1);
	--blue-contents_over: rgba(0, 141, 215, 0.85);
	--blue-link_out:  rgba(0, 104, 183, 1);
	--blue-link_over: rgba(0, 104, 183, 0.8);
}

* {
	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', 'NotoSansJP-Regular', '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: 0;
	padding: var(--sp-height) 0 0;
}

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

/****************************
  header
****************************/

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

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

#logo > a {
	display: block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

#logo > a > img {
	width: 260px;
	height: initial;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

#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: #000;
	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);
}

/****************************
  SP
****************************/

@media (max-width: 1199px) {
	#logo {
		position: fixed;
		z-index: 300;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: var(--sp-height);
		margin: 0;
		padding: 5px 0 0 5px;
		border-bottom: 1px solid #ccc;
		background-color: rgba(255, 255, 255, 1);
		text-align: left;
	}

	#global_nav {
		position: fixed;
		z-index: 200;
		transform: translateY(-100%);
		top: 0;
		right: 0;
		display: block;
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
		margin: 0;
		padding: 0;
		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 #ccc;
		text-align: left;
		font-weight: normal;
		font-style: normal;
		font-size: 16px;
		line-height: 1;
	}

	#global_nav > ul > li > a {
		display: block;
		margin: 0;
		padding: 20px 0px 20px 30px;
		text-align: left;
		font-weight: normal;
		font-size: 16px;
		line-height: 1;
		color: #000;
		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);
	}
}

/****************************
  PC
****************************/

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

	.header {
		height: var(--pc-height);
		border-bottom: 1px solid #ccc;
		background-color: rgba(255, 255, 255, 1);
	}

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

	.header > div {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin: 0;
		padding: 0 20px;
	}

	#logo {
		display: inline-block;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	#logo > a {
		margin: 0;
		padding: 0;
		text-decoration: none;
	}

	#global_nav {
		position: static;
		transform: none;
		width: initial;
		height: 100%;
		margin: 0;
		padding: 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 10px;
		vertical-align: middle;
		text-align: center;
		font-weight: normal;
		font-style: normal;
		font-size: 15px;
		line-height: 1;
		position: relative;
	}

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

	#global_nav > ul > li > a:hover, 
	#global_nav > ul > li > a.active {
		color: rgba(255, 110, 13, 1);
		text-decoration: none;
	}

	#global_nav > ul > li.privacypolicy {
		display: none;
	}
}
@media (min-width: 1250px) {
	#logo > a > img {
		width: 330px;
		height: initial;
	}

	#global_nav > ul > li {
		padding-right: 15px;
		padding-left:  15px;
	}
}

#global_nav > ul > li#register {
	padding: 20px 0;
	text-align: center;
}

#global_nav > ul > li#register > a {
	display: inline-block;
	margin: 0;
	padding: 13px 30px 13px 18px;
	border-radius: 8px;
	background-color: rgba(255, 110, 13, 1);
	background-image: url(../images/icon_button_readmore.svg);
	background-position: right 15px center;
	background-size: 8px 12px;
	background-repeat: no-repeat;
	box-shadow: 0px 3px rgba(171, 69, 0, 1);
	text-align: center;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}

#global_nav > ul > li#register > a > b {
	display: inline-block;
	margin: 0 7px 0 0;
	padding: 0 3px;
	border-radius: 2px;
	background-color: #fff;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 21px;
	color: rgba(255, 110, 13, 1);
}

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

#global_nav > ul > li#register > a:hover {
	top: 0px;
	background-color: rgba(255, 110, 13, 0.85);
	box-shadow: 0px 3px rgba(171, 69, 0, 1);
}

#global_nav > ul > li#register > a:active {
	top: 2px;
	box-shadow: 0px 2px rgba(171, 69, 0, 1);
}

@media (min-width: 1200px) {
	#global_nav > ul > li#register {
		padding: 0 0 0 10px;
	}
}

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

#footer {
	width: 100%;
	margin: 0;
	padding: 20px 0 20px;
	border-top: 3px solid var(--blue-contents_out);
	text-align: left;
}

#footer > div {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

#footer > div > .footer_logo {
	width: 250px;
	margin: 0;
	padding: 0 0 0 5px;
	text-align: left;
}

#footer > div > .footer_logo > a {
	display: block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

#footer > div > ul {
	margin: 0;
	padding: 0;
	text-align: left;
}

#footer > div > ul > li {
	display: inline-block;
	margin: 0;
	padding: 20px 0 0 15px;
}

#footer > div > ul > li > a {
	color: #000;
}

@media (min-width: 1200px) {
	#footer {
		padding: 40px 0 40px;
	}

	#footer > div {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 1200px;
	}

	#footer > div > .footer_logo {
		width: 300px;
		padding: 0;
	}

	#footer > div > ul {
		margin: 0;
		padding: 0;
		text-align: right;
	}

	#footer > div > ul > li {
		display: inline-block;
		margin: 0;
		padding: 0 0 0 2em;
	}

	#footer > div > ul > li > a {
		color: #000;
	}
}

#copy {
	display: block;
	margin: 0;
	padding: 30px 15px 0;
	text-align: left;
	font-size: 13px;
	line-height: 1;
}

#copy, 
#copy a {
	color: #000;
}

#copy > span {
	display: inline-block;
	padding-right: 3px;
	padding-left: 3px;
}

@media (min-width: 1200px) {
	#copy {
		padding: 40px 0 0;
		text-align: center;
	}
}

/****************************
  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: 20px;
	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: 30px;
		bottom: 20px;
	}
}

/****************************
  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;
	}
}

/****************************
  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: 130px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--blue-contents_out);
	background: transparent;
	vertical-align: top;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 34px;
	color: var(--blue-contents_out);
	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(--blue-contents_out);
	color: #fff;
}

a.readmore.white {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

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

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

/****************************
  button
****************************/

.button_wrapper {
	margin: 0 auto;
	padding: 80px 0 0;
	text-align: center;
}

a.button_blue {
	display: inline-block;
	margin: 0 auto;
	padding: 15px 55px 15px 45px;
	border-radius: 8px;
	background-color: var(--blue-contents_out);
	background-image: url(../images/icon_button_readmore.svg);
	background-position: right 15px center;
	background-size: 8px 12px;
	background-repeat: no-repeat;
	box-shadow: 0px 4px rgba(1, 94, 143, 1);
	text-align: center;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}

a.button_blue:hover, 
a.button_blue:active {
	text-decoration: none;
}

a.button_blue:hover {
	top: 0px;
	background-color: var(--blue-contents_over);
}

a.button_blue:active {
	top: 2px;
	box-shadow: 0px 2px rgba(1, 94, 143, 1);
}
