@charset ”utf-8”;

*{
    box-sizing: border-box;
    font-family:'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック', sans-serif;
    padding: 0;
    scroll-behavior: smooth;
    margin: 0;
}
ul {
    list-style: none;
}
body {
    animation: fadein 2s forwards;
    color: #333;
    font-size: 18px;
    width: 100%;
}
html,body{
    height:100%;
}

img {
    width: 100%;
    height: auto;
}

@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
  }
.container {
    max-width: 1200px;
    margin: 0 auto 30px;
    min-height: 100%;
}
small {
    font-size: 80%;
}
.flex {
    align-items: center;
    display: flex;
    justify-content: center;
}

.lang-btn {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #2EA364;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.lang-btn-up {
    right: 10px;
    bottom: 100px;
    transition: all 1s;
}
.lang-content {
    background-color: #6ACAA7;
    border-radius: 99999px;
    display: none;
    width: 60px;
    padding-bottom: 60px;
    position: fixed;
    z-index: 1;
    right: 10px;
    bottom: 30px;
}
.lang-content-up {
    bottom: 100px;
    transition: all 1s;
}
.lang-content li a {
    background-color: #fff;
    border-radius: 50%;
    color: #2EA364;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    height: 50px;
    padding-top: 12px;
    margin: 5px auto;
    text-align: center;
    width: 50px;
}
.lang:hover .lang-content {
    display: block;
    transition: all .5s;
}
#lang:checked ~ .lang-content {
    display: block;
    transition: all .5s;
}
.lang-check {
    display: none;
}
.lang img{
    width: 80%;
    filter: brightness(0) invert(1);
}

