@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/*全体の設定
---------------------------------------------------------------------------*/
body {
background: #ffffff;	/*全体の背景色*/
color: #666666;	/*全体の文字色*/
font-size:0.81em;
line-height:1.5em;
letter-spacing:0.08em;
font-feature-settings : "palt";
font-family: 'Noto Sans JP', sans-serif;
}
.contents {
width:100%;
}
.contents-in {
width:640px;
margin:0 auto; /* 中央寄せ */
}
.center {
text-align:center; /* 中央寄せ */
margin: 0px 0px 20px 0px;
}
.center2 {
text-align:center; /* 中央寄せ */
margin: 20px 0 0 0;
}
.left2 {
margin: 0px 0px 20px 0px;
}
.t1 {
font-size: 16px;
font-weight: bold;
color: #39399E;
padding-bottom: 5px;
border-bottom: solid 1px #666666;
}
.box1 {
padding: 0.5em 1em;
margin: 1.5em 0;
border: solid 1px #666666;
}
span.req{
color:#ff0000;
margin:0px 10px 0px 5px;
}
h2 {
font-size:100%;
color: #666666;	/*文字色*/
padding: 0px 8px 3px; /*左から、上下、左右への余白*/
margin:20px 0px 20px 0px;
clear: both;
border-left: 4px solid #999999;	/*左の線の幅、線種、色*/
border-bottom: 1px solid #999999; /*下の線の幅、線種、色*/
}
h2 span {
color: #ff0000;	/*文字色*/
font-weight: normal;
margin:0px 0px 0px 5px;
}
h4 {
font-size:100%;
color: #666666;	/*文字色*/
padding: 0px 8px 3px; /*左から、上下、左右への余白*/
margin:20px 0px 20px 0px;
clear: both;
border-left: 4px solid #999999;	/*左の線の幅、線種、色*/
border-bottom: 1px solid #999999; /*下の線の幅、線種、色*/
}
h4 span {
font-weight: normal;
margin:0px 0px 0px 5px;
}
.p1 {
text-indent: 12px;
}
.p1b {
text-indent: 12px;
margin:20px 0px 0px 0px;
}
.p2 {
text-indent: 8px;
}
.p3 {
margin:20px 0px 10px 0px;
}
.p4 {
margin:20px 0px 0px 0px;
}
td, th {
padding: 0px 10px;
color: #666666;	/*全体の文字色*/
font-size:	0.81em;
line-height:1.5em;
letter-spacing:0.08em;
font-feature-settings : "palt";
font-family: 'Noto Sans JP', sans-serif;
}

/*アンケート認証画面
---------------------------------------------------------------------------*/
.ancbox {
    border: 3px solid #C4C4C4;
    border-radius: 4px;
    margin: 30px 0px 20px 0px;
    padding: 2em 2em 1em 2em;
    position: relative;
}
.ancbox::before {
    background-color: #C4C4C4;
    color: #ffffff;
    content: "認 証";
    font-weight: bold;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -0.81em;
}
.button {
	font-size:12px;
	color: #666666;
    display: inline-block;
padding: 0.25em 0.5em;
    text-align: center;
    text-decoration: none;
    outline: none;
	border: 1px solid #666666;
    border-radius: 0px;
    margin:0px 0px 0px 0px;
}
.button:hover {
    background-color: #f2f2f2;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

body {
padding: 10px 10px 5px 10px;
}
.contents-in {
width:100%;
margin:0 auto; /* 中央寄せ */
}
.left {
text-align:left; /* 左寄せ */
}

}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
	
body {
padding: 10px;
}
.contents-in {
width:100%;
margin:0 auto; /* 中央寄せ */
}

}