/*--------------------------------------------------------------------------------
　トップページ
--------------------------------------------------------------------------------*/
body {
    background-color: #e8f0c5;
}

.index .header {
    padding: 0;
}

.index .main-contents {
    background-image: none;
    padding: 0;
}

.bg-wrap {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

.title-wrap {
    margin: 0 auto;
}

.coming-wrap {
    width: 100%;
}

.coming-txt {
    font-size: 3.6rem;
    line-height: 1em;
    padding: 10% 0;
    text-align: center;
}

.js-animation {
    transition: 1.2s transform, 1.2s opacity;
    transform: translateY(40px);
    opacity: 0;
}

.js-animation.is-active {
    opacity: 1;
    transform: translateY(0);
}
.note-slider,
.report-slider,
.so-slider {
    display: none;
}
.note-slider.slick-initialized,
.report-slider.slick-initialized,
.so-slider.slick-initialized {
    display: block;
}

/*--------------------------------------------------------------------------------
　スライド
--------------------------------------------------------------------------------*/
.main-wrap {
    background-image: url(../img/index/bg-main.png);
    padding: 0 0 17%;
}

.main-flex-box {
    align-items: center;
    flex-direction: row-reverse;
    padding: 5% 0 0;
    position: relative;
}

.main-flex-box > .main-left {
    margin-left: -10%;
    position: relative;
    width: 63%;
}

.main-left > .mask {
    mask-image: url(../img/index/note-mask.png);
    -webkit-mask-image: url(../img/index/note-mask.png);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: left center;
    -webkit-mask-position: left center;
}

.note-slider {
    margin: 0 auto !important;
    padding: 0;
}

.note-slider .slick-dots {
    display: none !important;
}

.slick-slide img {
    width: 100%;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.main-flex-box > .main-right {
    margin-top: -7%;
    text-align: center;
    width: 37%;
}

.main-flex-box .main-right .logo-view {
    /*margin: 20px 0 0;*/
    margin: 10% 0 0;
    opacity: 0;
    transition: opacity 1s ease,margin 1s ease;
    transition-delay: .6s;
}

.main-contents.in-view-active .main-flex-box .main-right .logo-view {
    margin: 5% 0 0;
    opacity: 1;
}

.main-flex-box > .main-right .logo-view > img,
.main-flex-box > .main-right .logo-view > p {
    max-width: 90%;
}

.main-flex-box > .main-right .logo-view > p {
    font-size: 2.5rem;
    margin: 15px auto 0;
}

.posi-pen {
    position: absolute;
    right: -1%;
    top: 3%;
    width: 15%;
    animation: pen-anim 4s step-start 0s infinite normal;
}

.posi-eraser {
    bottom: 10%;
    position: absolute;
    right: 12%;
    width: 9%;
    animation: eraser-anim 6s step-start 0s infinite normal;
}

@keyframes pen-anim {
    0% {
        -webkit-transform: translate(0, 0) rotate(6deg);
        transform: translate(0, 0) rotate(6deg);
    }
    10% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(0, 0) rotate(-6deg);
        transform: translate(0, 0) rotate(-6deg);
    }
    30% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(0, 0) rotate(6deg);
        transform: translate(0, 0) rotate(6deg);
    }
    50% {
        -webkit-transform: translate(0, 0) rotate(-2deg);
        transform: translate(0, 0) rotate(-2deg);
    }
    60% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(0, 0) rotate(6deg);
        transform: translate(0, 0) rotate(6deg);
    }
    80% {
        -webkit-transform: translate(0, 0) rotate(-2deg);
        transform: translate(0, 0) rotate(-2deg);
    }
    90% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(0, 0) rotate(6deg);
        transform: translate(0, 0) rotate(6deg);
    }
}

