﻿@charset "utf-8";
/* ----------------------------------------------------------------------------------------------------
*DESIGN2
//color,background-colorなどは各color.cssで定義されています。あわせてご確認ください。//

*01-BASE/共通
    01-body
	02-globalStyles
	03-link
	04-buttons
	05-forms
	06-table
    07-list
    08-content
	09-box
    10-footer
	11-header
	12-Navigation
	13-title
	
*02-TOP/トップページ
    //A-共通スタイルをトップページのみスタイル変更したい場合　id="index"　を親にして変更する//
    ----------------------------------------------------
    A-01-content
	A-02-footer
	A-03-header
	A-04-Navigation
    ----------------------------------------------------
    //B-TOP PAGE専用スタイル
    B-01-content
    B-02-box
	B-03-title
	B-04-info//お知らせ
	B-05-listLink//リンク設定
	B-06-login//ログイン
	----------------------------------------------------

*03-FREE/トップページ用自由項目
	01-title
	02-other//管理画面データ入力時に使用スタイル

*04-MYPAGE/マイページ
	01-buttons
	02-box
	03-title
	04-info//お知らせ
	05-listLink//リンク設定

*05-CONTACT/お問い合わせ

*06-JQUERY CUSTOM/jquery ui使用箇所にカスタマイズスタイルをあてる

*07-OTHER/システムで使用されているその他のページ

*08-REG/登録ページ
	01-buttons
	02-forms
	03-table
	04-content
    05-box
*
*09-支払い
    01-支払い選択画面
	02-銀行決済画面
	03-クレジット決済画面

*10-FREE SPACE
    //上記に用意していないスタイルを記述
    //任意のスタイルを追加してください --author nameをクラス名に使うなど差別化のおすすめ
*---------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------
*
*01-BASE
*
*---------------------------------------------------------------------------- */
/* ==========================================================================
01-01
========================================================================== */
body, html {
	min-height: 100%;
}
body {
	font-size: 15px;
	line-height: 1.5;
	font-family: Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
	letter-spacing: 1px;
}
/* ==========================================================================
01-02
========================================================================== */

.visible {
	opacity: 1;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.nopadding {
	padding: 0;
}
.float-right {
	float: right;
}
.font-bold {
	font-weight: 600;
}
.font-normal {
	font-weight: 500;
}
.color-red {
	color: rgba(245,77,39,1.00);
}
.row.row-reverse {
	display: block;
}
.font-large {
	font-size: 140%;
}
.font-small {
	font-size: 80%;
}
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

hr {
	border: none;
	border-bottom: solid 1px;
	box-sizing: border-box;
	display: block;
	height: 0;
	border-color: #dcdcdc;
	margin-bottom: 1em;
}
.ErrorContent {
	color: #a94442;
}


/* ========================================================================
01-03
========================================================================== */

/* --各カラーcssで定義-- */
a {
}
a:hover {
    }

/* ========================================================================
01-04
========================================================================== */

.btn {
	margin: 0 auto;
	display: block;
	position: relative;
}
.btn a {
	width: auto;
	height: auto;
	color: #fff;
	display: block;
	padding: 1em 2em;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	position: relative;
	border-radius: 6px;
}
.btn a:hover {

}
.btn a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0da";
	position: absolute;
	right: 1em;
	top: 50%;
	line-height: 1em;
	margin-top: -0.5em;
}
.btn a:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0da";
	position: absolute;
	right: 1em;
	top: 50%;
	line-height: 1em;
	margin-top: -0.5em;
}
.btn i {
}
.btn a > i {
	margin-right: 0.5em;
	position: relative;
	left: 0;
}
.btn a:hover > i {
	position: relative;
	right: -5px;
}
.btn a:hover:before {
	right: 0.5em;
}
/* ==========================================================================
01-05
========================================================================== */

input[type="text"], input[type="password"], textarea, select {
	font-size: 100%;
	font-weight: 500;
}
select {
	padding: 0.25em 0.25em 0.5em 0.25em;
}


input[type="button"], input[type="submit"] {
    /* --DESIGN2各カラー共通-- */
	border: solid 1px #ababab;
	background-color: #f2f2f2;
	border-radius: 3px;
	box-shadow: 1px 1px 1px 2px rgba(255,255,255,0.05) inset;
	font-weight: 600;
}
input[type="button"]:hover, input[type="submit"]:hover {
	background-color: #eee;/* --DESIGN2各カラー共通-- */
}
input[type="radio"] {
}
input[type="checkbox"] {
}
label > input[type="radio"], label > input[type="checkbox"] {
	margin: 0 0.35em 0 0;
}
input[type="radio"] + label, input[type="checkbox"] + label {
	margin: 0 0.35em;
}

/* ==========================================================================
01-06
========================================================================== */
/* --グリッドレイアウト-- */
.grid {
	display: table;
	width: 100%;
	margin: 0;
}
.grid ul {
	display: table-row;
	width: 100%;
	margin: 0;
	padding: 0;
}
.grid li {
	display: table-cell;
	margin: 0;
	padding: 0;
	line-height: 0;
}
/* ---------------------------------------------- */
/* --<th> 横並び-- */
.table {
	border-collapse: separate;
	border-spacing: 0;
	border: solid 1px #ccc;
	margin: 0 auto;
}
.table td, .table th {
	padding: 0.5em 1em;
}
.table td {
	border-top: solid 1px #ccc;
}
.table th {
	background-color: #eee;
}

/* ---------------------------------------------- */
/* --<th> 縦並び-- */
.table-vartical {
	border-collapse: separate;
	border-spacing: 0;
	border: solid 1px #ccc;
}
.table-vartical td {
	padding: 0.5em 1em;
	border-left: solid 1px #ccc;
	border-top: solid 1px #ccc;
}
.table-vartical tr:first-child td, .table-vartical tr:first-child th {
	border-top: none;
}
.table-vartical th {
	background-color: #eee;
	padding: 0.5em 1em;
	width: 240px;
	border-top: solid 1px #ccc;
	text-align: left;
	vertical-align: middle;
}

