@charset "UTF-8";
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    list-style-type: none;
    padding: .5rem;
}

em {
    font-style: normal;
}

html,
body {
    background: #fff;
    font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    min-height: 100%;
    height: 100%;
    margin: 0;
}

body {
    background: #f5f5f5;
}

input[type="submit"],
input[type="button"] {
    -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;
}

a:hover {
    text-decoration: none;
}


/* layout
--------------------------------------------------- */

#page {
    background: white;
    -js-display: flex;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    width: 100vw;
}

#content {
    flex: 1;
}

.l-sec {
    padding: 60px 0;
}

.l-column {
    flex: 0 0 1180px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1%;
    width: 100%;
}

.l-row {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.l-sec {
    padding: 60px 0;
}
.l-half {
    flex: 0 0 48%;
    margin-right: 1%;
}
.l-half:nth-child(2n) {
    margin-right: 0;
    margin-left: 1%;
}

/* utility
--------------------------------------------------- */

.no-pc {
    display: none;
}

.no-sp {
    display: block;
}

.mb10 {
    margin-bottom: 10px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mt10 {
    margin-top: 10px;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

.mr10 {
    margin-right: 10px;
}

.mr30 {
    margin-right: 30px;
}

.mr60 {
    margin-right: 60px;
}

.ml10 {
    margin-left: 10px;
}

.ml30 {
    margin-left: 30px;
}

.fs09 {
    font-size: .9rem;
}

.fs15 {
    font-size: 1.5rem;
}

.fs20 {
    font-size: 2rem;
}

.fs25 {
    font-size: 2.5rem;
}

.fs3 {
    font-size: 3rem;
}

.aligncenter {
    text-align: center;
    margin: 1rem auto;
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.main_color {
    color: #333;
}

.caution_color {
    color: #333;
}

.const__inner {
    margin: 0 auto;
    max-width: 1024px;
    width: 100%;
}

.link__line {
    text-decoration: underline;
}

.list__plane {
    margin: 0 0 30px;
}
.table__contact {
    border-collapse: collapse;
}
.table__contact th, .table__contact td {
    padding: .5rem 0;
    border-bottom: 1px solid #ccc;
}

/* Title
--------------------------------------------------- */

.ttl__home_stories {
    width: 50%;
}

.page__ttl {
    color: #eb6687;
    font-size: 2rem;
    text-align: center;
}
.page__ttl::before {
    content: url('../images/bg_ttl_pageLeft.svg');
    display: inline-block;
    height: 30px;
    margin-right: 30px;
    width: 30px;
}
.page__ttl::after {
    content: url('../images/bg_ttl_pageRight.svg');
    display: inline-block;
    height: 30px;
    margin-left: 30px;
    width: 30px;
}

.ttl__under {
    border-bottom: 3px solid #eb6687;
    color: #eb6687;
    padding: .2rem .8rem;
}

.ttl__sideborder {
    border-left: 5px solid #eb6687;
    padding-left: 1rem;
}

.ttl__mid {
    background: #53b11f;
    color: white;
    padding: .5rem .8rem;
    margin-bottom: 30px;
}
.ttl__small {
    border-bottom: 1px solid #eb6687;
    color: #323232;
    font-size: 1.3rem;
    margin: 0 auto;
    padding: .5rem .3rem;
}

/* Button
--------------------------------------------------- */

.btn__common {
    border: none;
    background: #eb6687;
    color: white;
    display: block;
    line-height: 44px;
    margin: 30px auto;
    min-height: 44px;
    position: relative;
    text-align: center;
    min-width: 50%;
    width: 200px;
}

.btn__common::after {
    content: url('../images/right-arrow.svg');
    position: absolute;
    top: 0;
    right: 10px;
    width: 15px;
}

.btn__newPost {
    background: #323232;
    color: white;
    display: block;
    margin: 30px auto;
    padding: .5rem 0;
    text-align: center;
    width: 300px;
}
.btn__start {
    background: #eb6687;
    border: none;
    border-radius: 3px;
    color: white;
    display: block;
    margin:30px auto;
    min-height: 44px;
    width: 60%;
}

.btn__detail {
    background: #323232;
    color: white !important;
    padding: .3rem .5rem;
    text-align: center;
    width: 100%;
    display: block;
}

.btn__answer {
    background: #eb6687;
    border: none;
    color:white;
    display: block;
    margin: 10px auto;
    width: 60%;
    text-align: left;
    padding: .5rem 1rem;
}

.btn__fav {
    background: #eb6687;
    border: none;
    border-radius: 3px;
    color: white;
    padding: .5rem .8rem;
}
/* Header
--------------------------------------------------- */

.site-header {
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, .1);
    z-index: 1;
}
.home__spHeader {
    display: none;
}
.header__inner {
    -js-display: flex;
    display: flex;
    margin: 0 auto;
    max-height: 79px;
    max-width: 1180px;
    width: 100%;
}

.header__logo {
    align-self: center;
    flex: 0 0 200px;
    margin: 0 2%;
}

.header__test {
    flex: 1 0 auto;
}

.header__search {
    margin-right: 30px;
}

.header__search input[type=text] {
    border: 2px solid #eb6687;
    border-radius: 8px 0 0 8px;
    width: 12rem;
}

.header__search button {
    background: #eb6687;
    border: 1px solid #eb6687;
    border-radius: 0px 8px 8px 0;
    box-shadow: none;
    color: white;
    text-shadow: none;
}

.header__share {
    align-items: center;
    -js-display: flex;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-around;
}

.share__tw,
.share__fb {
    color: white;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 44px;
    margin-right: 10px;
    width: 44px;
    height: 44px;
    text-align: center;
}

.share__tw {
    background: #55acee;
}

.share__fb {
    background: #3b5998;
}
.share__line, .share__tw2, .share__fb2 {
    background: white;
    display: inline-block;
    height: 44px;
    margin: 0 10px;
    width: 44px;
}

.header__logo h1 {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
}

#site-navigation {
    align-self: center;
    flex: 1 1 auto;
    width: 100%;
}

#primary-menu {
    -js-display: flex;
    display: flex;
    justify-content: space-around;
    margin: 0;
}

#primary-menu li a {
    color: #eb6687;
}

