@charset "UTF-8";

/*@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap');*/

@font-face {
    font-family:"NotoSansJP";
    font-style:normal;
    font-weight:200;
    src:url("font/NotoSansJP-Regular.woff") format("woff"),
		url("font/NotoSansJP-Regular.eot")  format("eot");
}

@font-face {
    font-family:"NotoSansJP";
    font-style:normal;
    font-weight:300;
    src:url("font/NotoSansJP-Medium.woff") format("woff"),
		url("font/NotoSansJP-Medium.eot")  format("eot");
}


/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
/*font: inherit;*/
/*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {

}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* css reset end */


*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
.clearfix:after {
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}

body {
    font-family:'NotoSansJP','メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;	
	letter-spacing: 0.05em; color: #111111;
}
table , th , td{ 
	padding: 10px!important; border: 1px solid #ccc;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    display: block;
    -webkit-backface-visibility: hidden;
}
a{ 
	text-decoration: none;
	transition: 0.3s;
}
a:hover{
    opacity: 0.5!important;
	cursor: pointer;
	transition: 0.5s;
}
a:visited{
/*    color: #000;*/
}
select {
	border-radius: 3px;
	padding: 5px;
	background-color: #123; color: #fff;
	border:solid 1px #000;
}
input {
	border-radius: 3px;
	border:solid 1px #ccc;
	padding: 5px;
}
.dots1{
	background-image: linear-gradient(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 11.11111%, rgba(0, 0, 0, 0) 100%);
    background-size: 3px 3px;
    height: 1px;
	width: 100%;
    margin: 60px 0;
}
.dots2{
	background-image: linear-gradient(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 11.11111%, rgba(0, 0, 0, 0) 100%);
    background-size: 3px 3px;
    height: 1px;
	width: 100%;
    margin: 0;
}
.dots3{
	background-image: linear-gradient(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 11.11111%, rgba(0, 0, 0, 0) 100%);
    background-size: 3px 3px;
    height: 1px;
	width: 100%;
    margin: 60px 0 0 0;
}
.dots4{
	background-image: linear-gradient(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 11.11111%, rgba(0, 0, 0, 0) 100%);
    background-size: 3px 3px;
    height: 1px;
	width: 100%;
    margin: 0 0 60px 0;
}
/*タブ切り替え全体のスタイル　https://web.monogusa-note.com/flexible-tabs-only-css*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:10px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: DeepSkyBlue;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: DeepSkyBlue;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