/* ==========================================================================
01-07
========================================================================== */
/* --定義つきリスト横並び-- */
.dl-horizontal {
}
.dl-horizontal dt {
	float: left;
	width: 120px;
	clear: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dl-horizontal dd {
	/*border-bottom: solid 1px #ccc;*/
	padding-left: 130px;
	position: relative;
}
/* ---------------------------------------------- */
/* --定義つきリスト縦並び-- */
.dl-vertical {
}
.dl-vertical dt {
	padding: 0.75em 0 0 0;
}
.dl-vertical dd {
}
/* ---------------------------------------------- */
/* --リストデフォルト設定 （エディタ使用箇所）-- */
/*
 .inner li {
        list-style-position:inside;
     
    }
*/
.inner.editor ul{
        margin-left:18px;
    }
.inner.editor ol{
        margin-left:22px;
    }
/* ---------------------------------------------- */
/* --リスト縦並び　黒丸-- */

.li-circle {
	margin-left: 0;
}
.li-circle li {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 1em;
	margin-left: 1.25em;
}
/* ---------------------------------------------- */
/*リスト縦並び　数字　*/
.li-decimal {
	margin-left: 0;
}
.li-decimal li {
	list-style: decimal;
	list-style-position: outside;
	margin-bottom: 1em;
	margin-left: 1.25em;
}



/* ==========================================================================
01-08
========================================================================== */

section {
	padding: 0;
	font-size: 100%;
}
.container {
	width: 90%;
	min-width: 1000px;
	max-width: 1380px;
	height: 100%;
	margin: 0 auto; 
}
.wrap {
	width: 100%;
	height: auto;
}


#main { 
	width: 970px;
	margin: 0 auto;
}
/* ==========================================================================
01-09
========================================================================== */
/* --グリッドレイアウト-- */
.row {
	margin-left: -1em;
	margin-right: -1em;
	margin-bottom: 0;
	display: -webkit-box; /* --- Androidブラウザ用 --- */
	display: -ms-flexbox; /* --- IE10 --- */
	display: -webkit-flex; /* --- safari（PC）用 --- */
	display: flex;
	-webkit-box-align: stretch; /* --- Androidブラウザ用 --- */
	-ms-flex-align: stretch; /* --- IE10 --- */
	-webkit-align-items: stretch; /* --- safari（PC）用 --- */
	align-items: stretch;
}
.col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
	position: relative;
	min-height: 1px;
	padding-left: 1em;
	padding-right: 1em;
}
.col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {

}


.col_12 {
	width: 100%;
}
.col_11 {
	width: 91.66666667%;
}
.col_10 {
	width: 83.33333333%;
}
.col_9 {
	width: 75%;
}
.col_8 {
	width: 66.66666667%;
}
.col_7 {
	width: 58.33333333%;
}
.col_6 {
	width: 50%;
}
.col_5 {
	width: 41.66666667%;
}
.col_4 {
	width: 33.33333333%;
}
.col_3 {
	width: 25%;
}
.col_2 {
	width: 16.66666667%;
}
.col_1 {
	width: 8.33333333%;
}

/* ----------------------------------------------------- */

.content {/* --トップページでは使われてません-- */
	width: auto;
	height: auto;
	padding: 0em;
}

.inner {
}
.content > .inner {
	padding-bottom: 1em;
}

.btn_block {
	text-align: center;
	padding-top: 0.5em;
}


.area-btn {/* --主にTOP,MYPAGEで使用-- */
	text-align: center;
	padding-top: 1em;
}


/* ==========================================================================
01-10
========================================================================== */

footer {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.inner-footer {
	padding: 0;
	margin: 0 auto;
	height: 100px;
	width: 970px;
	position: relative;
	overflow: hidden;
}
footer p {
}
/* --フッターテキスト-- */
.footer-copy {
	height: auto;
	text-align: center;
	padding: 1em 0;
	width: 970px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}
/* --フッター画像-- */
footer img.img-footer {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}
/* ----------------------------------------------------- */
/* --スクロール-- */
.scroll {
	position: fixed;
	bottom: 50px;
	right: 50px;
	display: none;
	z-index: 2;
}
.scroll i:before {
	content: "\f077";
	font-size: 25px;
}
.btn-scroll-top {
	text-align: center;
	display: block;
}
.scroll a {
	width: 50px;
	height: auto;
	padding-bottom: 0.75em;
	padding-top: 0.75em;
	border-radius: 50%; 
}
/* ==========================================================================
01-11
========================================================================== */
.header {
	width: 970px;
	margin: 0 auto;
}
/* ----------------------------------------------------- */
/* --ヘッダー画像エリア-- */
h1.title-head {
	font-size: 180%;
	font-style: italic;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	height: 140px;
	width: 100%;
	position: relative;
	overflow: hidden;
}
h1.title-head:before {
	position: absolute;
	left: 0;
	bottom: 0.5em;
	height: 4px;
	width: 100%;
	content: "";
	display: block;
	z-index: 2;
}
/* --ヘッダー画像-- */
.img-head {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}
/* ----------------------------------------------------- */
/* --logo-- */
.logo {
	position: absolute;
	left: 1em;
	top: 0.5em;
	z-index: 1;
}
.logo img {
	width: 200px;
}
/* ----------------------------------------------------- */
/* --ヘッダーナビ/言語切替/ユーザーネーム/ログイン履歴/ログアウト-- */
.nav-head {
	width: 970px;
	height: auto;
	margin: 0 auto;
}
.nav-head a {
	display: inline-block; 
}
.nav-head a:hover {

}
.nav-head ul {
	width: 100%;
	margin: 0 auto;
	text-align: right;
	display: table;
	font-size: 13px;
    list-style:none
}
.nav-head ul > li {
	padding: 0em;
	text-align: right;
	display: table-cell;
	height: 38px;
	vertical-align: middle
}
.nav-head ul > li:first-child, .nav-head ul > li:only-child {
}
.nav-head ul > li span {
	font-weight: 600;
	height: auto;
	vertical-align: middle;
}
/* --ユーザーネーム-- */
.nav-head ul > li.li-user {
	padding-right: 1.5em;
}
.nav-head ul > li.li-user span.myid {
	padding-left: 2em;
}
.myid {
	font-weight: 600;
	position: relative;
	padding-left: 1.5em;
}
/* --言語切替-- */
.nav-head ul > li.li-language {
	width: 100%;
    vertical-align:top
}
select.select-language {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	box-sizing: content-box;
}
 select.select-language::-ms-expand {
 display: none;
}
label.custom-select {
	position: relative;
}
label.custom-select:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f107";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	pointer-events: none;
	font-size: 20px;
}
.nav-head select.select-language {
	
	border-radius: 0 0 4px 4px;
	border: none;
	line-height: 2em;
	padding: 0 2em 0 1em;
	height: 2em;
	margin-bottom: 0.25em;
}
/* --ログアウト-- */
.nav-head ul > li.li-logout {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 120px;
}
.logout {
	display: block;
}
.logout a {
	display: inline-block;
	padding: 0.5em 1em 0.5em 2.5em;
	height: 100%;
	width: 120px;
	position: relative;
	vertical-align: middle;
    border-left:dotted 1px #555
}
.logout a:hover {
}