.home-header {
    background: url('../images/bg_home_header.svg') top center no-repeat;
    background-size: cover;
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
}

.home-header>.header__inner {
    color: #eb6687;
    display: block;
    max-height: 100%;
    max-width: 1180px;
    padding-top: 30px;
    width: 100%;
}

.header__homeTop {
    color: #323232;
    -js-display: flex;
    display: flex;
    justify-content: space-between;
}

.header__homeBottom {
    -js-display: flex;
    display: flex;
    justify-content: space-around;
}

.header__homeLogo {
    width: 300px;
}

.header__homeBottom li a {
    color: #eb6687;
    font-size: 1.5rem;
}

#nav__btn, #nav__spBtn {
    align-self: center;
    cursor: pointer;
    flex: 0 0 auto;
    height: 44px;
    margin-right: 30px;
    position: relative;
    width: 44px;
}

#nav__btn span, #nav__spBtn span {
    background: #eb6687;
    border-radius: 3px;
    display: block;
    height: 6px;
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
}

#nav__btn span::before, #nav__spBtn span::before {
    background: #eb6687;
    border-radius: 3px;
    content: '';
    height: 6px;
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
}

#nav__btn span::after, #nav__spBtn span::after {
    background: #eb6687;
    border-radius: 3px;
    content: '';
    height: 6px;
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
}
#nav__spMenu {
    background: rgba(235, 102, 135, .9);
    -js-display: flex;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    width: 92%;
    transition: .3s;
    top: -100vh;
    left: 4%;
    z-index: 2;
}

#nav__spMenu a {
    color: white;
}

