@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------------------------------
　 　reset等
----------------------------------------------------------------------------------------------------------------------------------*/
*{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	word-wrap:break-word;
    margin: 0;
    padding: 0;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, .search_box, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, day, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,day,nav,section { display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through;}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

ul,ol{
	list-style: none;
  letter-spacing: -0.5em;
}
li {
	letter-spacing: normal;
	list-style: none;
}
a{
    text-decoration: none;
	display: inline-block;
cursor: pointer;
	word-break: break-all; 
    vertical-align:baseline;
    background:transparent;
    font-size:100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	　基本
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html {height: 100%;}
body {
	text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
cursor:url("../img/cursol_btn.png"),default;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
 vertical-align: bottom;
}
::-webkit-scrollbar { display:none;}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	フォント
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #000;
	font-size: 16px;
  	line-height:160%;
	letter-spacing: .05em;
    text-align: center;
    position: relative;
	background: #fff;
	z-index: -1;
}
.ab_font{
font-family: "ab-countryroad", sans-serif;
font-weight: 400;
font-style: normal;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	共通class
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.wrapper{
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
	overflow: hidden;
	padding-top: 125px;
	padding-bottom: 50px;
}
.contents{
	width: 90%;
	max-width: 1000px;
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bold{font-weight: bold;}


.a_center{text-align: center;}
.a_left{text-align: left;}

.relative{position: relative;}

.white_text{color: #fff;}
.gry_text{color: #858585;}
.red_text{color: #C32B2E;}


.e_text{
    color: #ff0066;
	text-align: left;
	font-weight: bold;
}
.e_text::before{
  font-family: "Font Awesome 5 Free";
  content: '\f071';
  font-weight: 900;
	margin-right: 5px;
}
.e_text:empty::before,
.e_text:empty{display: none;}

.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mb15{margin-bottom: 15px;}
.no_event{pointer-events: none!important;}

.pc550{display:inline-block;}
@media print, screen and (max-width: 550px){
	
.pc550{display:none;}
.contents{width: 95%;}
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	form関係
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
::placeholder {color: #888; }
:focus {
	outline:none;
	border: none;
	background-color: #fff;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor: pointer;
}
::-webkit-search-cancel-button、
input[type=radio], input[type="checkbox"]{display: none;}

input,button,label,select,textarea,input[type="checkbox"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
input{cursor:url("../img/cursol_pointer.png"),text;}
input[type="text"],input[type="password"],button,select,textarea{
    border-radius: 5px;
    padding:20px 15px;
    font-size: 100%;
	width: 100%;
}

.btn{
	width: 100%;
	font-size: 135%;
	background: #000;
	color: #fff;
	padding: 10px 15px;
	font-weight: bold;
	border-radius: 5px;
    line-height: 1.9;
	
}
select,textarea,a,button,label,
.base_tbl tr,
.btn{cursor:url("../img/cursol_pointer.png"),pointer;}

.bk_input{ background:#ffe648;}
.bk_input_gry{background: #f3f3f3;}

.bk_input_gry::placeholder{color: #7A7A7A;}
.bk_input::placeholder{color: #000;}

.select{
	display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
	background:#ffe648;
    border-radius: 5px;
}
.select select {
    height: 100%;
    padding: 15px 40px 15px 15px;
    margin-bottom: 0;
    background: rgba(0,0,0,0);
    border: none;
    position: relative;
    z-index: 1;
}
.select::before {
    content: "\f0d8";
    top: 4px;
}
.select::after {
    content: "\f0d7";
    bottom: 4px;
}
.select::after, .select::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100%;
    position: absolute;
    color: #000;
    right: 10px;
    z-index: 0;
}
@media print, screen and (max-width: 750px){
.btn{font-size: 113%;}
}
@media print, screen and (max-width: 550px){
.btn{font-size: 100%;}
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	header
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	justify-content: space-between;
	align-items: center;
	padding:0 20px;
	transition-duration: .3s;
    background: #ffe648;
    box-shadow: 0 6px 6px rgb(88 88 88 / 10%)
}
h1{line-height: 100%;}
.logo{
	font-size: 250%;
	display: inline-block;
    width: auto;
}
.logo a{color: #000;}
.logout_btn{
	max-width: 150px;
	font-size: 113%;
    padding: 10px;
    line-height: 1.6;
	background: #823cef;
	border: solid 2px #000;
}
.logo.typing{border-right: 3px solid #000;}
@media print, screen and (max-width: 750px) {
.header{
	padding: 0px 10px;
    height: 60px;
	}
.wrapper{padding-top: 105px;}
.logo{font-size: 190%;}
	
.logout_btn {
    max-width: 125px;
    font-size: 100%;
    padding: 5px;
}
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	　footer
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer{
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	color: #000;
}
@media print, screen and (max-width: 750px) {
.footer{font-size: 88%;}
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	　page_top
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page_top{
  position: fixed;
  right: 20px;
    bottom: 10px;
  z-index: 1000;
}
.page_top a {
font-size: 200%;
    background: rgba(255,255,255,.8);
    border-radius: 10px;
    border: solid 2px #1ea3cc;
    text-decoration: none;
    color: #1ea3cc;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
	transition: all .3s;
}
.page_top a::before{
font-family: "Font Awesome 5 Free";
  content: '\f102';
  font-weight: 900;
}
@media print, screen and (min-width: 1281px) {
.page_top a:hover{background: rgba(255,219,75,1);}
}
@media print, screen and (max-width: 750px){

.page_top a {
    font-size: 175%;
    padding: 0px 18px;
    width: 55px;
	height: 55px;
	}
.page_top {right: 5px;}
}
	
.no_disp{
	display: none;
}