/* --ログイン履歴-- */
.nav-head ul > li.li-history {
	padding-right: 0.25em;
	width: 120px;
	text-align: left
}
.nav-head ul > li.li-history .history {
	display: inline-block;
	width: 125px
}
.nav-head ul > li.li-history .history a {
	display: inline-block;
	font-weight: 500;
	padding: 0.25em 0.5em 0.25em 2em;
	text-align: center;
	border-radius: 4px;
	position: relative;
}
/* --アイコンの定義-- */
.nav-head span:before, .nav-head .logout a:before, .nav-head ul > li.li-history .history a:before {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1em;
	margin-top: -0.5em;
}
.nav-head ul > li.li-history .history a:before {
	content: "\f1da";
	left: 0.5em;
}
.nav-head span.myid:before {
	content: "\f007";
	left: 0.5em;
}
.nav-head span.logout a:before {
	content: "\f08b";
	left: 1.25em;
}



/* ==========================================================================
01-12
========================================================================== */
.nav {
	width: 940px;
	height: auto;
	padding-bottom: 0.5em;
	margin: 0 auto;
}
.nav ul {
	margin-bottom: 0;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	list-style-type: none;
    display: -webkit-box; /* --- Androidブラウザ用 --- */
    display: -ms-flexbox; /* --- IE10 --- */
	display: -webkit-flex;
	display: flex;
   -webkit-box-pack:center;
        -ms-flex-pack:center;
        -webkit-justify-content: center;
        justify-content: center;
        align-items: center;
	width: 100%; 
}
.nav li {
	position: relative;
	margin: 0;
	-ms-flex:1 0 0%;
    flex:1;
	font-weight: 600;
}
.nav li a {
	display: block;
	padding: 0.5em 1em;
	position: relative;
	width: auto;
	margin: 0 1px;
}
.nav li a:hover {

}
.nav li a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0da";
	position: absolute;
	left: 0em;
	top: 50%;
	margin-top: -0.5em;
}
.nav li:nth-child(2) a:before {
}
.nav li:nth-child(3) a:before {
}
.nav li:nth-child(4) a:before {
}


/* ==========================================================================
01-13
========================================================================== */
h1 {/* --title-headで使用-- */
}
h2 {
	width: 970px;
	padding: 0.5em 1em 1.5em 0;
	margin: 0 auto;
}
h2 > span {
	width: auto;
	display: block;
	margin: 0 auto;
}
h3, h4 {
	position: relative; 
}
h3 {
	padding: 0.5em 0.5em 0.5em 1em;
	border-top: solid 1px #232323;
	border-bottom: solid 1px #232323;
	position: relative;
}
h3 > span {
}
h3:before {
	display: inline-block;
	content: "";
	width: 0.35em;
	position: absolute;
	left: 0;
	top: 0.5em;
	height: 1em;
}
h2 > span, h4 > span {
	vertical-align: middle;
}
h4{}
h5{}
h4:before, h5:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 0.25em;
	vertical-align: middle;
}


/* ----------------------------------------------------------------------------
*
*02-TOP//トップページ専用
*
*---------------------------------------------------------------------------- */
/*
//A-共通スタイルをトップページのみスタイルを変更したい場合は　id="index"　を親にして変更
*/

/* ==========================================================================
02-A-01
========================================================================== */
#index .container {
}
/* ==========================================================================
02-A-02
========================================================================== */
#index footer {
}
#index .inner-footer {
}
#index .footer-copy {
}
#index footer img.img-footer {
}


/* ==========================================================================
02-A-03
========================================================================== */
#index .header { 
}
#index .header:before {
}
#index .nav-head {
}
/* ==========================================================================
02-A-04
========================================================================== */
#index .nav {
}
#index .nav ul {
}
#index .nav li {
}
#index .nav li:first-child {
}
#index .nav li a {
}
#index .nav li a:hover {
}

/* ==========================================================================
02-B-01
========================================================================== */
/* --背景-- */
#bg-body {
}
#bg-body:before {
}

/* --main-- */
#main-index {
	width: 970px;
	margin: 0 auto;
}

/* ==========================================================================
02-B-02
========================================================================== */
.artical {
	padding-bottom: 1em;
}

/* ==========================================================================
02-B-03
========================================================================== */
h3.title-link {/* --リンク設定タイトル-- */
}
h3.title-info{/* --お知らせ設定タイトル-- */
}
h3.title-acount {/* --ログイン・新規登録タイトル-- */
}
h3.title-link:before {
}
h3.title-info:before {
}
h3.title-acount:before {
}

/* ==========================================================================
02-B-04
========================================================================== */
.li-info_index {
    list-style:none
}
.li-info_index li {
	position: relative; 
}
.li-info_index li a {
	padding: 0;
	display: block;
}
.li-info_index li a:before {
}
.li-info_index li a:hover {
}
.li-info_index dl {
	display: table;
}
.li-info_index dd, .li-info_index dt {
	display: table-cell;
	padding: 0.75em 2em 0.5em 0.75em;
}
.li-info_index dt {
	width: 240px;
}