.pagetop {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #2EA364;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: translateY(20%) rotate(-45deg);
}
.js-fadein {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

a:hover {
    opacity: 0.5;
    transition: .4s;
}

.about-btn:hover, .social-icons>a:hover {
    transform: scale(1.1, 1.1);
    transition: .4s;
}
.shopping-step a:hover, .shopping-step a:visited, .answer a:hover, .answer a:visited, .sub-box a:hover, .sub-box a:visited, button:hover, .purchase a:hover, .purchase-btn:hover, .lang-content li a:hover, .proxy-modal a:hover, .banner-center a:hover{
    opacity: 70%;
    transition: all .3s;
}
button:active, .purchase-btn:active {
    transform: translate3d(0, 3px, 0);
}
/*navigation menu*/
header{
    /*画像など入れる*/
    width: 100%;
}
.header-mv {
    background: url(../img/header_pic.webp) center / cover;
    height: 0;
    margin: 0 auto;
    width: 100%;
    padding-top: 25%; /*height 0にするかわりにpadding-topで高さを出す*/
}

.header-nav {
    background-color: #fff;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1;
}
.hamburger, #hamburger{
    display: none;
}
.nav-ul {
    background-color: #fff;
    border: 1px solid #6ACAA7;
    height: auto;
    text-align: center;
}
.selected { /*選択された該当メニューを緑にする*/
    background-color: #2EA364;
}
.nav-li {
    color: #fff;
    min-width: 50px;
    position: relative;
    /* transition: all .3s; */
    width: calc(100% / 6);
}
.nav-li:not(:first-child)::before {
    border-left: 1px solid #6ACAA7;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}
.nav-li a {
    color: #6ACAA7;
    display: block;
    padding: 8% 0;
    text-decoration: none;
    width: 100%;
}
.selected a { /*選択された該当メニューの文字を白にする*/
    color: #fff;
}
.nav-li:hover {
    color: #ffffff;
    background: #2EA364;
}
.nav-li a:hover {
    color: #ffffff;
}
/*Dropdown*/
.faq-dropdown-ul {
    display: none;
    position: absolute;
    top: 100%;
    right: -200%;
    width: 600%; 
    height: auto;
}
.faq-dropdown-li {
    width: 100%;
}
.nav-li:hover .faq-dropdown-ul {
    display:flex;
}
.shown { /*該当メニューが選ばれた時に小見出しを固定表示*/
    display: flex;
}
.faq-dropdown-li {
    background-color: #6ACAA7;
    position: relative;
    /* transition: all .3s; */
}
.faq-dropdown-li:not(:first-child)::before {
    border-right: 1px solid #ffffff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}
.faq-dropdown-li:hover {
    background: #2EA364;
}
.faq-dropdown-li a {
    align-items: center;
    color: #fff;
    justify-content: center;
    position: relative;
    text-decoration: none;
}
/*General Heading*/
h3 {
    border-bottom: solid 5px #2EA364;
    font-size: 1.5em;
    padding: 100px 20px 10px;
}
.subheading-decoration::before, .decoration::before {
    background-image:linear-gradient(#2EA364 50%, #6ACAA7 50%);
    background-repeat: no-repeat;
    background-size: 5px 100%;
    content: "";
    padding: 0.4em 0.7em;
}
.anchor {
    scroll-margin: 120px; /*メニューとかぶらないようにする　スマホ対応も忘れずに*/
}

h4 {
    font-size: 1.3em;
    margin: 50px 20px 0;
}
.section {
    margin-top: 30px;
    width: 100%; 
}

.section__text{
    padding-inline: 1em;
}
/*index*/
.about-btn {
    margin: 10px;
}
.about-btn img {
    max-width: 300px;
}
.about-btn p {
    margin: 0 auto;
    padding-top: 5%;
}
.about-banner {
    font-size: 1.5rem;
    padding: 2rem 0 1rem 1rem;
    text-align: left;
}
.banner-center {
    text-align: center;
}
.about-banner+a>img {
    width: 80%;
}
.about-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
}
/*モーダルウィンドウ*/
.l_litymodal {
    background-color: #EBEBEB;
    padding: 20px;
}
.about-modal{
    width: 600px;
    overflow-y: scroll; /*スクロールさせる*/
}
.proxy-modal {
    max-width: 1000px;
}
.proxy-modal img {
    max-width: 300px;
}
.pc-shopping-modal {
    display: block;
    max-width: 90%;
    text-align: center;
}
.pc-shopping-modal .flex {
    
    gap: 10px;
    justify-content: start;
}

.pc-shopping-modal figure img {
    max-width: 200px;
}

.pc-shopping-modal button { 
    background: #2EA364;
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 10px 20px;
}

.sp-shopping-modal {
    display: none;
}
.btn_melon{
    align-items: center;
    background-color:#00A667;
    display: flex;
    justify-content: space-between;
    margin:  5% auto;
    padding: 5%;
    width: 100%;
}

.btn_fromaage{
    align-items: center;
    background-color:#6589D8;
    display: flex;
    justify-content: space-between;
    margin:  5% auto;
    padding: 4% 3%;
    width: 100%;
}

.btn_digital{
    align-items: center;
    background-color:#D97A85;
    display: flex;
    justify-content: space-between;
    margin:  5% auto;
    padding: 4%;
    width: 100%;
}
.btn_melon:hover,
.btn_fromaage:hover,
.btn_digital:hover,
.btn_e-books {
    opacity: 70%;
}

.main_text{
    width: 58%;
}
.main_text p{
    font-size:clamp(15px, 2.3vw, 20px) ;
    font-weight: bold;
    color: #ffffff;
}
.side_text{
    text-align: center;
    width: 45%;
}
.side_text p{
    color: #ffffff;
    font-size:clamp(10px, 1.2vw, 15px) ;
    line-height:clamp(15px, 1.3vw, 20px);
}
.side_text2{
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    text-align: center;
}
.text_font1{
    font-family: "SourceHanSansCN";
}
.text_font2{
    font-family: "Noto Sans TC";
}

    /* sns-list */
    

    .sns-list{
        display: grid;
            gap: 86px 62px;
            max-width: 590px;
            margin-inline: auto;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto;
            padding:20px;   
    }

    .sns-list__ttl{
        display: block;
        font-weight: bold;            
        color: #000;
        font-size: 20px;
        max-width: 590px;
        margin-inline: auto;
        padding-inline: 1em;
    }

    .sns-list__item,.sns-list__img,.sns-list__account-name{
        display: block;
        
    }

    .sns-list__img{
        width: 100%;
        aspect-ratio: 1/1;        
    }

    .sns-list__img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .sns-list__account-name{
        font-weight: bold;
        text-align: center;
        color: #000;
        font-size: clamp(11px,0.62vw,18px);
        padding-top: 10px;
    }



    


/*shopping guide*/
.shopping-step, .purchase {
    align-items: center;
    display: flex;
    max-width: 1000px;
    padding: 0 50px 30px;
}

.shopping-step img {
    max-width: 250px;
}
.shopping-text img{
    max-width: 320px;
}

.shopping-text {
    max-width: 50%;
    padding-left: 2rem;
}

.shopping-step a, .purchase a, .sub-box a, .answer a, .banner-center a{
    color: #2ea364;
    font-weight: bold;
}

.shopping-icon {
    padding-right: 5px;
}
.shopping-i {
    margin: 10px 0 0 10px;
}
/*contact us*/
.sub-box {
    margin: 20px 40px;
}

.contact-img{
    text-align: center;
}

.contact-img img {
    max-width: 80%;
}
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
}
.social-icons img {
    max-width: 190px;
}
.purchase {
    margin: 0 auto;
    justify-content: space-between;
}
.purchase img{
    max-width: 600px;
    text-align: center;
}
.purchase p {
    padding-right: 2rem;
}
.purchase-btn {
    font-size: 1.4rem;
    background: #2EA364;
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 0.8rem 0.2rem;
    line-height: 2rem;
    text-align: center;
    margin: 1rem auto 1rem;
    width: 60%;
}

/*FAQ*/
.accordion {
    width: 100%; 
}
.accordion li {
    border-bottom: 1px dashed #6ACAA7;
    list-style: none;
    margin: 20px 0px;
    padding: 10px;
    width: 100%;
}
.accordion li label {
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 10px;
    position: relative;
}

.accordion li label::after {
    color: #6ACAA7;
    content: '+';
    font-size: 1.4rem;
    position: absolute;
    right: 5px;
}

.Q {
    color: #6ACAA7;
    padding-right: 5px;
}
.A {
    color: #2EA364;
    display: inline-block;
    padding-right: 5px;
    vertical-align: top;
}
.small {
    font-size: 13px;
}

.p-gap {
    padding-top: 16px;
}
.accordion li input[type="checkbox"] {
    display: none;
}
.accordion .answer {
    align-items: flex-start; /*Aを上に寄せる*/
    justify-content: flex-start;/*Aとその中身を左によせる*/
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.5s, padding 0.5s;
}
.accordion input[type="checkbox"]:checked + label + .answer {
    max-height: 5000px;
    padding: 10px 10px 20px;
}
.accordion input[type="checkbox"]:checked + label::after {
    color: #6ACAA7;
    content: '-';
    font-size: 2.2rem;
}

.howto-div {
    padding-top: 2rem;
    text-align: center;
}
.howto-p {
    font-size: 1.5rem;
    padding: 2rem 0 0 1rem;
}
.howto-p a {
    color: #2ea364;
    font-weight: bold;
}
.howto-p a:hover {
    color: #6ACAA7;
}
.howto-div img {
    max-width: 80%;
}
iframe {
    display: block;
    margin: 0 auto;
    padding-top: 1rem;
    width: 90%;

}
.pc-iframe {
    height: clamp(19.2rem, 29vw, 21rem);
}
.sp-iframe {
    display: none;
}
.pickup {
    height: 410px;
}
.pickup-main {
    text-align: center;
}
.pickup-more-btn {
    background: #2EA364;
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
}
/*footer*/
/* フッター余白調整 */
footer.global_footer {
    margin-top: 0;
}

.f-u-nav {
    background-color: #153e44;
    padding: 30px 0;
}
.f-u-nav ul {
    /*display: table;*/
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}
.f-u-nav li:first-child::before {
    content: "";
}
.f-u-nav li:before {
    content: "｜";
}
.f-u-nav li {
    margin-left: 4px;
    color: #6e7077;
    display: inline; 
    white-space: nowrap;
}
.f-u-nav a {
    margin-left: 4px;
    color: #fff;
    font-size: 12px;
}
.copyright {
    color: #666;
    display: block;
    font-size: 10px;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/*tablet*/
@media screen and (max-width: 840px) {
	/* 800px以下に適用されるCSS（タブレット用） */
    .container {
        max-width: 840px;
        margin: 0 auto 30px;
    }
    .flex {
        flex-wrap: wrap;
    }
    /*Shopping Guide*/
    .shopping-text {
        flex-grow: 1;
        padding-left: 1rem;
    }
    /*Shopping Guide pop-up window*/
    .pc-shopping-modal {
        display: none;
    }
    .sp-modal-scroll {
        overflow-y: scroll; /*スクロールさせる*/
    }
    .sp-shopping-modal {
        display: block;
        height: auto;
        max-width: 450px;
        text-align: center;
    }
    .sp-shopping-modal figure:not(:last-child){
        padding-bottom: 5px;
    }
    .sp-shopping-modal figure img {
        max-width: 400px;
    }
    
    .sp-shopping-modal button { 
        background: #2EA364;
        border: none;
        border-radius: 20px;
        color: #fff;
        padding: 10px 20px;
    }
    /*FAQ*/
    .accordion .flex {
        flex-wrap: nowrap;
    }
    /*Contact Us*/
    .social-icons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .social-icons img {
        width: 190px;
    }


    /*Detailed Shopping Guide*/
    .purchase {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .purchase p {
        padding-right: 0;
        text-align: left;
        padding-bottom: 1rem;
    }
    .purchase figure {
        margin: 0 auto;
    }
    .about-banner+a>img {
        width: 70%;
    }
    .about-div {
        display: grid;
        grid-template-columns: 1fr;

    }
    /*News*/

}
/*Tablet*/
@media screen and (max-width: 780px) {
	/* 780px以下に適用されるCSS（タブレット用） */
    .container {
        position: relative;
    }
    .header-mv {
        background: url(../img/twitter-card.webp);
        height: 0;
        margin: 0 auto;
        max-width: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
        padding-top: 53.797468354%; /*height 0にするかわりにpadding-topで高さを出して可変の高さにする*/
    }
    .hamburger {
        background-color: #2EA364;
        display: flex;
        position: fixed;
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    .hamburger span,.hamburger span::before, .hamburger span::after {
        content: "";
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #fff;
        position: absolute;
    }
    .hamburger span:before {
        bottom: 8px;
        transform: .5s;
    }
    .hamburger span::after {
        top: 8px;
        transform: .5s;
    }
    #hamburger:checked ~ .hamburger>span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #hamburger:checked ~ .hamburger>span::before {
        bottom: 0;
        transform: rotate(45deg);

    }
    #hamburger:checked ~ .hamburger>span::after {
        top: 0;
        transform: rotate(-45deg);

    }
    .hidden-nav {
        display: none;
    }
    #hamburger:checked ~ .background-cover{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: rgba(3,3,3,.5);
        display: block;
    }

    .hamburger:active .nav-ul {
        display: block;
    }
 
    .nav-li {
        width: 100%;
    }
    .nav-li a {
        padding: 1rem 0;
    }
    .about-modal{
        max-width: 100%;
    }
    .faq-dropdown-li {
        width: 100%;
    }
    .faq-dropdown-ul {
        display: none;
        position: static;
        
        left: 0%;
        width: 100%; 
        height: auto;
    }
    .nav-li:hover .faq-dropdown-ul {
        display:block;
    }
    .shown {
        display: block;
    }
    .faq-shown {
        visibility: hidden;
        height: 0px;
    }




    /*News*/
    .pc-iframe {
        display: none;
    }
    .sp-iframe {
        display: block;
        height: 400px;
    }
    .anchor {
        scroll-margin: 20px; /*メニューとかぶらないようにする*/
    }
    .purchase img {
        max-width:100%;
    }


}
/*smartphone*/
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */

           /* sns-list */
           .sns-list__img{
            width: 80%;
            margin-inline: auto;
           }
           .sns-list{        
            gap: 30px 20px;
            grid-template-columns: repeat(2,48%);
            grid-template-rows: auto;
            padding: 20px;
        }


    
        .sns-list__account-name{
            font-size:16px;
        }

        .sns-list__wrap.sns-list__wrap--scroll{
            overflow-x: hidden;
        }
    
        .sns-list__wrap.sns-list__wrap--scroll .sns-list{
            display: flex;
            max-width: 100%;
            overflow-x: auto;
    
            .sns-list__item{
                min-width: 140px;
            }
        }

    /*Shopping Guide pop-up window*/
    .pc-shopping-modal {
        display: none;
    }
    .sp-shopping-modal {
        display: block;
        overflow-y: scroll; /*スクロールさせる*/
        margin: 0 auto;
        max-width: 90%;
        text-align: center;
    }
    .sp-shopping-modal figure:not(:last-child){
        padding-bottom: 5px;
    }
    .sp-shopping-modal figure img {
        max-width: 100%;
    }
    
    .sp-shopping-modal button { 
        background: #2EA364;
        border: none;
        border-radius: 20px;
        color: #fff;
        padding: 10px 20px;
    }
    .shopping-step {
        display: block;
        text-align: center;
    }
    .shopping-text {
        max-width: 100%;
        padding: 1rem 0 0;
        text-align: left;
    }
    .purchase figure {
        text-align: center;
    }
    .purchase img {
        max-width:100%;
    }

    .accordion li label::after {
        color: #6ACAA7;
        content: '+';
        font-size: 1.4rem;
        position: absolute;
        right: 0;
    }
    .shopping-text img{
        max-width: 250px;
    }
}

