@charset "UTF-8";

/*-------------------------------------------------------------*/
/* 全般定義
/*-------------------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
	font-family: "メイリオ", Meiryo, sans-serif;
	font-size: 1.0rem;
	font-weight: 400;
	line-height: 1.6;
	color: #222222;
	cursor: auto;
	max-width: 1480px;
	margin-left : auto;
	margin-right : auto;
}
img {
	border: 0;
}




/*-------------------------------------------------------------*/
/* ヘッダ
/*-------------------------------------------------------------*/
header {
	background-color: #fff;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
	position: fixed;
	height: 90px;
	width: 100%;
	max-width: 1480px;
	z-index: 102;
	top: 0;
	display: block;
}
#header_area {
	height: 90px;
	width: 100%;
	max-width: 1920px;
/*	margin: auto;
	position: relative;
	top: 0;*/
}

/* ロゴ */
#header_logo {
	margin-left: 16px;
/*	width: auto;*/
	float: left;
	position: relative;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	line-height: 1;
}
#logo {
	height: 60px;
	width: auto;
	display: block;
/*	max-width: 100%;*/
	margin-right: auto;
/*	margin-left: auto;*/
}

/* スマホの場合 */
@media (max-width: 768px) {
    #logo {
        height: 40px; /* スマホでのロゴの高さ */
    }
}

.logo_sub {
    color: #001976;
    font-size: 20px; /* デフォルトのフォントサイズ */
    font-weight: 700;
    text-align: left;
    padding-left: 5px;
    line-height: normal; /* 'normal'の綴りを修正 */
    margin: 0;
}

/* スマホの場合 */
@media (max-width: 768px) {
    .logo_sub {
        font-size: 12px; /* スマホでのフォントサイズ */
    }
}


/* スマホ版のメニュートグルボタン */
.drawer-hamburger {
	display: none;
}

@media screen and (max-width: 1280px) {
	.drawer-hamburger {
		right: 16px;
		position: fixed;
		z-index: 104;
		top: -2px;
		display: block;
		box-sizing: content-box;
		width: 2rem;
		padding-top: 18px;
		padding-right: .75rem;
		padding-bottom: 30px;
		padding-left: .75rem;
		transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		border: 0;
		outline: 0;
		background-color: transparent;
	}
	.drawer-hamburger-icon, .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
		width: 100%;
		height: 2px;
		-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
		transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
		background-color: #222;
	}
	.drawer-hamburger-icon {
		position: relative;
		display: block;
		margin-top: 26px;
	}
	.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
		position: absolute;
		top: -10px;
		left: 0;
		content: ' ';
	}
	.drawer-hamburger-icon::after {
		top: 10px;
	}

	/* メニュー開いたとき */
	.drawer-open-hamburger-icon {
		top: 0px;
		background-color: rgba(0, 0, 0, 0);
	}
	.drawer-open-hamburger-icon::before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 0px;
		background-color: rgba(0, 0, 0, 1);
	}
	.drawer-open-hamburger-icon::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 0px;
		background-color: rgba(0, 0, 0, 1);
	}
}

/* グローバルナビ */
nav {
	height: 90px;
}
nav ul {
	display: flex;
	padding: 0;
	text-align: center;
	margin: 0;
	align-items: center;
/*	justify-content: flex-end;*/
	height: 100%;
}
nav ul li {
	display: inline-block;
	margin-right: 2%;
	height: 100%;
}
nav ul li a{
	height: 100%;
	display: flex;
	align-items: center;
/*	display: block;*/
	padding-left: 1em;
	padding-right: 1em;
	text-decoration: none;
	font-size: 14px;
	transition: all .3s ease 0s;
	color: #222222;
	font-weight: bold;
}
nav ul li a:hover{
	border-bottom: 4px solid #2E008B;
}

/* グローバルナビ背景の黒 */
.drawer-overlay {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
}

@media screen and (max-width: 1280px) {
	#navi_area {
		padding-right: 0;
		top: 90px;
		width: 85%;
		position: fixed;
	}
	nav {
		padding: 12px 24px 24px;
		background-color : #fff;
		height: unset;
	}
	nav ul {
		display: block;
		height: auto;
		background-color : #fff;
	}
	nav ul li {
		display: inline-block;
		margin-right: 2%;
		height: 100%;
		width: 100%;
		margin: 0;
		padding: 0;
		border-width: 0 0 1px 0;
		border-style: solid;
		list-style: none;
		height: 100%;
	}
	nav ul li a:hover{
		border-bottom: none;
	}
	nav ul li:first-child {
		border-width: 1px 0 1px 0;
		border-style: solid;
	}
	nav ul li a {
		padding: 16px;
	}

	/* グローバルナビ非表示 */
	.drawer-nav {
		top: 10px;
		right: -85%;
		transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	}

	/* グローバルナビ表示 */
	.drawer-right {
		right: 0;
		transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	}

	/* 背景の黒 */
	.drawer-open {
	  display: block;
	}
}