/* --区分.日付-- */
.li-info_index span {
	padding: 0.25em 1em;
	font-size: 80%;
	width: 8em;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
}
/* --区分-- */
.li-info_index .info-id {
	text-align: center;
}
.li-info_index .info-id.id-organizer {
}
.li-info_index .info-id.id-all {
}
.li-info_index .info-id.id-kindadmin {
}
/* --日付-- */

.li-info_index .info-day {
}
/* --arrow-- */
.li-info_index li:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f138";
	position: absolute;
	right: 1em;
	top: 50%;
	margin-top: -0.5em;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	-webkit-transition-property: color, border-color, background-color, position, left, opacity, width, right;
	transition-property: color, border-color, background-color, position, left, opacity, width, right;
}
.li-info_index li:hover:after {
	right: 0.5em;
}

/* ==========================================================================
02-B-05
========================================================================== */
.li-link_index {
    list-style:none
}
.li-link_index li {
	margin-top: 4px;
}
.li-link_index li:first-child {
	margin-top: 0;
}
.li-btn_index {
	position: relative;
	display: table;
	width: 100%;
	height: auto;
}
.li-btn_index:hover {
}
.li-btn_index a {
	padding: 1em 1em 1em 3em;
	background-color: transparent;
	height: auto;
	display: table-cell;
	letter-spacing: 3px;
	text-align: left;
	border-radius: 4px;
}
.li-link_index li:first-child .li-btn_index a {
	border: none;
}
.li-btn_index a:hover {
}
/* --arrow-- */
.li-btn_index a:before {
	content: "\f0da";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 1em;
	top: 50%;
	font-size: 1em;
	margin-top: -0.5em;
}
.li-btn_index a:hover:before {
	right: 0.5em;
}

.li-link_index li:nth-child(2) .li-btn_index a:before {
}
.li-link_index li:nth-child(3) .li-btn_index a:before {
}
.li-btn_index:after {
}
.li-btn_index:hover:after {
}
/* ==========================================================================
02-B-06
========================================================================== */
/* --title-- */
h4.title-login, h4.title-userplus {
	position: relative;
}
h4.title-login span, h4.title-userplus span {
	display: inline-block;
	position: relative;
	padding: 0 3em;
}
h4.title-login span:before, h4.title-userplus span:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 0.25em;
	vertical-align: middle;
	font-size: 140%;
	position: absolute;
	left: 0.5em;
	top: 0;
}
h4.title-login span:before {
	content: "\f09c";
}
h4.title-userplus span:before {
	content: "\f234";
}
/* ---------------------------------------------- */
/* --content-- */

.col-login {
	width: auto;
	margin: 0 auto;
}
.col_12 > .artical .login {
	margin-left: -1em;
	margin-right: -1em;
	display: -webkit-box; /* --- Androidブラウザ用 --- */
	display: -ms-flexbox; /* --- IE10 --- */
	display: -webkit-flex; /* --- safari（PC）用 --- */
	display: flex;
	-webkit-box-align: stretch; /* --- Androidブラウザ用 --- */
	-ms-flex-align: stretch; /* --- IE10 --- */
	-webkit-align-items: stretch; /* --- safari（PC）用 --- */
	align-items: stretch;
}
.col_12 > .artical .login .col-login {
	width: 50%;
	padding: 0 1em;
}
/* ---------------------------------------------- */
/* --form-- */
.inner-login {
	height: 100%;
	padding: 0em;
}
.inner-login dt {
	font-weight: 600;
	padding-bottom: 0;
	padding-top: 1.25em;
}
/* ---------------------------------------------- */
/* --btn-- */

.btn.btn-login a {
	font-size: 130%;
}
.btn.btn-login a:hover {
}
.btn.btn-reg a {
	font-size: 130%;
}
.btn.btn-reg a:hover {
}
.btn.btn-reg a:before, .btn.btn-login a:before {
	content: "\f0da";
}
.btn.btn-reg a:after, .btn.btn-login a:after {
	display: none;
}
.btn-forget {
	text-align: center;
	padding-top: 1.5em;
}
.btn-forget a {
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
}
.btn-forget a:before {
	content: "\f0da";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 1em;
	margin-top: -0.5em;
}
.btn-forget a:hover:before {
	left: -0.25em;
}



/* ----------------------------------------------------------------------------
*
*03-FREE//トップページ用自由項目専用
*
*---------------------------------------------------------------------------- */
/* ==========================================================================
03-01
========================================================================== */

h3.title-free-4 {
}
h3.title-free-4:before {
}
/* ==========================================================================
03-02
========================================================================== */
/* --推奨環境-- */
.browser {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
    list-style:none;
    
   
}
.browser li {
	flex-basis: 25%;
	list-style-position: inside;
	margin-left: 0;
}
.browser .ico {
	text-align: center;
}
.browser .ico .browser-ie, .browser .ico .browser-chrome, .browser .ico .browser-firefox, .browser .ico .browser-safari {
	display: block;
	position: relative;
	padding-top: 70px;
}
.browser .ico .browser-ie:before, .browser .ico .browser-chrome:before, .browser .ico .browser-firefox:before, .browser .ico .browser-safari:before {
	display: block;
	position: absolute;
	width: 64px;
	height: 60px;
    background-image: url(../../../CommonImage/ico-browserx60.png);
	background-position: 0 0;
	content: "";
	left: 50%;
	top: 0;
	margin-left: -32px;
}
.browser .ico .browser-ie:before {
	background-position: 0 0;
}
.browser .ico .browser-chrome:before {
	background-position: -72px 0;
}
.browser .ico .browser-firefox:before {
	background-position: -144px 0;
}
.browser .ico .browser-safari:before {
	background-position: -214px 0;
}
.browser li > p {
	display: inline-block;
	position: relative;
	padding-left: 2em;
}
.browser li > p:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0da";
	position: absolute;
	left: 1em;
	top: 50%;
	line-height: 1em;
	margin-top: -0.5em;
}