@keyframes eraser-anim {
    0% {
        -webkit-transform: translate(0, 2px) rotate(-6deg);
        transform: translate(0, 2px) rotate(-6deg);
    }
    10% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(0, 0) rotate(6deg);
        transform: translate(0, 0) rotate(6deg);
    }
    30% {
        -webkit-transform: translate(0, 2px) rotate(0deg);
        transform: translate(0, 2px) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(0, 2px) rotate(-6deg);
        transform: translate(0, 2px) rotate(-6deg);
    }
    50% {
        -webkit-transform: translate(-2px, 0) rotate(2deg);
        transform: translate(-2px, 0) rotate(2deg);
    }
    60% {
        -webkit-transform: translate(0, -2px) rotate(0deg);
        transform: translate(0, -2px) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(0, 0) rotate(-6deg);
        transform: translate(0, 0) rotate(-6deg);
    }
    80% {
        -webkit-transform: translate(-2px, 0) rotate(2deg);
        transform: translate(-2px, 0) rotate(2deg);
    }
    90% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(0, 2px) rotate(-6deg);
        transform: translate(0, 2px) rotate(-6deg);
    }
}

/*--------------------------------------------------------------------------------
　J・O・NOTEとは？
--------------------------------------------------------------------------------*/
.about-wrap {
    background-image: url(../img/index/bg-about.png);
    margin: -21% auto 0;
    padding: 20% 0 10%;
    z-index: 1;
}

.about-wrap .width-state {
    overflow: hidden;
}

.about-txt-wrap {
    max-width: 65%;
    padding: 0 0 10%;
}

.about-txt-wrap > .title-wrap {
    margin: 20px auto 40px;
}

.about-txt-wrap .about-txt {
    font-size: 3.3rem;
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
}

.about-txt-wrap .about-txt2 {
    margin: 20px auto;
}

.about-wrap .note-img {
    position: absolute;
    right: 2%;
    top: 35%;
    width: 30%;
}

.js-animation2 {
    transition: .5s transform, .5s opacity;
    transform: translateX(40px);
    opacity: 0;
}

.js-animation2.is-active {
    opacity: 1;
    right: 11%;
    transform: translateX(0);
}

