header .headTopArea .rightTxt:before, 
.l-header__sitename:before, 
.l-header-sitename:before {
    content: "PR";
    display: inline-block;
    background: #000;
    color: #fff;
    text-align: center;
    width: fit-content;
    margin-right: 1rem;
    font-size: 1.5rem;
    padding: 0 1rem;
}

footer p.copy a:before, 
.l-footer-bottom__copy a:before,
.l-footer-copy a:before  {
    content: "【PR】";
}

/* oki_20220905 */

.kanren {
    border: 1px solid #2AAB9F;
    padding: 20px 30px;
    margin: 30px auto;
    position: relative;
    box-sizing: border-box;
}
.midasi {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.kanren br {
    display: none;
}

/* アコーディオンのときに下記追加 */
.readmore-content {
    position: relative;
    overflow: hidden;
    height: 160px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    z-index: 1;
    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;
    bottom: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 5px auto;
    z-index: 2;
    padding: 7px 15px;
    background-color: #2AAB9F;
    border-radius: 10px;
    color: #FFF;
}
.readmore-label:before{
    content: "\7D9A\304D\3092\8AAD\3080";
}

.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: "\9589\3058\308B";
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}
.sticky_area {
    position: fixed;
    bottom: 240px;
    z-index: 3;
    box-shadow: 0 0 0 2px #2b2b2b inset, 0 0 0 6px #ffffff inset, 0 0 0 7px #2b2b2b inset;
    background: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
}
.sticky_area a {
    text-align: center;
    text-decoration: none;
    display: block;
    color: #fff;
    position: relative;
    font-size: 20px;
    line-height: 3.2rem;
    font-weight: bold;
    width: 320px;
    height: 140px;
    padding: 18px;
    z-index: 3;
    background: url(https://www.jyusei-no-michi.com/wp/wp-content/uploads/fixbanner_pc.png) no-repeat left 6px top 6px;
    background-size: 60%;
}
.sticky_area a span {
    color: #5089df;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
    font-size: 22px;
    padding-left: 2px;
}
.sticky_area a:after {
    right: 30px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    content: '';
    top: 50%;
}
#toc {
    background: #f6f7f7;
    padding: 20px 10px 10px 18px;
    width: 500px;
    margin: 50px auto;
    border: 3px solid #2aab9f;
    font-weight: bold;
}
#toc ul {
    position: relative;
    margin-top: 50px;
}
#toc ul:before {
    position: absolute;
    content: '目次';
    top: -44px;
    font-weight: bold;
    left: 6px;
    font-size: 20px;
}
#toc ul li::before {
    background-color: #333;
    top: 10px;
}
#toc br {
    display: none;
}

.accordion-box input:checked + label:after {
    content: "閉じる";
	bottom: 60%;  /* 無くても良い。適宜調整 */
}
.accordion-box input:checked + label:before {
    content: "↑";
    bottom: 72px;
}

.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -ms-transition: all 1.0s;
    -o-transition: all 1.0s;
    transition: all 1.0s;
}  /* 閉じるボタンのbottomからの位置 */

.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 100px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;

    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}   /* グラデーションの高さ、以下グラデーションは「背景が白」に併せて設定 */
.accordion-box input:checked + label {
    background: inherit;
} /*---- 開いた時には背景グラデーションを消す ----*/

.accordion-box label:after {
    content: "続きをよむ";
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 36%;
    left: 50%;
    font-size: 18px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #000;
    background-color: #b1eee1;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 1rem;
	font-weight: bold;
}
.accordion-box label:before {
    content: "↓";
    font-weight: 700;
    position: absolute;
    bottom: 48px;
    left: 50%;
    -webkit-transform: translate(-90px, 0);
    transform: translate(-90px, 0);
    background-color: #fff;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 150px;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -ms-transition: all 1.0s;
    -o-transition: all 1.0s;
    transition: all 1.0s;
} /* --- 開く前に見えている部分の高さ ---*/

.imgArea {
    text-align: center;
}
.img_center {
    font-size: 10px;
    color: #999999;
    margin: 0 auto;
    text-align: center;
    word-break: break-all;
}
.img_center img {
    padding-bottom: 5px;
}


/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/

@media screen and (min-width: 600px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/

.addParts--recommended.lower-bottom {
    padding: 7.5rem 2rem 11.5rem;
}

.lower-bottom .blockTitSub {
    font-size: 2rem;
}

.lower-bottom .pointArea .pointTxt {
    font-size: 1.6rem;
}

#contents .lower-bottom table {
    /* width: 90%; */
    margin: 0;
}

#contents .lower-bottom table th, #contents .lower-bottom table td {
    padding: 10px;
}

.block--lower-bottom {
    width: calc((100% - 3rem)/3);
    padding: 0 1rem;
}

.addParts--recommended.lower-bottom .addTopArea .addTxt {
    width: auto;
}
.lower-bottom .pointArea {
    width: unset;
}
.addParts--recommended.lower-bottom .addTopArea {
    margin-bottom: 0;
}	
	
}


/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 599px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/
.kanren {
	width:90%;
}
.sticky_area {
    bottom: 0;
    width: 100%;
	position: fixed;
	height: 100px;
}
.sticky_area a {
    width: 100%;
    height: 100px;
    background-size: 35%;
    padding: 18px 26px 18px 14px;
}
.sticky_area a:after {
    top: 44%;
    right: 18px;
}
footer p.copy {
    padding-bottom: 100px;
}	
#toc {
    width: 90%;
    padding: 8px 8px 1px 8px;
}
.accordion-box label {
    height: 140px;
}
.accordion-box02 {
    position: relative;
}
.accordion-box02 label {
    height: 140px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}  /*グラデーションの高さ、以下グラデーションは「背景が白」に併せて設定 */

.accordion-box {
    width: 92%;
    margin: auto;
}	
.accordion-box label:before,
.accordion-box label::after {
    font-size: 16px;
}
.accordion-box label:before {
    bottom: 62px;
}
.accordion-box input:checked + label:before {
    bottom: 96px;
}	
#contents .lower-bottom table {
    width: 90%;
    margin: 0 auto;
}	
	
	
	
	
	
	
}