#btn__closeNav {
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
    color: white;
    padding: .2rem .5rem;
    position: absolute;
    text-align: center;
    top: 10px;
    right: 10px;
}

.spmenu__list {
    margin: 30px auto;
}

.spmenu__list li {
    border-bottom: 2px dotted white;
    font-size: 1.3rem;
    margin-bottom: 30px;
    padding: .5rem;
    text-align: center;
}

.spmenu__list li a,
.spmenu__list li a:hover,
.spmenu__list li a:visited,
.spmenu__list li a:active {
    color: white;
    text-decoration: none;
}

.spmenu__footer {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
}
.spmenu__footerMember {
    color: white;
}
.spmenu__footerShare {
    font-size: 1.3rem;
    display: flex;
}
.about__header {
    background: url('../images/bg_aboutheader.png') top center no-repeat;
    background-size: cover;
    min-height: 480px;
}

.sort__header {
    background: url('../images/bg_sortHeader.png') top center no-repeat;
    background-size: cover;
    min-height: 480px;
}

/* Footer
--------------------------------------------------- */

#colophon {
    background: #eb6687;
}

.footer__inner {
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
}

.site-footer {
    background: #68bedb;
    color: white;
    padding: 60px 0 10px;
}

.footer__logo {
    flex: 0 0 auto;
    margin-bottom: 60px;
}
.footer__content {
    -js-display: flex;
    -webkit-display: flex;
    display: flex;
    height: 100%;
    justify-content: flex-start;
}

.footer__content a {
    color: white;
    display: block;
}

#logo__footer+ul {
    margin: 0;
}
.footer__category {
    -js-display: flex;
    display: flex;
    justify-content: space-around;
    width:100%;
}
.footer__categoryTtl {
    align-self: flex-start;
    flex: 0 0 auto;
}

#footer__cat {
    width: 150px;
}

.footer__catMenu {
    -js-display: flex;
    display: flex;
    justify-content: space-around;
    flex: 0 0 auto;
}

.footer_catMenu1 ul,
.footer_catMenu2 ul,
.footer_catMenu3 ul {
    padding: 0;
    margin: 0;
}

.site-info {
    text-align: center;
}

/* Home
--------------------------------------------------- */

.hero {
    align-items: flex-end;
    background: url('../images/bg_hero.png') top center no-repeat;
    background-size: cover;
    -js-display: flex;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 30px 0;
}
/*.hero video {
    background: url('../images/bg_hero.png') top center no-repeat;
    background-size: cover;
    display: block;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    position: fixed;
    right: 0;
    top: 0;
} */
#hero__txt {
    flex: 1;
    margin: 5% auto 60px;
    width: 50%;
}

.hero__desc {
    background: rgba(255, 255, 255, .9);
    color: #eb6687;
    margin: 0 auto 30px;
    padding: 1.5rem;
    width: 70%;
}

.ttl__homestory {
    color: #eb6687;
    -js-display: flex;
    display: flex;
    width: 50%;
}

.calc__simulate {
    -js-display: flex;
    display: flex;
    justify-content: flex-start;
}

.home__stories {
    -js-display:flex;
    display: flex;
    flex-wrap: wrap;
}
.home__storyItem {
    border: 1px solid #eee;
    flex: 0 0 23%;
    margin: 0 1% 30px;
}
.home__storyHead {
    overflow: hidden;
    position: relative;
}
.home__storyHead figcaption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
}
.home__storyHead:hover figcaption {
    opacity: 1;
}
.home__storyHead h1 {
    color: white;
    font-size: 1rem;
    position: absolute;
    top:30%;
    left: 10%;
    text-align: center;
    width:80%;
}
.home__storyBody {
    margin: .5rem;
}
.layer__imghover {
    background: rgba(0,0,0,.5);
    height: 100%;
    width: 100%;
}
.story__qualName {
    color: #eb6687;
    font-size: 1.3rem;
    margin: 10px 0;
}