/*--------------------------------------------------------------------------------
　NEWS
--------------------------------------------------------------------------------*/
.news-wrap {
    background-image: url(../img/index/bg-news.png);
    margin: -11% auto 0;
    padding: 13% 0 15%;
    z-index: 1;
}
.news-bg-wrap {
    background-image: url(../img/index/news-list-bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}
.news-flex-box {
    align-items: center;
    padding: 9% 5%;
    position: relative;
}
.news-clip {
    font-size: 0;
    line-height: 1;
    position: absolute;
    right: 50%;
    top: -7%;
    width: 7.2%;
}
.news-icon {
    font-size: 0;
    line-height: 1;
    position: absolute;
    top: calc(50% - 40px);
    width: 100px;
    right: 0;
    z-index: -1;
}
.js-animation3 {
    transition: .5s transform, .5s opacity;
    transform: translateX(20px);
}

.js-animation3.is-active {
    transform: translateX(50px);
}

.news-flex-box > .news-left {
    padding-right: 3%;
    text-align: center;
    width: 23%;
}

.news-flex-box > .news-right {
    width: 77%;
}

.news-more {
    max-width: 95%;
    margin: 15px auto 0;
}

.news-more > a {
    background-color: #f7ac3b;
    border: 2px solid #000;
    border-radius: 20px;
    color: #fff;
    display: block;
    font-size: 1.9rem;
    padding: 6px 10px;
}

.news-list > li {
    margin: 0 auto 15px;
}

.news-list > li > a {
    align-items: center;
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 500;
    display: flex;
}

.news-list .data {
    font-size: 1.9rem;
    vertical-align: top;
    white-space: nowrap;
}

.news-list .data .dot {
    display: inline-block;
    padding: 0 5px;
}

.news-list .category {
    background-color: #000;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 5px;
    min-width: 80px;
    padding: 3px 5px;
    text-align: center;
}
.news-list .cate_prefecture {
    background: none;
    border: 1px solid #000;
    color: #000;
    min-width: 60px;
}

.news-list .detail-tit {
    font-size: 1.9rem;
    vertical-align: top;
}

/*--------------------------------------------------------------------------------
　J・O・NOTEのナゾ？ faq-wrap
--------------------------------------------------------------------------------*/
.faq-wrap {
    background-image: url(../img/index/bg-faq.png);
    /*margin: -12% auto 0;*/
    margin: -14% auto 0;
    padding: 15% 0;
    z-index: 1;
}

.faq-wrap .title-wrap {
    margin: 0 auto 50px;
    text-align: center;
}

.faq-wrap .title-wrap > img {
    max-width: 546px;
}

.faq-flex-box {
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 1000px;
}

.faq-flex-box .faq-left {
    /*padding: 0 3% 0 10%;*/
    width: 62%;
}

.faq-flex-box .faq-right {
    position: absolute;
    right: 0;
    width: 38%;
}

.faq-txt-box {
    margin: 0 0 30px;
}

.faq-txt-box > .question-txt {
    display: inline-block;
    font-size: 3rem;
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 700;
    margin-left: 4%;
}

.js-marker {
    display: inline;
    position: relative;
    background: linear-gradient(transparent 70%, #8cdce2 0);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 30%;
    transition: all 1s ease-in-out;
}

.js-marker.inview {
    background-size: 100% 100%;
}

.faq-txt-box > .question-txt::before {
    background-image: url(../img/index/faq-question.svg);
    background-size: 35px auto;
    background-position: left top;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    margin-right: -4%;
    height: 1.2em;
    vertical-align: middle;
    width: 2em;
}

.faq-txt-box > .answer-txt {
    font-size: 3rem;
    line-height: 1em;
    margin: .6em 0 0 1.2em;
    padding-left: 1em;
    text-indent: -1em;
}

.faq-txt-box > .answer-txt::before {
    background-image: url(../img/index/faq-answer.svg);
    background-size: 25px auto;
    background-position: left top;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 1em;
    vertical-align: middle;
    width: 1em;
}

.faq-flex-box .faq-right > img {
    width: 100%;
}

.faq-img {
    border-radius: 25px 0 0 25px;
    max-height: 300px;
    overflow: hidden;
}

.faq-img .simpleParallax {
    border-radius: 25px 0 0 25px;
}

.faq-img .thumbnail {
    width: 100%;
}

/*--------------------------------------------------------------------------------
　J・O・NOTEレポート report-wrap
--------------------------------------------------------------------------------*/
.report-wrap {
    background-image: url(../img/index/bg-report.png);
    margin: -13% auto 0;
    padding: 15% 0;
    z-index: 1;
}

.report-wrap .title-wrap {
    margin: 0 auto 50px;
    /*position: relative;*/
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-wrap .report-more {
    display: inline-block;
    margin-left: 1em;
}

.report-more > a {
    border-bottom: 1px solid #FF846C;
    color: #FF846C;
    display: block;
    font-size: 1.8rem;
    padding: 0 5px;
}

.report-wrap .title-wrap > img {
    max-width: 50%;
}

.report-slider {
    margin: 0 auto;
    padding: 0;
}
/*.slick-slide {*/
/*    margin: 0 20px;*/
/*}*/
.report-link > a {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 14px;
    display: flex;
    /*max-width: 1250px;*/
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /*transition: .5s;*/
}

.report-link > a:before,
.report-link > a:after,
.report-flex-box:before,
.report-flex-box:after {
    -webkit-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
    content: '';
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #000000;
}

.report-link > a:before {
    left: 1.5rem;
    top: 1.5rem;
}

.report-link > a:after {
    right: 1.5rem;
    top: 1.5rem;
}

.report-flex-box:before {
    bottom: 1.5rem;
    left: 1.5rem;
}

.report-flex-box:after {
    bottom: 1.5rem;
    right: 1.5rem;
}

.report-flex-box {
    padding: 30px;
}

.report-link > a:hover {
    opacity: 1;
    /*transform: scale(1.1);*/
}

.report-flex-box > .report-left {
    padding-right: 2%;
    width: 60%;
}

.report-flex-box > .report-left > img {
    border: 2px solid #000;
}

.report-flex-box > .report-right {
    position: relative;
    width: 40%;
}
.report-right > .flex-list {
    justify-content: space-between;
}
.report-right .report-date {
    font-size: 2rem;
}
.report-right .report-area {
    border: 1px solid #000;
    font-size: 2rem;
    padding: 2px 5px;
    text-align: center;
}
.report-right > .report-tit {
    font-size: 2.2rem;
    margin: 10px auto 15px;
}

.report-link > a:hover .report-right > .report-tit {
    color: #FF846C;
}

.report-right > .report-txt {
    font-size: 1.8rem;
    line-height: 1em;
}

.for-more {
    color: #999;
    font-size: 2rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.report-wrap .slide-dots li button::before {
    top: 15px;
}

.report-slider .slide-arrow {
    top: 40%;
}

.report-slider .prev-arrow {
    left: -35px;
}

.report-slider .next-arrow {
    right: -35px;
}

/*--------------------------------------------------------------------------------
　これまでのノート collection-wrap so_far_note
--------------------------------------------------------------------------------*/
.collection-wrap {
    background-image: url(../img/index/bg_note_history.png);
    margin: -13% auto 0;
    padding: 15% 0 23%;
    z-index: 1;
}

.collection-wrap .title-wrap {
    margin: 0 auto 1.5em;
    text-align: center;
}

.so_far_note {
    background-image: url(../img/index/bg_note.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    padding: 20% 1% 8% 6%;
}

.so-slider {
    margin: 0 auto !important;
    padding: 0;
    width: 75%;
}

.slide-arrow {
    position: absolute;
    top: 30%;
    width: 25px;
}

.so-slider .prev-arrow {
    left: -25px;
}

.so-slider .next-arrow {
    right: -25px;
}

.slide-dots {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.slide-dots li {
    margin: 0 5px;
}

.slide-dots li button {
    position: relative;
    text-indent: -9999px;
    background: none;
    border: none;
    outline: none;
}

.slide-dots li button::before {
    background-image: url(../img/index/dot01.png);
    background-repeat: no-repeat;
    background-size: 15px auto;
    content: "";
    cursor: pointer;
    height: 25px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -10px;
    width: 25px;
}

.slide-dots li.slick-active button::before {
    background-image: url(../img/index/dot02.png);
}

.so-slider .slick-list li {
    margin: 0 2em;
    text-align: center;
}

.so-slider li a {
    display: block;
}

.so-slider li a p {
    background-color: #000;
    border-radius: 14px;
    color: #fff;
    font-size: 2rem;
    margin: 1em auto 3em;
    padding: 7px 5px;
    width: 85%;
}

.modaal-container {
    border-radius: 10px !important;
}

.modaal-content-container {
    padding: 0 !important;
}

.modal-wrap {
    display: none;
}

.modal_wrap {
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 1.6rem;
    padding: 0 3em 2em;
}

/*.modal_wrap .modal_data {*/
/*    background-color: #000;*/
/*    border-radius: 0 0 5px 5px;*/
/*    color: #fff;*/
/*    display: inline-block;*/
/*    padding: .5em 3em;*/
/*    text-align: center;*/
/*}*/

.modal_wrap .modal_tit {
    font-size: 3rem;
    line-height: 1.4em;
    text-align: center;
}

.modal_wrap .flex-box > .flex-left {
    padding-right: 5%;
    width: 50%;
}

.modal_wrap .flex-box > .flex-right {
    padding: 1em 0 0;
    width: 50%;
}

.modal_wrap .flex-right .concept_tit {
    margin: 0 auto .5em;
}

.modal_wrap .supporter_tit {
    font-size: 2.2rem;
    margin: 1em auto;
    text-align: center;
}
.modal_wrap .prefecture_list > li {
    margin: 0 auto 1em;
    width: 32%;
}
.modal_wrap .prefecture_list > li:nth-child(3n - 1) {
    margin: 0 .3%;
}
.modal_wrap .prefecture_list > li > a {
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    display: block;
    font-size: 2rem;
    padding: 10px;
    text-align: center;
}
.modaal-close {
    background: #000 !important;
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
}

.modaal-close:hover {
    color: #fff !important;
    opacity: .6;
}

/*--------------------------------------------------------------------------------
　ノートの生息地
--------------------------------------------------------------------------------*/
.map-wrap {
    background-image: url(../img/index/bg-supporter.png?1234);
    margin: -15% auto 0;
    padding: 15% 0 23%;
    z-index: 1;
}
.map-wrap .title-wrap {
    margin: 0 auto 50px;
}
.map_svg_wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: -12%;
}
.map_svg_wrap > .map_svg {
    width: 450px;
}
.jonnote_wrap {
    display: flex;
    margin-top: -35%;
    margin-left: 5%;
    width: 40%;
}
#animation {
    transform-origin: 85% 85%;
    animation: yurayura 3s linear infinite;
}
@keyframes yurayura {
    0% , 100%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(10deg);
    }
}
.human-wrap {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 50%;
}
.human-wrap {
    bottom: 30px;
    position: absolute;
    right: 5%;
    text-align: right;
    width: 50%;
}
.human-wrap-inner {
    overflow: hidden;
    opacity: 0;
}
.human-wrap-inner.is-show {
    animation: poyoyon 1s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon {
    0% {
        transform: translateY(140px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
    20%,100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------------------------
　ご意見ポスト
--------------------------------------------------------------------------------*/
.post-wrap {
    background-image: url(../img/index/bg-post2.png);
    margin: -11% auto 0;
    padding: 12% 0 15%;
    z-index: 1;
}

.post-wrap .title-wrap {
    text-align: center;
}

.post-wrap .title-wrap > img {
    width: 284px;
}

.post-wrap .cloud-wrap {
    position: relative;
}

.cloud-wrap .cloud-inner {
    display: none;
    position: absolute;
    right: -100px;
    top: -380px;
    overflow: hidden;
}
.post-wrap .cloud-wrap img {
    width: 300px;
}
.post-wrap p {
    color: #fff;
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 500;
    font-size: 3.9rem;
    line-height: 1.2em;
    margin: 20px auto 50px;
    text-align: center;
}
.post-in-wrap {
    background-color: #e95532;
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
    padding: 50px;
    width: 80%;
}
.post-in-wrap > .post-img {
    margin: 0 auto;
    max-width: 85%;
}
.post-in-wrap .form-wrap {
    width: 100%;
}
.contact-box > div {
    margin-bottom: 20px;
}
.contact-box select {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    color: #666;
    font-size: 1.6rem;
    padding: 10px;
    width: 50%;
}
.contact-box input {
    border: none;
    border-radius: 10px;
    font-size: 1.6rem;
    min-height: 52px;
    padding: 10px;
    width: 100%;
}
.contact-box input[type="text"]::-webkit-input-placeholder {
    padding-top: 0.15em;
}
.contact-box textarea {
    border: none;
    border-radius: 10px;
    font-size: 1.6rem;
    height: 200px;
    overflow: auto;
    padding: 10px;
    width: 100%;
}
.link-box {
    text-align: center;
}

.link-box > a {
    background-color: #ecaba1;
    border: 2px solid #fff;
    border-radius: 18px;
    color: #fff;
    display: inline-block;
    font-size: 3.5rem;
    min-width: 330px;
    margin: 0 auto;
    padding: 20px 10px;
}

.link-box > a:hover {
    background-color: #db614d;
}

.post-before {
    margin: -12% auto 0;
    text-align: center;
    width: 80%;
}

.post-before > img {
    margin: 0 auto;
    max-width: 50%;
}

.grass01 {
    font-size: 0;
    line-height: 1;
    position: absolute;
    left: 9%;
    width: 8%;
}

.grass01 > img {
    width: 100%;
}

.thanks-img-wrap {
    margin: 45px auto;
    text-align: center;
    width: 35%;
}

.questionnaire_wrap {
    position: fixed;
    bottom: 0;
    right: 10px;
    font-size: 0;
    line-height: 1;
    z-index: 9999;
}

@media only screen and (max-width: 1500px) {

    .post-in-wrap {
        padding: 30px;
        width: 60%;
    }

    .link-box > a {
        min-width: 250px;
    }

    .post-before {
        margin: -9% auto 0;
        width: 60%;
    }
}

@media only screen and (max-width: 1024px) {

    /*--------------------------------------------------------------------------------
    　共通
    --------------------------------------------------------------------------------*/
    .news-wrap > .width-state,
    .about-wrap > .width-state,
    .report-wrap > .width-state,
    .map-wrap > .width-state,
    .post-wrap > .width-state {
        max-width: 100%;
        padding: 0 10%;
        width: 100% !important;
    }

    .main-flex-box > .main-right .logo-view > p {
        font-size: 2rem;
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEとは？ about-wrap
    --------------------------------------------------------------------------------*/
    .about-txt-wrap .about-txt {
        font-size: 2.5rem;
    }

    /*--------------------------------------------------------------------------------
    　NEWS news-wrap
    --------------------------------------------------------------------------------*/
    .news-flex-box {
        padding: 6% 5%;
    }

    .news-flex-box > .news-right {
        max-height: 120px;
        overflow-y: scroll;
    }

    .news-more > a {
        font-size: 1.5rem;
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEナゾ？ faq-wrap
    --------------------------------------------------------------------------------*/
    .faq-wrap {
        margin: -19% auto 0;
        padding: 20% 0;
    }

    .faq-flex-box .faq-left {
        padding: 0;
        margin: 0 auto;
        width: calc(100% - 80px);
    }

    .faq-flex-box .faq-right {
        position: static;
        padding-left: 25%;
        width: 100%;
    }

    .faq-img {
        max-height: 100%;
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEレポート report-wrap
    --------------------------------------------------------------------------------*/
    .report-wrap {
        margin: -15% auto 0;
    }

    .report-wrap .title-wrap > img {
        max-width: 70%;
    }

    .report-flex-box {
        padding: 30px 20px;
    }

    .report-flex-box > .report-left {
        padding: 0 0 2%;
        width: 100%;
    }

    .report-flex-box > .report-right {
        width: 100%;
    }

    /*--------------------------------------------------------------------------------
    　これまでのノート so_far_note
    --------------------------------------------------------------------------------*/
    .collection-wrap {
        padding: 15% 0;
    }

    .so_far_note {
        background: none;
        margin: 5em auto 0;
        padding: 0;
    }

    .so-slider {
        background-image: url(../img/index/bg_note_sp.png);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: contain;
        padding: 20% 18% 0;
        width: 100%;
    }

    .so-slider .slide-arrow {
        top: 45%;
    }

    .so-slider .next-arrow {
        right: 70px;
    }
    .so-slider .prev-arrow {
        left: 70px;
    }
    .so-slider .slide-dots li button::before {
        top: -20px;
    }

    /*--------------------------------------------------------------------------------
    　ノートの生息地 map-wrap
    --------------------------------------------------------------------------------*/
    .jonnote_wrap > img {
        width: 250px;
    }

    /*--------------------------------------------------------------------------------
    　ご意見ポスト post-wrap
    --------------------------------------------------------------------------------*/
    .post-wrap .title-wrap img {
        max-width: 50% !important;
    }
    .post-in-wrap {
        padding: 50px;
        width: 100%;
    }
    .post-wrap p {
        font-size: 3rem;
    }
    .post-wrap .width-state {
        width: calc(100% - 40px);
    }
    .post-wrap .cloud-inner img {
        display: none;
        width: 150px;
    }
    .contact-box > div {
        margin-bottom: 10px;
    }
    .contact-box input {
        border-radius: 2px;
        min-height: 50px;
        padding: 5px;
    }
    .contact-box textarea {
        border-radius: 2px;
        height: 200px;
        padding: 5px;
    }

}

@media screen and (max-width:767px) {

    /*--------------------------------------------------------------------------------
    　トップページ 共通
    --------------------------------------------------------------------------------*/
    body {
    }

    .index .inner-box {
        max-width: 100%;
        width: calc(100% - 80px);
        padding: 0;
    }

    .coming-txt {
        font-size: 3rem;
    }

    /*--------------------------------------------------------------------------------
    　スライド
    --------------------------------------------------------------------------------*/
    .main-wrap {
        background-image: url(../img/index/bg-main-sp.png);
        padding: 0 0 15%;
    }

    .main-flex-box {
        margin: 0 auto;
        padding: 20% 0 10%;
        width: calc(100% - 80px);
    }

    .main-flex-box > .main-left {
        margin: 5% auto 0;
        width: 100%;
    }

    .main-left > .mask {
        margin-left: 0;
        mask-image: url(../img/index/note-mask-sp.png);
        -webkit-mask-image: url(../img/index/note-mask-sp.png);
        -webkit-mask-position: center;
    }

    .main-flex-box > .main-right {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .main-flex-box > .main-right .logo-view > p {
        font-size: 1.8rem;
        margin: 0 auto 15px;
        max-width: 100%;
    }

    .main-flex-box > .main-right .logo-view > img {
        max-width: 100%;
    }

    .posi-pen {
        right: -5%;
        top: 10%;
        width: 18%;
    }

    .posi-eraser {
        display: none;
    }

    .posi-eraser-sp {
        display: block;
        position: absolute;
        bottom: 10%;
        left: 5%;
        width: 10%;
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEとは？
    --------------------------------------------------------------------------------*/
    .about-wrap {
        background-image: url(../img/index/bg-about-sp.png);
        padding: 20% 0;
        text-align: center;
    }

    .about-wrap .note-img {
        margin: 0 auto 15%;
        position: static;
        width: 70%;
    }

    .about-txt-wrap {
        max-width: 100%;
        margin: 0 auto;
        /*width: calc(100% - 60px);*/
    }

    .about-txt-wrap .about-txt {
        font-size: 1.8rem;
    }

    /*--------------------------------------------------------------------------------
    　NEWS news-wrap
    --------------------------------------------------------------------------------*/
    .news-wrap {
        margin: -15% auto 0;
        padding: 20% 0;
    }
    .news-flex-box > .news-left .title-wrap {
        margin: 0;
        width: 45%;
    }
    .news-left .title-wrap > img {
        width: 80px;
    }
    .news-bg-wrap {
        background-image: none;
    }
    .news-flex-box {
        display: block;
        margin: 0 auto;
        padding: 15% 10%;
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .news-clip {
        right: 13%;
        top: -5%;
        transform: rotate(10deg);
        width: 45px;
    }
    .news-icon {
        top: calc(50% - 70px);
        width: 18%;
    }
    .js-animation3.is-active {
        transform: translateX(35px);
    }
    .news-flex-box > .news-left {
        border-bottom: 2px solid #000;
        padding: 0;
        text-align: left;
        width: 100%;
    }
    .news-flex-box > .news-right {
        max-height: 100%;
        overflow-y: auto;
        padding: 10px 0 0;
        width: 100%;
    }
    .news-list > li {
        margin: 0 auto 5px;
    }
    .news-list > li > a {
        display: block;
    }
    .news-list .data {
        display: inline-block;
        font-size: 1.2rem;
        line-height: 1em;
        margin-right: 5px;
        vertical-align: middle;
    }
    .news-list .category {
        border: 1px solid #000;
        display: inline-block;
        font-size: 1rem;
        margin-right: 0;
        min-width: 45px;
        padding: 0 5px;
        vertical-align: middle;
    }
    .news-list .cate_prefecture {
        margin-left: 5px;
    }
    .news-list .data .dot {
        display: none;
    }
    .news-list .detail-tit {
        display: block;
        font-size: 1.3rem;
    }
    .news-more {
        margin: 0 auto;
        width: 50%;
    }
    .news-more > a {
        font-size: 1.3rem;
        padding: 2px 10px;
        text-align: center;
    }

    @media screen and (max-width:400px) {

        .news-clip {
            top: -11%;
        }
        .news-flex-box {
            padding: 5% 10%;
        }
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEナゾ？ faq-wrap
    --------------------------------------------------------------------------------*/
    .faq-wrap {
        background-image: url(../img/index/bg-faq-sp.png);
    }

    .faq-wrap .title-wrap > img {
        max-width: 280px;
    }

    .faq-flex-box .faq-left {
        width: calc(100% - 60px);
    }

    .faq-txt-box > .question-txt {
        font-size: 1.7rem;
        margin-left: 4%;
    }

    .faq-txt-box > .question-txt::before {
        background-size: 20px auto;
    }

    .faq-txt-box > .answer-txt {
        font-size: 1.5rem;
        margin-left: 1.8em;
    }

    .faq-txt-box > .answer-txt::before {
        background-size: 10px auto;
    }

    /*--------------------------------------------------------------------------------
    　J・O・NOTEレポート report-wrap
    --------------------------------------------------------------------------------*/
    .report-wrap {
        background-image: url(../img/index/bg-report-sp.png);
        margin: -13% auto 0;
        padding: 15% 0;
    }

    .report-wrap .title-wrap {
        margin: 0 auto 30px;
        padding-top: 3em;
    }

    .report-wrap .title-wrap > img {
        max-width: 300px;
    }

    .report-link {
        margin: 0 auto;
        max-width: 95%;
    }

    .report-right > .report-date,
    .report-right > .report-txt {
        font-size: 1.3rem;
    }

    .report-right > .report-tit {
        font-size: 1.8rem;
        line-height: 1em;
        margin: 5px auto 10px;
    }

    .for-more {
        font-size: 1.4rem;
        position: static;
        text-align: center;
    }

    .report-slider .prev-arrow {
        left: -20px;
    }

    .report-slider .next-arrow {
        right: -20px;
    }

    .slide-arrow {
        width: 15px;
    }

    .slide-dots li {
        margin: 0 2px;
    }

    .slide-dots li button::before {
        background-size: 10px auto;
        height: 10px;
        width: 10px;
    }

    /*--------------------------------------------------------------------------------
    　ノートヒストリー so_far_note
    --------------------------------------------------------------------------------*/
    .collection-wrap {
        background-image: url(../img/index/bg_note_history_sp.png);
        margin: -15% auto 0;
        padding: 10% 0 25%;
    }
    .collection-wrap .title-wrap {
        width: 85%;
    }
    .so-slider {
        padding: 20% 10% 0;
    }
    .so-slider .prev-arrow {
        left: 25px;
    }
    .so-slider .next-arrow {
        right: 25px;
    }
    .so-slider li a p {
        border-radius: 5px;
        font-size: 1.4rem;
        margin: 1em auto 2em;
        padding: 5px;
        max-width: 90%;
    }

    /*.modal_wrap .modal_data {*/
    /*    padding: 0.5em 1em;*/
    /*}*/

    .modal_wrap {
        padding: 0 2em 2em;
    }

    .modal_wrap .modal_tit {
        font-size: 2.2rem;
        margin: 1em auto 0;
    }

    .modal_wrap .flex-box {
        display: block;
    }

    .modal_wrap .flex-box > .flex-left {
        padding: 1em 0 0;
        width: 100%;
    }

    .modal_wrap .flex-box > .flex-right {
        width: 100%;
    }

    .modal_wrap .supporter_tit {
        font-size: 1.7rem;
        margin-top: 2em;
    }
    .modal_wrap .prefecture_list {
        display: block;
    }
    .modal_wrap .prefecture_list > li {
        display: block;
        margin: 0 auto 1em !important;
        width: 100%;
    }
    .modal_wrap .prefecture_list > li > a {
        font-size: 1.4rem;
    }
    .modaal-close {
        width: 30px !important;
        height: 30px !important;
    }

    .modaal-close:after,
    .modaal-close:before {
        top: 6px !important;
        left: 13px !important;
        width: 4px !important;
        height: 17px !important;
    }

    /*--------------------------------------------------------------------------------
    　ノートの生息地 map-wrap
    --------------------------------------------------------------------------------*/
    .map-wrap {
        background-image: url(../img/index/bg-supporter-sp.png);
        margin: -20% auto 0;
        padding: 30% 0 0;
    }
    .map-wrap .title-wrap {
        text-align: center;
    }
    .map-wrap .title-wrap > img {
        width: 250px;
    }
    .map_svg_wrap {
        display: block;
        margin-top: 0;
    }
    .map_svg_wrap > .map_svg {
        width: 100%;
    }
    .jonnote_wrap {
        display: block;
        margin: 30px auto;
        text-align: center;
        width: 60%;
    }
    /*.jonnote_wrap > img {*/
    /*    width: 150px;*/
    /*}*/
    .human-wrap {
        margin: 0 auto -15%;
        position: static;
        width: calc(100% - 40px);
    }

    /*--------------------------------------------------------------------------------
    　ご意見ポスト post-wrap
    --------------------------------------------------------------------------------*/
    .post-wrap {
        background-image: url(../img/index/bg-post-sp.png);
        padding: 20% 0 35%;
    }
    .post-wrap > .width-state {
        padding: 0 5%;
    }
    .post-wrap p {
        font-size: 1.4rem;
        margin: 10px auto 30px;
    }
    .post-in-wrap {
        height: 450px;
        padding: 20px 30px;
        width: 100%;
    }
    .contact-box select {
        border-radius: 2px;
        padding: 5px;
    }
    .contact-box input {
        min-height: 0;
    }
    .contact-box textarea {
        height: 130px;
    }
    .link-box > a {
        border-radius: 10px;
        font-size: 2rem;
        min-width: 40%;
        padding: 10px 20px;
    }
    .post-before {
        margin: -5% auto 0;
        width: 80%;
    }
    .thanks-img-wrap {
        margin: 20px auto;
        width: 40%;
    }

    .questionnaire_wrap > a > img {
        width: 100px;
    }
}