@charset "utf-8";
/* CSS Document */

.chronotype-body{
padding-top:75px;
overflow-x: hidden;
}
.chronotype-direction{
font-size: 20px;
line-height: 2;
text-align: center;
}
.chronotype-Cards{
background-color: #E8E8E8;
border: 1px solid #000;
border-radius: 8px;
box-shadow: 0 0 0 4px #E8E8E8;
color: #000;
padding: 0.5em;
}
.chronotype-h3l{
width: 60%;
height: 100px;
float: left;
}
.chronotype-h3r{
width: 40%;
float: right;
}
.chronotype-h3a{
text-align: center;
font-size: 18px;
padding: 18px 0;
}
.chronotype-h3a span{
font-size: 26px;
}
.chronotype-h3b{
width: 100px;
height: 100px;
}
.chronotype-h3c{
width: 100%;
background: skyblue;
text-align:center;
font-size: 14px;
padding: 5px 0;
border-radius: 5px;
}
.chronotype-h3c span.lower{
font-size: 22px;
}
.chronotype-h3c span.lower:before{
content:"\A";
white-space:pre;
}
.chronotype-h3c span.lower:after{
content:"\A";
white-space:pre;
}
.chronotype-img{
width: 100%;
border-radius: 5px;
}
.chronotype-description {
font-size: 18px;
color: #333;
    font-size: 16px;
}
.chronotype-description span {
background-color: #fff;
display: block;
font-weight: bold;
padding: 2px 4px;
    margin-bottom: 0.3em;
    font-size: 18px;
}
.progress-img{
width: 30%;
}
.progress-img-txt{
color: #000;
padding: 0 8px;
font-size: 16px;
}
.progress{
height: 14px;
}
.progress-bar{
background-color: #1e3863;
color: #fff;
}
.gofun-text{
text-align: center;
font-size: 16px;
}
.update-date{
text-align: right;
font-size: 18px;
}
.analysis-text{
font-size: 20px;
margin: 0 10px;
}

/* スマホ設定
************************************************************************/
@media (max-width: 768px) {
    
.chronotype-direction{
font-size: 16px;
line-height: 2;
text-align: left;
}
.progress-img{
width: 25%;
}
.progress-img-txt{
padding: 0 0 0 4px;
font-size: 12px;
}
.progress{
height: 12px;
}
.update-date{
text-align: right;
font-size: 16px;
}
.analysis-text{
font-size: 16px;
}
    
}

/* ...続きを読む
************************************************************************/
.cp_box *, .cp_box *:before, .cp_box *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.cp_box {
position: relative;
}
.cp_box label {
position: absolute;
z-index: 1;
bottom: 0;
width: 100%;
height: 140px; /* グラデーションの高さ */
cursor: pointer;
text-align: center;
font-size: 14px;
background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
line-height: 2.5rem;
position: absolute;
z-index: 2;
bottom: 0px;
left: 50%;
width: 16rem;
content: '...続きを読む';
transform: translate(-50%, 0);
letter-spacing: 0.05em;
color: #ffffff;
border-radius: 20px;
background-color: #A6A6A6;
}
.cp_box input {
display: none;
}
.cp_box .cp_container {
overflow: hidden;
height: 145px; /* 開く前に見えている部分の高さ */
transition: all 0.5s;
}
.cp_box input:checked + label {
display: none ; /* 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
font-family: FontAwesome;
content: '閉じる';
}
.cp_box input:checked ~ .cp_container {
height: auto;
padding-bottom: 0px; /* 閉じるボタンのbottomからの位置 */
transition: all 0.5s;
}