.home__rankItem {
    border-bottom: 1px solid #eee;
    padding: .2rem .5rem;
    -js-display: flex;
        display: flex;
}
.home__rankNum {
    flex: 0 0 10%;
    text-align: center;
}
.home__rankBody {
    flex: 0 0 90%;
}
.home__rankBody h2 {
    margin: 0 0 10px;
}
.home__rank1st {
    color: #d5bf49;
    font-size: 2rem;
    font-weight: bold;
}
.home__rank2nd {
    color: #c5c5c5;
    font-size: 2rem;
    font-weight: bold;
}
.home__rank3rd {
    color: #C38282;
    font-size: 2rem;
    font-weight: bold;
}
.home__rankNo {
    color: #eb6687;
    font-size: 1.5rem;
}

/* Login
--------------------------------------------------- */

.login__content {
    -js-display: flex;
    display: flex;
    margin: 30px auto;
}

.login__separator {
    position: relative;
    flex: 0 0 44px;
    margin: 0 30px;
}

.login__separator:after {
    background: #aaa;
    content: '';
    position: absolute;
    height: 100%;
    left: 50%;
    width: 2px;
}

.login__separator span {
    background: white;
    border: 2px solid #aaa;
    border-radius: 50%;
    color: #aaa;
    display: block;
    font-size: .8rem;
    font-weight: bold;
    height: 44px;
    line-height: 44px;
    margin: auto;
    position: absolute;
    top: calc(50% - 22px);
    text-align: center;
    width: 44px;
    z-index: 2;
}

/* Form
--------------------------------------------------- */

.form__reg {
    margin: 30px auto;
    padding: 2rem;
}

.form__input {
    background: #f5f5f5;
    border-radius: 3px;
    padding: .2rem;
}

.form__regMail {
    width: 80%;
}
.form__table {
    overflow: hidden;
}
.form__table th,
.form__table td {
    border-bottom: 1px dotted #ccc;
    padding: 1rem .5rem;
}

.form__table input[type=text],
.form__table input[type=password],
.form__table input[type=date],
.form__table textarea {
    margin: 0 2%;
    width: 96%;
}

.form__row {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 2% 30px;
    width: 96%;
}

.form__th {
    border-bottom: 1px solid #ccc;
    flex: 0 0 30%;
    padding: .5rem 2% .5rem 0;
}
.form__td {
    border-bottom: 1px solid #ccc;
    flex: 0 0 68%;
    padding: .5rem 0;
}

.form__td label input[type="checkbox"] {
    margin: 1rem 0 1rem 1.3rem;
}
.form__loginContainer {
    flex: 0 0 auto;
    max-width: 480px;
    width: 90%;
}

.form__login {
    background: white;
    padding: 2rem;
}

.form__label {
    flex: 0 0 20%;
}

.form__field {
    flex: 0 0 80%;
}

.frm_label {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
}

.form__label {
    color: #aaa;
    font-size: 1rem;
    margin-left: 1rem;
}

.form__require,
.form__option {
    border-radius: 3px;
    color: white;
    font-size: .8rem;
    float: right;
    margin: 0 .5rem;
    padding: .2rem .5rem;
}

.form__require {
    background: red;
}

.form__option {
    background: #aaa;
}

.frm_error {
    background: #fff5f5;
    border-radius: 3px;
    border: 1px solid #ccc;
    list-style-position: inside;
    list-style-type: circle;
    padding: .5rem;
}

.frm_success {
    background: #2a8b50;
    border-radius: 6px;
    color: white;
    font-size: 1.5rem;
    padding: .5rem 1rem;
}

.info__box {
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #ccc;
    -js-display: flex;
    display: flex;
    justify-content: center;
    margin: 30px auto;
    text-align: center;
    width: 96%;
}

.form__common {
    border-collapse: collapse;
}

.form__common tr {
    border-bottom: 1px solid white;
}