/* ----------------------------------------------------------------------------
*
*04-MYPAGE//マイページ専用のスタイル// 
*
*---------------------------------------------------------------------------- */


/* ==========================================================================
04-01
========================================================================== */
/* --download-- */
.btn.btn-file {
	margin-top: 0.25em;
}
.btn.btn-file:first-child {
	margin-top: 0;
}
.btn.btn-file a {
	position: relative;
	text-align: left;
	padding: 0.6em 2.5em;
}
.btn.btn-file a:before {
	right: inherit;
	font-size: 20px;
	content: "\f019";
	left: 0.5em;
	line-height: 1em; 
}
.btn.btn-file a:hover {
}
.btn.btn-file a:hover:before {
	left: 0.5em;
	top: 60%;
}
.btn.btn-file a:after {
	content: "\f0da";
	right: 0.5em;
	line-height: 1em; 
}


/* --編集-- */

.btn.btn-edit a {
	width: 100%;
}
.btn.btn-edit a:hover {
}
.btn.btn-edit a:before {
	content: "\f044";
	font-size: 20px;
	left: 1em;
	right: inherit;
}
.btn.btn-edit a:hover:before {
	left: 1em;
}
.btn.btn-edit a[disabled] {
	cursor: default;
}
/* --支払い-- */
.btn.btn-jpy a {
    width: 100%;
}

.btn.btn-jpy a:hover {
}

.btn.btn-jpy a:before {
    content: "\f157";
    font-size: 20px;
    left: 1em;
	right: inherit;
}

.btn.btn-jpy a:hover:before {
    left: 1em;

}

.btn.btn-jpy a[disabled] {
    cursor: default;
}


/* ==========================================================================
04-02
========================================================================== */

.content.content_my > .inner + .inner {
	padding-top: 1em;
}
/* --種別ファイルダウンロードエリア-- */
.area-btn.area-btn_download {
}


/* ==========================================================================
04-03
========================================================================== */

h3.title-info_my{/* --お知らせ-- */}
h3.title-user_my {/* --代表者情報-- */}
h3.title-delegate_my {/* --種別代表者-- */}
h3.title-edit_my {/* --種別-- */}
h3.title-link_my {/* --リンク-- */}


h3.title-info_my:before {
}
h3.title-user_my:before {
}
h3.title-delegate_my:before {
}
h3.title-edit_my:before {
}
h3.title-link_my:before {
}
/* ==========================================================================
04-04
========================================================================== */
.li-info_my {list-style:none;
}
.li-info_my li {
	position: relative;
}
.li-info_my li a {
	padding: 0;
	display: block;
}
.li-info_my li a:before {
}
.li-info_my li a:hover {
}
.li-info_my dl {
	display: table;
}
.li-info_my dd, .li-info_my dt {
	display: table-cell;
	padding: 0.75em 2em 0.5em 0.75em;
}
.li-info_my dt {
	width: 240px;
}

/* --区分.日付-- */

.li-info_my span {
	padding: 0.25em 1em;
	font-size: 80%;
	width: 8em;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
}
/* --区分-- */

.li-info_my .info-id {
	text-align: center;
}
.li-info_my .info-id.id-organizer {
}
.li-info_my .info-id.id-all {
}
.li-info_my .info-id.id-kindadmin {
}
/* --日付-- */

.li-info_my .info-day {
}

/* --arrow-- */

.li-info_my li:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f138";
	position: absolute;
	right: 1em;
	top: 50%;
	margin-top: -0.5em;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	-webkit-transition-property: color, border-color, background-color, position, left, opacity, width, right;
	transition-property: color, border-color, background-color, position, left, opacity, width, right;
}
.li-info_my li:hover:after {
	right: 0.5em;
}

/* ==========================================================================
04-05
========================================================================== */
.li-link_my {list-style:none;
}
.li-link_my li {
	margin-top: 4px;
}
.li-link_my li:first-child {
	margin-top: 0;
}
.li-btn_my {
	position: relative;
	display: table;
	width: 100%;
	height: auto;
}
.li-btn_my:hover {
}
.li-btn_my a {
	padding: 1em 1em 1em 3em;
	background-color: transparent;
	height: auto;
	display: table-cell;
	letter-spacing: 3px;
	text-align: left;
	border-radius: 4px;
}
.li-link_my li:first-child .li-btn_my a {
	border: none;
}
.li-btn_my a:hover {
}
/* --arrow-- */
.li-btn_my a:before {
	content: "\f0da";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 1em;
	top: 50%;
	font-size: 1em;
	margin-top: -0.5em;
}
.li-btn_my a:hover:before {
	right: 0.5em;
}
.li-link_my li:nth-child(2) .li-btn_my a:before {
}
.li-link_my li:nth-child(3) .li-btn_my a:before {
}
.li-btn_my:after {
}
.li-btn_my:hover:after {
}


/* ----------------------------------------------------------------------------
*
*05-CONTACT//
*
*---------------------------------------------------------------------------- */
/* --title-- */
h4.title-contact { 
}
h4.title-contact:before {
}

/* --content-- */
section.contact {
}
.contact > .wrap {
	width: auto;
	margin: 0 auto;
}