/* 疑似カート */
.txt_center {
    text-align: center;
}

.cont_no_border {
    padding: 3%;
    display: flex;
    gap: 1rem;
    row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.item__cont {
    width: calc(100% / 5 - 1rem);
    max-width: 320px;
    vertical-align: top;
    text-align: left;
}

.item__textbox {
    display: flex;
    flex-direction: column;
    height: 10rem;
    justify-content: space-between;
}

.item__ttl {
    background-color: transparent;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: -webkit-box;             
  -webkit-box-orient: vertical;      /* 垂直方向に配置 */
  overflow: hidden;                  /* 溢れた部分を隠す */
  text-overflow: ellipsis;           /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2; 
  line-height: 1.5rem; 
}

.item__images {
    width: 100%;
    height: clamp(220px, 24vw, 18.8rem);
    display: flex;
    align-items: center;
}

.item__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.item__btn {
    width: 100%;
    max-width: 700px;
    border: solid 1px #4CAF50;
    border-radius: 50px;
    padding: 5px 0;
    margin: 1% auto;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 3px 1px #4CAF50;
    font-size: 1rem;
    color: #4CAF50;
}

.gray {
    color: #656565;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.rank {
    color: #ffffff;
    background: #2ea364;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 0.2rem;
}

.rank1 {
    background: #d8ae06;
}

.rank2 {
    background: #b2b2b2;
}

.rank3 {
    background: #be5200;
}

.rank .material-symbols-outlined {
    font-size: 1.2rem;
}

.item__price {
    text-align: right;
    color: #d55454;
}

@media screen and (max-width: 800px) {
.cont_no_border {
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: scroll;
    padding-inline: 5%;
    padding-top: 5%;
    gap: 0.5rem;
}

.item__cont {
    min-width: 150px;
}

.item__textbox {
    display: flex;
    flex-direction: column;
    height: 9rem;
    justify-content: space-between;
    font-size: 0.8rem;
}

.item__ttl {
    line-height: 1.3rem;
    font-size: 1rem;
}

.item__btn {
    margin: 4% auto;
}
}

.readmore {
position: relative;
box-sizing: border-box;
}

.readmore-content {
position: relative;
overflow: hidden;
/*以下お好み*/
/*高さの初期値*/
height: clamp(60rem, 98vw, 69rem);
}

.readmore-content::before {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
content: "";
/*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
height: 50px;
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255,
0.8) 50%, #fff 100%);
background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%,
#fff 100%);
}

/* 続きを読むボタン */
.readmore-label {
    display: table;
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0.4rem 10rem;
    background-color: #2ea364;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.readmore-label:before {
content: 'Show more';
}

.readmore-check {
display: none;
}

/*チェック時にボタンを非表示*/
.readmore-check:checked~.readmore-label {
position: static;
transform: translateX(0);
-webkit-transform: translateX(0);
/* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
/* display: none; */
}

.readmore-check:checked~.readmore-label:before {
content: 'Collapse';
}

/*チェック時に高さを自動に戻す*/
.readmore-check:checked~.readmore-content {
height: auto;
}

/*チェック時グラデーション等を削除*/
.readmore-check:checked~.readmore-content::before {
display: none;
}

@media screen and (max-width: 800px) {
    .readmore-content {
        height: auto;
    }

    .readmore-content::before {
        display: none;
    }

    .readmore-label {
        display: none;
    }
}