/* CSS Document */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');

/* ==========================================================================
	Foundation - reset/base...
	========================================================================== */


/* Reset
   ----------------------------------------------------------------- */
html, body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
form, fieldset, input, select, textarea,
p, pre, blockquote, span, th, td {
	margin: 0;
	padding: 0;
}

body {
	background-color: #FFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 1px;
	color: #000;
}

p {
	color: #000;
	letter-spacing: 1px;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 24px;
}

dl, ul, ol {
	text-indent: 0;
}

li {
	list-style: none;
	font-size: 1.3rem;
}

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

.login_input input, textarea {
	background: #FFF;
	padding: 6px;
	border: 1px solid #CCC;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: #666;
	margin-bottom: 7px;
}

select {
	background: #ffffff;
	padding: 2px;
	outline: none;
}

input:focus ,
textarea:focus {
	background-color: #effafa;
	outline:none;
}


/*html5block*/
header, nav, article, aside, section, footer {
	display:block;
}


/*[Link scheme]
	----------------------------------------------------------------- */
a:link, a:visited {	text-decoration: none;}
a:hover, a:active {	text-decoration: none;}
a:link,
a:visited {	color: #000;}
a:hover,
a:active {
	color: #000;
}

a {
	transition: .5s;
}

a { outline: none; }

* {
	-webkit-appearance: none;
}

.ds_bl {
	display: block;
}

::selection {background: #999;}
::-moz-selection {background: #999;}


input, button, select, textarea {
    -webkit-appearance: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4rem;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox !important;
}

select {
  -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;
}


select::-ms-expand {
  display: none;
}

input {
    color: #666666;
}
input::-webkit-input-placeholder {
    color: #cfcfcf;
}
input:-ms-input-placeholder {
    color: #cfcfcf;
}
input::-moz-placeholder {
    color: #cfcfcf;
}
textarea::-webkit-input-placeholder {
    color: #cfcfcf;
}
textarea:-ms-input-placeholder {
    color: #cfcfcf;
}
textarea::-moz-placeholder {
    color: #cfcfcf;
}

/*
@media (max-width: 780px) {
	
	input[type="submit"],
	input[type="button"] {
	  border-radius: 0;
	  -webkit-box-sizing: content-box;
	  -webkit-appearance: button;
	  appearance: button;
	  border: none;
	  box-sizing: border-box;
	  cursor: pointer;
	}
	input[type="submit"]::-webkit-search-decoration,
	input[type="button"]::-webkit-search-decoration {
	  display: none;
	}
	input[type="submit"]::focus,
	input[type="button"]::focus {
	  outline-offset: -2px;
	}
	
}
*/


/* Base
	----------------------------------------------------------------- */
html,body {
	width: 100%;
	height: auto !important;
	margin: 0px auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #000;
	text-align: left;
	letter-spacing: 0.5px;
	min-width: 100%;
}

html {
	font-size: 62.5%;
}


.dis_none {
	display: none;
}