#member_name,
#member_zip,
#member_pref,
#member_address,
#member_tel,
#school_name,
#address,
#point,
#site_url,
#blog_url {
    width: 100%;
}

#zipcode {
    width: 9rem;
}
.form__input-s {
    margin-left:1rem;
    width: 2rem !important;
}

/* Mypage
--------------------------------------------------- */

.table__postlist {
    border-collapse: collapse;
}

.table__postlist th {
    background: #eee;
    border: 1px solid #ccc;
    color: #323232;
    padding: .5rem 0;
    text-align: center;
}

.table__postlist td {
    background: white;
    border: 1px solid #ccc;
    padding: .5rem .3rem;
}
.table__postlist tr:nth-child(2n) td {
    background: #f5f5f5;
}

/* Content
--------------------------------------------------- */

.wrapper-content {
    background: url(../images/bg_body_left.png) top left no-repeat/auto scroll, url(../images/bg_body_right.png) top right no-repeat/auto scroll;
}

#content {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 1180px;
}

.bc__inner {
    font-size: .8rem;
}

.bc__inner span {
    margin: 0 .1rem;
}

.line__single {
    border-bottom: 1px solid #ccc;
    height: 0;
    margin: 1rem 0;
}

.single__header {
    border-bottom: 3px solid #eb6687;
    border-top: 1px solid #eb6687;
    margin: 30px auto;
    padding: 10px 0;
}

.single__headerTtl {
    color: #eb6687;
    margin-right: 2%;
}

.single__headerInfo {
    -js-display: flex;
        display: flex;
}

.single__storyHeader h1 {
    border-bottom: 2px solid #ccc;
    color:#eb6687;
    padding-bottom: .5rem;
}
.single__storyMeta {
    -js-display: flex;
        display: flex;
        justify-content: flex-start;
}
.single__storyMeta .post-ratings {
    margin-right: 1rem;
    width: auto;
}
.single__storyMeta p {margin: 0; }
.single__storyMeta2 span {
    margin: 0 1rem 0 .5rem;
}

.info__items, .info__pv {
    flex: 0 0 50%;
    padding: 0 2%;
}
.info__pv {
    position: relative;
    text-align:right;
}
.info__add {
    border: #bbb;
    background: #f5f5f5;
    padding: .5rem .8rem;
    position: absolute;
    top: -60px;
    left: 50%;
    text-align:center;
}
.info__items p {margin: 0;}
.info__item {
    margin: 0 1rem 0 .5rem;
}
.info__tags {
    margin: 10px 0;
}
.info__tag {
    background: #eb6687;
    border-radius: 3px;
    color: white;
    padding: .3rem .2rem;
    margin: 0 .5rem .5rem 0;
    display: inline-block;
}

.single__lecTable {
    background: white;
    border-top: 1px solid #ccc;
    border-collapse: collapse;
}

.about__data {
    flex: 0 0 50%;
}

.about__map {
    flex: 0 0 48%;
    margin-left: 2%;
}

.single__classItem {
    -js-display: flex;
    display: flex;
}

.single__classImg {
    flex: 0 0 150px;
    margin-right: 30px;
}

.single__classTtl {
    flex: 1;
}

.single__classTtl h2 {
    margin-top: 0 !important;
    font-size: 1.3rem;
}

.sort__item {
    -js-display: flex;
    display: flex;
}

.sort__itemImg {
    flex: 0 0 30%;
    text-align: center;
}

.sort__itemTxt {
    flex: 1 0 70%;
}

.sort__gov,
.sort__pub,
.sort__pri {
    border-radius: 6px;
    padding: 1rem;
    margin: 0 auto 60px;
    width: 96%;
}

.sort__gov {
    background: #fdfaee;
    border: 2px solid #ca9e40;
}

.sort__pub {
    background: #f5f5f5;
    border: 2px solid #acacac;
}

.sort__pri {
    background: #f9f1e2;
    border: 2px solid #e36939;
}