/*-------------------------------------------------------------*/
/* フッター
/*-------------------------------------------------------------*/
footer {
	display: block
}
.inner {
	max-width: 1480px;
	margin-left: 20px;
	width: 88%;
	margin-right: auto;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 19px;
	padding-top: 19px;
}
.footer_logo {
	margin-right: 20px;
}
.footer_company {
	font-size: 14px;
}
.footer_address {
	margin-left: auto;
	text-align: right;
}
.footer_address address {
	font-size: 14px;
	font-style: normal;
}
.footer_info_navi_wrap {
	display: flex;
	margin-top: 17px;
}
.footer_info_navi {
	margin-right: 13px;
	color: #656565;
	font-size: 12px;
}
.footer_info_navi  a {
	padding-left: .8em;
	padding-right: .5em;
	color: #656565;
}
.footer_info_navi a + a {
	border-left: 1px solid #656565;
}

@media screen and (max-width: 640px) {
	.inner {
		flex-direction: column;
		justify-content: center;
		margin-left: auto;
	}
	.footer_address {
		margin-right: auto;
		margin-top: 15px;
		text-align: center;
	}
}

/*-------------------------------------------------------------*/
/* メイン部分レイアウト
/*-------------------------------------------------------------*/
main {
	margin-top: 110px;
	flex-wrap: wrap;
	display: flex;
}

/* 左側、利用プラン、利用規約 */
div.contents_box {
	border: solid 0px red;
	box-sizing: border-box;
	width: calc( 40% - 20px );
	margin: 15px;
	max-width : 400px;
}
/*
#service_contents {
	border: solid 0px red;
	width: calc( 100% - 10px );
	height : 160px;
}*/
#user_policy {
	border: solid 1px gray;
	width: calc( 100% - 50px );
/*	height : calc( 100% - 180px );*/
	height : calc( 100% - 50px );
}

/* 右側、申請フォーム */
div.application_box {
	width: calc( 60% - 20px );
	margin: auto;
}

@media screen and (max-width: 709px) {
	div.contents_box {
		width: calc( 100% - 10px );
		max-width : 640px;
	}
	div.application_box {
		width: calc( 100% - 10px );
		margin: 5px;
	}
}

/*-------------------------------------------------------------*/
/* 申請フォーム
/*-------------------------------------------------------------*/
/* 全般定義 */
table{
	border : none;
	width : calc( 100% - 10px );
	margin: 8px;
	border-collapse: collapse;
}
th{
	font-weight: normal;
	padding: 5px;
	text-align : left;
	max-width : 210px;
}
td{
	padding: 5px;
	outline-width: 0;
	width : auto;
}

/* 必須アイコン */
.form-preview-reqiured {
	color: red;
	margin-right: 5px;
	padding: 2px 5px;
	border: red 1px solid;
	font-weight: normal;
	font-size: 14px;
	border-radius: 5px;
}

/* 任意アイコン */
.form-preview-not-reqiured {
	color: #777;
	margin-right: 5px;
	padding: 2px 5px;
	border: #777 1px solid;
	font-weight: normal;
	font-size: 14px;
	border-radius: 5px;
}

/* テキスト入力欄 */
input[type="text"] {
	width: 100%;
	line-height: 32px;
	height: 32px;
	font-size: 16px;
	display: block;
	text-indent: 5px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* select選択 */
select {
	line-height: 32px;
	height: 32px;
	font-size: 16px;
/*	text-indent: 5px;*/
}

/* 数値入力用 */
.inputNVal{
	text-align: right;
	ime-mode:disabled;
}

/* 表示のみ */
.inputDispOnly {
	border :none;
	color : black;
	background-color : #fff;
	appearance: none;
 	-webkit-appearance: none;
	-moz-appearance: none;
}
.inputDispOnly:focus {
	outline :none;
}

/* 見出し表示*/
.cellFixedVal{
	text-align: center;
}

/* セル表示：数値 */
.cellNVal{
	text-align: right;
}

.list, .list th, .list td {
	border: 1px solid gray;
}

/* ボタン */
button {
	font-size: 18px;
	margin: 15px;
	padding: 15px;
	border: 1px solid #ccc;
	background: #efefef;
	border-radius: 5px;
	min-width : 100px;
}

button.key {
	border: 1px solid gray;
	background-color: #001976;
	color: white;
}

button.del {
	border: 1px solid gray;
	background-color: #e085aD;

}

.errorMessage {
	color : red;
}
.errorInput {
	background-color: #ffefef;
}


.disabled_field {
	background-color : #ddd;
}


/*タブレット表示*/
@media screen and (max-width: 709px) {
	table{
		width: calc( 100% - 16px );
	}
}}


/*スマホ表示*/
@media screen and (max-device-width: 640px) {
}