/* --box-- */
.inner-contact {
	width: 970px;
	margin: 0 auto;
	padding: 0.25em 1em 1.5em 1em;
}
/* ----------------------------------------------------------------------------
*
*06-JQUERY CUSTOM//
*
*---------------------------------------------------------------------------- */
.ui-widget {
	font-family: Helvetica, Arial, Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	background: #f5f5f5;
	color: #555;
	border: solid 1px #ddd;
}
.ui-dialog .ui-dialog-content {
	padding-bottom: 2em;
	font-size: 85%;
}
.ui-dialog {
	padding: 0;
}
.ui-widget-header {
	background-image: none;
	color: #555;
	background: #fff;
	border-bottom: solid 1px #ddd;
	font-size: 85%;
}
.ui-corner-all.ui-widget-header {
	border-radius: 4px 4px 0 0;
}
.dialog-footer-btn {
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	padding: 0.5em 0 1em 0;
	width: 100%;
}
.dialog-footer-btn > input {
	margin: 0 auto;
}
.ui-widget-header a {
	color: #16A085;
	border: none;
}
.ui-dialog .ui-dialog-titlebar-close span {
	margin: 0;
}
.ui-dialog .ui-dialog-titlebar-close {
	border: solid 1px #ccc;
	border-radius: 50%;
}
.ui-dialog .ui-dialog-titlebar-close.ui-state-hover {
	border: solid 1px #ccc;
}
/* --Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	border: 1px solid #555;
	background: #f6f6f6 none 50% 50% repeat-x;
	font-weight: bold;
	color: #333;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
	color: #555;
	text-decoration: none;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
	border: 1px solid #ccc;
	background: #fff none 50% 50% repeat-x;
	font-weight: bold;
	color: #888;
}
.ui-state-hover a, .ui-state-hover a:hover {
	color: #555;
	text-decoration: none;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	border: 1px solid #ccc;
	background: #ffffff none 50% 50% repeat-x;
	font-weight: bold;
	color: #555;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
	color: #555;
	text-decoration: none;
}
.ui-widget :active {
	outline: none;
}
/* states and images 
 ----------------------------------*/

.ui-dialog .ui-dialog-titlebar-close {
	padding: 0;
}
.ui-widget-header .ui-icon {
	background-image: url(../../../js/images/ui-icons_555555_256x240.png);
}
.ui-dialog-titlebar-close.ui-state-hover .ui-icon, .ui-dialog-titlebar-close.ui-state-focus .ui-icon, .ui-dialog-titlebar-close.ui-state-active .ui-icon {
	background-image: url(../../../js/images/ui-icons_cccccc_256x240.png);
}

/* ----------------------------------------------------------------------------
*
*07-OTHER
*
*---------------------------------------------------------------------------- */
/* --forget-パスワード再設定-- */
.forget {
	width: 500px;
	margin: 0 auto;
	padding-top: 2em;
}
.ico-forget {
	color: #ccc;
}
.btn-tologin {
	text-align: center;
	padding: 1em 0;
}
.btn-tologin a {
	position: relative;
	padding-left: 1.5em;
}
.btn-tologin a:before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -0.5em;
}
.btn-tologin a:hover:before {
	left: -0.25em;
}

/* --ApllyHistory-変更履歴-- */
.content-apply {
    list-style:none;
	display: table;
	width: 100%;
}
.content-apply li {
	vertical-align: middle;
	display: table-cell;
	text-align: right;
	padding: 0.35em 1em;
}
.content-apply li:first-child {
	text-align: left;
}
.applyhistory-number {
	display: inline-block;
	padding: 0.5em;
	border-radius: 20px;
}
.arrow-head-apply a[disabled] {
	color: #ababab;
}
/* ----------------------------------------------------------------------------
*
*08-REG
*
*---------------------------------------------------------------------------- */
/* ==========================================================================
08-01
========================================================================== */


/* ==========================================================================
08-02
========================================================================== */
.btnarea-footer input[type="button"].ui-state-default, .btnarea-footer input[type="submit"].ui-state-default {
	padding: 0.65em 2.5em;
	box-shadow: none;
	font-size: 100%;
	border-radius: 25px;
}
.btnarea-footer input[type="button"].ui-state-default:hover, .btnarea-footer input[type="submit"].ui-state-default:hover {
}
/*
.btnarea-footer input[type="button"].ui-state-default.btn-mypage {
	background-color: #eee;
	border: solid 1px #ccc;
}
    */
/* --削除--DESIGN2各カラー共通-- */
input[type="button"].btn-delete {
	color: #fff;
	background-color: #f64141;
	border-color: #ed2b2b;
}
input[type="button"].btn-delete:hover {
	color: #fff;
	background-color: #fa5f5f;
	border-color: #ed2b2b;
}

/* --追加-- */
input[type="button"].btn-add {
	width: 50%;
	margin: 0.5em auto;
	letter-spacing: 2px;
}

/* --Excel読み込みようダウンロードDESIGN2各カラー共通-- */
.btn-download {
	display: block;
	background-color: #fff;
	position: relative;
	padding: 1em 3.5em;
	color: #555;
	border: solid 3px #ccc;
	border-radius: 3em;
}
.btn-download:hover {
	background-color: #ccc;
}
.btn-download:before {
	display: inline-block;
	font: normal normal normal 2em/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	content: "\f019";
	position: absolute;
	left: 0.5em;
	top: 50%;
	margin-top: -0.5em;
}

/* --Excel読み込みようアップロードDESIGN2各カラー共通-- */
.btn-upload {
	display: block;
	position: relative;
	padding: 1em 3.5em;
	color: #555;
	border: dotted 3px #ccc;
	border-radius: 3em;
}
.btn-upload:hover {
	background-color: #f8f8f8;
}
.btn-upload:before {
	display: inline-block;
	font: normal normal normal 2em/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	content: "\f093";
	position: absolute;
	left: 0.5em;
	top: 50%;
	margin-top: -0.5em;
}

/* --カレンダー-- */
.ui-datepicker-trigger {
	margin-left: 0.25em;
	vertical-align: middle;
	cursor: pointer;
}

/* --input-- */
table.newuser_table input[type="text"], table.newuser_table input[type="password"], table.newuser_table textarea, table.newuser_table select {
	margin: 0.25em 0;
}
    table.newuser_table input[type="text"] + label, table.newuser_table input[type="password"] + label, table.newuser_table textarea + label, table.newuser_table select + label {
        margin-left: 0.35em;
    }
ul.check { list-style:none
}
/* ==========================================================================
08-03
========================================================================== */

table.newuser_table {
	width: 100%;
}
table.newuser_table > tbody > tr > td {
	vertical-align: middle;
	padding: 0.5em 1em;
	border-top: solid 1px #ccc;
}
table.newuser_table td.title {
	padding: 0.5em;
	padding: 1em;
	font-weight: 600;
}
table.newuser_table td.subtitle {
}
table.newuser_table td.input_head {
	vertical-align: top;
	width: 200px;
}