.sort__govList-head {
    color: #ca9e40;
}

.sort__pubList-head {
    color: #acacac;
}

.sort__priList-head {
    color: #e36939;
}

.table__underline {
    border-collapse: collapse;
}

.table__underline th,
.table__underline td {
    border-bottom: 1px solid #ccc;
    padding: 1rem;
}
.table__underline th {
    text-align:left;
    width: 30%;
}

.search__cat {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
}

.search__catItem {
    flex: 0 0 50%;
    margin-bottom: 60px;
}
.search__catHeader {
    -js-display: flex;
        display: flex;
        margin-bottom: 10px;
}
.catHeader__ttl {
    color: #eb6687;
    display: block;
    font-size: 1.5rem;
    margin-left: 10px;
}

.search__resultitem {
    padding: .5rem 2%;
    border-bottom: 2px solid #eee;
    margin: 0 !important;
}
.search__resultitem:nth-child(2n+1) {
    background: #f5f5f5;
}

.single_exp-footer {
    border-top: 1px solid #ccc;
    padding: .5rem 0;
    text-align: right;
}

/* Proper test
--------------------------------------------------- */
#prop__top {
    background: url('../images/bg_prop_left.png') left 10% no-repeat, url('../images/bg_prop_right.png') right 35% no-repeat;
    min-height: 100vh;
    text-align:center;
}
.prop__bg {
    background: #fbeff2 url('../images/bg_test.png') top left repeat-x;
    min-height: 100vh;
    padding: 10px 0;
}
.prop {
    padding: 100px 0 0;
}
.prop_question {
    background: background: -webkit-gradient(linear, left top, left bottom, color-stop(0.82, #1e3a07), color-stop(0.00, #637d4d));
background: -webkit-linear-gradient(top, #637d4d 0%, #1e3a07 82%);
background: -moz-linear-gradient(top, #637d4d 0%, #1e3a07 82%);
background: -o-linear-gradient(top, #637d4d 0%, #1e3a07 82%);
background: -ms-linear-gradient(top, #637d4d 0%, #1e3a07 82%);
background: linear-gradient(top, #637d4d 0%, #1e3a07 82%);
;
    border: 8px solid #9f7322;
    box-shadow: 1px 1px 3px rgba(0,0,0,.3) inset,1px 1px 3px rgba(0,0,0,.3);
    color:white;
    font-size: 3rem;
    font-family: sans-serif;
    min-height: 240px;
    padding: 1rem;
    position: relative;
    margin: 0 auto 60px;
    width: 98%;
}

.prop_question p {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}
.chork {
    background: white;
    display: block;
    height: 3px;
    width: 20px;
    position: absolute;
    bottom: 0;
    right: 20px;
}
#prop1, #prop2,  #prop3,  #prop4,  #prop5,  #prop6,  #prop7,  #prop8,  #prop9,  #prop10, #result {
    display: none;
}

.result__cont {
    margin: 120px auto 0;
    position: relative;
}

.result__eye {
    background:#5edd18;
    border-radius: 6px;
    color: white;
    padding: .3rem .5rem;
    position: absolute;
    top: -40px;
    left: -5px;
}
.result__eye::after {
    border: 5px solid transparent;
    border-top-color: #5edd18;
    border-right-color: #5edd18;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 60%;
}
.result__head {
    border-bottom: 2px solid #eb6687;
    color: #eb6687;
    font-size: 2rem;
    padding: .5rem
}

/* Archive
--------------------------------------------------- */

.entry__archive {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1rem .5rem;
    margin: 0 auto;
}

.entry__header {
    -js-display: flex;
    display: flex;
}

.entry__thumb {
    flex: 0 0 150px;
    margin-right: 30px;
}

.entry__body {
    flex: 1 1 0%;
}
.archive__main {
    -js-display: flex;
        display: flex;
        flex-wrap: wrap;
}

.archive__item {
    border: 3px solid #eee;
    border-radius:3px;
    flex: 0 0 30%;
    margin: 0 1.5% 30px;
    padding: 1rem;
}
.archive__item a, .archive__item a:hover, .archive__item a:active, .archive__item a:visited {
    color: #eb6687;
}
.archive__item h2 {
    text-align:center;
}
.archive__tagItem {
    background: #f2b8c6;
    border-radius: 3px;
    font-size: .9rem;
    margin-right: 10px;
    padding: .2rem .5rem;
}

.meta__head {
    background: #e4007e;
    border-radius: 3px;
    color: white;
    margin-right: 1rem;
    padding: .2rem .5rem;
}

.entry__table {
    border-collapse: collapse;
}

.entry__table tr {
    border-top: 1px dashed #e4007e;
    border-bottom: 1px dashed #e4007e;
}

.entry__table th,
.entry__table td {
    padding: .5rem;
    text-align: left;
}

.entry__footer {
    -js-display: flex;
    display: flex;
    justify-content: flex-end;
}
.archive__header {
    position: relative;
}
.archive__label {
    background:#e4007e;
    color:white;
    font-size: .8rem;
    padding: .1rem .2rem;
    position: absolute;
    top: -.5rem;
    left: -1.2rem;
}
.archive__testItem {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 30px;
}

/* Media query
--------------------------------------------------- */

@media screen and (max-width: 1024px) {
    .l-row {
        flex-direction: column;
    }
    .l-half{
        flex: 0 0 100%;
        margin: 0;
    }
    .l-half:nth-child(2n) {
        margin: 0;
    }
    /* header */
    .home-header {
    background: white;
    height:60px;
    }
    .home-header > .header__inner {
        display: none;
    }
    .home-header > .home__spHeader {
        -js-display: flex;
            display: flex;
            justify-content: space-between;
        margin: 0 auto;
        max-height: 79px;
    }
    .header__inner {
        justify-content: space-between;
    }
    .header__logo {
        flex: 0 0 50%;
    }
    .header__test,
    .header__share,
    .header__sub,
    .header__search {
        display: none;
    }

    /* footer */
    .footer__content {
        flex-direction: column;
        height: 100%;
        margin: 0 2%;
        width: 96%;
    }
    #logo__footer + ul {
        height:100%;
        margin: 0 0 30px;
    }
    .footer__category {flex-direction: column;}
    .footer__catMenu {flex-direction: column;}
    .footer__categoryTtl {
        margin-bottom: 10px;
    }
    .footer_catMenu1 ul li, .footer_catMenu2 ul li, .footer_catMenu3 ul li {
        margin: 20px 0;
    }

    .wrapper-content {
        background: none;
    }
    .page-content,
    .entry-content,
    .entry-summary {
        width: 96%;
    }
    .page__ttl {
        font-size: 1.5rem;
    }
    .page__ttl::before {
        height: 20px;
        margin-right: 10px;
        width: 20px;
    }
    .page__ttl::after {
        height: 20px;
        margin-left: 10px;
        width: 20px;
    }
    #hero__txt {
        margin-top: 90px;
        width:100%;
    }
    .hero__desc {
        width: 96%;
    }

    .ttl__home_stories {
        width: 100%;
    }
    .home__storyItem {
        flex: 0 0 94%;
        margin: 0 auto 30px;
    }

    .form__table th,
    .form__table td {
        display: block;
    }

    .sort__header, .about__header {
        min-height: 200px;
    }
    .sort__item {
        flex-direction: column;
    }
    .search__cat {
        flex-direction: column;
    }
    .search__catItem {
        flex: 1;
        margin: 0 auto 30px;
        width: 96%;
    }
    .archive__item {
        flex: 1;
        margin: 0 auto 30px;
        width:96%;
    }

    .single__headerInfo {
        flex-direction: column;
    }
    .info__pv {
        text-align:left;
    }

    #prop__top {
        background: none;
    }
}