@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&display=swap);

/* アイコン */
@font-face {
	font-family: icon;
	font-weight: 400;
	font-style: normal;
	src:  url(/assets/fonts/icon.ttf?gkbnvs) format("truetype"),  url(/assets/fonts/icon.woff?gkbnvs) format("woff"),  url(/assets/fonts/icon.svg?gkbnvs#icon) format("svg");
	font-display: block
}
[class*=' icon-'], [class^=icon-] {
	font-family: icon !important;
	font-weight: 400;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-transform: none;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}
.icon-external-link:before {
	content: '\e95e'
}
.icon-chevron-down:before {
	content: '\e92e'
}
.icon-chevron-left:before {
	content: '\e92f'
}
.icon-chevron-right:before {
	content: '\e930'
}
.icon-chevron-up:before {
	content: '\e931'
}

/* ヘッダー */
.p-header {
	position: fixed;
	z-index: 100;
	width: 100%;
	background-color: #fff;
}
.p-header a {
	text-decoration: none;
}
.p-header__inner {
	max-width: 1194px;
	height: 76px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 1194px) {
	.p-header__inner {
		padding: 0 1em;
	}
}
@media screen and (max-width: 768px) {
	.p-header {
		background-color: #fff;
	}
	.p-header__inner {
		height: 48px;
		padding: 0 .65em 0 1.2em;
	}
}
.p-header h1 {
	margin: 0;
	margin-top: 0;
	padding: 0;
}
.p-header .p-header__button {
	display: flex;
	justify-content: end;
}
.p-header .p-header__button li {
	display: inline-block;
	padding: 0;
	margin-left: .6em;
}
.p-header__myaccount a {
	display: inline-block;
	padding: 1rem 1.5rem;
	border: 1px solid #6BC2E5;
	border-radius: 2rem;
	background-color: #fff;
	color: #6BC2E5;
	font-size: .85rem;
	letter-spacing: .05em;
}
.p-header__offer a {
	display: inline-block;
	padding: 1rem 1.5rem;
	border-radius: 2rem;
	background-color: #E0414F;
	color: #fff;
	font-size: .85rem;
	font-weight: bold;
	letter-spacing: .05em;
}
.p-header__nav {
	display: none;
}
.p-header__drawer-menu,
.p-header__drawer-menu span {
	display: none;
}
@media screen and (max-width: 768px) {
	.p-header h1 {
		margin-top: 0;
	}
	.p-header h1 img {
		width: 120px;
	}
	.p-header .p-header__button li {
		margin-left: .5em;
	}
	.p-header__offer a span {
		display: none;
	}
	.p-header__myaccount a,
	.p-header__offer a {
		font-size: .65em;
		padding: .9em;
	}
	.p-header__drawer-menu,
	.p-header__drawer-menu span {
		display: inline-block;
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
		box-sizing: border-box;
	}
	.p-header__drawer-menu {
		position: fixed;
		top: 12px;
		right: 16px;
		width: 28px;
		height: 24px;
		z-index: 101;
		outline: none;
		border: none;
		background-color: transparent;
		cursor: pointer;
	}
	.p-header__drawer-menu span {
		display: inline-block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #6BC2E5;
		z-index: 102;
	}
	.p-header__drawer-menu span:nth-of-type(1) {
		top: 0px
	}
	.p-header__drawer-menu span:nth-of-type(2) {
		top: 11px
	}
	.p-header__drawer-menu span:nth-of-type(3) {
		bottom: 0px
	}
	.p-header__drawer-menu.active {
		top: 18px;
	}
	.p-header__drawer-menu.active span:nth-of-type(1) {
		-webkit-transform: translateY(4px) rotate(45deg);
		transform: translateY(4px) rotate(45deg)
	}
	.p-header__drawer-menu.active span:nth-of-type(2) {
		opacity: 0
	}
	.p-header__drawer-menu.active span:nth-of-type(3) {
		-webkit-transform: translateY(-18px) rotate(-45deg);
		transform: translateY(-18px) rotate(-45deg)
	}
	.p-header__nav {
		display: block;
		width: 100%;
		visibility: hidden;
		background-color: rgba(255, 255, 255, 1);
		padding-bottom: 4rem;
		opacity: 0;
		transition: .3s all;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.p-header__nav.active {
		visibility: visible;
		opacity: 1;
	}
	.p-header__nav.none {
		display: none;
	}
	.p-header__nav-inner {
		padding-top: 64px;
		text-align: center;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.p-header__nav-inner li {
		display: inline-block;
		width: 40%;
		font-size: .8rem;
		margin: 0;
		padding: 0;
	}
	.p-header__nav-inner li a {
		display: inline-block;
		width: 100%;
		color: #6BC2E5;
		font-weight: bold;
		line-height: 2.4;
		padding: 1rem 0;
	}
	.p-header__nav-inner li:nth-child(odd) {
		border-right: 1px solid #6BC2E5;
	}
	.p-header__nav-inner li:nth-child(1),
	.p-header__nav-inner li:nth-child(3) {
		border-bottom: 1px solid #6BC2E5;
	}
	.p-header__nav-inner li:nth-child(2),
	.p-header__nav-inner li:nth-child(4) {
		border-bottom: 1px solid #6BC2E5;
	}
	.p-header__nav-button {
		margin-top: 2rem;
		display: flex;
		justify-content: center;
	}
	.p-header__nav-button li {
		display: inline-block;
		font-size: 1.2rem;
		margin: 0 .6rem;
		padding: 0;
		text-align: center;
	}
	.p-header__nav-button .p-header__myaccount a {
		display: inline-block;
		padding: 1rem 1.5rem;
		border: 1px solid #6BC2E5;
		border-radius: 2rem;
		background-color: #fff;
		color: #6BC2E5;
		font-size: 0.8em;
	}
	.p-header__nav-button .p-header__offer a {
		display: inline-block;
		padding: 1rem 1.5rem;
		border-radius: 2rem;
		background-color: #E0414F;
		color: #fff;
		font-size: .8em;
		font-weight: bold;
	}
	.p-link__ocn {
		margin-top: 2em;
		text-align: center;
		font-size: .8em;
		line-height: 1.5;
		text-decoration: underline;
	}
}
.p-header__nav-after {
	position: fixed;
	z-index: 99;
	top: 76px;
  height: 40px;
	width: 100%;
	text-align: center;
	background-color: #fff;
	padding: 0;
	display: block;
}
.p-header__nav-after-inner {
	max-width: 1194px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.p-header__nav-after li {
	display: inline-block;
}
.p-header__nav-after li a {
	display: inline-block;
	width: 160px;
	color: #6BC2E5;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.8;
	text-decoration: none;
}
@media screen and (max-width: 1194px) {
	.p-header__nav-after-inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.p-header__nav-after li a {
		font-size: 1rem;
		width: auto;
		max-width: 160px;
	}
}
@media screen and (max-width: 768px) {
	.p-header__nav-after {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.p-header__nav-after {
		display: none !important;
	}
}

/* adjust */
.page {
  padding-top: 76px;
}
.page__contents {
	padding-top: 0;
}
@media screen and (min-width: 1120px) {
	.page {
    	padding-top: 76px;
	}
}
@media screen and (max-width: 768px) {
	.page {
		padding-top: 48px;
	}
}