/* --合計金額欄/DESIGN2各カラー共通-- */
.content-billedamount {
	background-color: #fff;
}

table.newuser_table.content-billedamount td.input_head {
	background-color: #eee;
}

/*----------------------------------------------*/

table.input_table_type {
	border-collapse: separate;
	border-right: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-top: solid 1px #ccc;
}
table.input_table_type td, table.input_table_type th {
	padding: 0.2em;
}
table.input_table_type > thead > tr > th {
	vertical-align: top;
	width: 200px;
	border-left: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
table.input_table_type > tbody > tr > td, table.input_table_type > tbody > tr > th,  table.input_table_type > tfoot > tr > td, table.input_table_type > tfoot > tr > th {
	border-bottom: solid 1px #ccc;
}
table.input_table_type > tbody > tr > td:first-child, table.input_table_type > tbody > tr > th:first-child,  table.input_table_type > thead > tr:first-child > td:first-child, table.input_table_type > thead > tr:first-child > th:first-child,  table.input_table_type > tfoot > tr > td:first-child, table.input_table_type > tfoot > tr > th:first-child {
	border-left: none;
}

/*----------------------------------------------*/
/* --主にラジオボタン、チェックボックス付登録用テーブル-- */
table.table-inner-r {
	border: solid 1px #ccc;
	width: 100%;
}
table.table-inner-r > tbody > tr > td, table.table-inner-r > thead > tr > th, table.table-inner-r > tbody > tr > th {
	padding: 0.5em;
}
table.table-inner-r > tbody > tr > th, table.table-inner-r > thead > tr > th {
	border-left: solid 1px #ccc;
}
table.table-inner-r > thead > tr > th:first-child, table.table-inner-r > thead > tr > td:first-child,  table.table-inner-r > tbody > tr > th:first-child, table.table-inner-r > thead > tr > td:first-child {
	border-left: none;
}
table.table-inner-r > tbody > tr > td {
	border-top: solid 1px #ccc;
}
/*----------------------------------------------*/
/* --主にラジオボタン、チェックボックスを横並び-- */
.InLine {
	display: inline-block;
	margin-right: 1em;
}
.check > .InLine > table > tbody > tr > td {
	padding: 0.25em 0.5em 0.25em 0;
}

/* --editor-- */
.area-editor {
}
.area-editor table {
	border-collapse: collapse;
}
/* ==========================================================================
08-04
========================================================================== */
.regentry {
	margin-top: 1em;
}
/* ==========================================================================
08-05
========================================================================== */

.btnarea-footer {
	text-align: center;
	padding-top: 1em;
}
/* ----------------------------------------------------------------------------
*
*09-支払い
*
*---------------------------------------------------------------------------- */
/* ==========================================================================
09-01 支払い選択画面
========================================================================== */
/*請求額合計内訳*/
.area-payment-detail{ padding:0.35em; width:auto;  margin-top:1em}

.box-payment-detail{ display:table; border-spacing:1px; margin:0em auto; width:100%}
.col-payment-detail{ display: table-cell; padding:10px; }
.col-payment-detail.kigou{ vertical-align:middle; border:none; font-size:180%;width:auto; text-align:center}
.col-payment-detail.pay{}
.col-payment-detail span{ display: block; padding:4px 5px; text-align:center}
.col-payment-detail span.txt{border:solid 1px transparent ; font-size:80%}
.col-payment-detail span.txt-disabled{  font-size:80%}
.col-payment-detail span.txt-not{ border:solid 1px transparent; font-size:80%}
.col-payment-detail span.txt-jpy{ text-align:right}
/*合計金額*/
.box-total{ text-align:right; width:910px; padding:1em;margin-top:0.5em;margin-bottom:1.5em;}
.col-total{ display:inline-block; width:auto}
.col-total{ font-size:140%; font-weight:600}
.area-total{}

/*未手続額*/
.box-notprocedure{ font-size:130%;  border:solid 1px transparent; font-weight:600; border-radius:6px; padding:0.4em; position:relative; width:auto}
.box-notprocedure:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 11px;
    border-style: solid;
    border-color:transparent transparent transparent transparent;
    margin-bottom: -22px;
    margin-left: 1px;
    display: block;
}

/*今回決済額*/
.box-amount{ font-size:130%;  border:solid 1px transparent; font-weight:600; border-radius:6px; padding:0.8em; position:relative; width:auto}
.box-amount:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    border-width: 11px;
    border-style: solid;
    border-color:transparent transparent transparent transparent;
    margin-top: -11px;
    margin-left: 1px;
    display: block;
}
.txt-amout{font-size:120%; margin-right:1em; font-weight:600}

/*支払い方法選択*/
.btn-radio{ display:inline-block; margin-right:2em;font-size:110%; font-weight:600 }
/*決済履歴ボタン*/
input[type="button"].btn-settlement{border:solid 1px transparent; padding-left:2em; padding-right:2em}
input[type="button"].btn-settlement:hover{border:solid 1px transparent}

/*決済履歴dialog*/
.ui-state-default.btn-search, .ui-widget-content .ui-state-default.btn-search{ padding:0.35em 2em;  border:solid 1px 

transparent; }
.box-dialog-search{  padding:1em; border-radius:6px; border:solid 1px transparent; margin-bottom:0.5em;}
.box-dialog-search .input-dialog-search{ border-radius:6px ; width:auto;}
.box-dialog-search table th{ padding:0.5em 1.5em}
.box-dialog-search table td{ padding:0.5em 1em 0.5em 0}

/* ==========================================================================
09-02 銀行決済画面
========================================================================== */


/* ==========================================================================
09-03 クレジット決済画面
========================================================================== */


/* ==========================================================================
09-04 コンビニ決済画面
========================================================================== */

