@charset "UTF-8";

/* css style common */
.u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.header_menu p {
	margin-bottom: 0;
}

.header_menu button {
	position: relative;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.header_menu button[disabled] {
	cursor: default;
}

.header_menu button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.header_menu ul{
	list-style:none;
}

.header_menu .c-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 50px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-align: center;
  word-break: break-all;
  background:#0033AF;
  line-height: 1.375;
	border-radius: 6px;
}

.header_menu .c-button__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: inherit;
	padding: 0px;
	font-weight: bold;
}

/*icon
---------------------------------------------------------- */
@font-face {
	font-family: 'icomoon';
	src:  url('../../../auth/fonts/icomoon.eot?o0g7ro');
	src:  url('../../../auth/fonts/icomoon.eot?o0g7ro#iefix') format('embedded-opentype'),
	url('../../../auth/fonts/icomoon.ttf?o0g7ro') format('truetype'),
	url('../../../auth/fonts/icomoon.woff?o0g7ro') format('woff'),
	url('../../../auth/fonts/icomoon.svg?o0g7ro#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="c-icon-"], [class*=" c-icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.c-icon-arrow-left:before {
	content: "\e900";
}
.c-icon-arrow-right:before {
	content: "\e906";
}

/*layout
----------------------------------------*/
/* ヘッダー */
.l-header{
	width: 100%;
	padding-right:20px;
	padding-left: 20px;
	background-color: #f3f7ff;
}
.l-header__inner {
	position: relative;
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
}

.l-header__content {
	position: relative;
	display: flex;
	padding: 15px 0;
	min-height: 20px;
}
.l-header__content-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: inherit;
	margin: auto;
}

.l-header__head {
	display: flex;
	align-items: center;
	width: 141px;
	height: 20px;
}
.l-header__body {
	display: flex;
	flex: 1 1 0%;
	align-items: center;
	justify-content: flex-end;
	padding-left: 20px;
	min-height: inherit;
}

.l-header__global {
	border-top: 1px solid #0033AF;
}

.l-header__global-item:not(:last-child) {
	border-bottom: 1px solid #CCCCCC;
}
.l-header__global-item:last-child {
	border-bottom: 1px solid #0033AF;
}

.l-header__global-link {
	position: relative;
	display: flex;
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
	padding: 20px;
	padding-right: 45px;
}

.l-header__global-link:hover {
  text-decoration: underline;
}

.l-header__global-link:after {
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0033AF;
  border-right: 2px solid #0033AF;
  content: "";
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-header__global-link-inner {
	position: relative;
}

.l-header__global-text {
/*	font-size: 1.6rem; */
}


.l-header__menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	visibility: hidden;
	pointer-events: none;
	z-index: 10;
}
.l-header__menu[aria-hidden="false"] {
	visibility: visible;
	pointer-events: auto;
	top: 50px;
}

.l-header__menu-inner {
	position: relative;
	z-index: 9999;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.l-header__menu-inner::-webkit-scrollbar {
	display: none;
}

.l-header__hamburger {
	display: block;
	position: relative;
	width: 25px;
	height: 20px;
}

.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-bar:nth-child(1) {
	transform: translate(0) rotate(-45deg);
}
.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-bar:nth-child(2) {
	opacity: 0;
}
.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-bar:nth-child(3) {
	transform: translate(0) rotate(45deg);
}

.l-header__hamburger-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.l-header__hamburger-bars {
	display: block;
}

.l-header__hamburger-bar {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background-color: #0033AF;
	transition: 0.3s;
	transition-property: opacity, transform;
}
.l-header__hamburger-bar:nth-child(1) {
	transform: translateY(-8px);
}
.l-header__hamburger-bar:nth-child(2) {
	transform: translateY(0);
}
.l-header__hamburger-bar:nth-child(3) {
	transform: translateY(8px);
}

.l-header__button {
	max-width: calc(800px + 20px);
	margin-right: auto;
	margin-left: auto;
	padding: 40px 20px 70px;
}

.logo-center {
	padding: 15px;
	text-align: center;
}

.logo-center > a {
	display: inline-block;
	width: 141px;
	height: 20px;
	margin: 0 auto;
}

.logo-center > a img {
	width: 141px;
	height: 20px;
}

