@charset "UTF-8";

/*******************************************************************
  RESET
*******************************************************************/

*{border:0;margin:0;outline:0;padding:0;background:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;font:inherit;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit;text-decoration:none;vertical-align:baseline;}
html
{
	/* font-size:16px; */
	font-size: 20px;
	width:100%;
	height:100%;
}
img{vertical-align:bottom;max-width: 100%;height: auto;}

body,div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ul,li,pre,form,fieldset,input,textarea,blockquote,
th,td {
	margin:0;
	padding:0;
	line-height:160%;
	font-weight:normal;
	/* font-size:16px; */
	font-size: 20px;
}
p
{
	margin:0 0 1em 0;
	padding:0;
	line-height:2.5;
	font-weight:normal;
	/* font-size:16px; */
	font-size: 20px;
}

input{min-width: 10px;}

ul, ul li { list-style-type:none; }

table {
	border:none;
	border-collapse:collapse;
	border-spacing:0;
}

caption,th { text-align:left; }

img { border:none; vertical-align:bottom; }

em,address { font-style:normal; }

a { text-decoration:none; transition: 3s; color: inherit; }
a:hover { transition: 3s;}

hr { display:none; }

button{ cursor: pointer; }

/* オートコンプリート背景色削除 */
@keyframes onAutoFillStart { from {} to {}}
input:-webkit-autofill {
    animation-name: onAutoFillStart;
    transition: background-color 50000s ease-in-out 0s;
}

/* Laravel Debugbar用 */
/* 文字サイズ縮小 */
div.phpdebugbar * {
    font-size: 13px !important;
}
dl.phpdebugbar-widgets-kvlist dt, dl.phpdebugbar-widgets-kvlist dd{
    min-height: 18px !important;
	padding: 2px 5px !important;
}

/* ↓Debugbar を横に配置 */
/* 右側 */
/* .phpdebugbar {
    right: 0 !important;
    left: auto !important;
} */
/* 左側 */
.phpdebugbar {
    right: auto !important;
    left: 0 !important;
}
.phpdebugbar:not(.phpdebugbar-closed) {
    /* 幅 */
    width: 300px !important;
    height: 100% !important;
    top: 0 !important;
    bottom: auto !important;
    position: fixed !important;
    overflow-y: auto;
    z-index: 9999;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
}
.phpdebugbar .phpdebugbar-resize-handle {
    cursor: col-resize;
    width: 10px;
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    z-index: 10000;
}
.phpdebugbar-header.phpdebugbar-mini-design{
    position: sticky;
    top: 0;
    z-index: 100;
}
div.phpdebugbar-panel{ height: auto !important; }
.phpdebugbar .phpdebugbar-openhandler { display: none !important; }
.phpdebugbar.phpdebugbar-closed .phpdebugbar-resize-handle { top: 3px; }
div.phpdebugbar-header .phpdebugbar-header-left{ float: none !important; }
.phpdebugbar .phpdebugbar-minimize-btn{ display: none; }
/* ↑ここまで */