.con_paycvs {
    width: 95%;
    height: auto;
    clear: both;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    padding-bottom: 0px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
    background-color: #c5d1da;
}
.con_paycvs > .col1 {
	height: auto;
	clear: none;
	width: 100%;
	display:table;
	padding-right: 10px;
    margin-bottom:10px;
}

.con_paycvs > .col1 .div_cvs {
	
    width: 50%;
	height: 70px;
	display: table-cell;
    vertical-align:middle;
}

.con_paycvs > .col1 label {
	display:block;
	height: auto;
	vertical-align: middle;
	text-align: center;
	width: 100%;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    background:#fff;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-shadow: 2px 2px 2px rgba(255,255,255,0.9);
	text-align: center;
    cursor:pointer;
    padding:2px;
}

.con_paycvs .cvs_rdo {
    display: table-cell;
	text-align:center;
    vertical-align:middle;
    width:12%;
}

.con_paycvs .cvs_rdo input[type=radio] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    -moz-transform-origin: right bottom;
    -moz-transform: scale(1.3 , 1.3);
}

.con_paycvs .goriyou {
    display: table-cell;
	height: auto;
    vertical-align:middle;
    padding-left:10px;
}

.con_paycvs .goriyou div {
    display: table;
	height: 100%;
    width:100%;
}

.con_paycvs .goriyou a {
	box-shadow: 0px 1px 3px rgba(0,0,0,0);
	width: 100%;
	height: 70px;
	display: table-cell;
	text-align: center;
	padding: 7px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-shadow: 2px 2px 2px rgba(255,255,255,0);
	background: none #00A0E9;
	color: #fff;
    vertical-align:middle;
}
.con_paycvs .goriyou a:hover {
	background: none #48AFDB;
}
.cvslogo
{
    max-height:68px;
    max-width:160px;
}

/*--↓↓フェーズ2*宿泊関連*2017/12/04*hiro↓↓--*/

/* ----------------------------------------------------------------------------
*
*11-宿泊
*
*---------------------------------------------------------------------------- */

/*確認ボタン*/
input[type="submit"].btn-stayconfirm{border:solid 1px transparent; padding-left:2em; padding-right:2em; margin-right:0.5em; border-radius:2em}/*確認*/
input[type="submit"].btn-stayconfirm:hover{border:solid 1px transparent}
input[type="submit"].btn-stayedit{border:solid 1px transparent; padding-left:2em; padding-right:2em; margin-right:0.5em; border-radius:2em}/*変更*/
input[type="submit"].btn-stayedit:hover{border:solid 1px transparent}
input[type="submit"].btn-staydell{border:solid 1px transparent; padding-left:2em; padding-right:2em; border-radius:2em}/*取消*/
input[type="submit"].btn-staydell:hover{border:solid 1px transparent}
.btnarea-stay{ margin-bottom:20px ; text-align:right; padding-right:5%}
/*ネームイン画面--->部屋タイプ・宿泊日*/
.box-namein-roomname{ font-weight:600; border-radius:4px; padding:0.7em; position:relative; width:auto;font-size:110%;}
.box-namein-roomname i{margin-right:0.25em}
.box-namein-roomname span{margin-right:2em}
/*検索*/
.box-search-stay{display:table;text-align:left; margin:1em auto}
.box-search-stay>div{display:table-cell;vertical-align:bottom}
.right-search-stay{padding-left:2em}
/*テーブル内改行禁止*/
.table_nowrap{ width: auto}
.table_nowrap th,.table_nowrap td{white-space: nowrap; width: auto}
/*収容人数*/
.max-guest-msg{ display:inline-block;padding:0.2em 0.4em; font-size:80%;background-color:#38383E; color:#fff; border-radius:4px; margin-right:1em}
.max-guest{font-weight:600}
/*確認画面　宿泊日*/
.box-date-stay-comfirm{font-weight:600; padding:0.7em; font-size:110%; margin-bottom:0.5em}
.txt-stay-comfirm{ display:inline-block;margin:0 0.5em 0 0.25em }
.date-stay-comfirm{  display:inline-block}
.box-amount.box-amount-stay{ text-align:right;display:inline-block}
.box-amount.box-amount-stay:before{transform: rotate(270deg);top:-12px;left:80%}
.box-amount-stay{ width:auto; display:inline-block}
.date-amout-stay{display:inline-block;margin-left:1em}
.alert-danger{padding:1em;border-radius:4px;color:#E04B4A;margin-bottom:1em; background-color:#f2dede}
.list-roomstock-error{list-style-position:inside;color:#E04B4A;margin-left:2em}
/*--↑↑フェーズ2*宿泊関連*2017/12/04*hiro↑↑--*/





/*
.con_paycvs {
    width: auto;
    height: auto;
    clear: both;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    padding-bottom: 0px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
    background-color: #c5d1da;
}
.con_paycvs > .col3 {
	height: auto;
	clear: none;
	width: 33.333%;
	float: left;
	padding-right: 10px;
}

.con_paycvs > .col3 .div_cvs {
	
    width: 100%;
	height: 96px;
	display: table;
}

.con_paycvs > .col3 label {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	width: 100%;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    background:#fff;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-shadow: 2px 2px 2px rgba(255,255,255,0.9);
	text-align: center;
    cursor:pointer;
}

.con_paycvs .cvs_rdo {
	text-align:center;
    padding-top:10px;
}

.con_paycvs .goriyou {
	height: auto;
}
.con_paycvs .goriyou a {
	box-shadow: 0px 1px 3px rgba(0,0,0,0);
	width: auto;
	height: auto;
	display: block;
	text-align: center;
	padding: 7px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-shadow: 2px 2px 2px rgba(255,255,255,0);
	background: none #00A0E9;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 20px;
}
.con_paycvs .goriyou a:hover {
	background: none #48AFDB;
}
.cvslogo
{
    max-height:49px;
    max-width:245px;
}
*/

/* ----------------------------------------------------------------------------
*
*10-FREE SPACE
    //上記に用意していないスタイルを記述
    //任意のスタイルを追加してください --author nameをクラス名に使うなど差別化のおすすめ
*
*---------------------------------------------------------------------------- */
